Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.3.5 |
Comparing to | |
See all releases |
Code changes from version 2.3.4 to 2.3.5
- README_OFFICIAL.txt +7 -0
- cimy_uef_db.php +4 -4
- cimy_uef_functions.php +3 -1
- cimy_uef_profile.php +57 -55
- cimy_uef_register.php +1 -1
- cimy_user_extra_fields.php +2 -2
- langs/cimy_uef-uk.mo +0 -0
- langs/cimy_uef-uk.po +1202 -0
- readme.txt +1 -1
README_OFFICIAL.txt
CHANGED
@@ -619,6 +619,13 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
619 |
|
620 |
|
621 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
622 |
v2.3.4 - 02/01/2012
|
623 |
- Fixed profiles cannot be updated anymore when there are some rules set (introduced with v2.3.3) (thanks to Csaba)
|
624 |
- Fixed PHP warnings
|
619 |
|
620 |
|
621 |
CHANGELOG:
|
622 |
+
v2.3.5 - 30/01/2012
|
623 |
+
- Added (required) for extra fields with unchecked 'Can be empty' rule (thanks to Paul 'Sparrow Hawk' Biron for the patch)
|
624 |
+
- Changed fields' description is now consistent with WordPress look (thanks to Paul 'Sparrow Hawk' Biron for the patch)
|
625 |
+
- Allow 'target' attribute for links added in the extra fields' description
|
626 |
+
- Fixed use of a deprecated function on plug-in activation, fixes relative warning (thanks to David Anderson)
|
627 |
+
- Added Ukrainian translation (Oleg Bondarenko)
|
628 |
+
|
629 |
v2.3.4 - 02/01/2012
|
630 |
- Fixed profiles cannot be updated anymore when there are some rules set (introduced with v2.3.3) (thanks to Csaba)
|
631 |
- Fixed PHP warnings
|
cimy_uef_db.php
CHANGED
@@ -267,21 +267,21 @@ function cimy_plugin_install () {
|
|
267 |
if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_wp_fields_table'") != $wpdb_wp_fields_table) {
|
268 |
$sql = "CREATE TABLE ".$wpdb_wp_fields_table." (ID bigint(20) NOT NULL AUTO_INCREMENT, F_ORDER bigint(20) NOT NULL, NAME varchar(20), LABEL TEXT, DESCRIPTION TEXT, TYPE varchar(20), RULES TEXT, VALUE TEXT, PRIMARY KEY (ID), INDEX F_ORDER (F_ORDER), INDEX NAME (NAME))".$charset_collate.";";
|
269 |
|
270 |
-
require_once(ABSPATH . 'wp-admin/upgrade
|
271 |
dbDelta($sql);
|
272 |
}
|
273 |
|
274 |
if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_data_table'") != $wpdb_data_table) {
|
275 |
$sql = "CREATE TABLE ".$wpdb_data_table." (ID bigint(20) NOT NULL AUTO_INCREMENT, USER_ID bigint(20) NOT NULL, FIELD_ID bigint(20) NOT NULL, VALUE TEXT NOT NULL, PRIMARY KEY (ID), INDEX USER_ID (USER_ID), INDEX FIELD_ID (FIELD_ID))".$charset_collate.";";
|
276 |
|
277 |
-
require_once(ABSPATH . 'wp-admin/upgrade
|
278 |
dbDelta($sql);
|
279 |
}
|
280 |
|
281 |
if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_fields_table'") != $wpdb_fields_table) {
|
282 |
$sql = "CREATE TABLE ".$wpdb_fields_table." (ID bigint(20) NOT NULL AUTO_INCREMENT, F_ORDER bigint(20) NOT NULL, FIELDSET bigint(20) NOT NULL DEFAULT 0, NAME varchar(20), LABEL TEXT, DESCRIPTION TEXT, TYPE varchar(20), RULES TEXT, VALUE TEXT, PRIMARY KEY (ID), INDEX F_ORDER (F_ORDER), INDEX NAME (NAME))".$charset_collate.";";
|
283 |
|
284 |
-
require_once(ABSPATH . 'wp-admin/upgrade
|
285 |
dbDelta($sql);
|
286 |
}
|
287 |
return $options;
|
@@ -316,7 +316,7 @@ function cimy_force_signup_table_creation() {
|
|
316 |
KEY domain (domain)
|
317 |
)".$charset_collate.";";
|
318 |
|
319 |
-
require_once(ABSPATH . 'wp-admin/upgrade
|
320 |
dbDelta($sql);
|
321 |
}
|
322 |
}
|
267 |
if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_wp_fields_table'") != $wpdb_wp_fields_table) {
|
268 |
$sql = "CREATE TABLE ".$wpdb_wp_fields_table." (ID bigint(20) NOT NULL AUTO_INCREMENT, F_ORDER bigint(20) NOT NULL, NAME varchar(20), LABEL TEXT, DESCRIPTION TEXT, TYPE varchar(20), RULES TEXT, VALUE TEXT, PRIMARY KEY (ID), INDEX F_ORDER (F_ORDER), INDEX NAME (NAME))".$charset_collate.";";
|
269 |
|
270 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
271 |
dbDelta($sql);
|
272 |
}
|
273 |
|
274 |
if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_data_table'") != $wpdb_data_table) {
|
275 |
$sql = "CREATE TABLE ".$wpdb_data_table." (ID bigint(20) NOT NULL AUTO_INCREMENT, USER_ID bigint(20) NOT NULL, FIELD_ID bigint(20) NOT NULL, VALUE TEXT NOT NULL, PRIMARY KEY (ID), INDEX USER_ID (USER_ID), INDEX FIELD_ID (FIELD_ID))".$charset_collate.";";
|
276 |
|
277 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
278 |
dbDelta($sql);
|
279 |
}
|
280 |
|
281 |
if ($wpdb->get_var("SHOW TABLES LIKE '$wpdb_fields_table'") != $wpdb_fields_table) {
|
282 |
$sql = "CREATE TABLE ".$wpdb_fields_table." (ID bigint(20) NOT NULL AUTO_INCREMENT, F_ORDER bigint(20) NOT NULL, FIELDSET bigint(20) NOT NULL DEFAULT 0, NAME varchar(20), LABEL TEXT, DESCRIPTION TEXT, TYPE varchar(20), RULES TEXT, VALUE TEXT, PRIMARY KEY (ID), INDEX F_ORDER (F_ORDER), INDEX NAME (NAME))".$charset_collate.";";
|
283 |
|
284 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
285 |
dbDelta($sql);
|
286 |
}
|
287 |
return $options;
|
316 |
KEY domain (domain)
|
317 |
)".$charset_collate.";";
|
318 |
|
319 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
320 |
dbDelta($sql);
|
321 |
}
|
322 |
}
|
cimy_uef_functions.php
CHANGED
@@ -394,8 +394,10 @@ function cimy_uef_sanitize_content($content, $override_allowed_tags=null) {
|
|
394 |
|
395 |
if (is_array($override_allowed_tags))
|
396 |
$cimy_allowedtags = $override_allowed_tags;
|
397 |
-
else
|
398 |
$cimy_allowedtags = $allowedtags;
|
|
|
|
|
399 |
|
400 |
$content = wp_kses($content, $cimy_allowedtags);
|
401 |
$content = wptexturize($content);
|
394 |
|
395 |
if (is_array($override_allowed_tags))
|
396 |
$cimy_allowedtags = $override_allowed_tags;
|
397 |
+
else {
|
398 |
$cimy_allowedtags = $allowedtags;
|
399 |
+
$cimy_allowedtags['a']['target'] = array();
|
400 |
+
}
|
401 |
|
402 |
$content = wp_kses($content, $cimy_allowedtags);
|
403 |
$content = wptexturize($content);
|
cimy_uef_profile.php
CHANGED
@@ -20,13 +20,13 @@ function cimy_extract_ExtraFields() {
|
|
20 |
else {
|
21 |
if (!isset($user_ID))
|
22 |
return;
|
23 |
-
|
24 |
$get_user_id = $user_ID;
|
25 |
}
|
26 |
|
27 |
$get_user_id = intval($get_user_id);
|
28 |
$options = cimy_get_options();
|
29 |
-
|
30 |
$extra_fields = get_cimyFields(false, true);
|
31 |
|
32 |
if (!empty($extra_fields)) {
|
@@ -38,27 +38,27 @@ function cimy_extract_ExtraFields() {
|
|
38 |
echo "<br clear=\"all\" />\n";
|
39 |
echo "<h2>".esc_html($options['extra_fields_title'])."</h2>\n";
|
40 |
}
|
41 |
-
|
42 |
foreach ($extra_fields as $thisField) {
|
43 |
-
|
44 |
$field_id = $thisField['ID'];
|
45 |
-
|
46 |
cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
|
47 |
}
|
48 |
-
|
49 |
// $ef_db = $wpdb->get_results("SELECT FIELD_ID, VALUE FROM ".$wpdb_data_table." WHERE USER_ID = ".$get_user_id, ARRAY_A);
|
50 |
|
51 |
$radio_checked = array();
|
52 |
$current_fieldset = -1;
|
53 |
$tiny_mce_objects = "";
|
54 |
-
|
55 |
if (!empty($options['fieldset_title']))
|
56 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
57 |
else
|
58 |
$fieldset_titles = array();
|
59 |
-
|
60 |
$close_table = false;
|
61 |
-
|
62 |
echo '<table class="form-table">';
|
63 |
echo "\n";
|
64 |
|
@@ -121,7 +121,7 @@ function cimy_extract_ExtraFields() {
|
|
121 |
|
122 |
if (isset($fieldset_titles[$current_fieldset]))
|
123 |
echo "\n\t<h3>".esc_html($fieldset_titles[$current_fieldset])."</h3>\n";
|
124 |
-
|
125 |
echo '<table class="form-table">';
|
126 |
echo "\n";
|
127 |
}
|
@@ -135,14 +135,18 @@ function cimy_extract_ExtraFields() {
|
|
135 |
$value = esc_attr($value);
|
136 |
$old_value = esc_attr($old_value);
|
137 |
$obj_class = '';
|
|
|
|
|
|
|
|
|
138 |
|
139 |
switch($type) {
|
140 |
case "picture-url":
|
141 |
case "password":
|
142 |
case "text":
|
143 |
-
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
|
144 |
$obj_name = ' name="'.$input_name.'"';
|
145 |
-
|
146 |
if ($type == "picture-url")
|
147 |
$obj_type = ' type="text"';
|
148 |
else
|
@@ -154,16 +158,16 @@ function cimy_extract_ExtraFields() {
|
|
154 |
$obj_tag = "input";
|
155 |
$obj_closing_tag = false;
|
156 |
$obj_style = ' class="regular-text"';
|
157 |
-
|
158 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
159 |
$obj_disabled = ' disabled="disabled"';
|
160 |
else
|
161 |
$obj_disabled = "";
|
162 |
-
|
163 |
break;
|
164 |
-
|
165 |
case "textarea":
|
166 |
-
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
|
167 |
$obj_name = ' name="'.$input_name.'"';
|
168 |
$obj_type = "";
|
169 |
$obj_value = "";
|
@@ -180,14 +184,14 @@ function cimy_extract_ExtraFields() {
|
|
180 |
$obj_disabled = "";
|
181 |
|
182 |
break;
|
183 |
-
|
184 |
case "textarea-rich":
|
185 |
if ($tiny_mce_objects == "")
|
186 |
$tiny_mce_objects = $unique_id;
|
187 |
else
|
188 |
$tiny_mce_objects .= ",".$unique_id;
|
189 |
|
190 |
-
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
|
191 |
$obj_name = ' name="'.$input_name.'"';
|
192 |
$obj_type = "";
|
193 |
$obj_value = "";
|
@@ -210,9 +214,7 @@ function cimy_extract_ExtraFields() {
|
|
210 |
$ret = cimy_dropDownOptions($label, $non_escaped_value);
|
211 |
$label = $ret['label'];
|
212 |
$html = $ret['html'];
|
213 |
-
|
214 |
-
$obj_label = '<label for="'.$unique_id.'">'.$label.'</label>';
|
215 |
-
|
216 |
|
217 |
if ($type == "dropdown-multi") {
|
218 |
$obj_name = ' name="'.$input_name.'[]" multiple="multiple" size="5"';
|
@@ -229,14 +231,14 @@ function cimy_extract_ExtraFields() {
|
|
229 |
$obj_checked = "";
|
230 |
$obj_tag = "select";
|
231 |
$obj_closing_tag = true;
|
232 |
-
|
233 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
234 |
$obj_disabled = ' disabled="disabled"';
|
235 |
else
|
236 |
$obj_disabled = "";
|
237 |
-
|
238 |
break;
|
239 |
-
|
240 |
case "checkbox":
|
241 |
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
|
242 |
$obj_name = ' name="'.$input_name.'"';
|
@@ -247,14 +249,14 @@ function cimy_extract_ExtraFields() {
|
|
247 |
$obj_tag = "input";
|
248 |
$obj_closing_tag = false;
|
249 |
$obj_style = ' style="width:auto; border:0; background:white;"';
|
250 |
-
|
251 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
252 |
$obj_disabled = ' disabled="disabled"';
|
253 |
else
|
254 |
$obj_disabled = "";
|
255 |
|
256 |
break;
|
257 |
-
|
258 |
case "radio":
|
259 |
$obj_label = '<label for="'.$unique_id.'"> '.cimy_uef_sanitize_content($label).'</label>';
|
260 |
$obj_name = ' name="'.$input_name.'"';
|
@@ -287,7 +289,7 @@ function cimy_extract_ExtraFields() {
|
|
287 |
if (!empty($rules['equal_to']))
|
288 |
$allowed_exts = "'".implode("', '", explode(",", $rules['equal_to']))."'";
|
289 |
|
290 |
-
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
|
291 |
$obj_class = '';
|
292 |
$obj_name = ' name="'.$input_name.'"';
|
293 |
$obj_type = ' type="file"';
|
@@ -309,27 +311,27 @@ function cimy_extract_ExtraFields() {
|
|
309 |
|
310 |
$obj_style = ' onchange="uploadFile(\'your-profile\', \''.$unique_id.'\', \''.$warning_msg.'\', Array(\'gif\', \'png\', \'jpg\', \'jpeg\', \'tiff\'));"';
|
311 |
}
|
312 |
-
|
313 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
314 |
$obj_disabled = ' disabled="disabled"';
|
315 |
else
|
316 |
$obj_disabled = "";
|
317 |
-
|
318 |
break;
|
319 |
-
|
320 |
case "registration-date":
|
321 |
$value = cimy_get_registration_date($get_user_id, $value);
|
322 |
if (isset($rules['equal_to']))
|
323 |
$obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
|
324 |
else
|
325 |
$obj_value = cimy_get_formatted_date($value);
|
326 |
-
|
327 |
$obj_label = '<label>'.cimy_uef_sanitize_content($label).'</label>';
|
328 |
|
329 |
break;
|
330 |
}
|
331 |
|
332 |
-
|
333 |
$obj_id = ' id="'.$unique_id.'"';
|
334 |
$obj_maxlen = "";
|
335 |
|
@@ -340,16 +342,16 @@ function cimy_extract_ExtraFields() {
|
|
340 |
$obj_maxlen = ' maxlength="'.$rules['exact_length'].'"';
|
341 |
}
|
342 |
}
|
343 |
-
|
344 |
if (in_array($type, $cimy_uef_textarea_types))
|
345 |
$obj_rowscols = ' rows="3" cols="25"';
|
346 |
else
|
347 |
$obj_rowscols = '';
|
348 |
-
|
349 |
echo "\t";
|
350 |
-
|
351 |
$form_object = '<'.$obj_tag.$obj_id.$obj_class.$obj_name.$obj_type.$obj_value.$obj_checked.$obj_maxlen.$obj_rowscols.$obj_style.$obj_disabled;
|
352 |
-
|
353 |
if ($obj_closing_tag)
|
354 |
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
355 |
else
|
@@ -358,11 +360,11 @@ function cimy_extract_ExtraFields() {
|
|
358 |
echo "<th>";
|
359 |
echo $obj_label;
|
360 |
echo "</th>\n";
|
361 |
-
|
362 |
echo "\t\t<td>";
|
363 |
-
|
364 |
if ((!empty($description)) && (($type == "picture") || ($type == "picture-url")))
|
365 |
-
echo
|
366 |
|
367 |
if (in_array($type, $cimy_uef_file_types)) {
|
368 |
$profileuser = get_user_to_edit($get_user_id);
|
@@ -378,14 +380,14 @@ function cimy_extract_ExtraFields() {
|
|
378 |
if ((in_array($type, $cimy_uef_file_types)) && (!empty($value))) {
|
379 |
$old_value = basename($old_value);
|
380 |
$user_login = $profileuser->user_login;
|
381 |
-
|
382 |
if ($type == "picture") {
|
383 |
$value_thumb = cimy_get_thumb_path($value);
|
384 |
$file_on_server = cimy_uef_get_dir_or_filename($user_login, $value, false);
|
385 |
$file_thumb = cimy_uef_get_dir_or_filename($user_login, $value, true);
|
386 |
if ((!empty($advanced_options["no-thumb"])) && (is_file($file_thumb)))
|
387 |
rename($file_thumb, $file_on_server);
|
388 |
-
|
389 |
echo "\n\t\t";
|
390 |
if (is_file($file_thumb)) {
|
391 |
echo '<a target="_blank" href="'.$value.'"><img id="'.$field_id_data.'" src="'.$value_thumb.'" alt="picture" /></a><br />';
|
@@ -412,7 +414,7 @@ function cimy_extract_ExtraFields() {
|
|
412 |
else {
|
413 |
// take the "can be modified" rule just set before
|
414 |
$dis_delete_img = $obj_disabled;
|
415 |
-
|
416 |
// echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
417 |
// echo "\n\t\t";
|
418 |
}
|
@@ -452,7 +454,7 @@ function cimy_extract_ExtraFields() {
|
|
452 |
}
|
453 |
echo "\n\t\t";
|
454 |
}
|
455 |
-
|
456 |
if ($type == "picture-url") {
|
457 |
if (!empty($value)) {
|
458 |
if (intval($rules['equal_to'])) {
|
@@ -463,11 +465,11 @@ function cimy_extract_ExtraFields() {
|
|
463 |
else {
|
464 |
echo '<img src="'.$value.'" alt="picture" />';
|
465 |
}
|
466 |
-
|
467 |
echo "<br />";
|
468 |
echo "\n\t\t";
|
469 |
}
|
470 |
-
|
471 |
echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
|
472 |
}
|
473 |
|
@@ -493,20 +495,20 @@ function cimy_extract_ExtraFields() {
|
|
493 |
echo $form_object;
|
494 |
else
|
495 |
echo $obj_value;
|
496 |
-
|
497 |
if ((!empty($description)) && ($type != "picture") && ($type != "picture-url")) {
|
498 |
if (($type == "textarea") || ($type == "textarea-rich"))
|
499 |
echo "<br />";
|
500 |
else
|
501 |
echo " ";
|
502 |
-
|
503 |
-
echo
|
504 |
}
|
505 |
|
506 |
echo "</td>";
|
507 |
echo "\n\t</tr>\n";
|
508 |
}
|
509 |
-
|
510 |
echo "</table>";
|
511 |
|
512 |
// WP 3.2 or lower (N)
|
@@ -526,7 +528,7 @@ function cimy_update_ExtraFields() {
|
|
526 |
|
527 |
if (isset($_POST['user_id'])) {
|
528 |
$get_user_id = $_POST['user_id'];
|
529 |
-
|
530 |
if (!current_user_can('edit_user', $get_user_id))
|
531 |
return;
|
532 |
}
|
@@ -603,7 +605,7 @@ function cimy_update_ExtraFields() {
|
|
603 |
$field_ids.= $field_id;
|
604 |
|
605 |
$query.= " WHEN ".$field_id." THEN ";
|
606 |
-
|
607 |
switch ($type) {
|
608 |
case 'dropdown':
|
609 |
case 'dropdown-multi':
|
@@ -646,12 +648,12 @@ function cimy_update_ExtraFields() {
|
|
646 |
$delete_file = true;
|
647 |
else
|
648 |
$delete_file = false;
|
649 |
-
|
650 |
if (isset($_POST[$input_name."_".$field_id."_prev_value"]))
|
651 |
$old_file = stripslashes($_POST[$input_name."_".$field_id."_prev_value"]);
|
652 |
else
|
653 |
$old_file = false;
|
654 |
-
|
655 |
$field_value = cimy_manage_upload($input_name, $user_login, $rules, $old_file, $delete_file, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
|
656 |
|
657 |
if ((!empty($field_value)) || ($delete_file)) {
|
@@ -659,9 +661,9 @@ function cimy_update_ExtraFields() {
|
|
659 |
$field_ids.= ", ";
|
660 |
else
|
661 |
$i = 1;
|
662 |
-
|
663 |
$field_ids.= $field_id;
|
664 |
-
|
665 |
$value = "'".$field_value."'";
|
666 |
$prev_value = "'".$prev_value."'";
|
667 |
|
20 |
else {
|
21 |
if (!isset($user_ID))
|
22 |
return;
|
23 |
+
|
24 |
$get_user_id = $user_ID;
|
25 |
}
|
26 |
|
27 |
$get_user_id = intval($get_user_id);
|
28 |
$options = cimy_get_options();
|
29 |
+
|
30 |
$extra_fields = get_cimyFields(false, true);
|
31 |
|
32 |
if (!empty($extra_fields)) {
|
38 |
echo "<br clear=\"all\" />\n";
|
39 |
echo "<h2>".esc_html($options['extra_fields_title'])."</h2>\n";
|
40 |
}
|
41 |
+
|
42 |
foreach ($extra_fields as $thisField) {
|
43 |
+
|
44 |
$field_id = $thisField['ID'];
|
45 |
+
|
46 |
cimy_insert_ExtraFields_if_not_exist($get_user_id, $field_id);
|
47 |
}
|
48 |
+
|
49 |
// $ef_db = $wpdb->get_results("SELECT FIELD_ID, VALUE FROM ".$wpdb_data_table." WHERE USER_ID = ".$get_user_id, ARRAY_A);
|
50 |
|
51 |
$radio_checked = array();
|
52 |
$current_fieldset = -1;
|
53 |
$tiny_mce_objects = "";
|
54 |
+
|
55 |
if (!empty($options['fieldset_title']))
|
56 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
57 |
else
|
58 |
$fieldset_titles = array();
|
59 |
+
|
60 |
$close_table = false;
|
61 |
+
|
62 |
echo '<table class="form-table">';
|
63 |
echo "\n";
|
64 |
|
121 |
|
122 |
if (isset($fieldset_titles[$current_fieldset]))
|
123 |
echo "\n\t<h3>".esc_html($fieldset_titles[$current_fieldset])."</h3>\n";
|
124 |
+
|
125 |
echo '<table class="form-table">';
|
126 |
echo "\n";
|
127 |
}
|
135 |
$value = esc_attr($value);
|
136 |
$old_value = esc_attr($old_value);
|
137 |
$obj_class = '';
|
138 |
+
if ($rules['can_be_empty'])
|
139 |
+
$required = '' ;
|
140 |
+
else
|
141 |
+
$required = ' <span class="description">'.__("(required)").'</span>' ;
|
142 |
|
143 |
switch($type) {
|
144 |
case "picture-url":
|
145 |
case "password":
|
146 |
case "text":
|
147 |
+
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).$required.'</label>';
|
148 |
$obj_name = ' name="'.$input_name.'"';
|
149 |
+
|
150 |
if ($type == "picture-url")
|
151 |
$obj_type = ' type="text"';
|
152 |
else
|
158 |
$obj_tag = "input";
|
159 |
$obj_closing_tag = false;
|
160 |
$obj_style = ' class="regular-text"';
|
161 |
+
|
162 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
163 |
$obj_disabled = ' disabled="disabled"';
|
164 |
else
|
165 |
$obj_disabled = "";
|
166 |
+
|
167 |
break;
|
168 |
+
|
169 |
case "textarea":
|
170 |
+
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).$required.'</label>';
|
171 |
$obj_name = ' name="'.$input_name.'"';
|
172 |
$obj_type = "";
|
173 |
$obj_value = "";
|
184 |
$obj_disabled = "";
|
185 |
|
186 |
break;
|
187 |
+
|
188 |
case "textarea-rich":
|
189 |
if ($tiny_mce_objects == "")
|
190 |
$tiny_mce_objects = $unique_id;
|
191 |
else
|
192 |
$tiny_mce_objects .= ",".$unique_id;
|
193 |
|
194 |
+
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).$required.'</label>';
|
195 |
$obj_name = ' name="'.$input_name.'"';
|
196 |
$obj_type = "";
|
197 |
$obj_value = "";
|
214 |
$ret = cimy_dropDownOptions($label, $non_escaped_value);
|
215 |
$label = $ret['label'];
|
216 |
$html = $ret['html'];
|
217 |
+
$obj_label = '<label for="'.$unique_id.'">'.$label.$required.'</label>';
|
|
|
|
|
218 |
|
219 |
if ($type == "dropdown-multi") {
|
220 |
$obj_name = ' name="'.$input_name.'[]" multiple="multiple" size="5"';
|
231 |
$obj_checked = "";
|
232 |
$obj_tag = "select";
|
233 |
$obj_closing_tag = true;
|
234 |
+
|
235 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
236 |
$obj_disabled = ' disabled="disabled"';
|
237 |
else
|
238 |
$obj_disabled = "";
|
239 |
+
|
240 |
break;
|
241 |
+
|
242 |
case "checkbox":
|
243 |
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
|
244 |
$obj_name = ' name="'.$input_name.'"';
|
249 |
$obj_tag = "input";
|
250 |
$obj_closing_tag = false;
|
251 |
$obj_style = ' style="width:auto; border:0; background:white;"';
|
252 |
+
|
253 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
254 |
$obj_disabled = ' disabled="disabled"';
|
255 |
else
|
256 |
$obj_disabled = "";
|
257 |
|
258 |
break;
|
259 |
+
|
260 |
case "radio":
|
261 |
$obj_label = '<label for="'.$unique_id.'"> '.cimy_uef_sanitize_content($label).'</label>';
|
262 |
$obj_name = ' name="'.$input_name.'"';
|
289 |
if (!empty($rules['equal_to']))
|
290 |
$allowed_exts = "'".implode("', '", explode(",", $rules['equal_to']))."'";
|
291 |
|
292 |
+
$obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).$required.'</label>';
|
293 |
$obj_class = '';
|
294 |
$obj_name = ' name="'.$input_name.'"';
|
295 |
$obj_type = ' type="file"';
|
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))
|
316 |
$obj_disabled = ' disabled="disabled"';
|
317 |
else
|
318 |
$obj_disabled = "";
|
319 |
+
|
320 |
break;
|
321 |
+
|
322 |
case "registration-date":
|
323 |
$value = cimy_get_registration_date($get_user_id, $value);
|
324 |
if (isset($rules['equal_to']))
|
325 |
$obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
|
326 |
else
|
327 |
$obj_value = cimy_get_formatted_date($value);
|
328 |
+
|
329 |
$obj_label = '<label>'.cimy_uef_sanitize_content($label).'</label>';
|
330 |
|
331 |
break;
|
332 |
}
|
333 |
|
334 |
+
|
335 |
$obj_id = ' id="'.$unique_id.'"';
|
336 |
$obj_maxlen = "";
|
337 |
|
342 |
$obj_maxlen = ' maxlength="'.$rules['exact_length'].'"';
|
343 |
}
|
344 |
}
|
345 |
+
|
346 |
if (in_array($type, $cimy_uef_textarea_types))
|
347 |
$obj_rowscols = ' rows="3" cols="25"';
|
348 |
else
|
349 |
$obj_rowscols = '';
|
350 |
+
|
351 |
echo "\t";
|
352 |
+
|
353 |
$form_object = '<'.$obj_tag.$obj_id.$obj_class.$obj_name.$obj_type.$obj_value.$obj_checked.$obj_maxlen.$obj_rowscols.$obj_style.$obj_disabled;
|
354 |
+
|
355 |
if ($obj_closing_tag)
|
356 |
$form_object.= ">".$obj_value2."</".$obj_tag.">";
|
357 |
else
|
360 |
echo "<th>";
|
361 |
echo $obj_label;
|
362 |
echo "</th>\n";
|
363 |
+
|
364 |
echo "\t\t<td>";
|
365 |
+
|
366 |
if ((!empty($description)) && (($type == "picture") || ($type == "picture-url")))
|
367 |
+
echo "<span class='description'>".$description."</span><br />";
|
368 |
|
369 |
if (in_array($type, $cimy_uef_file_types)) {
|
370 |
$profileuser = get_user_to_edit($get_user_id);
|
380 |
if ((in_array($type, $cimy_uef_file_types)) && (!empty($value))) {
|
381 |
$old_value = basename($old_value);
|
382 |
$user_login = $profileuser->user_login;
|
383 |
+
|
384 |
if ($type == "picture") {
|
385 |
$value_thumb = cimy_get_thumb_path($value);
|
386 |
$file_on_server = cimy_uef_get_dir_or_filename($user_login, $value, false);
|
387 |
$file_thumb = cimy_uef_get_dir_or_filename($user_login, $value, true);
|
388 |
if ((!empty($advanced_options["no-thumb"])) && (is_file($file_thumb)))
|
389 |
rename($file_thumb, $file_on_server);
|
390 |
+
|
391 |
echo "\n\t\t";
|
392 |
if (is_file($file_thumb)) {
|
393 |
echo '<a target="_blank" href="'.$value.'"><img id="'.$field_id_data.'" src="'.$value_thumb.'" alt="picture" /></a><br />';
|
414 |
else {
|
415 |
// take the "can be modified" rule just set before
|
416 |
$dis_delete_img = $obj_disabled;
|
417 |
+
|
418 |
// echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
|
419 |
// echo "\n\t\t";
|
420 |
}
|
454 |
}
|
455 |
echo "\n\t\t";
|
456 |
}
|
457 |
+
|
458 |
if ($type == "picture-url") {
|
459 |
if (!empty($value)) {
|
460 |
if (intval($rules['equal_to'])) {
|
465 |
else {
|
466 |
echo '<img src="'.$value.'" alt="picture" />';
|
467 |
}
|
468 |
+
|
469 |
echo "<br />";
|
470 |
echo "\n\t\t";
|
471 |
}
|
472 |
+
|
473 |
echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
|
474 |
}
|
475 |
|
495 |
echo $form_object;
|
496 |
else
|
497 |
echo $obj_value;
|
498 |
+
|
499 |
if ((!empty($description)) && ($type != "picture") && ($type != "picture-url")) {
|
500 |
if (($type == "textarea") || ($type == "textarea-rich"))
|
501 |
echo "<br />";
|
502 |
else
|
503 |
echo " ";
|
504 |
+
|
505 |
+
echo "<span class='description'>".$description."</span>" ;
|
506 |
}
|
507 |
|
508 |
echo "</td>";
|
509 |
echo "\n\t</tr>\n";
|
510 |
}
|
511 |
+
|
512 |
echo "</table>";
|
513 |
|
514 |
// WP 3.2 or lower (N)
|
528 |
|
529 |
if (isset($_POST['user_id'])) {
|
530 |
$get_user_id = $_POST['user_id'];
|
531 |
+
|
532 |
if (!current_user_can('edit_user', $get_user_id))
|
533 |
return;
|
534 |
}
|
605 |
$field_ids.= $field_id;
|
606 |
|
607 |
$query.= " WHEN ".$field_id." THEN ";
|
608 |
+
|
609 |
switch ($type) {
|
610 |
case 'dropdown':
|
611 |
case 'dropdown-multi':
|
648 |
$delete_file = true;
|
649 |
else
|
650 |
$delete_file = false;
|
651 |
+
|
652 |
if (isset($_POST[$input_name."_".$field_id."_prev_value"]))
|
653 |
$old_file = stripslashes($_POST[$input_name."_".$field_id."_prev_value"]);
|
654 |
else
|
655 |
$old_file = false;
|
656 |
+
|
657 |
$field_value = cimy_manage_upload($input_name, $user_login, $rules, $old_file, $delete_file, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
|
658 |
|
659 |
if ((!empty($field_value)) || ($delete_file)) {
|
661 |
$field_ids.= ", ";
|
662 |
else
|
663 |
$i = 1;
|
664 |
+
|
665 |
$field_ids.= $field_id;
|
666 |
+
|
667 |
$value = "'".$field_value."'";
|
668 |
$prev_value = "'".$prev_value."'";
|
669 |
|
cimy_uef_register.php
CHANGED
@@ -787,7 +787,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
787 |
|
788 |
if ((!empty($description)) && ($type != "registration-date")) {
|
789 |
echo "\t";
|
790 |
-
echo '<p id="'.$prefix.'p_desc_'.$field_id.'" class="
|
791 |
echo "\n";
|
792 |
}
|
793 |
|
787 |
|
788 |
if ((!empty($description)) && ($type != "registration-date")) {
|
789 |
echo "\t";
|
790 |
+
echo '<p id="'.$prefix.'p_desc_'.$field_id.'" class="description"><br />'.$description.'</p>';
|
791 |
echo "\n";
|
792 |
}
|
793 |
|
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 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
@@ -172,7 +172,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.
|
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.5
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
License: GPL2
|
172 |
add_action('admin_init', 'cimy_uef_admin_init');
|
173 |
|
174 |
$cimy_uef_name = "Cimy User Extra Fields";
|
175 |
+
$cimy_uef_version = "2.3.5";
|
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 |
|
langs/cimy_uef-uk.mo
ADDED
Binary file
|
langs/cimy_uef-uk.po
ADDED
@@ -0,0 +1,1202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-01-23 21:51+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-01-23 21:51+0300\n"
|
7 |
+
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
+
"Language-Team: Oleg Bondarenko <o.o.bondarenko@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Language: Ukrainian\n"
|
15 |
+
"X-Poedit-Country: Ukraine\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\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_admin.php:17
|
21 |
+
msgid "Add field"
|
22 |
+
msgstr "Додати поле"
|
23 |
+
|
24 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
|
25 |
+
msgid "Update field"
|
26 |
+
msgstr "Оновити поле"
|
27 |
+
|
28 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
|
29 |
+
msgid "Delete field"
|
30 |
+
msgstr "Видалити поле"
|
31 |
+
|
32 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
|
33 |
+
msgid "Delete selected fields"
|
34 |
+
msgstr "Видалити вибрані поля"
|
35 |
+
|
36 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
|
37 |
+
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:834
|
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:835
|
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:836
|
52 |
+
msgid "Max length"
|
53 |
+
msgstr "Макс. довжина"
|
54 |
+
|
55 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
|
56 |
+
msgid "Exact or Max length"
|
57 |
+
msgstr "Точна або макс. довжина"
|
58 |
+
|
59 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
60 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
|
61 |
+
msgid "Fields"
|
62 |
+
msgstr "Поля"
|
63 |
+
|
64 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
65 |
+
msgid "changed to"
|
66 |
+
msgstr "змінено на"
|
67 |
+
|
68 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
69 |
+
msgid "You cannot give an order that misses some numbers"
|
70 |
+
msgstr "Ви не можете віддати порядок, у якому пропущені деякі числа"
|
71 |
+
|
72 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
|
73 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:210
|
74 |
+
msgid "Nothing selected"
|
75 |
+
msgstr "Нічого не вибрано"
|
76 |
+
|
77 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
78 |
+
msgid "Field(s)"
|
79 |
+
msgstr "Поле(-я)"
|
80 |
+
|
81 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
82 |
+
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:826
|
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:827
|
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:828
|
97 |
+
msgid "Max size"
|
98 |
+
msgstr "Макс. розмір"
|
99 |
+
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:242
|
101 |
+
msgid "Exact or Max size"
|
102 |
+
msgstr "Точний або макс. розмір"
|
103 |
+
|
104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:281
|
105 |
+
msgid "Name not specified"
|
106 |
+
msgstr "Ім'я не задано"
|
107 |
+
|
108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:283
|
109 |
+
msgid "Name cannot contains spaces"
|
110 |
+
msgstr "Ім'я не може містити пробіли"
|
111 |
+
|
112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:286
|
113 |
+
msgid "Label not specified"
|
114 |
+
msgstr "Надпис не задано"
|
115 |
+
|
116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:291
|
117 |
+
msgid "not selected (with this type is necessary)"
|
118 |
+
msgstr "не вибрано (з цим типом необхідно)"
|
119 |
+
|
120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
121 |
+
msgid "If you select"
|
122 |
+
msgstr "Якщо ви виберете"
|
123 |
+
|
124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
125 |
+
msgid "you cannot select Min or Max"
|
126 |
+
msgstr "Ви не можете вибрати Мін. або Макс."
|
127 |
+
|
128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:302
|
129 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:307
|
130 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:312
|
131 |
+
msgid "should be in the range of"
|
132 |
+
msgstr "повинно бути в діапазоні"
|
133 |
+
|
134 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:322
|
135 |
+
msgid "Equal TO not specified"
|
136 |
+
msgstr "Не обрано Дорівнює"
|
137 |
+
|
138 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
|
139 |
+
msgid "With checkbox type Equal TO can only be"
|
140 |
+
msgstr "Може бути тільки з прапорцем вибору типу Дорівнює"
|
141 |
+
|
142 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
|
143 |
+
msgid "With radio type Equal TO can only be"
|
144 |
+
msgstr "Може бути тільки з перемикачем вибору (радіо) типу Дорівнює "
|
145 |
+
|
146 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
147 |
+
msgid "With checkbox type Value can only be"
|
148 |
+
msgstr "Може бути тільки з прапорцем вибору типу Значення "
|
149 |
+
|
150 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
|
151 |
+
msgid "With radio type Value can only be"
|
152 |
+
msgstr "Може бути тільки з перемикачем вибору (радіо) типу Значення"
|
153 |
+
|
154 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:403
|
155 |
+
msgid "Field inserted correctly"
|
156 |
+
msgstr "Поле вставлене коректно"
|
157 |
+
|
158 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:405
|
159 |
+
msgid "Field #"
|
160 |
+
msgstr "Поле №"
|
161 |
+
|
162 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:405
|
163 |
+
msgid "updated correctly"
|
164 |
+
msgstr "оновлено коректно"
|
165 |
+
|
166 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:408
|
167 |
+
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:359
|
172 |
+
msgid "Add a new Field"
|
173 |
+
msgstr "Додати нове поле"
|
174 |
+
|
175 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:539
|
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:541
|
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> радіо</strong> та <strong>прапорцем</strong>: <em>Значення</em> і <em>Дорівнює</em> може бути тільки 'Так' або 'Ні', що означає 'обрано' або 'не обрано'"
|
182 |
+
|
183 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:542
|
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:543
|
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>картинкою</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' у КБ; <em>Дорівнює</em> означає макс. розмір у пікселях (ширина або висота) для ескізів"
|
190 |
+
|
191 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:544
|
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>URL-картинки</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; <em>Дорівнює</em> означає макс. ширину у пікселах (висота буде пропорційною)"
|
194 |
+
|
195 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:545
|
196 |
+
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
197 |
+
msgstr "З <strong>датою реєстрації</strong>: <em>Дорівнює</em> означає формат дати і часу"
|
198 |
+
|
199 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:546
|
200 |
+
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"
|
201 |
+
msgstr "З <strong>аватар</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; <em>Дорівнює</em> автоматично встановлює на 512 пікселів"
|
202 |
+
|
203 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:547
|
204 |
+
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"
|
205 |
+
msgstr "З <strong>файл<strong>: ви можете попередньо завантажити файл за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; під <em>Дорівнює</em> можуть бути вказані дозволені розширення, розділені комами, напр.: zip, pdf, doc"
|
206 |
+
|
207 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
208 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:564
|
209 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
210 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:859
|
211 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1426
|
212 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1427
|
213 |
+
msgid "Name"
|
214 |
+
msgstr "Ім'я"
|
215 |
+
|
216 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
|
217 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:565
|
218 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
219 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
|
220 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1738
|
221 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
222 |
+
msgid "Value"
|
223 |
+
msgstr "Значення"
|
224 |
+
|
225 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:555
|
226 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:568
|
227 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
|
228 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:865
|
229 |
+
msgid "Type"
|
230 |
+
msgstr "Тип"
|
231 |
+
|
232 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
233 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:584
|
234 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
|
235 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:882
|
236 |
+
msgid "Label"
|
237 |
+
msgstr "Надпис"
|
238 |
+
|
239 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
|
240 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:585
|
241 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
|
242 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:885
|
243 |
+
msgid "Description"
|
244 |
+
msgstr "Надпис"
|
245 |
+
|
246 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
|
247 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:767
|
248 |
+
msgid "Rules"
|
249 |
+
msgstr "Правила"
|
250 |
+
|
251 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
|
252 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:768
|
253 |
+
msgid "Actions"
|
254 |
+
msgstr "Дії"
|
255 |
+
|
256 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
|
257 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:876
|
258 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1180
|
259 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1263
|
260 |
+
msgid "Fieldset"
|
261 |
+
msgstr "Група полів"
|
262 |
+
|
263 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:597
|
264 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
|
265 |
+
msgid "Can be empty"
|
266 |
+
msgstr "Може бути порожнім"
|
267 |
+
|
268 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:598
|
269 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
|
270 |
+
msgid "Check for E-mail syntax"
|
271 |
+
msgstr "Перевірка синтаксису ел. пошти "
|
272 |
+
|
273 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:601
|
274 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:903
|
275 |
+
msgid "Can be modified"
|
276 |
+
msgstr "Може бути змінено"
|
277 |
+
|
278 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
|
279 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:904
|
280 |
+
msgid "Can be modified only if empty"
|
281 |
+
msgstr "Може бути змінено, тільки якщо порожнє"
|
282 |
+
|
283 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
|
284 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:905
|
285 |
+
msgid "Can be modified only by admin"
|
286 |
+
msgstr "Може бути змінено тільки адміністратором"
|
287 |
+
|
288 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
|
289 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:906
|
290 |
+
msgid "Can be modified only by admin or if empty"
|
291 |
+
msgstr "Може бути змінено тільки адміністратором або якщо порожнє"
|
292 |
+
|
293 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
|
294 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
|
295 |
+
msgid "Cannot be modified"
|
296 |
+
msgstr "Не може бути змінено"
|
297 |
+
|
298 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:609
|
299 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
|
300 |
+
msgid "Should be equal TO"
|
301 |
+
msgstr "Повинно дорівнювати"
|
302 |
+
|
303 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:611
|
304 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:914
|
305 |
+
msgid "Case sensitive"
|
306 |
+
msgstr "З урахуванням регістру"
|
307 |
+
|
308 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
309 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
|
310 |
+
msgid "Regular Expression"
|
311 |
+
msgstr "Регулярні вирази"
|
312 |
+
|
313 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
314 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
|
315 |
+
msgid "Show the field in the registration"
|
316 |
+
msgstr "Показати поле при реєстрації"
|
317 |
+
|
318 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
319 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:924
|
320 |
+
msgid "Show the field in User's profile"
|
321 |
+
msgstr "Показати поле в профілі Користувача"
|
322 |
+
|
323 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
|
324 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:933
|
325 |
+
msgid "Show the field in Users Extended section"
|
326 |
+
msgstr "Показати поле в Розширеному розділі Користувачів"
|
327 |
+
|
328 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:626
|
329 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:936
|
330 |
+
msgid "Show the field in the search engine"
|
331 |
+
msgstr "Показати поле в пошукових системах"
|
332 |
+
|
333 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
334 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
|
335 |
+
msgid "Show the field in the blog"
|
336 |
+
msgstr "Показати поле у блозі"
|
337 |
+
|
338 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
|
339 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
|
340 |
+
msgid "Show the field if the role is at least:"
|
341 |
+
msgstr "Показати поле, якщо роль, принаймні:"
|
342 |
+
|
343 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
|
344 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
|
345 |
+
msgid "Anonymous"
|
346 |
+
msgstr "Анонімний"
|
347 |
+
|
348 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:640
|
349 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:950
|
350 |
+
msgid "User has 'view_cimy_extra_fields' capability"
|
351 |
+
msgstr "Користувач має 'view_cimy_extra_fields' можливості"
|
352 |
+
|
353 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
|
354 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:958
|
355 |
+
msgid "Send an email to the admin if the user changes its value"
|
356 |
+
msgstr "Надіслати повідомлення адміну, якщо користувач змінює своє значення"
|
357 |
+
|
358 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:647
|
359 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:963
|
360 |
+
msgid "Advanced options"
|
361 |
+
msgstr "Додаткові опції"
|
362 |
+
|
363 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
|
364 |
+
msgid "Clear"
|
365 |
+
msgstr "Очистити"
|
366 |
+
|
367 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:729
|
368 |
+
msgid "Invert selection"
|
369 |
+
msgstr "Все крім вибраного"
|
370 |
+
|
371 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
|
372 |
+
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
373 |
+
msgstr "Ви дійсно хочете видалити поле (-я) і всі дані, вставлені користувачами?"
|
374 |
+
|
375 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:736
|
376 |
+
msgid "WordPress Fields"
|
377 |
+
msgstr "Поля WordPress"
|
378 |
+
|
379 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:738
|
380 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1738
|
381 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1743
|
382 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
|
383 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:335
|
384 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:359
|
385 |
+
msgid "Extra Fields"
|
386 |
+
msgstr "Додаткові поля"
|
387 |
+
|
388 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
|
389 |
+
msgid "None!"
|
390 |
+
msgstr "Жодного!"
|
391 |
+
|
392 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:764
|
393 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
|
394 |
+
msgid "Order"
|
395 |
+
msgstr "Порядок"
|
396 |
+
|
397 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:967
|
398 |
+
msgid "Reset"
|
399 |
+
msgstr "Скидання"
|
400 |
+
|
401 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1014
|
402 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
403 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
404 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
405 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
|
406 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
|
407 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
|
408 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
409 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
410 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
411 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:532
|
412 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:543
|
413 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:548
|
414 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:589
|
415 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:597
|
416 |
+
msgid "ERROR"
|
417 |
+
msgstr "ПОМИЛКА"
|
418 |
+
|
419 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
|
420 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:383
|
421 |
+
msgid "SUCCESSFUL"
|
422 |
+
msgstr "УСПІШНО"
|
423 |
+
|
424 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1051
|
425 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1765
|
426 |
+
msgid "select"
|
427 |
+
msgstr "вибрати"
|
428 |
+
|
429 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1184
|
430 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1267
|
431 |
+
msgid "Users per page"
|
432 |
+
msgstr "Користувачів на сторінку"
|
433 |
+
|
434 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1186
|
435 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1269
|
436 |
+
msgid "Apply"
|
437 |
+
msgstr "Застосувати"
|
438 |
+
|
439 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1343
|
440 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
|
441 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
|
442 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
|
443 |
+
msgid "Users Extended"
|
444 |
+
msgstr "Користувачі (Розширене)"
|
445 |
+
|
446 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1351
|
447 |
+
#, php-format
|
448 |
+
msgid "Search results for “%s”"
|
449 |
+
msgstr "Шукати результати для “%s”"
|
450 |
+
|
451 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1389
|
452 |
+
#, php-format
|
453 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
454 |
+
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
455 |
+
|
456 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
457 |
+
msgid "Search Users"
|
458 |
+
msgstr "Пошук Користувачів"
|
459 |
+
|
460 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1421
|
461 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1422
|
462 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:663
|
463 |
+
msgid "Username"
|
464 |
+
msgstr "Ім'я користувача"
|
465 |
+
|
466 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1431
|
467 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1432
|
468 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:666
|
469 |
+
msgid "E-mail"
|
470 |
+
msgstr "Ел. пошта"
|
471 |
+
|
472 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1436
|
473 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1437
|
474 |
+
msgid "Role"
|
475 |
+
msgstr "Роль"
|
476 |
+
|
477 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1441
|
478 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1442
|
479 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:308
|
480 |
+
msgid "Website"
|
481 |
+
msgstr "Веб-сайт"
|
482 |
+
|
483 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1446
|
484 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1447
|
485 |
+
msgid "Posts"
|
486 |
+
msgstr "Дописи"
|
487 |
+
|
488 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1571
|
489 |
+
msgid "View posts by this author"
|
490 |
+
msgstr "Переглянути всі дописи цього автора"
|
491 |
+
|
492 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1596
|
493 |
+
msgid "Super Admin"
|
494 |
+
msgstr "Супер Адмін"
|
495 |
+
|
496 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1607
|
497 |
+
#, php-format
|
498 |
+
msgid "e-mail: %s"
|
499 |
+
msgstr "ел. пошта: %s"
|
500 |
+
|
501 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1718
|
502 |
+
msgid "Change"
|
503 |
+
msgstr "Зміна"
|
504 |
+
|
505 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1734
|
506 |
+
msgid "Update selected users"
|
507 |
+
msgstr "Оновлення вибраних користувачів"
|
508 |
+
|
509 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1755
|
510 |
+
msgid "Update"
|
511 |
+
msgstr "Оновлення"
|
512 |
+
|
513 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1770
|
514 |
+
msgid "OK"
|
515 |
+
msgstr "ОК"
|
516 |
+
|
517 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1771
|
518 |
+
msgid "Cancel"
|
519 |
+
msgstr "Скасувати"
|
520 |
+
|
521 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
|
522 |
+
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!"
|
523 |
+
msgstr "<strong>Примітка:</strong> цей сайт дозволяє персоналізувати ваш пароль; після реєстрації ви отримаєте повідомлення ел. поштою з іншим паролем, не хвилюйтесь про це!"
|
524 |
+
|
525 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
|
526 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:330
|
527 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
528 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
529 |
+
#, php-format
|
530 |
+
msgid "Username: %s"
|
531 |
+
msgstr "Ім'я користувача: %s"
|
532 |
+
|
533 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
|
534 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:331
|
535 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
536 |
+
#, php-format
|
537 |
+
msgid "Password: %s"
|
538 |
+
msgstr "Пароль: %s"
|
539 |
+
|
540 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
|
541 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:356
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
|
543 |
+
msgid "Options"
|
544 |
+
msgstr "Опції"
|
545 |
+
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:429
|
547 |
+
msgid "no fieldset"
|
548 |
+
msgstr "no fieldset"
|
549 |
+
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:433
|
551 |
+
msgid "All"
|
552 |
+
msgstr "Всі"
|
553 |
+
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:203
|
555 |
+
msgid "Password"
|
556 |
+
msgstr "Пароль"
|
557 |
+
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:224
|
559 |
+
msgid "Password confirmation"
|
560 |
+
msgstr "Підтвердження пароля"
|
561 |
+
|
562 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:245
|
563 |
+
msgid "First name"
|
564 |
+
msgstr "Ім'я"
|
565 |
+
|
566 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:266
|
567 |
+
msgid "Last name"
|
568 |
+
msgstr "Прізвище"
|
569 |
+
|
570 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:287
|
571 |
+
msgid "Nickname"
|
572 |
+
msgstr "Прізвисько"
|
573 |
+
|
574 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:329
|
575 |
+
msgid "AIM"
|
576 |
+
msgstr "AIM"
|
577 |
+
|
578 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:350
|
579 |
+
msgid "Yahoo IM"
|
580 |
+
msgstr "Yahoo IM"
|
581 |
+
|
582 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:371
|
583 |
+
msgid "Jabber / Google Talk"
|
584 |
+
msgstr "Jabber / Google Talk"
|
585 |
+
|
586 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:392
|
587 |
+
msgid "Biographical Info"
|
588 |
+
msgstr "Біографічна Інформація"
|
589 |
+
|
590 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:440
|
591 |
+
msgid "does not match."
|
592 |
+
msgstr "не збігається."
|
593 |
+
|
594 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:444
|
595 |
+
msgid "hasn’t a correct email syntax."
|
596 |
+
msgstr "неправильний синтаксис електронної пошти."
|
597 |
+
|
598 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
|
599 |
+
msgid "couldn’t be empty."
|
600 |
+
msgstr "не може бути порожнім."
|
601 |
+
|
602 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:477
|
603 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:486
|
604 |
+
msgid "isn’t correct"
|
605 |
+
msgstr "не правильно"
|
606 |
+
|
607 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
608 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:940
|
609 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:943
|
610 |
+
msgid "YES"
|
611 |
+
msgstr "ТАК"
|
612 |
+
|
613 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
|
614 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:940
|
615 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:943
|
616 |
+
msgid "NO"
|
617 |
+
msgstr "НІ"
|
618 |
+
|
619 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:488
|
620 |
+
msgid "should be"
|
621 |
+
msgstr "повинно бути"
|
622 |
+
|
623 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
|
624 |
+
msgid "should be an image."
|
625 |
+
msgstr "повинно бути зображення."
|
626 |
+
|
627 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
|
628 |
+
msgid "couldn’t have size less than"
|
629 |
+
msgstr "не може бути розміром менше ніж"
|
630 |
+
|
631 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
|
632 |
+
msgid "couldn’t have length less than"
|
633 |
+
msgstr "не може мати довжину менше ніж"
|
634 |
+
|
635 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:526
|
636 |
+
msgid "couldn’t have size different than"
|
637 |
+
msgstr "не може відрізнятися розміром від"
|
638 |
+
|
639 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:532
|
640 |
+
msgid "couldn’t have length different than"
|
641 |
+
msgstr "не може відрізнятися довжиною від"
|
642 |
+
|
643 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:543
|
644 |
+
msgid "couldn’t have size more than"
|
645 |
+
msgstr "не може бути розміром більше ніж"
|
646 |
+
|
647 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:548
|
648 |
+
msgid "couldn’t have length more than"
|
649 |
+
msgstr "не може мати довжину більш ніж"
|
650 |
+
|
651 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:589
|
652 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:597
|
653 |
+
msgid "Typed code is not correct."
|
654 |
+
msgstr "Введений код не правильний."
|
655 |
+
|
656 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:914
|
657 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:302
|
658 |
+
msgid "Please upload a file with one of the following extensions"
|
659 |
+
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
660 |
+
|
661 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:920
|
662 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:274
|
663 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:308
|
664 |
+
msgid "Please upload an image with one of the following extensions"
|
665 |
+
msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
|
666 |
+
|
667 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1093
|
668 |
+
msgid "Strength indicator"
|
669 |
+
msgstr "Індикатор сили"
|
670 |
+
|
671 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1094
|
672 |
+
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 ! \" ? $ % ^ & )."
|
673 |
+
msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ & )."
|
674 |
+
|
675 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1133
|
676 |
+
msgid "Change image"
|
677 |
+
msgstr "Змінити картинку"
|
678 |
+
|
679 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1136
|
680 |
+
msgid "Insert the code:"
|
681 |
+
msgstr "Вставте код:"
|
682 |
+
|
683 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1208
|
684 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1210
|
685 |
+
msgid "Confirm your registration"
|
686 |
+
msgstr "Підтвердіть реєстрацію"
|
687 |
+
|
688 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1216
|
689 |
+
msgid "A password will be e-mailed to you."
|
690 |
+
msgstr "Пароль буде направлений до вас ел. поштою."
|
691 |
+
|
692 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1224
|
693 |
+
msgid "← Back"
|
694 |
+
msgstr "← Назад"
|
695 |
+
|
696 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
697 |
+
#, php-format
|
698 |
+
msgid "File '%s' doesn't exist?"
|
699 |
+
msgstr "Файл '%s' не існує?"
|
700 |
+
|
701 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
702 |
+
msgid "The GD image library is not installed."
|
703 |
+
msgstr "Бібліотека GD image library не встановлена."
|
704 |
+
|
705 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
706 |
+
#, php-format
|
707 |
+
msgid "File '%s' is not an image."
|
708 |
+
msgstr "Файл '%s' не є зображенням."
|
709 |
+
|
710 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
711 |
+
#, php-format
|
712 |
+
msgid "New user registration on your site %s:"
|
713 |
+
msgstr "Реєстрація нового користувача на вашому сайті %s:"
|
714 |
+
|
715 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
716 |
+
#, php-format
|
717 |
+
msgid "E-mail: %s"
|
718 |
+
msgstr "Адреса ел. пошти: %s."
|
719 |
+
|
720 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
721 |
+
#, php-format
|
722 |
+
msgid "[%s] New User Registration"
|
723 |
+
msgstr "[%s] Реєстрація нового користувача"
|
724 |
+
|
725 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
726 |
+
#, php-format
|
727 |
+
msgid "[%s] Your username and password"
|
728 |
+
msgstr "[%s] Ваше ім'я користувача і пароль"
|
729 |
+
|
730 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
731 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
732 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
|
733 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
734 |
+
#, php-format
|
735 |
+
msgid "%s: %s"
|
736 |
+
msgstr "%s: %s"
|
737 |
+
|
738 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
739 |
+
#, php-format
|
740 |
+
msgid ""
|
741 |
+
"To activate your user, please click the following link:\n"
|
742 |
+
"\n"
|
743 |
+
"%s\n"
|
744 |
+
"\n"
|
745 |
+
"After you activate, you will receive *another email* with your login.\n"
|
746 |
+
"\n"
|
747 |
+
msgstr ""
|
748 |
+
"Щоб активувати користувача, будь ласка, перейдіть за наступним посиланням: \n"
|
749 |
+
"\n"
|
750 |
+
"%s\n"
|
751 |
+
"\n"
|
752 |
+
"Після активації, ви отримаєте *ще одне повідомлення* з вашим логіном.\n"
|
753 |
+
"\n"
|
754 |
+
|
755 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
756 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
757 |
+
msgid "Your account is now active!"
|
758 |
+
msgstr "Тепер ваш акаунт активний!"
|
759 |
+
|
760 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
761 |
+
#, php-format
|
762 |
+
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
763 |
+
msgstr "Ваш сайт за адресою <a href=\"%1$s\">%2$s</a> активний. Тепер ви можете увійти в свій сайт, використовуючи вибране вами ім'я користувача “%3$s”. Будь ласка, перевірте вашу ел. поштову скриньку на %4$s для отримання вашого пароля та логіну. Якщо ви не отримаєте ел. пошту, будь ласка, перевірте вашу папку зі спамом. Якщо ви все ще не отримали листа протягом години, ви можете <a href=\"%5$s\">скинути ваш пароль</a></p>."
|
764 |
+
|
765 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
766 |
+
msgid "An error occurred during the activation"
|
767 |
+
msgstr "Помилка при активації"
|
768 |
+
|
769 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
|
770 |
+
msgid "Invalid activation key."
|
771 |
+
msgstr "Неприпустимий ключ активації."
|
772 |
+
|
773 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:240
|
774 |
+
msgid "The site is already active."
|
775 |
+
msgstr "Сайт вже активний."
|
776 |
+
|
777 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:259
|
778 |
+
msgid "Could not create user"
|
779 |
+
msgstr "Не вдається створити користувача"
|
780 |
+
|
781 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:271
|
782 |
+
msgid "That username is already activated."
|
783 |
+
msgstr "Це ім'я користувача вже активовано."
|
784 |
+
|
785 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:291
|
786 |
+
msgid "That username is currently reserved but may be available in a couple of days."
|
787 |
+
msgstr "Це ім'я користувача наразі зарезервовано, але може стати доступним впродовж пари днів."
|
788 |
+
|
789 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:294
|
790 |
+
msgid "username and email used"
|
791 |
+
msgstr "ім'я користувача та адреса ел. пошти використані"
|
792 |
+
|
793 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:304
|
794 |
+
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."
|
795 |
+
msgstr "Ця адреса ел. пошти вже використовується. Будь ласка, перевірте вашу поштову скриньку на предмет листа активації. Вона стане доступна через пару днів, якщо нічого не робити."
|
796 |
+
|
797 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:44
|
798 |
+
msgid "WordPress Fields table emptied"
|
799 |
+
msgstr "Таблиця WordPress Fields очищена"
|
800 |
+
|
801 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:49
|
802 |
+
msgid "WordPress Fields table deleted"
|
803 |
+
msgstr "Таблиця WordPress Fields видалена"
|
804 |
+
|
805 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:58
|
806 |
+
msgid "Extra Fields table emptied"
|
807 |
+
msgstr "Таблиця Extra Fields очищена"
|
808 |
+
|
809 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:63
|
810 |
+
msgid "Extra Fields table deleted"
|
811 |
+
msgstr "Таблиця Extra Fields видалена"
|
812 |
+
|
813 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:72
|
814 |
+
msgid "Users Data table emptied"
|
815 |
+
msgstr "Таблиця користувацьких даних очищена"
|
816 |
+
|
817 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:77
|
818 |
+
msgid "Users Data table deleted"
|
819 |
+
msgstr "Таблиця користувацьких даних видалена"
|
820 |
+
|
821 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:88
|
822 |
+
msgid "Options set to default values"
|
823 |
+
msgstr "Опції встановлені за замовчуванням"
|
824 |
+
|
825 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:94
|
826 |
+
msgid "Options deleted"
|
827 |
+
msgstr "Опції видалені"
|
828 |
+
|
829 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:248
|
830 |
+
msgid "Options changed"
|
831 |
+
msgstr "Опції змінено"
|
832 |
+
|
833 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
834 |
+
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
835 |
+
msgstr "Ця операція дозволить створити/обновити всі відсутні таблиці/опції, хочете продовжити?"
|
836 |
+
|
837 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:365
|
838 |
+
msgid "Support the Cimy Project"
|
839 |
+
msgstr "Підтримка проекту Cimy"
|
840 |
+
|
841 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
|
842 |
+
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!"
|
843 |
+
msgstr "Цей плагін є результатом багатьох годин розробки, щоб додати нові функції, підтримати нові версії WordPress і виправити помилки, будь ласка, надайте спонсорську допомогу, якщо врятував вас від витрат усіх цих годин!"
|
844 |
+
|
845 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:397
|
846 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
847 |
+
msgid "Save Changes"
|
848 |
+
msgstr "Зберегти зміни"
|
849 |
+
|
850 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:398
|
851 |
+
msgid "General"
|
852 |
+
msgstr "Загальне"
|
853 |
+
|
854 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
|
855 |
+
msgid "installed is"
|
856 |
+
msgstr "встановлено"
|
857 |
+
|
858 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:410
|
859 |
+
msgid "OPTIONS DELETED!"
|
860 |
+
msgstr "ОПЦІЇ ВИДАЛЕНІ!"
|
861 |
+
|
862 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:413
|
863 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
|
864 |
+
msgid "Fix the problem"
|
865 |
+
msgstr "Виправити проблеми"
|
866 |
+
|
867 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:416
|
868 |
+
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
869 |
+
msgstr "ВЕРСІЇ НЕ ЗБІГАЮТЬСЯ! Це тому що ви не деактивували і повторно не активували плагін після оновлення! Це може створити проблеми ..."
|
870 |
+
|
871 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
|
872 |
+
msgid "Picture/Avatar upload"
|
873 |
+
msgstr "Завантаження картинки/аватару "
|
874 |
+
|
875 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:428
|
876 |
+
msgid "is created and writable"
|
877 |
+
msgstr "створено з перезаписуванням"
|
878 |
+
|
879 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:430
|
880 |
+
msgid "is NOT created or webserver does NOT have permission to write on it"
|
881 |
+
msgstr "НЕ створено або веб-сервер НЕ має дозволу писати на ньому"
|
882 |
+
|
883 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:437
|
884 |
+
msgid "Show all fields in the welcome email"
|
885 |
+
msgstr "Показати всі поля у вітальному повідомлені"
|
886 |
+
|
887 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:441
|
888 |
+
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
889 |
+
msgstr "повідомлення, відправлене на адміністратора і користувача при реєстрації, матиме всі поля"
|
890 |
+
|
891 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
|
892 |
+
msgid "Enable email confirmation"
|
893 |
+
msgstr "Включити підтвердження ел. поштою"
|
894 |
+
|
895 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
|
896 |
+
msgid "user that registers should confirm its email address via a link click"
|
897 |
+
msgstr "користувач, який реєструється, має підтвердити свою адресу ел. пошти кліком за посилання"
|
898 |
+
|
899 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:455
|
900 |
+
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
901 |
+
msgstr "<strong> увага:</strong> ця функція, якщо включена, автоматично деактивує (тільки під час реєстрації) всі завантажені поля: файл, малюнок, аватар"
|
902 |
+
|
903 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:462
|
904 |
+
msgid "Enable form confirmation"
|
905 |
+
msgstr "Включити форму підтвердження"
|
906 |
+
|
907 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:466
|
908 |
+
msgid "a summary of the registration form will be presented to the user"
|
909 |
+
msgstr "резюме реєстраційної форми буде представлено користувачеві"
|
910 |
+
|
911 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
|
912 |
+
msgid "Customize welcome email sent to the new user"
|
913 |
+
msgstr "Налаштувати вітальне повідомлення для нового користувача"
|
914 |
+
|
915 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:476
|
916 |
+
msgid "if you change or remove the placeholders then the email won't have the correct information"
|
917 |
+
msgstr "якщо змінити або видалити вставку, то ел. лист не буде мати правильну інформацію"
|
918 |
+
|
919 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
|
920 |
+
msgid "Redirect to the source"
|
921 |
+
msgstr "Перенаправлення на джерело"
|
922 |
+
|
923 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
924 |
+
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
925 |
+
msgstr "після реєстрації або підтвердження користувача буде перенаправлено на адресу, де він був, перш ніж натиснути на посилання реєстрації"
|
926 |
+
|
927 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
|
928 |
+
msgid "No captcha"
|
929 |
+
msgstr "Нема КАПЧА"
|
930 |
+
|
931 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
|
932 |
+
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
933 |
+
msgstr "Включити <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
934 |
+
|
935 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
|
936 |
+
msgid "Public KEY"
|
937 |
+
msgstr "Відкритий ключ"
|
938 |
+
|
939 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
940 |
+
msgid "Private KEY"
|
941 |
+
msgstr "Закритий ключ"
|
942 |
+
|
943 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
|
944 |
+
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
945 |
+
msgstr "Включити <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
946 |
+
|
947 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
|
948 |
+
msgid "This captcha is probably weaker, but is easier for users"
|
949 |
+
msgstr "Ця КАПЧА ймовірно, слабкіша, але простіша для користувачів"
|
950 |
+
|
951 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
952 |
+
#, php-format
|
953 |
+
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>"
|
954 |
+
msgstr "<strong>УВАГА: для активації цієї КАПЧА скачати <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">цей пакет</a> і розпакувати його під %s</strong>"
|
955 |
+
|
956 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:532
|
957 |
+
msgid "Change login/registration page logo"
|
958 |
+
msgstr "Зміна логотипу на сторінці логіну/реєстрації"
|
959 |
+
|
960 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
961 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:450
|
962 |
+
msgid "Delete the picture"
|
963 |
+
msgstr "Видалити зображення"
|
964 |
+
|
965 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
966 |
+
msgid "Maximum recommended logo width is 328px, but any height should work."
|
967 |
+
msgstr "Максимальна рекомендована ширина логотипу 328px, але будь-яка висота повинна працювати."
|
968 |
+
|
969 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:546
|
970 |
+
msgid "Database"
|
971 |
+
msgstr "База даних"
|
972 |
+
|
973 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
974 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
|
975 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
976 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
|
977 |
+
msgid "select action"
|
978 |
+
msgstr "вибрати дію"
|
979 |
+
|
980 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:556
|
981 |
+
msgid "Default values"
|
982 |
+
msgstr "Значення за замовчуванням"
|
983 |
+
|
984 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
985 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:574
|
986 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:591
|
987 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
|
988 |
+
msgid "Delete"
|
989 |
+
msgstr "Видалити"
|
990 |
+
|
991 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
|
992 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
|
993 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:595
|
994 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
995 |
+
msgid "NOT PRESENT"
|
996 |
+
msgstr "ВІДСУТНЄ"
|
997 |
+
|
998 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
|
999 |
+
msgid "WordPress Fields table"
|
1000 |
+
msgstr "Таблиця WordPress Fields"
|
1001 |
+
|
1002 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
|
1003 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
|
1004 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
|
1005 |
+
msgid "Empty"
|
1006 |
+
msgstr "Порожнє"
|
1007 |
+
|
1008 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:583
|
1009 |
+
msgid "Extra Fields table"
|
1010 |
+
msgstr "Таблиця Extra Fields"
|
1011 |
+
|
1012 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:600
|
1013 |
+
msgid "Users Data table"
|
1014 |
+
msgstr "Таблиця Даних Користувачів"
|
1015 |
+
|
1016 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
|
1017 |
+
msgid "all data inserted by users in all and only extra fields"
|
1018 |
+
msgstr "всі дані внесені користувачами в усі та тільки додаткові поля"
|
1019 |
+
|
1020 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
|
1021 |
+
msgid "Force tables creation"
|
1022 |
+
msgstr "Примусове створення таблиць"
|
1023 |
+
|
1024 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
|
1025 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
1026 |
+
msgstr "еквівалентно деактивуванню та активуванню плагіна, ніякі інші операції не будуть виконуватися"
|
1027 |
+
|
1028 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
|
1029 |
+
msgid "User Profile"
|
1030 |
+
msgstr "Профіль користувача"
|
1031 |
+
|
1032 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:630
|
1033 |
+
msgid "Extra Fields section title"
|
1034 |
+
msgstr "Титул розділу Додаткових Полів "
|
1035 |
+
|
1036 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:634
|
1037 |
+
msgid "Fieldset's titles, separates with comma"
|
1038 |
+
msgstr "Назви груп полів (fieldset), розділені комами"
|
1039 |
+
|
1040 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:634
|
1041 |
+
msgid "example: title1,title2,title3"
|
1042 |
+
msgstr "Приклад: заголовок1, заголовок2, заголовок3"
|
1043 |
+
|
1044 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
|
1045 |
+
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
1046 |
+
msgstr "<strong> увага:</strong>якщо ви зміните порядок або видалите групу полів, вам може знадобитися встановлення всіх додаткових полів знову"
|
1047 |
+
|
1048 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
|
1049 |
+
msgid "Authors & Users Extended"
|
1050 |
+
msgstr "Автори і Користувачі (Розширене)"
|
1051 |
+
|
1052 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
1053 |
+
msgid "Hide username field"
|
1054 |
+
msgstr "Приховати поле з іменем користувача"
|
1055 |
+
|
1056 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
|
1057 |
+
msgid "Hide name field"
|
1058 |
+
msgstr "Приховати поле з іменем"
|
1059 |
+
|
1060 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:655
|
1061 |
+
msgid "Hide email field"
|
1062 |
+
msgstr "Приховати поле ел. пошти"
|
1063 |
+
|
1064 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
|
1065 |
+
msgid "Hide role field"
|
1066 |
+
msgstr "Приховати поле ролі"
|
1067 |
+
|
1068 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
1069 |
+
msgid "Hide website field"
|
1070 |
+
msgstr "Приховати поле веб-сайту"
|
1071 |
+
|
1072 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:667
|
1073 |
+
msgid "Hide n. posts field"
|
1074 |
+
msgstr "Приховати поле з № допису"
|
1075 |
+
|
1076 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:672
|
1077 |
+
msgid "WordPress hidden fields"
|
1078 |
+
msgstr "Приховані поля WordPress"
|
1079 |
+
|
1080 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
|
1081 |
+
msgid "Show password"
|
1082 |
+
msgstr "Показати пароль"
|
1083 |
+
|
1084 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
|
1085 |
+
msgid "Show confirmation password"
|
1086 |
+
msgstr "Показати підтвердження пароля"
|
1087 |
+
|
1088 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:683
|
1089 |
+
msgid "Show password strength meter"
|
1090 |
+
msgstr "Показати оцінку сили пароля"
|
1091 |
+
|
1092 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
|
1093 |
+
msgid "Show first name"
|
1094 |
+
msgstr "Показати ім'я"
|
1095 |
+
|
1096 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:691
|
1097 |
+
msgid "Show last name"
|
1098 |
+
msgstr "Показати прізвище"
|
1099 |
+
|
1100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:695
|
1101 |
+
msgid "Show nickname"
|
1102 |
+
msgstr "Показати прізвисько"
|
1103 |
+
|
1104 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
1105 |
+
msgid "Show website"
|
1106 |
+
msgstr "Показати веб-сайт"
|
1107 |
+
|
1108 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:703
|
1109 |
+
msgid "Show AIM"
|
1110 |
+
msgstr "Показати AIM"
|
1111 |
+
|
1112 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
|
1113 |
+
msgid "Show Yahoo IM"
|
1114 |
+
msgstr "Показати Yahoo IM"
|
1115 |
+
|
1116 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:711
|
1117 |
+
msgid "Show Jabber / Google Talk"
|
1118 |
+
msgstr "Показати Jabber / Google Talk"
|
1119 |
+
|
1120 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
|
1121 |
+
msgid "Show Biographical Info"
|
1122 |
+
msgstr "Показати Біографічну Інформацію"
|
1123 |
+
|
1124 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:446
|
1125 |
+
msgid "Delete the file"
|
1126 |
+
msgstr "Видалити файл"
|
1127 |
+
|
1128 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:447
|
1129 |
+
msgid "Update the file"
|
1130 |
+
msgstr "Оновлення файлу"
|
1131 |
+
|
1132 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:451
|
1133 |
+
msgid "Update the picture"
|
1134 |
+
msgstr "Оновлення картинки"
|
1135 |
+
|
1136 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:471
|
1137 |
+
msgid "Picture URL:"
|
1138 |
+
msgstr "URL картинки:"
|
1139 |
+
|
1140 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:720
|
1141 |
+
#, php-format
|
1142 |
+
msgid "%s previous value: %s new value: %s"
|
1143 |
+
msgstr "Попереднє значення %s: нове значення %s: % s."
|
1144 |
+
|
1145 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
|
1146 |
+
#, php-format
|
1147 |
+
msgid "%s (%s) has changed one or more fields"
|
1148 |
+
msgstr "%s (%s) змінило одне або кілька полів"
|
1149 |
+
|
1150 |
+
#~ msgid ""
|
1151 |
+
#~ "You are about to permanently delete the selected items.\n"
|
1152 |
+
#~ " 'Cancel' to stop, 'OK' to delete."
|
1153 |
+
#~ msgstr ""
|
1154 |
+
#~ "Ви збираєтеся видалити вибрані елементи назавжди.\n"
|
1155 |
+
#~ "'Скасувати', щоб зупинити, 'OK', щоб видалити."
|
1156 |
+
|
1157 |
+
#~ msgid "Very weak"
|
1158 |
+
#~ msgstr "Дуже слабкий"
|
1159 |
+
|
1160 |
+
#~ msgid "Weak"
|
1161 |
+
#~ msgstr "Слабкий"
|
1162 |
+
|
1163 |
+
#~ msgid "Strong"
|
1164 |
+
#~ msgstr "Сильний"
|
1165 |
+
|
1166 |
+
#~ msgid "Mismatch"
|
1167 |
+
#~ msgstr "Неузгодженість"
|
1168 |
+
|
1169 |
+
#~ msgid "A&U Extended"
|
1170 |
+
#~ msgstr "A и продвинутые П "
|
1171 |
+
|
1172 |
+
#, fuzzy
|
1173 |
+
#~ msgid "Users Extended List"
|
1174 |
+
#~ msgstr "Список Авторов и продвинутых пользователей"
|
1175 |
+
|
1176 |
+
#~ msgid "Authors & Users Extended List"
|
1177 |
+
#~ msgstr "Список Авторов и продвинутых пользователей"
|
1178 |
+
|
1179 |
+
#, fuzzy
|
1180 |
+
#~ msgid "Username:"
|
1181 |
+
#~ msgstr "Имя пользователя"
|
1182 |
+
|
1183 |
+
#~ msgid "Disable get_cimyFieldValue function"
|
1184 |
+
#~ msgstr "Отключить функцию get_cimyFieldValue"
|
1185 |
+
|
1186 |
+
#~ msgid "leave disabled if you don't know what to do"
|
1187 |
+
#~ msgstr "оставьте отключенной, если не знаете, что делать"
|
1188 |
+
|
1189 |
+
#~ msgid "Update Options »"
|
1190 |
+
#~ msgstr "Обновление настроек »"
|
1191 |
+
|
1192 |
+
#~ msgid "Hide actions button"
|
1193 |
+
#~ msgstr "Скрыть кнопку действия"
|
1194 |
+
|
1195 |
+
#~ msgid "User ID"
|
1196 |
+
#~ msgstr "ID пользователя"
|
1197 |
+
|
1198 |
+
#~ msgid "Edit"
|
1199 |
+
#~ msgstr "Редактировать"
|
1200 |
+
|
1201 |
+
#~ msgid "label"
|
1202 |
+
#~ msgstr "метка"
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra
|
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 3.3
|
8 |
-
Stable tag: 2.3.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.1
|
7 |
Tested up to: 3.3
|
8 |
+
Stable tag: 2.3.5
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|