Cimy User Extra Fields - Version 2.6.1

Version Description

Download this release

Release Info

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

Code changes from version 2.6.0 to 2.6.1

README_OFFICIAL.txt CHANGED
@@ -60,43 +60,46 @@ Wordpress MultiSite unique registration:
60
 
61
  Rules are:
62
 
63
- * min/exact/max length admitted
64
- [only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
 
 
 
65
 
66
  * field can be empty
67
- [only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file, date]
68
 
69
  * check for e-mail address syntax
70
- [only for text, textarea, textarea-rich, password]
71
 
72
  * field can be modified after the registration
73
- [only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file, date]
74
- [for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
75
 
76
  * field equal to some value (for example accept terms and conditions)
77
- [all except avatar by default set to 512]
78
 
79
  * equal to can be or not case sensitive
80
- [only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
81
 
82
  Visualization rules
83
  * field can be hidden during registration
84
- [all except the email address]
85
 
86
  * field can be hidden in user's profile
87
- [all except the WordPress fields]
88
 
89
  * field can be hidden in Users Extended page
90
- [all]
91
 
92
  * field can be hidden in Search Engine (only if you installed the template)
93
- [all]
94
 
95
  * field can be hidden in Blog's public page (only if you installed the template)
96
- [all]
97
 
98
  * all visualization rules can be overridden if an user has certain rights (default=no override)
99
- [all]
100
 
101
  New fields will be visible everywhere by default, a part some WordPress fields.
102
 
@@ -628,6 +631,15 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
628
 
629
 
630
  CHANGELOG:
 
 
 
 
 
 
 
 
 
631
  v2.6.0 - 03/09/2013
632
  - Added date picker support, extra field's type is called: 'date'
633
  - Fixed PHP warning 'Only variables should be passed by reference on line 959' (regressed on v2.5.2) (thanks to badarong for the patch)
60
 
61
  Rules are:
62
 
63
+ * min/max length admitted
64
+ [only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file, date]
65
+
66
+ * exact length admitted
67
+ [only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
68
 
69
  * field can be empty
70
+ [only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file, date]
71
 
72
  * check for e-mail address syntax
73
+ [only for text, textarea, textarea-rich, password]
74
 
75
  * field can be modified after the registration
76
+ [only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file, date]
77
+ [for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
78
 
79
  * field equal to some value (for example accept terms and conditions)
80
+ [all except avatar by default set to 512]
81
 
82
  * equal to can be or not case sensitive
83
+ [only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
84
 
85
  Visualization rules
86
  * field can be hidden during registration
87
+ [all except the email address]
88
 
89
  * field can be hidden in user's profile
90
+ [all except the WordPress fields]
91
 
92
  * field can be hidden in Users Extended page
93
+ [all]
94
 
95
  * field can be hidden in Search Engine (only if you installed the template)
96
+ [all]
97
 
98
  * field can be hidden in Blog's public page (only if you installed the template)
99
+ [all]
100
 
101
  * all visualization rules can be overridden if an user has certain rights (default=no override)
102
+ [all]
103
 
104
  New fields will be visible everywhere by default, a part some WordPress fields.
105
 
631
 
632
 
633
  CHANGELOG:
634
+ v2.6.1 - 30/09/2013
635
+ - Added dropdowns for the year and the month selectors to the date picker
636
+ - Added Min and Max date support for the new 'date' extra field (no backend support yet)
637
+ - Updated Securimage Captcha to v3.5.1
638
+ - Fixed date picker popup was appearing in the registration for all the extra fields below the date itself (thanks to Claudio)
639
+ - Fixed PHP error when user creation fails with email confirmation enabled (thanks to Francesco)
640
+ - Added Persian translation (Negin Nickparsa)
641
+ - Added Czech translation (Tomas Hegr)
642
+
643
  v2.6.0 - 03/09/2013
644
  - Added date picker support, extra field's type is called: 'date'
645
  - Fixed PHP warning 'Only variables should be passed by reference on line 959' (regressed on v2.5.2) (thanks to badarong for the patch)
cimy_uef_admin.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  function cimy_admin_define_extra_fields() {
4
- global $wpdb, $wpdb_fields_table, $wpdb_wp_fields_table, $rule_canbeempty, $rule_email, $rule_maxlen, $rule_maxlen_needed, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $rule_equalto, $rule_equalto_case_sensitive, $cimy_uef_domain, $cuef_plugin_path, $cimy_uef_file_types, $rule_equalto_regex;
5
 
6
  if (!cimy_check_admin('manage_options'))
7
  return;
@@ -248,18 +248,45 @@ function cimy_admin_define_extra_fields() {
248
 
249
  $exact_or_max_length_capton = __("Exact or Max size", $cimy_uef_domain)." (KB)";
250
  }
251
- else
 
 
 
 
 
 
 
 
252
  $maxLen = $max_length_value;
 
253
  /* end overwrite previous values */
254
-
255
- if (!empty($minlen))
256
- $store_rule['min_length'] = intval($_POST['minlength'][$field_order]);
257
-
258
- if (!empty($exactlen))
259
- $store_rule['exact_length'] = intval($_POST['exactlength'][$field_order]);
260
 
261
- if (!empty($maxlen))
262
- $store_rule['max_length'] = intval($_POST['maxlength'][$field_order]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
 
264
  $store_rule['can_be_empty'] = empty($_POST['empty'][$field_order]) ? false : true;
265
  $store_rule['edit'] = $_POST['edit'][$field_order];
@@ -303,20 +330,22 @@ function cimy_admin_define_extra_fields() {
303
  if ((!empty($maxlen) || !empty($minlen)) && !empty($exactlen))
304
  $errors['exactlength1'] = __("If you select", $cimy_uef_domain)." ".$exact_length_caption." ".__("you cannot select Min or Max", $cimy_uef_domain);
305
 
306
- // MIN LEN
307
- if (!empty($minlen))
308
- if (($store_rule['min_length'] < $minLen) || ($store_rule['min_length'] > $maxLen))
309
- $errors['minlength3'] = $min_length_caption." ".__("should be in the range of", $cimy_uef_domain)." ".$minLen. "-".$maxLen;
 
310
 
311
- // EXACT LEN
312
- if (!empty($exactlen))
313
- if (($store_rule['exact_length'] < $minLen) || ($store_rule['exact_length'] > $maxLen))
314
- $errors['exactlength3'] = $exact_length_caption." ".__("should be in the range of", $cimy_uef_domain)." ".$minLen. "-".$maxLen;
315
 
316
- // MAX LEN
317
- if (!empty($maxlen))
318
- if (($store_rule['max_length'] < $minLen) || ($store_rule['max_length'] > $maxLen))
319
- $errors['maxlength3'] = $max_length_caption." ".__("should be in the range of", $cimy_uef_domain)." ".$minLen. "-".$maxLen;
 
320
  }
321
  else {
322
  $minlen = "";
@@ -546,6 +575,9 @@ function cimy_admin_define_extra_fields() {
546
  $selected_input["value"] = esc_html($selected_input["value"]);
547
  $selected_input["label"] = esc_html($selected_input["label"]);
548
  $selected_input["desc"] = esc_html($selected_input["desc"]);
 
 
 
549
  $selected_input["equal_to"] = esc_attr($selected_input["equal_to"]);
550
  ?>
551
 
@@ -560,6 +592,7 @@ function cimy_admin_define_extra_fields() {
560
  <li><?php _e("With <strong>registration-date</strong>: <em>equal TO</em> means date and time format", $cimy_uef_domain); ?></li>
561
  <li><?php _e("With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels", $cimy_uef_domain); ?></li>
562
  <li><?php _e("With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc", $cimy_uef_domain); ?></li>
 
563
  </ul>
564
  <br />
565
 
@@ -602,15 +635,15 @@ function cimy_admin_define_extra_fields() {
602
  <td style="vertical-align: middle;">
603
  <!-- MIN LENGTH -->
604
  <input type="checkbox" name="minlen[0]" id="minlen[0]" value="1"<?php echo $selected_input["minlen"]; ?> />
605
- <label for="minlen[0]"><?php echo $min_length_caption; ?> [1-<?php echo $maxLen; ?>]:</label> &nbsp;&nbsp;&nbsp;<input type="text" name="minlength[0]" value="<?php echo $selected_input["min_length"]; ?>" maxlength="5" size="5" /><br />
606
 
607
  <!-- EXACT LENGTH -->
608
  <input type="checkbox" name="exactlen[0]" id="exactlen[0]" value="1"<?php echo $selected_input["exactlen"]; ?> />
609
- <label for="exactlen[0]"><?php echo $exact_length_caption; ?> [1-<?php echo $maxLen; ?>]:</label> <input type="text" name="exactlength[0]" value="<?php echo $selected_input["exact_length"]; ?>" maxlength="5" size="5" /><br />
610
 
611
  <!-- MAX LENGTH -->
612
  <input type="checkbox" name="maxlen[0]" id="maxlen[0]" value="1"<?php echo $selected_input["maxlen"]; ?> />
613
- <label for="maxlen[0]"><?php echo $max_length_caption; ?> [1-<?php echo $maxLen; ?>]:</label> &nbsp;&nbsp;<input type="text" name="maxlength[0]" value="<?php echo $selected_input["max_length"]; ?>" maxlength="5" size="5" /><br />
614
 
615
  <input type="checkbox" name="empty[0]" id="empty[0]" value="1"<?php echo $selected_input["empty"]; ?> />
616
  <label for="empty[0]"><?php _e("Can be empty", $cimy_uef_domain); ?></label><br />
@@ -855,6 +888,9 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
855
  else
856
  $equalTo = "";
857
 
 
 
 
858
  $equalTo = esc_attr($equalTo);
859
  $advanced_options = $rules['advanced_options'];
860
 
@@ -864,14 +900,25 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
864
  $max_length_caption = __("Max size", $cimy_uef_domain)." (KB)";
865
 
866
  // overwrite max length but in another variable otherwise (bug)
867
- $max_length_value_caption = $max_size_file;
 
 
 
 
 
 
 
 
 
 
868
  }
869
  else {
870
  $min_length_caption = __("Min length", $cimy_uef_domain);
871
  $exact_length_caption = __("Exact length", $cimy_uef_domain);
872
  $max_length_caption = __("Max length", $cimy_uef_domain);
873
 
874
- $max_length_value_caption = $max_length_value;
 
875
  }
876
 
877
  $style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
@@ -925,15 +972,15 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
925
  <td style="vertical-align: middle;">
926
  <!-- MIN LENGTH -->
927
  <input type="checkbox" name="minlen[<?php echo $order ?>]" id="minlen[<?php echo $order ?>]" value="1"<?php checked(true, isset($rules['min_length']), true); disabled(false, in_array($type, $rule_maxlen), true); ?> />
928
- <label for="minlen[<?php echo $order ?>]"><?php echo $min_length_caption; ?> [1-<?php echo $max_length_value_caption; ?>]:</label> &nbsp;&nbsp;&nbsp;<input type="text" name="minlength[<?php echo $order ?>]" value="<?php echo $minLength ?>" maxlength="5" size="5"<?php disabled(false, in_array($type, $rule_maxlen), true); ?> /><br />
929
 
930
  <!-- EXACT LENGTH -->
931
  <input type="checkbox" name="exactlen[<?php echo $order ?>]" id="exactlen[<?php echo $order ?>]" value="1"<?php checked(true, isset($rules['exact_length']), true); disabled(false, in_array($type, $rule_maxlen), true); ?> />
932
- <label for="exactlen[<?php echo $order ?>]"><?php echo $exact_length_caption; ?> [1-<?php echo $max_length_value_caption; ?>]:</label> <input type="text" name="exactlength[<?php echo $order ?>]" value="<?php echo $exactLength ?>" maxlength="5" size="5"<?php disabled(false, in_array($type, $rule_maxlen), true); ?> /><br />
933
 
934
  <!-- MAX LENGTH -->
935
  <input type="checkbox" name="maxlen[<?php echo $order ?>]" id="maxlen[<?php echo $order ?>]" value="1"<?php checked(true, isset($rules['max_length']), true); disabled(false, in_array($type, $rule_maxlen), true); ?> />
936
- <label for="maxlen[<?php echo $order ?>]"><?php echo $max_length_caption; ?> [1-<?php echo $max_length_value_caption; ?>]:</label> &nbsp;&nbsp;<input type="text" name="maxlength[<?php echo $order ?>]" value="<?php echo $maxLength ?>" maxlength="5" size="5"<?php disabled(false, in_array($type, $rule_maxlen), true); ?> /><br />
937
 
938
  <input type="checkbox" name="empty[<?php echo $order ?>]" id="empty[<?php echo $order ?>]" value="1"<?php checked(true, $rules['can_be_empty'], true); disabled(false, in_array($type, $rule_canbeempty), true); ?> />
939
  <label for="empty[<?php echo $order ?>]"><?php _e("Can be empty", $cimy_uef_domain); ?></label><br />
1
  <?php
2
 
3
  function cimy_admin_define_extra_fields() {
4
+ global $wpdb, $wpdb_fields_table, $wpdb_wp_fields_table, $rule_canbeempty, $rule_email, $rule_maxlen, $rule_maxlen_needed, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $rule_equalto, $rule_equalto_case_sensitive, $cimy_uef_domain, $cuef_plugin_path, $cimy_uef_file_types, $rule_equalto_regex, $rule_maxlen_is_str;
5
 
6
  if (!cimy_check_admin('manage_options'))
7
  return;
248
 
249
  $exact_or_max_length_capton = __("Exact or Max size", $cimy_uef_domain)." (KB)";
250
  }
251
+ else if ($type == "date") {
252
+ $min_length_caption = __("Min date", $cimy_uef_domain)." (days|months|years)";
253
+ $exact_length_caption = __("Exact date", $cimy_uef_domain)." (days|months|years)";
254
+ $max_length_caption = __("Max date", $cimy_uef_domain)." (days|months|years)";
255
+
256
+ $minLen = "-0d0m20y";
257
+ $maxLen = "+0d0m20y";
258
+ }
259
+ else {
260
  $maxLen = $max_length_value;
261
+ }
262
  /* end overwrite previous values */
 
 
 
 
 
 
263
 
264
+ if (!empty($minlen)) {
265
+ if (in_array($type, $rule_maxlen_is_str)) {
266
+ $store_rule['min_length'] = strval($_POST['minlength'][$field_order]);
267
+ }
268
+ else {
269
+ $store_rule['min_length'] = intval($_POST['minlength'][$field_order]);
270
+ }
271
+ }
272
+
273
+ if (!empty($exactlen)) {
274
+ if (in_array($type, $rule_maxlen_is_str)) {
275
+ $store_rule['exact_length'] = strval($_POST['exactlength'][$field_order]);
276
+ }
277
+ else {
278
+ $store_rule['exact_length'] = intval($_POST['exactlength'][$field_order]);
279
+ }
280
+ }
281
+
282
+ if (!empty($maxlen)) {
283
+ if (in_array($type, $rule_maxlen_is_str)) {
284
+ $store_rule['max_length'] = strval($_POST['maxlength'][$field_order]);
285
+ }
286
+ else {
287
+ $store_rule['max_length'] = intval($_POST['maxlength'][$field_order]);
288
+ }
289
+ }
290
 
291
  $store_rule['can_be_empty'] = empty($_POST['empty'][$field_order]) ? false : true;
292
  $store_rule['edit'] = $_POST['edit'][$field_order];
330
  if ((!empty($maxlen) || !empty($minlen)) && !empty($exactlen))
331
  $errors['exactlength1'] = __("If you select", $cimy_uef_domain)." ".$exact_length_caption." ".__("you cannot select Min or Max", $cimy_uef_domain);
332
 
333
+ if (!in_array($type, $rule_maxlen_is_str)) {
334
+ // MIN LEN
335
+ if (!empty($minlen))
336
+ if (($store_rule['min_length'] < $minLen) || ($store_rule['min_length'] > $maxLen))
337
+ $errors['minlength3'] = $min_length_caption." ".__("should be in the range of", $cimy_uef_domain)." ".$minLen. "-".$maxLen;
338
 
339
+ // EXACT LEN
340
+ if (!empty($exactlen))
341
+ if (($store_rule['exact_length'] < $minLen) || ($store_rule['exact_length'] > $maxLen))
342
+ $errors['exactlength3'] = $exact_length_caption." ".__("should be in the range of", $cimy_uef_domain)." ".$minLen. "-".$maxLen;
343
 
344
+ // MAX LEN
345
+ if (!empty($maxlen))
346
+ if (($store_rule['max_length'] < $minLen) || ($store_rule['max_length'] > $maxLen))
347
+ $errors['maxlength3'] = $max_length_caption." ".__("should be in the range of", $cimy_uef_domain)." ".$minLen. "-".$maxLen;
348
+ }
349
  }
350
  else {
351
  $minlen = "";
575
  $selected_input["value"] = esc_html($selected_input["value"]);
576
  $selected_input["label"] = esc_html($selected_input["label"]);
577
  $selected_input["desc"] = esc_html($selected_input["desc"]);
578
+ $selected_input["min_length"] = esc_html($selected_input["min_length"]);
579
+ $selected_input["exact_length"] = esc_attr($selected_input["exact_length"]);
580
+ $selected_input["max_length"] = esc_attr($selected_input["max_length"]);
581
  $selected_input["equal_to"] = esc_attr($selected_input["equal_to"]);
582
  ?>
583
 
592
  <li><?php _e("With <strong>registration-date</strong>: <em>equal TO</em> means date and time format", $cimy_uef_domain); ?></li>
593
  <li><?php _e("With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels", $cimy_uef_domain); ?></li>
594
  <li><?php _e("With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc", $cimy_uef_domain); ?></li>
595
+ <li><?php _e("With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date", $cimy_uef_domain); ?></li>
596
  </ul>
597
  <br />
598
 
635
  <td style="vertical-align: middle;">
636
  <!-- MIN LENGTH -->
637
  <input type="checkbox" name="minlen[0]" id="minlen[0]" value="1"<?php echo $selected_input["minlen"]; ?> />
638
+ <label for="minlen[0]"><?php echo $min_length_caption; ?> [<?php echo $minLen."-".$maxLen; ?>]:</label> &nbsp;&nbsp;&nbsp;<input type="text" name="minlength[0]" value="<?php echo $selected_input["min_length"]; ?>" maxlength="30" size="20" /><br />
639
 
640
  <!-- EXACT LENGTH -->
641
  <input type="checkbox" name="exactlen[0]" id="exactlen[0]" value="1"<?php echo $selected_input["exactlen"]; ?> />
642
+ <label for="exactlen[0]"><?php echo $exact_length_caption; ?> [<?php echo $minLen."-".$maxLen; ?>]:</label> <input type="text" name="exactlength[0]" value="<?php echo $selected_input["exact_length"]; ?>" maxlength="30" size="20" /><br />
643
 
644
  <!-- MAX LENGTH -->
645
  <input type="checkbox" name="maxlen[0]" id="maxlen[0]" value="1"<?php echo $selected_input["maxlen"]; ?> />
646
+ <label for="maxlen[0]"><?php echo $max_length_caption; ?> [<?php echo $minLen."-".$maxLen; ?>]:</label> &nbsp;&nbsp;<input type="text" name="maxlength[0]" value="<?php echo $selected_input["max_length"]; ?>" maxlength="30" size="20" /><br />
647
 
648
  <input type="checkbox" name="empty[0]" id="empty[0]" value="1"<?php echo $selected_input["empty"]; ?> />
649
  <label for="empty[0]"><?php _e("Can be empty", $cimy_uef_domain); ?></label><br />
888
  else
889
  $equalTo = "";
890
 
891
+ $minLength = esc_attr($minLength);
892
+ $exactLength = esc_attr($exactLength);
893
+ $maxLength = esc_attr($maxLength);
894
  $equalTo = esc_attr($equalTo);
895
  $advanced_options = $rules['advanced_options'];
896
 
900
  $max_length_caption = __("Max size", $cimy_uef_domain)." (KB)";
901
 
902
  // overwrite max length but in another variable otherwise (bug)
903
+ $min_length_value_caption = "1-".strval($max_size_file);
904
+ $max_length_value_caption = $min_length_value_caption;
905
+ }
906
+ else if ($type == "date") {
907
+ $min_length_caption = __("Min date", $cimy_uef_domain)." (days|months|years)";
908
+ $exact_length_caption = __("Exact date", $cimy_uef_domain)." (days|months|years)";
909
+ $max_length_caption = __("Max date", $cimy_uef_domain)." (days|months|years)";
910
+
911
+ // overwrite max length but in another variable otherwise (bug)
912
+ $min_length_value_caption = "-1d0m0y -0d0m20y";
913
+ $max_length_value_caption = "+1d0m0y +0d0m20y";
914
  }
915
  else {
916
  $min_length_caption = __("Min length", $cimy_uef_domain);
917
  $exact_length_caption = __("Exact length", $cimy_uef_domain);
918
  $max_length_caption = __("Max length", $cimy_uef_domain);
919
 
920
+ $min_length_value_caption = "1-".strval($max_length_value);
921
+ $max_length_value_caption = $min_length_value_caption;
922
  }
923
 
924
  $style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
972
  <td style="vertical-align: middle;">
973
  <!-- MIN LENGTH -->
974
  <input type="checkbox" name="minlen[<?php echo $order ?>]" id="minlen[<?php echo $order ?>]" value="1"<?php checked(true, isset($rules['min_length']), true); disabled(false, in_array($type, $rule_maxlen), true); ?> />
975
+ <label for="minlen[<?php echo $order ?>]"><?php echo $min_length_caption; ?> [<?php echo $min_length_value_caption; ?>]:</label> &nbsp;&nbsp;&nbsp;<input type="text" name="minlength[<?php echo $order ?>]" value="<?php echo $minLength ?>" maxlength="30" size="20"<?php disabled(false, in_array($type, $rule_maxlen), true); ?> /><br />
976
 
977
  <!-- EXACT LENGTH -->
978
  <input type="checkbox" name="exactlen[<?php echo $order ?>]" id="exactlen[<?php echo $order ?>]" value="1"<?php checked(true, isset($rules['exact_length']), true); disabled(false, in_array($type, $rule_maxlen), true); ?> />
979
+ <label for="exactlen[<?php echo $order ?>]"><?php echo $exact_length_caption; ?> [<?php echo $max_length_value_caption; ?>]:</label> <input type="text" name="exactlength[<?php echo $order ?>]" value="<?php echo $exactLength ?>" maxlength="30" size="20"<?php disabled(false, in_array($type, $rule_maxlen), true); ?> /><br />
980
 
981
  <!-- MAX LENGTH -->
982
  <input type="checkbox" name="maxlen[<?php echo $order ?>]" id="maxlen[<?php echo $order ?>]" value="1"<?php checked(true, isset($rules['max_length']), true); disabled(false, in_array($type, $rule_maxlen), true); ?> />
983
+ <label for="maxlen[<?php echo $order ?>]"><?php echo $max_length_caption; ?> [<?php echo $max_length_value_caption; ?>]:</label> &nbsp;&nbsp;<input type="text" name="maxlength[<?php echo $order ?>]" value="<?php echo $maxLength ?>" maxlength="30" size="20"<?php disabled(false, in_array($type, $rule_maxlen), true); ?> /><br />
984
 
985
  <input type="checkbox" name="empty[<?php echo $order ?>]" id="empty[<?php echo $order ?>]" value="1"<?php checked(true, $rules['can_be_empty'], true); disabled(false, in_array($type, $rule_canbeempty), true); ?> />
986
  <label for="empty[<?php echo $order ?>]"><?php _e("Can be empty", $cimy_uef_domain); ?></label><br />
cimy_uef_email_handler.php CHANGED
@@ -276,10 +276,13 @@ function cimy_uef_activate_signup($key) {
276
  else
277
  $user_already_exists = true;
278
 
279
- if ( ! $user_id )
 
 
 
280
  return new WP_Error('create_user', __('Could not create user'), $signup);
281
- else
282
- cimy_register_user_extra_fields($user_id, $password, $meta);
283
 
284
  if ((empty($meta["cimy_uef_wp_PASSWORD"])) && ($user_already_exists))
285
  update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
276
  else
277
  $user_already_exists = true;
278
 
279
+ if (is_wp_error($user_id))
280
+ return $user_id;
281
+
282
+ if (!$user_id)
283
  return new WP_Error('create_user', __('Could not create user'), $signup);
284
+
285
+ cimy_register_user_extra_fields($user_id, $password, $meta);
286
 
287
  if ((empty($meta["cimy_uef_wp_PASSWORD"])) && ($user_already_exists))
288
  update_user_option( $user_id, 'default_password_nag', true, true ); //Set up the Password change nag.
cimy_uef_functions.php CHANGED
@@ -1100,3 +1100,21 @@ function cimy_uef_dateformat_PHP_to_jQueryUI($php_format)
1100
  }
1101
  return $jqueryui_format;
1102
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
  }
1101
  return $jqueryui_format;
1102
  }
1103
+
1104
+ /**
1105
+ * @return JavaScript string containing date picker options based on given id and rules
1106
+ * @since 2.6.1
1107
+ */
1108
+ function cimy_uef_date_picker_options($unique_id, $rules) {
1109
+ $js_date = "";
1110
+ if (isset($rules["min_length"])) {
1111
+ $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"minDate\", \"".esc_js($rules["min_length"])."\");";
1112
+ }
1113
+ if (isset($rules["max_length"])) {
1114
+ $js_date .= "jQuery('#".esc_js($unique_id)."').datepicker(\"option\", \"maxDate\", \"".esc_js($rules["max_length"])."\");";
1115
+ }
1116
+ if (!empty($js_date)) {
1117
+ $js_date = "\n\t\t<script type='text/javascript'>jQuery(document).ready(function() {".$js_date."});</script>";
1118
+ }
1119
+ return $js_date;
1120
+ }
cimy_uef_init.php CHANGED
@@ -88,9 +88,9 @@ function cimy_uef_register_css() {
88
  global $cuef_css_webpath;
89
  if (!cimy_uef_is_register_page())
90
  return;
91
- wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", false, false);
92
  wp_enqueue_style("cimy_uef_register");
93
- wp_register_style("cimy_uef_register_nousername", $cuef_css_webpath."/cimy_uef_register_nousername.css", false, false);
94
 
95
  if (!is_multisite()) {
96
  $options = cimy_get_options();
@@ -99,7 +99,7 @@ function cimy_uef_register_css() {
99
  }
100
  if (in_array("password", $options["wp_hidden_fields"])) {
101
  // this CSS will hide the label "A password will be e-mailed to you."
102
- wp_register_style("cimy_uef_register_nopasswordlabel", $cuef_css_webpath."/cimy_uef_register_nopasswordlabel.css", false, false);
103
  wp_enqueue_style("cimy_uef_register_nopasswordlabel");
104
  }
105
  }
@@ -118,9 +118,8 @@ function cimy_uef_init_javascripts($rule_name) {
118
 
119
  $options = cimy_get_options();
120
  if ($options['image_fields'][$rule_name] > 0) {
121
- wp_enqueue_script('imgareaselect', "", array("jquery"));
122
  wp_enqueue_style('imgareaselect');
123
- wp_register_script('cimy_uef_img_selection', $cuef_js_webpath."/img_selection.js", array(), false);
124
  wp_enqueue_script('cimy_uef_img_selection');
125
  }
126
 
88
  global $cuef_css_webpath;
89
  if (!cimy_uef_is_register_page())
90
  return;
91
+ wp_register_style("cimy_uef_register", $cuef_css_webpath."/cimy_uef_register.css", array(), false);
92
  wp_enqueue_style("cimy_uef_register");
93
+ wp_register_style("cimy_uef_register_nousername", $cuef_css_webpath."/cimy_uef_register_nousername.css", array(), false);
94
 
95
  if (!is_multisite()) {
96
  $options = cimy_get_options();
99
  }
100
  if (in_array("password", $options["wp_hidden_fields"])) {
101
  // this CSS will hide the label "A password will be e-mailed to you."
102
+ wp_register_style("cimy_uef_register_nopasswordlabel", $cuef_css_webpath."/cimy_uef_register_nopasswordlabel.css", array(), false);
103
  wp_enqueue_style("cimy_uef_register_nopasswordlabel");
104
  }
105
  }
118
 
119
  $options = cimy_get_options();
120
  if ($options['image_fields'][$rule_name] > 0) {
 
121
  wp_enqueue_style('imgareaselect');
122
+ wp_register_script('cimy_uef_img_selection', $cuef_js_webpath."/img_selection.js", array("imgareaselect", "jquery"), false);
123
  wp_enqueue_script('cimy_uef_img_selection');
124
  }
125
 
cimy_uef_profile.php CHANGED
@@ -502,6 +502,10 @@ function cimy_extract_ExtraFields() {
502
  else
503
  echo $obj_value;
504
 
 
 
 
 
505
  if ((!empty($description)) && ($type != "picture") && ($type != "picture-url")) {
506
  if (($type == "textarea") || ($type == "textarea-rich"))
507
  echo "<br />";
@@ -526,7 +530,7 @@ function cimy_extract_ExtraFields() {
526
  }
527
 
528
  function cimy_update_ExtraFields() {
529
- global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level, $cimy_uef_domain;
530
 
531
  // if updating meta-data from registration post then exit
532
  if (isset($_POST['cimy_post']))
@@ -596,10 +600,12 @@ function cimy_update_ExtraFields() {
596
  if ($type == "picture-url")
597
  $field_value = str_replace('../', '', $field_value);
598
 
599
- if (isset($rules['max_length']))
600
- $field_value = substr($field_value, 0, $rules['max_length']);
601
- else
602
- $field_value = substr($field_value, 0, $max_length_value);
 
 
603
 
604
  $field_value = esc_sql($field_value);
605
 
502
  else
503
  echo $obj_value;
504
 
505
+ if ($type == "date") {
506
+ echo cimy_uef_date_picker_options($unique_id, $rules);
507
+ }
508
+
509
  if ((!empty($description)) && ($type != "picture") && ($type != "picture-url")) {
510
  if (($type == "textarea") || ($type == "textarea-rich"))
511
  echo "<br />";
530
  }
531
 
532
  function cimy_update_ExtraFields() {
533
+ global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level, $cimy_uef_domain, $rule_maxlen_is_str;
534
 
535
  // if updating meta-data from registration post then exit
536
  if (isset($_POST['cimy_post']))
600
  if ($type == "picture-url")
601
  $field_value = str_replace('../', '', $field_value);
602
 
603
+ if (!in_array($type, $rule_maxlen_is_str)) {
604
+ if (isset($rules['max_length']))
605
+ $field_value = substr($field_value, 0, $rules['max_length']);
606
+ else
607
+ $field_value = substr($field_value, 0, $max_length_value);
608
+ }
609
 
610
  $field_value = esc_sql($field_value);
611
 
cimy_uef_register.php CHANGED
@@ -79,7 +79,7 @@ function cimy_register_overwrite_password($password) {
79
  }
80
 
81
  function cimy_register_user_extra_fields($user_id, $password="", $meta=array()) {
82
- global $wpdb_data_table, $wpdb, $max_length_value, $fields_name_prefix, $wp_fields_name_prefix, $wp_hidden_fields, $cimy_uef_file_types, $user_level, $cimy_uef_file_images_types;
83
 
84
  if (isset($meta["blog_id"]) || isset($meta["from_blog_id"]))
85
  cimy_switch_to_blog($meta);
@@ -205,10 +205,10 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
205
  else
206
  $data = cimy_manage_upload($input_name, $user_login_sanitized, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
207
  }
208
- else {
209
  if ($type == "picture-url")
210
  $data = str_replace('../', '', $data);
211
-
212
  if (isset($rules['max_length']))
213
  $data = substr($data, 0, $rules['max_length']);
214
  else
@@ -316,7 +316,7 @@ function cimy_profile_check_wrapper($errors, $update, $user) {
316
  }
317
 
318
  function cimy_registration_check($user_login, $user_email, $errors) {
319
- global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types, $wp_hidden_fields;
320
 
321
  if (cimy_is_at_least_wordpress35())
322
  cimy_switch_to_blog();
@@ -563,7 +563,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
563
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have size less than', $cimy_uef_domain).' '.$minlen.' KB.');
564
  }
565
  }
566
- else {
567
  if (cimy_strlen($value) < $minlen) {
568
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have length less than', $cimy_uef_domain).' '.$minlen.'.');
569
  }
@@ -579,7 +579,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
579
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have size different than', $cimy_uef_domain).' '.$exactlen.' KB.');
580
  }
581
  }
582
- else {
583
  if (cimy_strlen($value) != $exactlen) {
584
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have length different than', $cimy_uef_domain).' '.$exactlen.'.');
585
  }
@@ -595,7 +595,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
595
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have size more than', $cimy_uef_domain).' '.$maxlen.' KB.');
596
  }
597
  }
598
- else {
599
  if (cimy_strlen($value) > $maxlen) {
600
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have length more than', $cimy_uef_domain).' '.$maxlen.'.');
601
  }
@@ -877,15 +877,16 @@ function cimy_registration_form($errors=null, $show_type=0) {
877
  echo "\t";
878
  echo '<p id="'.$prefix.'p_field_'.$field_id.'">';
879
  echo "\n\t";
 
880
 
881
  switch($type) {
882
  case "date":
883
- $input_class .= " datepicker";
884
  case "picture-url":
885
  case "password":
886
  case "text":
887
  $obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
888
- $obj_class = ' class="'.$input_class.'"';
889
  $obj_name = ' name="'.$input_name.'"';
890
 
891
  if ($type == "picture-url")
@@ -1172,6 +1173,10 @@ function cimy_registration_form($errors=null, $show_type=0) {
1172
  else
1173
  echo $form_object;
1174
 
 
 
 
 
1175
  if (($show_type == 0) && ($i == 1) && ($options['password_meter'])) {
1176
  if ($input_name == ($prefix."PASSWORD"))
1177
  $pass1_id = $unique_id;
79
  }
80
 
81
  function cimy_register_user_extra_fields($user_id, $password="", $meta=array()) {
82
+ global $wpdb_data_table, $wpdb, $max_length_value, $fields_name_prefix, $wp_fields_name_prefix, $wp_hidden_fields, $cimy_uef_file_types, $user_level, $cimy_uef_file_images_types, $rule_maxlen_is_str;
83
 
84
  if (isset($meta["blog_id"]) || isset($meta["from_blog_id"]))
85
  cimy_switch_to_blog($meta);
205
  else
206
  $data = cimy_manage_upload($input_name, $user_login_sanitized, $rules, false, false, $type, (!empty($advanced_options["filename"])) ? $advanced_options["filename"] : "");
207
  }
208
+ else if (!in_array($type, $rule_maxlen_is_str)) {
209
  if ($type == "picture-url")
210
  $data = str_replace('../', '', $data);
211
+
212
  if (isset($rules['max_length']))
213
  $data = substr($data, 0, $rules['max_length']);
214
  else
316
  }
317
 
318
  function cimy_registration_check($user_login, $user_email, $errors) {
319
+ global $wpdb, $rule_canbeempty, $rule_email, $rule_maxlen, $fields_name_prefix, $wp_fields_name_prefix, $rule_equalto_case_sensitive, $apply_equalto_rule, $cimy_uef_domain, $cimy_uef_file_types, $rule_equalto_regex, $user_level, $cimy_uef_file_images_types, $wp_hidden_fields, $rule_maxlen_is_str;
320
 
321
  if (cimy_is_at_least_wordpress35())
322
  cimy_switch_to_blog();
563
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have size less than', $cimy_uef_domain).' '.$minlen.' KB.');
564
  }
565
  }
566
+ else if (!in_array($type, $rule_maxlen_is_str)) {
567
  if (cimy_strlen($value) < $minlen) {
568
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have length less than', $cimy_uef_domain).' '.$minlen.'.');
569
  }
579
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have size different than', $cimy_uef_domain).' '.$exactlen.' KB.');
580
  }
581
  }
582
+ else if (!in_array($type, $rule_maxlen_is_str)) {
583
  if (cimy_strlen($value) != $exactlen) {
584
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have length different than', $cimy_uef_domain).' '.$exactlen.'.');
585
  }
595
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have size more than', $cimy_uef_domain).' '.$maxlen.' KB.');
596
  }
597
  }
598
+ else if (!in_array($type, $rule_maxlen_is_str)) {
599
  if (cimy_strlen($value) > $maxlen) {
600
  $errors->add($unique_id, '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.$label.' '.__('couldn&#8217;t have length more than', $cimy_uef_domain).' '.$maxlen.'.');
601
  }
877
  echo "\t";
878
  echo '<p id="'.$prefix.'p_field_'.$field_id.'">';
879
  echo "\n\t";
880
+ $obj_class = "";
881
 
882
  switch($type) {
883
  case "date":
884
+ $obj_class = " datepicker";
885
  case "picture-url":
886
  case "password":
887
  case "text":
888
  $obj_label = '<label for="'.$unique_id.'">'.cimy_uef_sanitize_content($label).'</label>';
889
+ $obj_class = ' class="'.$input_class.$obj_class.'"';
890
  $obj_name = ' name="'.$input_name.'"';
891
 
892
  if ($type == "picture-url")
1173
  else
1174
  echo $form_object;
1175
 
1176
+ if ($type == "date") {
1177
+ echo cimy_uef_date_picker_options($unique_id, $rules);
1178
+ }
1179
+
1180
  if (($show_type == 0) && ($i == 1) && ($options['password_meter'])) {
1181
  if ($input_name == ($prefix."PASSWORD"))
1182
  $pass1_id = $unique_id;
cimy_user_extra_fields.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
- Version: 2.6.0
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
@@ -162,7 +162,7 @@ add_action('admin_init', 'cimy_uef_admin_init');
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
- $cimy_uef_version = "2.6.0";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
@@ -442,11 +442,14 @@ $apply_equalto_rule = array("text", "textarea", "textarea-rich", "password", "ch
442
  $rule_canbeempty = array("text", "textarea", "textarea-rich", "password", "picture", "picture-url", "dropdown", "dropdown-multi", "avatar", "file", "date");
443
 
444
  // common for min, exact and max length
445
- $rule_maxlen = array("text", "password", "textarea", "textarea-rich", "picture", "picture-url", "avatar", "file");
446
 
447
  // common for min, exact and max length
448
  $rule_maxlen_needed = array("text", "password", "picture", "picture-url", "avatar", "file");
449
 
 
 
 
450
  // types that can have 'check for email syntax' rule
451
  $rule_email = array("text", "textarea", "textarea-rich", "password");
452
 
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Description: Add some useful fields to registration and user's info
6
+ Version: 2.6.1
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  License: GPL2
162
  add_action('init', 'cimy_uef_init');
163
 
164
  $cimy_uef_name = "Cimy User Extra Fields";
165
+ $cimy_uef_version = "2.6.1";
166
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
167
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
168
 
442
  $rule_canbeempty = array("text", "textarea", "textarea-rich", "password", "picture", "picture-url", "dropdown", "dropdown-multi", "avatar", "file", "date");
443
 
444
  // common for min, exact and max length
445
+ $rule_maxlen = array("text", "password", "textarea", "textarea-rich", "picture", "picture-url", "avatar", "file", "date");
446
 
447
  // common for min, exact and max length
448
  $rule_maxlen_needed = array("text", "password", "picture", "picture-url", "avatar", "file");
449
 
450
+ // common for min, exact and max length
451
+ $rule_maxlen_is_str = array("date");
452
+
453
  // types that can have 'check for email syntax' rule
454
  $rule_email = array("text", "textarea", "textarea-rich", "password");
455
 
js/datepicker.js CHANGED
@@ -11,4 +11,6 @@ jQuery('.datepicker').datepicker({
11
  dateFormat: datepickerL10n.dateFormat,
12
  firstDay: datepickerL10n.firstDay,
13
  isRTL: datepickerL10n.isRTL,
 
 
14
  });
11
  dateFormat: datepickerL10n.dateFormat,
12
  firstDay: datepickerL10n.firstDay,
13
  isRTL: datepickerL10n.isRTL,
14
+ changeMonth: true,
15
+ changeYear: true
16
  });
langs/cimy_uef-ar.mo CHANGED
Binary file
langs/cimy_uef-ar.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:35-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:36-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
9
  "Language: \n"
@@ -31,7 +31,7 @@ msgstr ""
31
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
34
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
35
  msgid "ERROR"
36
  msgstr "خطأ"
37
 
@@ -53,14 +53,14 @@ msgid "isn&#8217;t correct"
53
  msgstr "غير صحيحة"
54
 
55
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
56
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
58
  msgid "YES"
59
  msgstr "نعم"
60
 
61
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
62
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
64
  msgid "NO"
65
  msgstr "لا"
66
 
@@ -106,55 +106,55 @@ msgid "Typed code is not correct."
106
  msgstr "الشفرة المكتوبة غير صحيحة."
107
 
108
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
109
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
111
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
112
  msgid "Username"
113
  msgstr "اسم المستخدم"
114
 
115
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
116
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
118
  msgid "E-mail"
119
  msgstr "البريد الإلكتروني"
120
 
121
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
122
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
123
  msgid "Please upload a file with one of the following extensions"
124
  msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
125
 
126
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
127
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
129
  msgid "Please upload an image with one of the following extensions"
130
  msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
131
 
132
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
133
  msgid "Strength indicator"
134
  msgstr "مؤشر القوة"
135
 
136
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
137
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
138
  msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ &amp; )."
139
 
140
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
141
  msgid "Change image"
142
  msgstr "تغيير الصورة"
143
 
144
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
145
  msgid "Insert the code:"
146
  msgstr "أدخل الشفرة:"
147
 
148
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
149
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
150
  msgid "Confirm your registration"
151
  msgstr "تأكيد تسجيلك"
152
 
153
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
154
  msgid "A password will be e-mailed to you."
155
  msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
156
 
157
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
158
  msgid "&larr; Back"
159
  msgstr "&larr; إلى الخلف"
160
 
@@ -179,17 +179,17 @@ msgid "Change order"
179
  msgstr "تغيير الترتيب"
180
 
181
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
182
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
183
  msgid "Min length"
184
  msgstr "أقل طول"
185
 
186
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
187
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
188
  msgid "Exact length"
189
  msgstr "الطول بالتحديد"
190
 
191
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
192
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
193
  msgid "Max length"
194
  msgstr "أقصى طول"
195
 
@@ -224,17 +224,17 @@ msgid "deleted correctly"
224
  msgstr "تم حذفها بشكل صحيح"
225
 
226
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
227
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
228
  msgid "Min size"
229
  msgstr "أقل حجم"
230
 
231
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
232
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
233
  msgid "Exact size"
234
  msgstr "الحجم بالتحديد"
235
 
236
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
237
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
238
  msgid "Max size"
239
  msgstr "أقصى حجم"
240
 
@@ -242,390 +242,412 @@ msgstr "أقصى حجم"
242
  msgid "Exact or Max size"
243
  msgstr "الحجم بالتحديد أو الأقصى"
244
 
245
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Name not specified"
247
  msgstr "لم يتم تحديد الاسم"
248
 
249
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
250
  msgid "Name cannot contains spaces"
251
  msgstr "لا يمكن أن يحتوي الاسم على فراغات"
252
 
253
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
254
  msgid "Label not specified"
255
  msgstr "لم يتم تحديد العنوان"
256
 
257
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
258
  msgid "not selected (with this type is necessary)"
259
  msgstr "لم يتم تحديده (ضروري لهذا النوع)"
260
 
261
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
262
  msgid "If you select"
263
  msgstr "إذا اخترت"
264
 
265
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
266
  msgid "you cannot select Min or Max"
267
  msgstr "لا يمكنك اختيار أقل أو أقصى"
268
 
269
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
270
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
272
  msgid "should be in the range of"
273
  msgstr "يجب أن يكون في المدى"
274
 
275
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
276
  msgid "Equal TO not specified"
277
  msgstr "لم يتم تحديد القيمة المساواة"
278
 
279
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
280
  msgid "With checkbox type Equal TO can only be"
281
  msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
282
 
283
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
284
  msgid "With radio type Equal TO can only be"
285
  msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
286
 
287
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
288
  msgid "With checkbox type Value can only be"
289
  msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
290
 
291
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
292
  msgid "With radio type Value can only be"
293
  msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
294
 
295
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
296
  msgid "Field inserted correctly"
297
  msgstr "تم إدخال الحقل بشكل صحيح"
298
 
299
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
300
  msgid "Field #"
301
  msgstr "رقم الحقل"
302
 
303
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
304
  msgid "updated correctly"
305
  msgstr "تم تحديثه بشكل صحيح"
306
 
307
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
308
  msgid "Name inserted is just in the database, change to another one"
309
  msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
310
 
311
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
312
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
313
  msgid "Add a new Field"
314
  msgstr "إضافة حقل جديد"
315
 
316
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
317
  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."
318
  msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
319
 
320
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
321
  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'"
322
  msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
323
 
324
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
325
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
326
  msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
327
 
328
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
329
  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"
330
  msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
331
 
332
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
333
  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)"
334
  msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
335
 
336
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
337
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
338
  msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
339
 
340
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
341
  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"
342
  msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
343
 
344
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
345
  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"
346
  msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
347
 
348
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
349
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
354
  msgid "Name"
355
  msgstr "الاسم"
356
 
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
359
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
363
  msgid "Value"
364
  msgstr "القيمة"
365
 
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
368
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
370
  msgid "Type"
371
  msgstr "النوع"
372
 
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
377
  msgid "Label"
378
  msgstr "العنوان"
379
 
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
382
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
384
  msgid "Description"
385
  msgstr "الوصف"
386
 
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
389
  msgid "Rules"
390
  msgstr "القواعد"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
393
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
394
  msgid "Actions"
395
  msgstr "الإجراءات"
396
 
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
399
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
401
  msgid "Fieldset"
402
  msgstr "Fieldset"
403
 
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
406
  msgid "Can be empty"
407
  msgstr "يمكن أن يكون فارغاً"
408
 
409
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
411
  msgid "Check for E-mail syntax"
412
  msgstr "التأكد من صيغة البريد الإلكتروني"
413
 
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
416
  msgid "Can be modified"
417
  msgstr "يمكن تعديلها"
418
 
419
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
421
  msgid "Can be modified only if empty"
422
  msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
423
 
424
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
426
  msgid "Can be modified only by admin"
427
  msgstr "يمكن تعديلها فقط بواسطة المدير"
428
 
429
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
431
  msgid "Can be modified only by admin or if empty"
432
  msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
433
 
434
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
436
  msgid "Cannot be modified"
437
  msgstr "لا يمكن تعديلها"
438
 
439
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
441
  msgid "Should be equal TO"
442
  msgstr "يجب أن تساوي"
443
 
444
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
446
  msgid "Case sensitive"
447
  msgstr "حساسة لحجم الحروف"
448
 
449
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
451
  msgid "Regular Expression"
452
  msgstr "تعبير اعتيادي"
453
 
454
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
456
  msgid "Show the field in the registration"
457
  msgstr "إظهار الحقل عند التسجيل"
458
 
459
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
461
  msgid "Show the field in User's profile"
462
  msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
463
 
464
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
466
  msgid "Show the field in Users Extended section"
467
  msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
468
 
469
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
471
  msgid "Show the field in the search engine"
472
  msgstr "إظهار الحقل في محرك البحث"
473
 
474
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
475
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
476
  msgid "Show the field in the blog"
477
  msgstr "إظهار الحقل في الموقع"
478
 
479
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
480
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
481
  msgid "Show the field if the role is at least:"
482
  msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
483
 
484
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
485
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
486
  msgid "Anonymous"
487
  msgstr "مجهول"
488
 
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
490
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
491
  msgid "User has 'view_cimy_extra_fields' capability"
492
  msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
493
 
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
496
  msgid "Send an email to the admin if the user changes its value"
497
  msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
498
 
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
501
  msgid "Advanced options"
502
  msgstr "خيارات متقدمة"
503
 
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
505
  msgid "Clear"
506
  msgstr "تفريغ"
507
 
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
509
  msgid "Invert selection"
510
  msgstr "عكس التحديد"
511
 
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
513
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
514
  msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
515
 
516
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
517
  msgid "WordPress Fields"
518
  msgstr "حقول WordPress"
519
 
520
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
522
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
523
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
524
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
525
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
526
  msgid "Extra Fields"
527
  msgstr "الحقول الإضافية (Extra Fields)"
528
 
529
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
530
  msgid "None!"
531
  msgstr "لا يوجد!"
532
 
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
534
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
535
  msgid "Order"
536
  msgstr "الترتيب"
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
539
  msgid "Reset"
540
  msgstr "استعادة"
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
543
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
544
  msgid "SUCCESSFUL"
545
  msgstr "تم بنجاح"
546
 
547
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
548
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
549
  msgid "select"
550
  msgstr "اختيار"
551
 
552
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
554
  msgid "Users per page"
555
  msgstr "عدد المستخدمين في الصحفة"
556
 
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
559
  msgid "Apply"
560
  msgstr "تنفيذ"
561
 
562
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
563
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
564
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
565
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
566
  msgid "Users Extended"
567
  msgstr "Users Extneded"
568
 
569
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
570
  #, php-format
571
  msgid "Search results for &#8220;%s&#8221;"
572
  msgstr "البحث عن نتائج تخص &#8220;%s&#8221;"
573
 
574
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
575
  #, php-format
576
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
577
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
578
 
579
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
580
  msgid "Search Users"
581
  msgstr "البحث في المستخدمين"
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
584
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
585
  msgid "Role"
586
  msgstr "الوظيفة"
587
 
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
589
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
590
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
591
  msgid "Website"
592
  msgstr "الموقع"
593
 
594
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
595
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
596
  msgid "Posts"
597
  msgstr "المقالات"
598
 
599
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
600
  msgid "View posts by this author"
601
  msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
604
  msgid "Super Admin"
605
  msgstr "المدير الشامل"
606
 
607
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
608
  #, php-format
609
  msgid "e-mail: %s"
610
  msgstr "البريد الإلكتروني: %s"
611
 
612
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
613
  msgid "Change"
614
  msgstr "تغيير"
615
 
616
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
617
  msgid "Update selected users"
618
  msgstr "تحديث المستخدمين المختارين"
619
 
620
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
621
  msgid "Update"
622
  msgstr "تحديث"
623
 
624
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
625
  msgid "OK"
626
  msgstr "إمضاء"
627
 
628
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
629
  msgid "Cancel"
630
  msgstr "إلغاء"
631
 
@@ -761,12 +783,12 @@ msgstr "تفعيل الصورة"
761
  msgid "Picture URL:"
762
  msgstr "رابط الصورة:"
763
 
764
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
765
  #, php-format
766
  msgid "%s previous value: %s new value: %s"
767
  msgstr "%s القيمة السابقة: %s القيمة الجديدة: %s"
768
 
769
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
770
  #, php-format
771
  msgid "%s (%s) has changed one or more fields"
772
  msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
@@ -1171,17 +1193,14 @@ msgid "All"
1171
  msgstr "الكل"
1172
 
1173
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1174
- #, fuzzy
1175
  msgid "Done"
1176
  msgstr ""
1177
 
1178
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1179
- #, fuzzy
1180
  msgid "&laquo; Previous"
1181
  msgstr ""
1182
 
1183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1184
- #, fuzzy
1185
  msgid "Next &raquo;"
1186
  msgstr ""
1187
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
9
  "Language: \n"
31
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
34
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
35
  msgid "ERROR"
36
  msgstr "خطأ"
37
 
53
  msgstr "غير صحيحة"
54
 
55
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
56
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
58
  msgid "YES"
59
  msgstr "نعم"
60
 
61
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
62
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
64
  msgid "NO"
65
  msgstr "لا"
66
 
106
  msgstr "الشفرة المكتوبة غير صحيحة."
107
 
108
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
109
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
111
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
112
  msgid "Username"
113
  msgstr "اسم المستخدم"
114
 
115
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
116
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
118
  msgid "E-mail"
119
  msgstr "البريد الإلكتروني"
120
 
121
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
122
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
123
  msgid "Please upload a file with one of the following extensions"
124
  msgstr "الرجاء تحميل ملف بأحد الامتدادات الآتية"
125
 
126
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
127
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
129
  msgid "Please upload an image with one of the following extensions"
130
  msgstr "الرجاء تحميل صورة بأحد الامتدادات الآتية"
131
 
132
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
133
  msgid "Strength indicator"
134
  msgstr "مؤشر القوة"
135
 
136
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
137
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
138
  msgstr "تلميح: كلمة المرور يجب أن يكون طولها على الأقل 7 أحرف. ولجعلها أقوى، استخدم حروفاً متنوعة وأرقاماً ورموزاً مثل ! \" ? $ % ^ &amp; )."
139
 
140
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
141
  msgid "Change image"
142
  msgstr "تغيير الصورة"
143
 
144
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
145
  msgid "Insert the code:"
146
  msgstr "أدخل الشفرة:"
147
 
148
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
149
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
150
  msgid "Confirm your registration"
151
  msgstr "تأكيد تسجيلك"
152
 
153
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
154
  msgid "A password will be e-mailed to you."
155
  msgstr "سيتم إرسال كلمة المرور على بريدك الإلكتروني."
156
 
157
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
158
  msgid "&larr; Back"
159
  msgstr "&larr; إلى الخلف"
160
 
179
  msgstr "تغيير الترتيب"
180
 
181
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
182
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
183
  msgid "Min length"
184
  msgstr "أقل طول"
185
 
186
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
187
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
188
  msgid "Exact length"
189
  msgstr "الطول بالتحديد"
190
 
191
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
192
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
193
  msgid "Max length"
194
  msgstr "أقصى طول"
195
 
224
  msgstr "تم حذفها بشكل صحيح"
225
 
226
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
227
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
228
  msgid "Min size"
229
  msgstr "أقل حجم"
230
 
231
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
232
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
233
  msgid "Exact size"
234
  msgstr "الحجم بالتحديد"
235
 
236
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
237
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
238
  msgid "Max size"
239
  msgstr "أقصى حجم"
240
 
242
  msgid "Exact or Max size"
243
  msgstr "الحجم بالتحديد أو الأقصى"
244
 
245
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
246
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
247
+ #, fuzzy
248
+ msgid "Min date"
249
+ msgstr "أقل حجم"
250
+
251
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
252
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
253
+ #, fuzzy
254
+ msgid "Exact date"
255
+ msgstr "الحجم بالتحديد"
256
+
257
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
258
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
259
+ #, fuzzy
260
+ msgid "Max date"
261
+ msgstr "أقصى حجم"
262
+
263
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
264
  msgid "Name not specified"
265
  msgstr "لم يتم تحديد الاسم"
266
 
267
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
268
  msgid "Name cannot contains spaces"
269
  msgstr "لا يمكن أن يحتوي الاسم على فراغات"
270
 
271
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
272
  msgid "Label not specified"
273
  msgstr "لم يتم تحديد العنوان"
274
 
275
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
276
  msgid "not selected (with this type is necessary)"
277
  msgstr "لم يتم تحديده (ضروري لهذا النوع)"
278
 
279
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
280
  msgid "If you select"
281
  msgstr "إذا اخترت"
282
 
283
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
284
  msgid "you cannot select Min or Max"
285
  msgstr "لا يمكنك اختيار أقل أو أقصى"
286
 
287
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
288
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
290
  msgid "should be in the range of"
291
  msgstr "يجب أن يكون في المدى"
292
 
293
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
294
  msgid "Equal TO not specified"
295
  msgstr "لم يتم تحديد القيمة المساواة"
296
 
297
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
298
  msgid "With checkbox type Equal TO can only be"
299
  msgstr "لنوع مربعات التأشير المساواة يمكن فقط أن تكون"
300
 
301
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
302
  msgid "With radio type Equal TO can only be"
303
  msgstr "لنوع اختيار الدوائر المساواة يمكن فقط أن تكون"
304
 
305
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
306
  msgid "With checkbox type Value can only be"
307
  msgstr "لنوع مربعات التأشير القيمة يمكن فقط أن تكون"
308
 
309
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
310
  msgid "With radio type Value can only be"
311
  msgstr "لنوع اختيار الدوائر القيمة يمكن فقط أن تكون"
312
 
313
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
  msgid "Field inserted correctly"
315
  msgstr "تم إدخال الحقل بشكل صحيح"
316
 
317
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
318
  msgid "Field #"
319
  msgstr "رقم الحقل"
320
 
321
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
322
  msgid "updated correctly"
323
  msgstr "تم تحديثه بشكل صحيح"
324
 
325
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
326
  msgid "Name inserted is just in the database, change to another one"
327
  msgstr "الاسم المدخل موجود في قاعدة البيانات، اختر اسماً غيره"
328
 
329
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
330
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
331
  msgid "Add a new Field"
332
  msgstr "إضافة حقل جديد"
333
 
334
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
335
  msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
336
  msgstr "لإضافة حقل جديد يجب اختيار اسم ونوع وعنوان له؛ أما النوع والوصف فاختياريان. يتم تطبيق القواعد عند تسجيل المستخدمين."
337
 
338
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
339
  msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
340
  msgstr "بخصوص <strong>دوائر الاختيار</strong> و<strong>مربعات التأشير</strong>: <em>القيمة</em> і <em>والمساواة</em> يمكن فقط أن تكون 'نعم' أو 'لا' بما يعني 'مختار' أو 'غير مختار'"
341
 
342
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
343
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
344
  msgstr "بخصوص <strong>القائمة المنسدلة</strong>: يجب أن تكتب كل الخيارات في العنوان، مثلاً: العنوان/الخيار الأول,الخيار الثاني,الخيار الثالث"
345
 
346
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
347
  msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
348
  msgstr "بخصوص <strong>الصورة</strong>: يجب تزويد صورة افتراضية بوضع رابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> تعني أقصى حجم بيكسل (طول أو عرض) للصور المصغرة"
349
 
350
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
351
  msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
352
  msgstr "بخصوص <strong>رابط الصورة</strong>: يمكنك تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ <em>المساواة</em> تعني أقصى عرض للحجم بالبيكسل (الطول متناسب)"
353
 
354
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
355
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
356
  msgstr "بخصوص <strong>تاريخ التسجيل</strong>: <em>المساواة</em> تعني صيغة التاريخ والوقت"
357
 
358
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
359
  msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
360
  msgstr "بخصوص <strong>الأفاتار</strong>: يمكن تزويد صورة افتراضية بوضع الرابط في <em>القيمة</em>؛ 'أقل وبالتحديد وأقصى حجم' بوحدة KB؛ <em>المساواة</em> يتم ضيطها تلقائياً على 512 بيكسل"
361
 
362
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
363
  msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
364
  msgstr "بخصوص <strong>ملف</strong>: يمكن تزويد ملف افتراضي بوضع الرابط <em>القيمة</em>؛ 'أقل وبالتحديد وأكبر حجم' بوحدة KB؛ في <em>المساواة</em> يمكن تحديد الامتدادات المسموحة مفصولة بفاصلة لاتينية، مثلاً:: zip, pdf, doc"
365
 
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
367
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
368
+ msgstr ""
369
+
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
376
  msgid "Name"
377
  msgstr "الاسم"
378
 
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
385
  msgid "Value"
386
  msgstr "القيمة"
387
 
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
392
  msgid "Type"
393
  msgstr "النوع"
394
 
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
399
  msgid "Label"
400
  msgstr "العنوان"
401
 
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
406
  msgid "Description"
407
  msgstr "الوصف"
408
 
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
411
  msgid "Rules"
412
  msgstr "القواعد"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
416
  msgid "Actions"
417
  msgstr "الإجراءات"
418
 
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
423
  msgid "Fieldset"
424
  msgstr "Fieldset"
425
 
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
428
  msgid "Can be empty"
429
  msgstr "يمكن أن يكون فارغاً"
430
 
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
433
  msgid "Check for E-mail syntax"
434
  msgstr "التأكد من صيغة البريد الإلكتروني"
435
 
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
438
  msgid "Can be modified"
439
  msgstr "يمكن تعديلها"
440
 
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
443
  msgid "Can be modified only if empty"
444
  msgstr "يمكن تعديلها فقط في حالة كونها فارغة"
445
 
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
448
  msgid "Can be modified only by admin"
449
  msgstr "يمكن تعديلها فقط بواسطة المدير"
450
 
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
453
  msgid "Can be modified only by admin or if empty"
454
  msgstr "يمكن تعديلها فقط بواسطة المدير في حالة كونها فارغة"
455
 
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
458
  msgid "Cannot be modified"
459
  msgstr "لا يمكن تعديلها"
460
 
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
463
  msgid "Should be equal TO"
464
  msgstr "يجب أن تساوي"
465
 
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
468
  msgid "Case sensitive"
469
  msgstr "حساسة لحجم الحروف"
470
 
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
473
  msgid "Regular Expression"
474
  msgstr "تعبير اعتيادي"
475
 
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
478
  msgid "Show the field in the registration"
479
  msgstr "إظهار الحقل عند التسجيل"
480
 
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
483
  msgid "Show the field in User's profile"
484
  msgstr "إظهار الحقل في الملف الشخصي للمستخدم"
485
 
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
488
  msgid "Show the field in Users Extended section"
489
  msgstr "إظهار الحقل في قائمة المستخدمين الممتدة (Users Extneded)"
490
 
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
493
  msgid "Show the field in the search engine"
494
  msgstr "إظهار الحقل في محرك البحث"
495
 
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
498
  msgid "Show the field in the blog"
499
  msgstr "إظهار الحقل في الموقع"
500
 
501
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
502
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
503
  msgid "Show the field if the role is at least:"
504
  msgstr "إظهار الحقل فقط إذا كانت الوظيفة على الأقل:"
505
 
506
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
507
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
508
  msgid "Anonymous"
509
  msgstr "مجهول"
510
 
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
512
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
513
  msgid "User has 'view_cimy_extra_fields' capability"
514
  msgstr "المستخدم يمتلك صلاحية 'view_cimy_extra_fields'"
515
 
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
518
  msgid "Send an email to the admin if the user changes its value"
519
  msgstr "إرسال بريد إلكتروني للمدير إذا غير المستخدم قيمتها"
520
 
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
523
  msgid "Advanced options"
524
  msgstr "خيارات متقدمة"
525
 
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
527
  msgid "Clear"
528
  msgstr "تفريغ"
529
 
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
531
  msgid "Invert selection"
532
  msgstr "عكس التحديد"
533
 
534
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
535
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
536
  msgstr "هل أنت متأكد أنك تريد حذف الحقل/الحقول وكل البيانات فيها المدخلة بواسطة المستخدمين؟"
537
 
538
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
539
  msgid "WordPress Fields"
540
  msgstr "حقول WordPress"
541
 
542
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
544
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
545
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
546
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
547
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
548
  msgid "Extra Fields"
549
  msgstr "الحقول الإضافية (Extra Fields)"
550
 
551
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
552
  msgid "None!"
553
  msgstr "لا يوجد!"
554
 
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
556
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
557
  msgid "Order"
558
  msgstr "الترتيب"
559
 
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
561
  msgid "Reset"
562
  msgstr "استعادة"
563
 
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
565
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
566
  msgid "SUCCESSFUL"
567
  msgstr "تم بنجاح"
568
 
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
570
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
571
  msgid "select"
572
  msgstr "اختيار"
573
 
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
576
  msgid "Users per page"
577
  msgstr "عدد المستخدمين في الصحفة"
578
 
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
581
  msgid "Apply"
582
  msgstr "تنفيذ"
583
 
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
585
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
586
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
587
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
588
  msgid "Users Extended"
589
  msgstr "Users Extneded"
590
 
591
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
592
  #, php-format
593
  msgid "Search results for &#8220;%s&#8221;"
594
  msgstr "البحث عن نتائج تخص &#8220;%s&#8221;"
595
 
596
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
597
  #, php-format
598
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
599
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
600
 
601
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
602
  msgid "Search Users"
603
  msgstr "البحث في المستخدمين"
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
606
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
607
  msgid "Role"
608
  msgstr "الوظيفة"
609
 
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
612
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
613
  msgid "Website"
614
  msgstr "الموقع"
615
 
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
618
  msgid "Posts"
619
  msgstr "المقالات"
620
 
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
622
  msgid "View posts by this author"
623
  msgstr "مشاهدة المقالات بواسطة هذا الكاتب"
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
626
  msgid "Super Admin"
627
  msgstr "المدير الشامل"
628
 
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
630
  #, php-format
631
  msgid "e-mail: %s"
632
  msgstr "البريد الإلكتروني: %s"
633
 
634
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
635
  msgid "Change"
636
  msgstr "تغيير"
637
 
638
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
639
  msgid "Update selected users"
640
  msgstr "تحديث المستخدمين المختارين"
641
 
642
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
643
  msgid "Update"
644
  msgstr "تحديث"
645
 
646
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
647
  msgid "OK"
648
  msgstr "إمضاء"
649
 
650
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
651
  msgid "Cancel"
652
  msgstr "إلغاء"
653
 
783
  msgid "Picture URL:"
784
  msgstr "رابط الصورة:"
785
 
786
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
787
  #, php-format
788
  msgid "%s previous value: %s new value: %s"
789
  msgstr "%s القيمة السابقة: %s القيمة الجديدة: %s"
790
 
791
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
792
  #, php-format
793
  msgid "%s (%s) has changed one or more fields"
794
  msgstr "%s (%s) قد غير واحداً أو أكثر من الحقول"
1193
  msgstr "الكل"
1194
 
1195
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1196
  msgid "Done"
1197
  msgstr ""
1198
 
1199
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1200
  msgid "&laquo; Previous"
1201
  msgstr ""
1202
 
1203
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1204
  msgid "Next &raquo;"
1205
  msgstr ""
1206
 
langs/cimy_uef-be_BY.mo CHANGED
Binary file
langs/cimy_uef-be_BY.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:36-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:36-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Web Geeks\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ПАМЫЛКА"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "не дакладна"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "ТАК"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "НЕ"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Імя карыстача"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Змяніць парадак"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Змяніць парадак"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Мін даўжыня"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Дакладная даўжыня"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Макс даўжыня"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "выдалены правільна"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Мін памер"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Дакладны памер"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Макс памер"
243
 
@@ -245,334 +245,356 @@ msgstr "Макс памер"
245
  msgid "Exact or Max size"
246
  msgstr "Дакладны ці Макс памер"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Імя не зададзена"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Імя не павінна ўтрымоўваць прабелаў"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "Пазнака не абрана"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "не абрана (з гэтым тыпам неабходна)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Калі Вы абралі"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "Вы не можаце абраць Мін ці Макс"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "павінна быць у диапозоне"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "Роўная ЧАМУ не абрана"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "Можа быць толькі са сцяжком выбару тыпу Роўная ЧАМУ"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "Можа быць толькі з перамыкачом выбару тыпу Роўная ЧАМУ"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "Можа быць толькі са сцяжкамі выбару тыпу Значэнне"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "Можа быць толькі з перамыкачом выбару тыпу Значэнне"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Поле ўстаўлена карэктна"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Поле #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "абноўлена карэктна"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Устаўляемае імя ўжо ёсць у БД, абярыце іншае"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Дадаць новае поле"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "Для дадання новага поля вам неабходна задаць імя, тып і пазнаку; значэнне і апісанне. Правілы ўжываюцца падчас рэгістрацыі карыстача."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "З <strong>перамыкачом(radio)</strong> і <strong>сцяжкамі(checkbox)</strong>: <em>Значэнне</em> і <em>роўна ЧАМУ</em> можа быць або 'Yes', або 'No' - гэта азначае 'абрана' ці 'не абрана'"
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "З <strong>выпадальным спісам(drop-down)</strong>: вы можаце дадаць усе опцыі ў пазнаку, напрыклад: пазнака/элемент1,элемент2,элемент3"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "З <strong>picture-url</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; <em>роўная ЧАМУ</em> мае на ўвазе max шырыню для прэв'ю (вышыня будзе ўсталявана прапарцыйна)"
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "З <strong>датай рэгістрацыі(registration-date)</strong>: <em>роўная ЧАМУ</em> мае на ўвазе фармат даты і часу"
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  #, fuzzy
345
  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"
346
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
347
 
348
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
349
  #, fuzzy
350
  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"
351
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
352
 
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
359
  msgid "Name"
360
  msgstr "Імя"
361
 
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
368
  msgid "Value"
369
  msgstr "Значэнне"
370
 
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
375
  msgid "Type"
376
  msgstr "Тып"
377
 
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
382
  msgid "Label"
383
  msgstr "Пазнака"
384
 
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
389
  msgid "Description"
390
  msgstr "Апісанне"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
393
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
394
  msgid "Rules"
395
  msgstr "Кіравала"
396
 
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
399
  msgid "Actions"
400
  msgstr "Дзеянні"
401
 
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
406
  #, fuzzy
407
  msgid "Fieldset"
408
  msgstr "Палі"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
412
  msgid "Can be empty"
413
  msgstr "Можа быць пустым"
414
 
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
417
  msgid "Check for E-mail syntax"
418
  msgstr "Праверка сінтаксісу E-mail"
419
 
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
422
  msgid "Can be modified"
423
  msgstr "Можа быць зменена"
424
 
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
427
  msgid "Can be modified only if empty"
428
  msgstr "Можа быць зменена толькі калі пустое"
429
 
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
432
  msgid "Can be modified only by admin"
433
  msgstr "Можа быць зменена толькі адмінам"
434
 
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
437
  msgid "Can be modified only by admin or if empty"
438
  msgstr "Можа быць зменена толькі адмінам ці калі пустое"
439
 
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
442
  msgid "Cannot be modified"
443
  msgstr "Не можа быць зменена"
444
 
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
447
  msgid "Should be equal TO"
448
  msgstr "Долднадолжно быць роўна ЧАМУ"
449
 
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
452
  msgid "Case sensitive"
453
  msgstr "Чуствительность да рэгістра"
454
 
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
457
  msgid "Regular Expression"
458
  msgstr ""
459
 
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
462
  msgid "Show the field in the registration"
463
  msgstr "Паказваць поле пры рэгістрацыі"
464
 
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
467
  msgid "Show the field in User's profile"
468
  msgstr "Паказваць поле ў профілі карыстача"
469
 
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
472
  #, fuzzy
473
  msgid "Show the field in Users Extended section"
474
  msgstr "Паказваць поле ў меню A&amp;прасунутых П"
475
 
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
478
  #, fuzzy
479
  msgid "Show the field in the search engine"
480
  msgstr "Паказваць поле пры рэгістрацыі"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
484
  #, fuzzy
485
  msgid "Show the field in the blog"
486
  msgstr "Паказваць поле пры рэгістрацыі"
487
 
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
490
  #, fuzzy
491
  msgid "Show the field if the role is at least:"
492
  msgstr "Паказваць поле пры рэгістрацыі"
493
 
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
496
  msgid "Anonymous"
497
  msgstr ""
498
 
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
501
  msgid "User has 'view_cimy_extra_fields' capability"
502
  msgstr ""
503
 
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
505
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
506
  msgid "Send an email to the admin if the user changes its value"
507
  msgstr ""
508
 
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
510
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
511
  #, fuzzy
512
  msgid "Advanced options"
513
  msgstr "Дзеянні"
514
 
515
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
516
  msgid "Clear"
517
  msgstr "Ачысціць"
518
 
519
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
520
  msgid "Invert selection"
521
  msgstr "Инветировать выбар"
522
 
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
524
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
525
  msgstr "Вы сапраўды жадаеце выдаліць поле(я) і дадзеныя ўстаўленыя ў іх карыстачамі?"
526
 
527
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
528
  msgid "WordPress Fields"
529
  msgstr "WordPress Fields"
530
 
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
532
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
535
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
536
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
537
  msgid "Extra Fields"
538
  msgstr "Extra Fields"
539
 
540
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
541
  msgid "None!"
542
  msgstr "Не!"
543
 
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
545
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
546
  msgid "Order"
547
  msgstr "Парадак"
548
 
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
550
  msgid "Reset"
551
  msgstr "Скід"
552
 
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
554
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
555
  msgid "SUCCESSFUL"
556
  msgstr "ПАСПЯХОВА"
557
 
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
560
  #, fuzzy
561
  msgid "select"
562
  msgstr "Выдаліць"
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
566
  #, fuzzy
567
  msgid "Users per page"
568
  msgstr "Табліца дадзеных карыстачоў"
569
 
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
571
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
572
  msgid "Apply"
573
  msgstr ""
574
 
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
577
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
578
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -580,70 +602,70 @@ msgstr ""
580
  msgid "Users Extended"
581
  msgstr "Спіс Аўтараў і прасунутых карыстачоў"
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
584
  #, php-format
585
  msgid "Search results for &#8220;%s&#8221;"
586
  msgstr ""
587
 
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
589
  #, php-format
590
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
591
  msgstr ""
592
 
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
594
  msgid "Search Users"
595
  msgstr ""
596
 
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
599
  #, fuzzy
600
  msgid "Role"
601
  msgstr "Кіравала"
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
605
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
606
  msgid "Website"
607
  msgstr "Адрас сайта"
608
 
609
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
611
  msgid "Posts"
612
  msgstr "Паведамленні"
613
 
614
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
615
  msgid "View posts by this author"
616
  msgstr "Прагледзець паведамленні гэтага аўтара"
617
 
618
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
619
  msgid "Super Admin"
620
  msgstr ""
621
 
622
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
623
  #, php-format
624
  msgid "e-mail: %s"
625
  msgstr "e-mail: %s"
626
 
627
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
628
  #, fuzzy
629
  msgid "Change"
630
  msgstr "Змяніць парадак"
631
 
632
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
633
  #, fuzzy
634
  msgid "Update selected users"
635
  msgstr "Выдаліць абраныя палі"
636
 
637
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
638
  #, fuzzy
639
  msgid "Update"
640
  msgstr "Абнавіць поле"
641
 
642
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
643
  msgid "OK"
644
  msgstr ""
645
 
646
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
647
  msgid "Cancel"
648
  msgstr ""
649
 
@@ -777,12 +799,12 @@ msgstr "Абнавіць поле"
777
  msgid "Picture URL:"
778
  msgstr ""
779
 
780
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
781
  #, php-format
782
  msgid "%s previous value: %s new value: %s"
783
  msgstr ""
784
 
785
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
786
  #, php-format
787
  msgid "%s (%s) has changed one or more fields"
788
  msgstr ""
@@ -1196,17 +1218,14 @@ msgid "All"
1196
  msgstr ""
1197
 
1198
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1199
- #, fuzzy
1200
  msgid "Done"
1201
  msgstr ""
1202
 
1203
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1204
- #, fuzzy
1205
  msgid "&laquo; Previous"
1206
  msgstr ""
1207
 
1208
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1209
- #, fuzzy
1210
  msgid "Next &raquo;"
1211
  msgstr ""
1212
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Web Geeks\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ПАМЫЛКА"
38
 
54
  msgstr "не дакладна"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "ТАК"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "НЕ"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Імя карыстача"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Калі ласка, загрузіце малюнак аднаго з наступных тыпаў"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Змяніць парадак"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Змяніць парадак"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Мін даўжыня"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Дакладная даўжыня"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Макс даўжыня"
198
 
227
  msgstr "выдалены правільна"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Мін памер"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Дакладны памер"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Макс памер"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Дакладны ці Макс памер"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Мін памер"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Дакладны памер"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Макс памер"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Імя не зададзена"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Імя не павінна ўтрымоўваць прабелаў"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "Пазнака не абрана"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "не абрана (з гэтым тыпам неабходна)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Калі Вы абралі"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "Вы не можаце абраць Мін ці Макс"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "павінна быць у диапозоне"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "Роўная ЧАМУ не абрана"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "Можа быць толькі са сцяжком выбару тыпу Роўная ЧАМУ"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "Можа быць толькі з перамыкачом выбару тыпу Роўная ЧАМУ"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "Можа быць толькі са сцяжкамі выбару тыпу Значэнне"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "Можа быць толькі з перамыкачом выбару тыпу Значэнне"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Поле ўстаўлена карэктна"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Поле #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "абноўлена карэктна"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Устаўляемае імя ўжо ёсць у БД, абярыце іншае"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Дадаць новае поле"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "Для дадання новага поля вам неабходна задаць імя, тып і пазнаку; значэнне і апісанне. Правілы ўжываюцца падчас рэгістрацыі карыстача."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "З <strong>перамыкачом(radio)</strong> і <strong>сцяжкамі(checkbox)</strong>: <em>Значэнне</em> і <em>роўна ЧАМУ</em> можа быць або 'Yes', або 'No' - гэта азначае 'абрана' ці 'не абрана'"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "З <strong>выпадальным спісам(drop-down)</strong>: вы можаце дадаць усе опцыі ў пазнаку, напрыклад: пазнака/элемент1,элемент2,элемент3"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "З <strong>picture-url</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; <em>роўная ЧАМУ</em> мае на ўвазе max шырыню для прэв'ю (вышыня будзе ўсталявана прапарцыйна)"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "З <strong>датай рэгістрацыі(registration-date)</strong>: <em>роўная ЧАМУ</em> мае на ўвазе фармат даты і часу"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  #, fuzzy
363
  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"
364
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
365
 
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
367
  #, fuzzy
368
  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"
369
  msgstr "З <strong>малюнкам(picture)</strong>: вы можаце папярэдне загрузіць малюнак па змаўчанні змясціўшы url у <em>Значэнне</em>; 'мін,дакладны,макс памер' у KB; <em>роўная ЧАМУ</em> мае на ўвазе max памер у px (шырыня ці вышыня) для прэв'ю"
370
 
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
372
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
373
+ msgstr ""
374
+
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
381
  msgid "Name"
382
  msgstr "Імя"
383
 
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
390
  msgid "Value"
391
  msgstr "Значэнне"
392
 
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
397
  msgid "Type"
398
  msgstr "Тып"
399
 
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
404
  msgid "Label"
405
  msgstr "Пазнака"
406
 
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
411
  msgid "Description"
412
  msgstr "Апісанне"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
416
  msgid "Rules"
417
  msgstr "Кіравала"
418
 
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
421
  msgid "Actions"
422
  msgstr "Дзеянні"
423
 
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
428
  #, fuzzy
429
  msgid "Fieldset"
430
  msgstr "Палі"
431
 
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
434
  msgid "Can be empty"
435
  msgstr "Можа быць пустым"
436
 
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
439
  msgid "Check for E-mail syntax"
440
  msgstr "Праверка сінтаксісу E-mail"
441
 
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
444
  msgid "Can be modified"
445
  msgstr "Можа быць зменена"
446
 
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
449
  msgid "Can be modified only if empty"
450
  msgstr "Можа быць зменена толькі калі пустое"
451
 
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
454
  msgid "Can be modified only by admin"
455
  msgstr "Можа быць зменена толькі адмінам"
456
 
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
459
  msgid "Can be modified only by admin or if empty"
460
  msgstr "Можа быць зменена толькі адмінам ці калі пустое"
461
 
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
464
  msgid "Cannot be modified"
465
  msgstr "Не можа быць зменена"
466
 
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
469
  msgid "Should be equal TO"
470
  msgstr "Долднадолжно быць роўна ЧАМУ"
471
 
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
474
  msgid "Case sensitive"
475
  msgstr "Чуствительность да рэгістра"
476
 
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
479
  msgid "Regular Expression"
480
  msgstr ""
481
 
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
484
  msgid "Show the field in the registration"
485
  msgstr "Паказваць поле пры рэгістрацыі"
486
 
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
489
  msgid "Show the field in User's profile"
490
  msgstr "Паказваць поле ў профілі карыстача"
491
 
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
493
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
494
  #, fuzzy
495
  msgid "Show the field in Users Extended section"
496
  msgstr "Паказваць поле ў меню A&amp;прасунутых П"
497
 
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
500
  #, fuzzy
501
  msgid "Show the field in the search engine"
502
  msgstr "Паказваць поле пры рэгістрацыі"
503
 
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
506
  #, fuzzy
507
  msgid "Show the field in the blog"
508
  msgstr "Паказваць поле пры рэгістрацыі"
509
 
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
512
  #, fuzzy
513
  msgid "Show the field if the role is at least:"
514
  msgstr "Паказваць поле пры рэгістрацыі"
515
 
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
518
  msgid "Anonymous"
519
  msgstr ""
520
 
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
523
  msgid "User has 'view_cimy_extra_fields' capability"
524
  msgstr ""
525
 
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
527
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
528
  msgid "Send an email to the admin if the user changes its value"
529
  msgstr ""
530
 
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
532
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
533
  #, fuzzy
534
  msgid "Advanced options"
535
  msgstr "Дзеянні"
536
 
537
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
538
  msgid "Clear"
539
  msgstr "Ачысціць"
540
 
541
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
542
  msgid "Invert selection"
543
  msgstr "Инветировать выбар"
544
 
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
546
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
547
  msgstr "Вы сапраўды жадаеце выдаліць поле(я) і дадзеныя ўстаўленыя ў іх карыстачамі?"
548
 
549
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
550
  msgid "WordPress Fields"
551
  msgstr "WordPress Fields"
552
 
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
557
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
558
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
559
  msgid "Extra Fields"
560
  msgstr "Extra Fields"
561
 
562
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
563
  msgid "None!"
564
  msgstr "Не!"
565
 
566
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
567
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
568
  msgid "Order"
569
  msgstr "Парадак"
570
 
571
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
572
  msgid "Reset"
573
  msgstr "Скід"
574
 
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
577
  msgid "SUCCESSFUL"
578
  msgstr "ПАСПЯХОВА"
579
 
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
581
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
582
  #, fuzzy
583
  msgid "select"
584
  msgstr "Выдаліць"
585
 
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
588
  #, fuzzy
589
  msgid "Users per page"
590
  msgstr "Табліца дадзеных карыстачоў"
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
593
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
594
  msgid "Apply"
595
  msgstr ""
596
 
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
598
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
599
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
600
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
602
  msgid "Users Extended"
603
  msgstr "Спіс Аўтараў і прасунутых карыстачоў"
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
606
  #, php-format
607
  msgid "Search results for &#8220;%s&#8221;"
608
  msgstr ""
609
 
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
611
  #, php-format
612
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
613
  msgstr ""
614
 
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
616
  msgid "Search Users"
617
  msgstr ""
618
 
619
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
621
  #, fuzzy
622
  msgid "Role"
623
  msgstr "Кіравала"
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
626
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
627
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
628
  msgid "Website"
629
  msgstr "Адрас сайта"
630
 
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
632
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
633
  msgid "Posts"
634
  msgstr "Паведамленні"
635
 
636
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
637
  msgid "View posts by this author"
638
  msgstr "Прагледзець паведамленні гэтага аўтара"
639
 
640
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
641
  msgid "Super Admin"
642
  msgstr ""
643
 
644
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
645
  #, php-format
646
  msgid "e-mail: %s"
647
  msgstr "e-mail: %s"
648
 
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
650
  #, fuzzy
651
  msgid "Change"
652
  msgstr "Змяніць парадак"
653
 
654
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
655
  #, fuzzy
656
  msgid "Update selected users"
657
  msgstr "Выдаліць абраныя палі"
658
 
659
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
660
  #, fuzzy
661
  msgid "Update"
662
  msgstr "Абнавіць поле"
663
 
664
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
665
  msgid "OK"
666
  msgstr ""
667
 
668
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
669
  msgid "Cancel"
670
  msgstr ""
671
 
799
  msgid "Picture URL:"
800
  msgstr ""
801
 
802
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
803
  #, php-format
804
  msgid "%s previous value: %s new value: %s"
805
  msgstr ""
806
 
807
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
808
  #, php-format
809
  msgid "%s (%s) has changed one or more fields"
810
  msgstr ""
1218
  msgstr ""
1219
 
1220
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1221
  msgid "Done"
1222
  msgstr ""
1223
 
1224
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1225
  msgid "&laquo; Previous"
1226
  msgstr ""
1227
 
1228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1229
  msgid "Next &raquo;"
1230
  msgstr ""
1231
 
langs/cimy_uef-bg_BG.mo CHANGED
Binary file
langs/cimy_uef-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:36-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:37-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ГРЕШКА"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "не е правилно"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "ДА"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "НЕ"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Потребителско име"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Моля качете снимка с някое от тези разширения"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Моля качете снимка с някое от тези разширения"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Смени реда"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Смени реда"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Минимална дължина"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Точна дължина"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Максимална дължина"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "изтрит успешно"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Минимален размер"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Точен размер"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Максимален размер"
243
 
@@ -245,334 +245,356 @@ msgstr "Максимален размер"
245
  msgid "Exact or Max size"
246
  msgstr "Точен или максимален размер"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Не е определено име"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Името не може да съдържа шпации"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "Не е определен етикет"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "не е избрано (задължително за този тип)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Ако избра"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "не можеш да избереш минимума или максимума"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "трябва да е в рамките на"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "Равно НА не е определено"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "С отметка от тип Равно НА може да е само"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "С радио бутон от тип Равно НА може да е само"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "С отметка от тип Стойност може да е само"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "С радио бутон от тип Стойност може да е само"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Полето е добавено успешно"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Поле #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "подновено успешно"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Въведеното име е в базата данни, променето го"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Добави друго поле"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  #, fuzzy
345
  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"
346
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
347
 
348
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
349
  #, fuzzy
350
  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"
351
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
352
 
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
359
  msgid "Name"
360
  msgstr "Име"
361
 
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
368
  msgid "Value"
369
  msgstr "Стойност"
370
 
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
375
  msgid "Type"
376
  msgstr "Тип"
377
 
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
382
  msgid "Label"
383
  msgstr "Етикет"
384
 
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
389
  msgid "Description"
390
  msgstr "Описание"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
393
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
394
  msgid "Rules"
395
  msgstr "Правила"
396
 
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
399
  msgid "Actions"
400
  msgstr "Действия"
401
 
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
406
  #, fuzzy
407
  msgid "Fieldset"
408
  msgstr "Полета"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
412
  msgid "Can be empty"
413
  msgstr "Може да е празно"
414
 
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
417
  msgid "Check for E-mail syntax"
418
  msgstr "Провери за Email синтаксис"
419
 
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
422
  msgid "Can be modified"
423
  msgstr "Може да бъде променяно"
424
 
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
427
  msgid "Can be modified only if empty"
428
  msgstr "Може да бъде променяно само ако е празно"
429
 
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
432
  msgid "Can be modified only by admin"
433
  msgstr "Може да бъде променяно само от администратора"
434
 
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
437
  msgid "Can be modified only by admin or if empty"
438
  msgstr "Може да бъде променяно само от администратора или ако е празно"
439
 
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
442
  msgid "Cannot be modified"
443
  msgstr "Не може да бъде променяно"
444
 
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
447
  msgid "Should be equal TO"
448
  msgstr "Би трябвало да е равно НА"
449
 
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
452
  msgid "Case sensitive"
453
  msgstr "Различават се големи и малко букви"
454
 
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
457
  msgid "Regular Expression"
458
  msgstr ""
459
 
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
462
  msgid "Show the field in the registration"
463
  msgstr "Покажи полето при регистрация"
464
 
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
467
  msgid "Show the field in User's profile"
468
  msgstr "Покажи полето в профила на потребителя"
469
 
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
472
  #, fuzzy
473
  msgid "Show the field in Users Extended section"
474
  msgstr "Покажи полето в A&amp;П разширеното меню"
475
 
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
478
  #, fuzzy
479
  msgid "Show the field in the search engine"
480
  msgstr "Покажи полето при регистрация"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
484
  #, fuzzy
485
  msgid "Show the field in the blog"
486
  msgstr "Покажи полето при регистрация"
487
 
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
490
  #, fuzzy
491
  msgid "Show the field if the role is at least:"
492
  msgstr "Покажи полето при регистрация"
493
 
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
496
  msgid "Anonymous"
497
  msgstr ""
498
 
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
501
  msgid "User has 'view_cimy_extra_fields' capability"
502
  msgstr ""
503
 
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
505
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
506
  msgid "Send an email to the admin if the user changes its value"
507
  msgstr ""
508
 
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
510
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
511
  #, fuzzy
512
  msgid "Advanced options"
513
  msgstr "Действия"
514
 
515
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
516
  msgid "Clear"
517
  msgstr "Изчисти"
518
 
519
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
520
  msgid "Invert selection"
521
  msgstr "Обърни избора"
522
 
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
524
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
525
  msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
526
 
527
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
528
  msgid "WordPress Fields"
529
  msgstr "WordPress полета"
530
 
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
532
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
535
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
536
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
537
  msgid "Extra Fields"
538
  msgstr "Допълнителни полета"
539
 
540
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
541
  msgid "None!"
542
  msgstr "Няма!"
543
 
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
545
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
546
  msgid "Order"
547
  msgstr "Подреди"
548
 
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
550
  msgid "Reset"
551
  msgstr "Отмени"
552
 
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
554
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
555
  msgid "SUCCESSFUL"
556
  msgstr "УСПЕХ"
557
 
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
560
  #, fuzzy
561
  msgid "select"
562
  msgstr "Изтрий"
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
566
  #, fuzzy
567
  msgid "Users per page"
568
  msgstr "Таблица с потребителски данни"
569
 
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
571
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
572
  msgid "Apply"
573
  msgstr ""
574
 
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
577
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
578
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -580,69 +602,69 @@ msgstr ""
580
  msgid "Users Extended"
581
  msgstr "Разширен списък с Автори &amp; Потребители"
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
584
  #, php-format
585
  msgid "Search results for &#8220;%s&#8221;"
586
  msgstr ""
587
 
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
589
  #, php-format
590
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
591
  msgstr ""
592
 
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
594
  msgid "Search Users"
595
  msgstr "Търсене на потребители"
596
 
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
599
  msgid "Role"
600
  msgstr "Роля"
601
 
602
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
604
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
605
  msgid "Website"
606
  msgstr "Интернет сайт"
607
 
608
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
609
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
610
  msgid "Posts"
611
  msgstr "Постове"
612
 
613
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
614
  msgid "View posts by this author"
615
  msgstr "Виж постовете на този автор"
616
 
617
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
618
  msgid "Super Admin"
619
  msgstr ""
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
622
  #, php-format
623
  msgid "e-mail: %s"
624
  msgstr "e-mail: %s"
625
 
626
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
627
  #, fuzzy
628
  msgid "Change"
629
  msgstr "Смени реда"
630
 
631
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
632
  #, fuzzy
633
  msgid "Update selected users"
634
  msgstr "Изтрий маркираните полета"
635
 
636
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
637
  #, fuzzy
638
  msgid "Update"
639
  msgstr "Поднови поле"
640
 
641
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
642
  msgid "OK"
643
  msgstr ""
644
 
645
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
646
  msgid "Cancel"
647
  msgstr ""
648
 
@@ -776,12 +798,12 @@ msgstr "Поднови поле"
776
  msgid "Picture URL:"
777
  msgstr ""
778
 
779
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
780
  #, php-format
781
  msgid "%s previous value: %s new value: %s"
782
  msgstr ""
783
 
784
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
785
  #, php-format
786
  msgid "%s (%s) has changed one or more fields"
787
  msgstr ""
@@ -1194,17 +1216,14 @@ msgid "All"
1194
  msgstr ""
1195
 
1196
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1197
- #, fuzzy
1198
  msgid "Done"
1199
  msgstr ""
1200
 
1201
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1202
- #, fuzzy
1203
  msgid "&laquo; Previous"
1204
  msgstr ""
1205
 
1206
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1207
- #, fuzzy
1208
  msgid "Next &raquo;"
1209
  msgstr ""
1210
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ГРЕШКА"
38
 
54
  msgstr "не е правилно"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "ДА"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "НЕ"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Потребителско име"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Моля качете снимка с някое от тези разширения"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Моля качете снимка с някое от тези разширения"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Смени реда"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Смени реда"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Минимална дължина"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Точна дължина"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Максимална дължина"
198
 
227
  msgstr "изтрит успешно"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Минимален размер"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Точен размер"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Максимален размер"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Точен или максимален размер"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Минимален размер"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Точен размер"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Максимален размер"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Не е определено име"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Името не може да съдържа шпации"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "Не е определен етикет"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "не е избрано (задължително за този тип)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Ако избра"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "не можеш да избереш минимума или максимума"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "трябва да е в рамките на"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "Равно НА не е определено"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "С отметка от тип Равно НА може да е само"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "С радио бутон от тип Равно НА може да е само"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "С отметка от тип Стойност може да е само"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "С радио бутон от тип Стойност може да е само"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Полето е добавено успешно"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Поле #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "подновено успешно"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Въведеното име е в базата данни, променето го"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Добави друго поле"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  #, fuzzy
363
  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"
364
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
365
 
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
367
  #, fuzzy
368
  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"
369
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
370
 
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
372
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
373
+ msgstr ""
374
+
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
381
  msgid "Name"
382
  msgstr "Име"
383
 
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
390
  msgid "Value"
391
  msgstr "Стойност"
392
 
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
397
  msgid "Type"
398
  msgstr "Тип"
399
 
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
404
  msgid "Label"
405
  msgstr "Етикет"
406
 
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
411
  msgid "Description"
412
  msgstr "Описание"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
416
  msgid "Rules"
417
  msgstr "Правила"
418
 
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
421
  msgid "Actions"
422
  msgstr "Действия"
423
 
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
428
  #, fuzzy
429
  msgid "Fieldset"
430
  msgstr "Полета"
431
 
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
434
  msgid "Can be empty"
435
  msgstr "Може да е празно"
436
 
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
439
  msgid "Check for E-mail syntax"
440
  msgstr "Провери за Email синтаксис"
441
 
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
444
  msgid "Can be modified"
445
  msgstr "Може да бъде променяно"
446
 
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
449
  msgid "Can be modified only if empty"
450
  msgstr "Може да бъде променяно само ако е празно"
451
 
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
454
  msgid "Can be modified only by admin"
455
  msgstr "Може да бъде променяно само от администратора"
456
 
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
459
  msgid "Can be modified only by admin or if empty"
460
  msgstr "Може да бъде променяно само от администратора или ако е празно"
461
 
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
464
  msgid "Cannot be modified"
465
  msgstr "Не може да бъде променяно"
466
 
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
469
  msgid "Should be equal TO"
470
  msgstr "Би трябвало да е равно НА"
471
 
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
474
  msgid "Case sensitive"
475
  msgstr "Различават се големи и малко букви"
476
 
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
479
  msgid "Regular Expression"
480
  msgstr ""
481
 
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
484
  msgid "Show the field in the registration"
485
  msgstr "Покажи полето при регистрация"
486
 
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
489
  msgid "Show the field in User's profile"
490
  msgstr "Покажи полето в профила на потребителя"
491
 
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
493
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
494
  #, fuzzy
495
  msgid "Show the field in Users Extended section"
496
  msgstr "Покажи полето в A&amp;П разширеното меню"
497
 
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
500
  #, fuzzy
501
  msgid "Show the field in the search engine"
502
  msgstr "Покажи полето при регистрация"
503
 
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
506
  #, fuzzy
507
  msgid "Show the field in the blog"
508
  msgstr "Покажи полето при регистрация"
509
 
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
512
  #, fuzzy
513
  msgid "Show the field if the role is at least:"
514
  msgstr "Покажи полето при регистрация"
515
 
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
518
  msgid "Anonymous"
519
  msgstr ""
520
 
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
523
  msgid "User has 'view_cimy_extra_fields' capability"
524
  msgstr ""
525
 
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
527
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
528
  msgid "Send an email to the admin if the user changes its value"
529
  msgstr ""
530
 
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
532
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
533
  #, fuzzy
534
  msgid "Advanced options"
535
  msgstr "Действия"
536
 
537
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
538
  msgid "Clear"
539
  msgstr "Изчисти"
540
 
541
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
542
  msgid "Invert selection"
543
  msgstr "Обърни избора"
544
 
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
546
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
547
  msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
548
 
549
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
550
  msgid "WordPress Fields"
551
  msgstr "WordPress полета"
552
 
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
557
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
558
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
559
  msgid "Extra Fields"
560
  msgstr "Допълнителни полета"
561
 
562
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
563
  msgid "None!"
564
  msgstr "Няма!"
565
 
566
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
567
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
568
  msgid "Order"
569
  msgstr "Подреди"
570
 
571
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
572
  msgid "Reset"
573
  msgstr "Отмени"
574
 
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
577
  msgid "SUCCESSFUL"
578
  msgstr "УСПЕХ"
579
 
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
581
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
582
  #, fuzzy
583
  msgid "select"
584
  msgstr "Изтрий"
585
 
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
588
  #, fuzzy
589
  msgid "Users per page"
590
  msgstr "Таблица с потребителски данни"
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
593
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
594
  msgid "Apply"
595
  msgstr ""
596
 
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
598
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
599
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
600
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
602
  msgid "Users Extended"
603
  msgstr "Разширен списък с Автори &amp; Потребители"
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
606
  #, php-format
607
  msgid "Search results for &#8220;%s&#8221;"
608
  msgstr ""
609
 
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
611
  #, php-format
612
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
613
  msgstr ""
614
 
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
616
  msgid "Search Users"
617
  msgstr "Търсене на потребители"
618
 
619
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
621
  msgid "Role"
622
  msgstr "Роля"
623
 
624
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
626
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
627
  msgid "Website"
628
  msgstr "Интернет сайт"
629
 
630
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
632
  msgid "Posts"
633
  msgstr "Постове"
634
 
635
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
636
  msgid "View posts by this author"
637
  msgstr "Виж постовете на този автор"
638
 
639
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
640
  msgid "Super Admin"
641
  msgstr ""
642
 
643
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
644
  #, php-format
645
  msgid "e-mail: %s"
646
  msgstr "e-mail: %s"
647
 
648
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
649
  #, fuzzy
650
  msgid "Change"
651
  msgstr "Смени реда"
652
 
653
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
654
  #, fuzzy
655
  msgid "Update selected users"
656
  msgstr "Изтрий маркираните полета"
657
 
658
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
659
  #, fuzzy
660
  msgid "Update"
661
  msgstr "Поднови поле"
662
 
663
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
664
  msgid "OK"
665
  msgstr ""
666
 
667
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
668
  msgid "Cancel"
669
  msgstr ""
670
 
798
  msgid "Picture URL:"
799
  msgstr ""
800
 
801
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
802
  #, php-format
803
  msgid "%s previous value: %s new value: %s"
804
  msgstr ""
805
 
806
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
807
  #, php-format
808
  msgid "%s (%s) has changed one or more fields"
809
  msgstr ""
1216
  msgstr ""
1217
 
1218
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1219
  msgid "Done"
1220
  msgstr ""
1221
 
1222
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1223
  msgid "&laquo; Previous"
1224
  msgstr ""
1225
 
1226
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1227
  msgid "Next &raquo;"
1228
  msgstr ""
1229
 
langs/cimy_uef-cs_CZ.mo ADDED
Binary file
langs/cimy_uef-cs_CZ.po ADDED
@@ -0,0 +1,1249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cimy User Extra Fields\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
+ "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
+ "Language-Team: <pik256@gmail.com>\n"
9
+ "Language: pl_PL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
+ "X-Poedit-Language: Czech\n"
18
+ "X-Poedit-Country: CZECH REPUBLIC\n"
19
+ "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
20
+
21
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
22
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
23
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
24
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:517
25
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
26
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
27
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
28
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
29
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
30
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
31
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
32
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
33
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
34
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
36
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
37
+ msgid "ERROR"
38
+ msgstr "CHYBA"
39
+
40
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
41
+ msgid "does not match."
42
+ msgstr "nesouhlasí."
43
+
44
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
45
+ msgid "hasn&#8217;t a correct email syntax."
46
+ msgstr "e-mail namá správný formát"
47
+
48
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
49
+ msgid "couldn&#8217;t be empty."
50
+ msgstr "nemůže být prázdný"
51
+
52
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
53
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
54
+ msgid "isn&#8217;t correct"
55
+ msgstr "není správný"
56
+
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
59
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
60
+ msgid "YES"
61
+ msgstr "ANO"
62
+
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
65
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
66
+ msgid "NO"
67
+ msgstr "NE"
68
+
69
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
70
+ msgid "should be"
71
+ msgstr "by měl být"
72
+
73
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
74
+ msgid "should be an image."
75
+ msgstr "by měl být obrázek."
76
+
77
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
78
+ msgid "does not accept this file type."
79
+ msgstr "tento typ souboru není akceptován."
80
+
81
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
82
+ msgid "couldn&#8217;t have size less than"
83
+ msgstr "nemůže být menší něž"
84
+
85
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
86
+ msgid "couldn&#8217;t have length less than"
87
+ msgstr "nemůže být menší než"
88
+
89
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
90
+ msgid "couldn&#8217;t have size different than"
91
+ msgstr "nemůže mít rozměr jiný než"
92
+
93
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
94
+ msgid "couldn&#8217;t have length different than"
95
+ msgstr "nemůže mít délku jinou než"
96
+
97
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
98
+ msgid "couldn&#8217;t have size more than"
99
+ msgstr "nemůže mít velikost více než"
100
+
101
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
102
+ msgid "couldn&#8217;t have length more than"
103
+ msgstr "nemůže mít délku více než"
104
+
105
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
106
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
107
+ msgid "Typed code is not correct."
108
+ msgstr "Nespávně napsaný kód."
109
+
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
112
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
113
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
114
+ msgid "Username"
115
+ msgstr "Uživatelské jméno"
116
+
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
119
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
120
+ msgid "E-mail"
121
+ msgstr "E-mail"
122
+
123
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
124
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
125
+ msgid "Please upload a file with one of the following extensions"
126
+ msgstr "Prosím nahrajte soubor typu daného jednou z následující koncovek"
127
+
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
+ msgid "Please upload an image with one of the following extensions"
132
+ msgstr "Prosím nahrajte obrázek typu daného jednou z následující koncovek"
133
+
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
+ msgid "Strength indicator"
136
+ msgstr "Indikátor síly"
137
+
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
+ msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
+ msgstr "Nápověda: Heslo by mělo být alespoň sedm znaků dlouhé. Pro jeho posílení použijte velká a malá písmena, čísla a speciální symboly jako ! \" ? $ % ^ &amp; )."
141
+
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
+ msgid "Change image"
144
+ msgstr "Změnit obrázek"
145
+
146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
147
+ msgid "Insert the code:"
148
+ msgstr "Zadejte kód:"
149
+
150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
152
+ msgid "Confirm your registration"
153
+ msgstr "Potvrďte svoji registraci"
154
+
155
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
156
+ msgid "A password will be e-mailed to you."
157
+ msgstr "Heslo Vám bude odesláno e-mailem."
158
+
159
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
160
+ msgid "&larr; Back"
161
+ msgstr "&larr; Zpět"
162
+
163
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
164
+ msgid "Add field"
165
+ msgstr "Přidat pole"
166
+
167
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
168
+ msgid "Update field"
169
+ msgstr "Aktualizuj pole"
170
+
171
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
172
+ msgid "Delete field"
173
+ msgstr "Smazat pole"
174
+
175
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
176
+ msgid "Delete selected fields"
177
+ msgstr "Smazat vybrané položky"
178
+
179
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
180
+ msgid "Change order"
181
+ msgstr "Změnit pořadí"
182
+
183
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
185
+ msgid "Min length"
186
+ msgstr "Minimální délka"
187
+
188
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
190
+ msgid "Exact length"
191
+ msgstr "Přesná délka"
192
+
193
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
195
+ msgid "Max length"
196
+ msgstr "Maximální délka"
197
+
198
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
199
+ msgid "Exact or Max length"
200
+ msgstr "Přesná nebo Maximální délka"
201
+
202
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
203
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
204
+ msgid "Fields"
205
+ msgstr "Pole"
206
+
207
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
208
+ msgid "changed to"
209
+ msgstr "změnit na"
210
+
211
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
212
+ msgid "You cannot give an order that misses some numbers"
213
+ msgstr "Nemůžete zadat pořadí vynechávající některá čísla"
214
+
215
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
216
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
217
+ msgid "Nothing selected"
218
+ msgstr "Nic není vybráno"
219
+
220
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
221
+ msgid "Field(s)"
222
+ msgstr "Pole"
223
+
224
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
225
+ msgid "deleted correctly"
226
+ msgstr "úspěšně smazáno"
227
+
228
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
230
+ msgid "Min size"
231
+ msgstr "Minimální rozměr"
232
+
233
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
235
+ msgid "Exact size"
236
+ msgstr "Přesný rozměr"
237
+
238
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
240
+ msgid "Max size"
241
+ msgstr "Maximální rozměr"
242
+
243
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
244
+ msgid "Exact or Max size"
245
+ msgstr "Přesný nebo Maximální rozměr"
246
+
247
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
249
+ #, fuzzy
250
+ msgid "Min date"
251
+ msgstr "Minimální rozměr"
252
+
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
255
+ #, fuzzy
256
+ msgid "Exact date"
257
+ msgstr "Přesný rozměr"
258
+
259
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
261
+ #, fuzzy
262
+ msgid "Max date"
263
+ msgstr "Maximální rozměr"
264
+
265
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
266
+ msgid "Name not specified"
267
+ msgstr "Jmeno není specifikováno"
268
+
269
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
270
+ msgid "Name cannot contains spaces"
271
+ msgstr "Jméno nemůže obsahovat mezery"
272
+
273
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
274
+ msgid "Label not specified"
275
+ msgstr "Popisek neni specifikován"
276
+
277
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
278
+ msgid "not selected (with this type is necessary)"
279
+ msgstr "není vybráno (nezbytné s tímto typem)"
280
+
281
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
282
+ msgid "If you select"
283
+ msgstr "Pokud jste vybrali"
284
+
285
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
286
+ msgid "you cannot select Min or Max"
287
+ msgstr "nemůžete vybrat Min nebo Max"
288
+
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
292
+ msgid "should be in the range of"
293
+ msgstr "by měl být v rozsahu "
294
+
295
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
296
+ msgid "Equal TO not specified"
297
+ msgstr "Rovný (=) není specifikován"
298
+
299
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
300
+ msgid "With checkbox type Equal TO can only be"
301
+ msgstr "Pouze společně s checkboxem Rovný (=)"
302
+
303
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
304
+ msgid "With radio type Equal TO can only be"
305
+ msgstr "Pouze společně s radio button Rovný (=)"
306
+
307
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
308
+ msgid "With checkbox type Value can only be"
309
+ msgstr "Pouze společně s checkboxem Hodnota"
310
+
311
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
312
+ msgid "With radio type Value can only be"
313
+ msgstr "Pouze společne s radio buttonem Hodnota"
314
+
315
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
316
+ msgid "Field inserted correctly"
317
+ msgstr "Pole bylo správně vloženo"
318
+
319
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
320
+ msgid "Field #"
321
+ msgstr "Pole #"
322
+
323
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
324
+ msgid "updated correctly"
325
+ msgstr "správně aktualizováno "
326
+
327
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
328
+ msgid "Name inserted is just in the database, change to another one"
329
+ msgstr "Zadané jméno je již v databázi, zvolte prosím jiné"
330
+
331
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
333
+ msgid "Add a new Field"
334
+ msgstr "Přidat nové pole"
335
+
336
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
337
+ 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."
338
+ msgstr "Pro přidání nového pole musíte vybrat jméno, typ a označení. Volitelně zadejte hodnotu a popis. Pravidla jsou použita během registrace uživatele."
339
+
340
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
341
+ 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'"
342
+ msgstr "Pro <strong>radio button</strong> a <strong>checkbox</strong>: <em>Hodnota</em> a <em>Rovný</em> může být pouze 'Yes' nebo 'No', což znamená 'vybráno' nebo 'nevybráno'"
343
+
344
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
345
+ msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
346
+ msgstr "Pro <strong>seznam (drop-down)</strong>: musíte přidat všechny možnosti do označení, například: položka1,položka2,položka3"
347
+
348
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
349
+ 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"
350
+ msgstr "Pro <strong>obrázky</strong>: můžete nahrát výchozí obrázek zadáním URL do <em>Hodnota</em>; 'Min,Přesná,Max rozměr' jsou v KB; <em>Rovný</em> vyjadřuje maximální rozměr v pixelech (šířka nebo výška) pro náhled"
351
+
352
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
353
+ 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)"
354
+ msgstr "Pro <strong>url-obrázku</strong>: můžete nahrát výchozí obrázek zadáním URL do <em>Hodnota</em>; <em>Rovný</em> vyjadřuje maximální šířku v pixelech (výška bude proporcionální)"
355
+
356
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
357
+ msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
358
+ msgstr "Pro <strong>datum registrace</strong>: <em>Rovné</em> vyjadřuje formát data a času"
359
+
360
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
361
+ 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"
362
+ msgstr "Pro <strong>avatara</strong>: můžete nahrát výchozí obrázek zadáním url do <em>Hodnota</em>; 'Min,Přesný,Max rozměr' jsou v KB; <em>Rovný</em> je automaticky nastaven na 512 pixelů."
363
+
364
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
365
+ 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"
366
+ msgstr "Pro <strong>soubor</strong>: můžete nahrát výchozí soubor zadáním url do <em>Hodnota</em>; 'Min,Přesný,Max rozměr' jsou v KB; pod <em>Rovný</em> může být specifikovány povolené koncovky například: zip,pdf,doc"
367
+
368
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
369
+ #, fuzzy
370
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
371
+ msgstr "Pro <strong>avatara</strong>: můžete nahrát výchozí obrázek zadáním url do <em>Hodnota</em>; 'Min,Přesný,Max rozměr' jsou v KB; <em>Rovný</em> je automaticky nastaven na 512 pixelů."
372
+
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
379
+ msgid "Name"
380
+ msgstr "Název"
381
+
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
388
+ msgid "Value"
389
+ msgstr "Hodnota"
390
+
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
395
+ msgid "Type"
396
+ msgstr "Typ"
397
+
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
402
+ msgid "Label"
403
+ msgstr "Označení"
404
+
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
409
+ msgid "Description"
410
+ msgstr "Popis"
411
+
412
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
413
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
414
+ msgid "Rules"
415
+ msgstr "Pravidla"
416
+
417
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
419
+ msgid "Actions"
420
+ msgstr "Akce"
421
+
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
426
+ msgid "Fieldset"
427
+ msgstr "Skupina polí"
428
+
429
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
431
+ msgid "Can be empty"
432
+ msgstr "Může být prázdné"
433
+
434
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
435
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
436
+ msgid "Check for E-mail syntax"
437
+ msgstr "Zkontrolovat formát e-mailu"
438
+
439
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
441
+ msgid "Can be modified"
442
+ msgstr "Může být upraveno"
443
+
444
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
445
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
446
+ msgid "Can be modified only if empty"
447
+ msgstr "Může být upraven pouze pokud je prázdný"
448
+
449
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
451
+ msgid "Can be modified only by admin"
452
+ msgstr "Může být upraven pouze administrátorem"
453
+
454
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
455
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
456
+ msgid "Can be modified only by admin or if empty"
457
+ msgstr "Může být upraven pouze administrátorem nebou pokud je prázdný"
458
+
459
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
461
+ msgid "Cannot be modified"
462
+ msgstr "Nelze upravit"
463
+
464
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
465
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
466
+ msgid "Should be equal TO"
467
+ msgstr "Mělo by být rovné "
468
+
469
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
470
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
471
+ msgid "Case sensitive"
472
+ msgstr "Rozlišovat velikost písmen"
473
+
474
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
475
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
476
+ msgid "Regular Expression"
477
+ msgstr "Regulární výraz"
478
+
479
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
480
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
481
+ msgid "Show the field in the registration"
482
+ msgstr "Zobrazit pole při registraci"
483
+
484
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
485
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
486
+ msgid "Show the field in User's profile"
487
+ msgstr "Zobrazit pole v uživatelském profilu"
488
+
489
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
490
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
491
+ msgid "Show the field in Users Extended section"
492
+ msgstr "Zobrazit pole v sekci Uživatelská rozšíření"
493
+
494
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
495
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
496
+ msgid "Show the field in the search engine"
497
+ msgstr "Zobrazit pole ve vyhledávání"
498
+
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
500
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
501
+ msgid "Show the field in the blog"
502
+ msgstr "Zobrazit pole na blogu"
503
+
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
506
+ msgid "Show the field if the role is at least:"
507
+ msgstr "Zobrazit pole v případě, že je role alespoň:"
508
+
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
511
+ msgid "Anonymous"
512
+ msgstr "Anonym"
513
+
514
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
516
+ msgid "User has 'view_cimy_extra_fields' capability"
517
+ msgstr "Uživatel má schopnost 'view_cimy_extra_fields'"
518
+
519
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
521
+ msgid "Send an email to the admin if the user changes its value"
522
+ msgstr "Odeslat e-mail aministrátorovi v případě, že uživatel změní jeho hodnotu"
523
+
524
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
526
+ msgid "Advanced options"
527
+ msgstr "Rozšířené možnosti"
528
+
529
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
530
+ msgid "Clear"
531
+ msgstr "Smazat"
532
+
533
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
534
+ msgid "Invert selection"
535
+ msgstr "Invertovat výběr"
536
+
537
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
538
+ msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
539
+ msgstr "Jste si jistý, že chcete smazat pole a všechna data vložená uživateli?"
540
+
541
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
542
+ msgid "WordPress Fields"
543
+ msgstr "Wordpress pole"
544
+
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
546
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
548
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
549
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
550
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
551
+ msgid "Extra Fields"
552
+ msgstr "Extra pole"
553
+
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
555
+ msgid "None!"
556
+ msgstr "Žádný!"
557
+
558
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
559
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
560
+ msgid "Order"
561
+ msgstr "Pořadí"
562
+
563
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
564
+ msgid "Reset"
565
+ msgstr "Reset"
566
+
567
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
568
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
569
+ msgid "SUCCESSFUL"
570
+ msgstr "ÚSPĚŠNÉ"
571
+
572
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
573
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
574
+ msgid "select"
575
+ msgstr "vybrat"
576
+
577
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
578
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
579
+ msgid "Users per page"
580
+ msgstr "Uživatelů na stránku"
581
+
582
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
583
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
584
+ msgid "Apply"
585
+ msgstr "Použij"
586
+
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
588
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
589
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
590
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
591
+ msgid "Users Extended"
592
+ msgstr "Uživatelská rozšíření"
593
+
594
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
595
+ #, php-format
596
+ msgid "Search results for &#8220;%s&#8221;"
597
+ msgstr "Výsledek vyhledávání pro &#8220;%s&#8221;"
598
+
599
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
600
+ #, php-format
601
+ msgid "%1$s <span class=\"count\">(%2$s)</span>"
602
+ msgstr "%1$s <span class=\"count\">(%2$s)</span>"
603
+
604
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
605
+ msgid "Search Users"
606
+ msgstr "Hledat uživatele"
607
+
608
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
609
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
610
+ msgid "Role"
611
+ msgstr "Role"
612
+
613
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
614
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
616
+ msgid "Website"
617
+ msgstr "Webová stránka"
618
+
619
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
621
+ msgid "Posts"
622
+ msgstr "Příspěvky"
623
+
624
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
625
+ msgid "View posts by this author"
626
+ msgstr "Zobrazit příspěvky tohoto autora"
627
+
628
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
629
+ msgid "Super Admin"
630
+ msgstr "Super Admin"
631
+
632
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
633
+ #, php-format
634
+ msgid "e-mail: %s"
635
+ msgstr "e-mail: %s"
636
+
637
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
638
+ msgid "Change"
639
+ msgstr "Změnit"
640
+
641
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
642
+ msgid "Update selected users"
643
+ msgstr "Aktualizovat označeného uživatele"
644
+
645
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
646
+ msgid "Update"
647
+ msgstr "Aktualizovat"
648
+
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
650
+ msgid "OK"
651
+ msgstr "OK"
652
+
653
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
654
+ msgid "Cancel"
655
+ msgstr "Zrušit"
656
+
657
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
658
+ #, php-format
659
+ msgid "New user registration on your site %s:"
660
+ msgstr "Nově registrovaný uživatel na webu %s:"
661
+
662
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
663
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
664
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
665
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
666
+ #, php-format
667
+ msgid "Username: %s"
668
+ msgstr "Uživatelské jméno: %s"
669
+
670
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
671
+ #, php-format
672
+ msgid "E-mail: %s"
673
+ msgstr "E-mail: %s"
674
+
675
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
676
+ #, php-format
677
+ msgid "[%s] New User Registration"
678
+ msgstr "[%s] Nová uživatelská registrace"
679
+
680
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
681
+ #, php-format
682
+ msgid "[%s] Your username and password"
683
+ msgstr "[%s] Vaše jméno a heslo"
684
+
685
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
686
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
687
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
688
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
689
+ #, php-format
690
+ msgid "%s: %s"
691
+ msgstr "%s: %s"
692
+
693
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
694
+ #, php-format
695
+ msgid ""
696
+ "To activate your user, please click the following link:\n"
697
+ "\n"
698
+ "%s\n"
699
+ "\n"
700
+ "After you activate, you will receive *another email* with your login.\n"
701
+ "\n"
702
+ msgstr ""
703
+ "Pro aktivaci Vašeho účtu prosím klikněte na následující odkaz:\n"
704
+ "\n"
705
+ "%s\n"
706
+ "\n"
707
+ "Po aktivaci obdržíte další e-mail s Vašimi přístupovými údaji\n"
708
+ "\n"
709
+
710
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
711
+ #, php-format
712
+ msgid "[%1$s] Activate %2$s"
713
+ msgstr "[%1$s] Aktivujte účet %2$s"
714
+
715
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
716
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
717
+ msgid "Your account is now active!"
718
+ msgstr "Váš účet je nýní aktivován!"
719
+
720
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
721
+ #, php-format
722
+ msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
723
+ msgstr "Váš účet na <a href=\"%1$s\">%2$s</a> je aktivní. Nyní se můžete přihlásit na web za použití Vašeho uživatelského jména &#8220;%3$s&#8221;. Prosím zkontrolujte Váš e-mailovou schránku na adrese %4$s. Pokud jste neobdrželi e-mail prosím zkontrolujte adresář s nevyžádanou poštou (spamem). Pokud jste i přesto žádný e-mail neobdrželi <a href=\"%5$s\">restartujte své heslo</a></p>."
724
+
725
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
726
+ msgid "An error occurred during the activation"
727
+ msgstr "Běheme aktivace došlo k chybě"
728
+
729
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
730
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
731
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
732
+ #, php-format
733
+ msgid "Password: %s"
734
+ msgstr "Heslo: %s"
735
+
736
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
737
+ msgid "Invalid activation key."
738
+ msgstr "Aktivační klíč není validní."
739
+
740
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
741
+ msgid "The site is already active."
742
+ msgstr "Tento účet byl již aktivován."
743
+
744
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
745
+ msgid "Could not create user"
746
+ msgstr "Není možné vytvořit uživatele"
747
+
748
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
749
+ msgid "That username is already activated."
750
+ msgstr "Toto uživatelské jméno již bylo aktivováno."
751
+
752
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
753
+ msgid "That username is currently reserved but may be available in a couple of days."
754
+ msgstr "Toto uživatelské jméno je momentálně rezervováno, ale je možné, že bude během několika dní k dispozici."
755
+
756
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
757
+ msgid "username and email used"
758
+ msgstr "uživatelské jméno a e-mail je používán"
759
+
760
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
761
+ 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."
762
+ msgstr "Tato e-mailová adresa je již používána. Prosím zkontrolujte Vaši schránku kvůli aktivačnímu e-mailu. Pokud nic neprovedete bude dostupná během několika dní."
763
+
764
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:144
765
+ msgid "(required)"
766
+ msgstr "(vyžadováno)"
767
+
768
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
769
+ msgid "Delete the file"
770
+ msgstr "Smazat soubor"
771
+
772
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:455
773
+ msgid "Update the file"
774
+ msgstr "Aktualizovat soubor"
775
+
776
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:458
777
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
778
+ msgid "Delete the picture"
779
+ msgstr "Smazat obrázek"
780
+
781
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:459
782
+ msgid "Update the picture"
783
+ msgstr "Aktulizovat obrázek"
784
+
785
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:479
786
+ msgid "Picture URL:"
787
+ msgstr "URL obrázku:"
788
+
789
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
790
+ #, php-format
791
+ msgid "%s previous value: %s new value: %s"
792
+ msgstr "%s předchozí hodnota: %s nová hodnota: %s"
793
+
794
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
795
+ #, php-format
796
+ msgid "%s (%s) has changed one or more fields"
797
+ msgstr "%s (%s) změnil jedno nebo více polí"
798
+
799
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
800
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
801
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:559
802
+ msgid "Options"
803
+ msgstr "Možnosti"
804
+
805
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
806
+ msgid "WordPress Fields table emptied"
807
+ msgstr "WordPress tabulka polí byla vyprázdněna"
808
+
809
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
810
+ msgid "WordPress Fields table deleted"
811
+ msgstr "WordPress tabulka polí byla smazána"
812
+
813
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
814
+ msgid "Extra Fields table emptied"
815
+ msgstr "Tabulka Extra polí byla vyprázdněna"
816
+
817
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
818
+ msgid "Extra Fields table deleted"
819
+ msgstr "Tabulka Extra polí byla smazána"
820
+
821
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
822
+ msgid "Users Data table emptied"
823
+ msgstr "Tabulka uživatelských dat byla vyprázdněna"
824
+
825
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
826
+ msgid "Users Data table deleted"
827
+ msgstr "Tabulka uživateslkých dat byla smazána"
828
+
829
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
830
+ msgid "Options set to default values"
831
+ msgstr "Nastavení změny do výchozích hodnot"
832
+
833
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
834
+ msgid "Options deleted"
835
+ msgstr "Nastavení smazáno"
836
+
837
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
838
+ msgid "Options changed"
839
+ msgstr "Nastavení změneno"
840
+
841
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
842
+ msgid "This operation will create/update all missing tables/options, do you want to proceed?"
843
+ msgstr "Tato oprace vytvoří/aktualizuje všechný chybějící tabulky/možnosti. Chcete pokračovat?"
844
+
845
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
846
+ msgid "Support the Cimy Project"
847
+ msgstr "Podpořte Cimy Project"
848
+
849
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
850
+ 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!"
851
+ msgstr "Tento plug-in je výsledkem mnoha hodin vývojářské práce s cílem přidání nových funkcí, podpory nových verzí WordPressu a opravy chyb. Prosím podpořte finančně tento projekt, pokud Vám ušetřil čas!"
852
+
853
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
854
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
855
+ msgid "Save Changes"
856
+ msgstr "Uložit změny"
857
+
858
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
859
+ msgid "General"
860
+ msgstr "Obecné"
861
+
862
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
863
+ msgid "installed is"
864
+ msgstr "je instalován"
865
+
866
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
867
+ msgid "OPTIONS DELETED!"
868
+ msgstr "MOŽNOSTI SMAZÁNY!"
869
+
870
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
871
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
872
+ msgid "Fix the problem"
873
+ msgstr "Opravit problém"
874
+
875
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
876
+ msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
877
+ msgstr "VERZE NEJSOU SHODNÉ! Je to způsobené tím, že jste nedeaktivoval a nereaktivoval plug-in po aktualizaci! To může způsobovat problémy..."
878
+
879
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
880
+ msgid "Picture/Avatar upload"
881
+ msgstr "Nahrání obrázku/avatara"
882
+
883
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
884
+ msgid "is created and writable"
885
+ msgstr "je vytvořen a je zapisovatelný"
886
+
887
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
888
+ msgid "is NOT created or webserver does NOT have permission to write on it"
889
+ msgstr "NEBYL vytvořen nebo webový server nemá oprávnění k zápisu"
890
+
891
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
892
+ msgid "Show all fields in the welcome email"
893
+ msgstr "Zobrazit všechna pole v uvítacím e-mailu"
894
+
895
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
896
+ msgid "the email sent to the admin and to the user upon registration will have all fields"
897
+ msgstr "e-mail odeslaný administrátorovi a uživateli během registrace bude obsahovat všechna tato pole"
898
+
899
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
900
+ msgid "Enable email confirmation"
901
+ msgstr "Povolit potvrzení e-mailem"
902
+
903
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
904
+ msgid "user that registers should confirm its email address via a link click"
905
+ msgstr "uživatel, jež se registruje, by měl potvrdit svoji e-mailovou adresu přes kliknutí na odkaz"
906
+
907
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
908
+ msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
909
+ msgstr "<strong>poznámka:</strong> zapnutím této volby budou automaticky zakázána (pouze během registrace) všechna nahrávací pole: soubor, obrázek, avatar"
910
+
911
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
912
+ msgid "Enable form confirmation"
913
+ msgstr "Povolit potvrzení formuláře"
914
+
915
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
916
+ msgid "a summary of the registration form will be presented to the user"
917
+ msgstr "souhrn registračního formuláře bude prezentován uživateli"
918
+
919
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
920
+ msgid "Customize welcome email sent to the new user"
921
+ msgstr "Upravit uvítací e-mail zaslaný novému uživateli"
922
+
923
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
924
+ msgid "if you change or remove the placeholders then the email won't have the correct information"
925
+ msgstr "pokud změníte nebo odstraníte všechny zástupné symboly, pak Váš e-mail nemusí obsahovat správné informace"
926
+
927
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
928
+ msgid "Redirect to the source"
929
+ msgstr "Přesměrovat ke zdroji"
930
+
931
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
932
+ msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
933
+ msgstr "po registraci nebo potvrzení bude uživatel přesměrován na adresu, kde byl přesně před kliknutím na registrační odkaz"
934
+
935
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
936
+ msgid "No captcha"
937
+ msgstr "Bez captcha"
938
+
939
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
940
+ msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
941
+ msgstr "Povolit <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
942
+
943
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
944
+ msgid "Public KEY"
945
+ msgstr "Veřejný klíč"
946
+
947
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
948
+ msgid "Private KEY"
949
+ msgstr "Privátní klíč"
950
+
951
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
952
+ msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
953
+ msgstr "Povolit <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
954
+
955
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
956
+ msgid "This captcha is probably weaker, but is easier for users"
957
+ msgstr "Tato captcha je pravděpodobně slabší, ale pro uživatele jednodušší"
958
+
959
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
960
+ #, php-format
961
+ 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>"
962
+ msgstr "<strong>Varování: pro aktivaci této captcha stáhněte <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">tento balíček</a> a rozbalte jej pod %s</strong>"
963
+
964
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
965
+ msgid "Change login/registration page logo"
966
+ msgstr "Změnit logo na přihlašovací/registrační stránce"
967
+
968
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
969
+ msgid "Maximum recommended logo width is 328px, but any height should work."
970
+ msgstr "Doporučená maximální šířka loga je 328px, měla by fungovat libovolná šířka."
971
+
972
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
973
+ msgid "Database"
974
+ msgstr "Databáze"
975
+
976
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
977
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
978
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
979
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
980
+ msgid "select action"
981
+ msgstr "vybrat akci"
982
+
983
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:567
984
+ msgid "Default values"
985
+ msgstr "Výchozí hodnoty"
986
+
987
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
988
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
989
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
990
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
991
+ msgid "Delete"
992
+ msgstr "Smazat"
993
+
994
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
995
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:592
996
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:612
997
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
998
+ msgid "NOT PRESENT"
999
+ msgstr "NENÍ K DISPOZICI"
1000
+
1001
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
1002
+ msgid "WordPress Fields table"
1003
+ msgstr "WordPress tabulka polí"
1004
+
1005
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
1006
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
1007
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
1008
+ msgid "Empty"
1009
+ msgstr "Vyprázdnit"
1010
+
1011
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
1012
+ msgid "Extra Fields table"
1013
+ msgstr "Tabulka extra polí"
1014
+
1015
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
1016
+ msgid "Users Data table"
1017
+ msgstr "Tabulka uživatelských dat"
1018
+
1019
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:630
1020
+ msgid "all data inserted by users in all and only extra fields"
1021
+ msgstr "všechna data vložena uživateli do všech výhradně extra polí"
1022
+
1023
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
1024
+ msgid "Force tables creation"
1025
+ msgstr "Vynutit vytvoření tabulek"
1026
+
1027
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
1028
+ msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
1029
+ msgstr "ekvivalentní deaktivaci a aktivaci plug-inu; žádné další operace nebudou provedeny"
1030
+
1031
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
1032
+ msgid "User Profile"
1033
+ msgstr "Profil uživatele"
1034
+
1035
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
1036
+ msgid "Extra Fields section title"
1037
+ msgstr "Titulek sekce Extra pole "
1038
+
1039
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1040
+ msgid "Fieldset's titles, separates with comma"
1041
+ msgstr "Názvy skupin polí, oddělte čárkami"
1042
+
1043
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1044
+ msgid "example: title1,title2,title3"
1045
+ msgstr "Příklad: název1,název2,název3"
1046
+
1047
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
1048
+ msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1049
+ msgstr "<strong>poznámka:</strong> pokud změníte pořadí nebo odstraníte skupiny polí je možné, že budete muset znovu nastavit přiřazení všech extra polí do jejich skupin"
1050
+
1051
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
1052
+ msgid "Authors &amp; Users Extended"
1053
+ msgstr "Autoři &amp; Uživatelská rozšíření"
1054
+
1055
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
1056
+ msgid "Hide username field"
1057
+ msgstr "Skrýt pole s uživatelským jménem"
1058
+
1059
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
1060
+ msgid "Hide name field"
1061
+ msgstr "Skrýt pole jméno"
1062
+
1063
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
1064
+ msgid "Hide email field"
1065
+ msgstr "Skrýt pole e-mail"
1066
+
1067
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
1068
+ msgid "Hide role field"
1069
+ msgstr "Skrýt pole role"
1070
+
1071
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
1072
+ msgid "Hide website field"
1073
+ msgstr "Skrýt pole webová stránka"
1074
+
1075
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:703
1076
+ msgid "Hide n. posts field"
1077
+ msgstr "Skrýt n-té pole příspěvku"
1078
+
1079
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
1080
+ msgid "WordPress hidden fields"
1081
+ msgstr "WordPress skrytá pole"
1082
+
1083
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
1084
+ msgid "Show username"
1085
+ msgstr "Zobrazit uživatelské jméno"
1086
+
1087
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
1088
+ msgid "when unchecked the email address will be used as username"
1089
+ msgstr "pokud není zaškrtnuto bude jako uživatelské jméno použita e-mailová adresa"
1090
+
1091
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
1092
+ msgid "Show password"
1093
+ msgstr "Zobrazit heslo"
1094
+
1095
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:730
1096
+ msgid "Show confirmation password"
1097
+ msgstr "Zobrazit potvrzení hesla"
1098
+
1099
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
1100
+ msgid "Show password strength meter"
1101
+ msgstr "Zobrazit indikaci síly hesla"
1102
+
1103
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
1104
+ msgid "Show first name"
1105
+ msgstr "Zobrazit první jméno"
1106
+
1107
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
1108
+ msgid "Show last name"
1109
+ msgstr "Zobrazit příjmení"
1110
+
1111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:758
1112
+ msgid "Show nickname"
1113
+ msgstr "Zobrazit přezdívku"
1114
+
1115
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
1116
+ msgid "Show website"
1117
+ msgstr "Zobrazit webovou stránku"
1118
+
1119
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:772
1120
+ msgid "Show AIM"
1121
+ msgstr "Zobrazit \"AIM\""
1122
+
1123
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
1124
+ msgid "Show Yahoo IM"
1125
+ msgstr "Zobrazit \"Yahoo IM\""
1126
+
1127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
1128
+ msgid "Show Jabber / Google Talk"
1129
+ msgstr "Zobrazit \"Jabber / Google Talk\""
1130
+
1131
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
1132
+ msgid "Show Biographical Info"
1133
+ msgstr "Zobrazit bibliografické informace"
1134
+
1135
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
1136
+ #, php-format
1137
+ msgid "File '%s' doesn't exist?"
1138
+ msgstr "Existuje soubor '%s'?"
1139
+
1140
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
1141
+ msgid "The GD image library is not installed."
1142
+ msgstr "Knihovna obrázků GD není nainstalována"
1143
+
1144
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
1145
+ #, php-format
1146
+ msgid "File '%s' is not an image."
1147
+ msgstr "Soubor '%s' není obrázek."
1148
+
1149
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
1150
+ 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!"
1151
+ msgstr "<strong>Poznámka:</strong> tento web umožňuje přizpůsobit heslo. Po registraci obdržíte e-mail s jiným heslem, nestrarejte se o to!"
1152
+
1153
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:218
1154
+ msgid "Password"
1155
+ msgstr "Heslo"
1156
+
1157
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
1158
+ msgid "Password confirmation"
1159
+ msgstr "Potvrzení hesla"
1160
+
1161
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
1162
+ msgid "First name"
1163
+ msgstr "První jméno"
1164
+
1165
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:284
1166
+ msgid "Last name"
1167
+ msgstr "Příjmení"
1168
+
1169
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:306
1170
+ msgid "Nickname"
1171
+ msgstr "Přezdívka"
1172
+
1173
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:350
1174
+ msgid "AIM"
1175
+ msgstr "AIM"
1176
+
1177
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:372
1178
+ msgid "Yahoo IM"
1179
+ msgstr "Yahoo IM"
1180
+
1181
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:394
1182
+ msgid "Jabber / Google Talk"
1183
+ msgstr "Jabber / Google Talk"
1184
+
1185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:416
1186
+ msgid "Biographical Info"
1187
+ msgstr "Bibliografické informace"
1188
+
1189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:429
1190
+ msgid "no fieldset"
1191
+ msgstr "žádná skupina polí"
1192
+
1193
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:433
1194
+ msgid "All"
1195
+ msgstr "Vše"
1196
+
1197
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1198
+ msgid "Done"
1199
+ msgstr ""
1200
+
1201
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1202
+ msgid "&laquo; Previous"
1203
+ msgstr ""
1204
+
1205
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1206
+ msgid "Next &raquo;"
1207
+ msgstr ""
1208
+
1209
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1021
1210
+ msgid "Today"
1211
+ msgstr ""
1212
+
1213
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1024
1214
+ #, fuzzy
1215
+ msgid "Select Month"
1216
+ msgstr "vybrat akci"
1217
+
1218
+ #~ msgid "&laquo; Back to All Users"
1219
+ #~ msgstr "&laquo; Powrót do wszystkich"
1220
+
1221
+ #~ msgid "A&amp;U Extended"
1222
+ #~ msgstr "Rozszerzenia"
1223
+
1224
+ #~ msgid "Users Matching \"%s\""
1225
+ #~ msgstr "Użytkownicy pasujący do wzorca \"%s\""
1226
+
1227
+ #~ msgid "Users Extended List"
1228
+ #~ msgstr "Rozszerzona lista użytkowników"
1229
+
1230
+ #~ msgid "Authors &amp; Users Extended List"
1231
+ #~ msgstr "Rozszerzona lista użytkowników i autorów"
1232
+
1233
+ #, fuzzy
1234
+ #~ msgid "Username:"
1235
+ #~ msgstr "Nazwa użytkownika"
1236
+
1237
+ #, fuzzy
1238
+ #~ msgid "Password:"
1239
+ #~ msgstr "Hasło"
1240
+
1241
+ #, fuzzy
1242
+ #~ msgid ""
1243
+ #~ "<strong>Note:</strong> this website let you personalize your password; "
1244
+ #~ "after activating the user/blog will be displayed another password, do not "
1245
+ #~ "care about that!"
1246
+ #~ msgstr ""
1247
+ #~ "<strong>Anm.:</strong> Diese Webseite lässt Sie Ihr Passwort frei wählen. "
1248
+ #~ "Nach der Registrierung erhalten Sie eine E-Mail mit einem anderen "
1249
+ #~ "Passwort. Bitte löschen Sie diese ungesehen."
langs/cimy_uef-da_DK.mo CHANGED
Binary file
langs/cimy_uef-da_DK.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:39-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:45-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "FEJL"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "er forkert"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "JA"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NEJ"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Brugernavn"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Upload venligst et billede af en af følgende filtyper"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Upload venligst et billede af en af følgende filtyper"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Ændre rækkefølge"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Ændre rækkefølge"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Min. længde"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Eksakt længde"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Max. længde"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "Sletning gennemført"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Min. størrelse"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Eksakt størrelse"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Max. størrelse"
243
 
@@ -245,334 +245,356 @@ msgstr "Max. størrelse"
245
  msgid "Exact or Max size"
246
  msgstr "Eksakt eller Max. størrelse"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Navn ikke angivet"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Navnet må ikke indeholde mellemrum"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "Betegnelse ikke angivet"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "ikke valgt (kræves ved denne Type)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Ved valg"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "Min eller Max kan ikke vælges"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "skal angives indenfor følgende talrække"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "LIG MED ikke angivet"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Felt indsat"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Felt #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "Opdatering gennemført"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Det valgte navn findes allerede, vælg venligst et andet"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Tilføj et nyt felt"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "For at tilføje et nyt felt kræves angivelse af navn, type og betegnelse; værdi og beskrivelse kan fravælges. Reglerne anvendes under brugerregistrering."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "<strong>radio</strong> og <strong>checkbox</strong>: <em>Værdi</em> og <em>LIG MED</em> kan kun have værdierne 'Yes' eller 'No', dvs. valgt eller ikke valgt."
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "<strong>drop-down</strong>: Du skal angive de mulige valgmuligheder under 'betegnelse' i følgende format: Betegnelse/værdi1,værdi2. F. eks.: Køn/mand,kvinde"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "<strong>picture-url</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; <em>er LIG MED</em> betegner billedets maksimale pixelbredde (højden reguleres proportionelt)."
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  #, fuzzy
345
  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"
346
  msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
347
 
348
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
349
  #, fuzzy
350
  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"
351
  msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
352
 
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
359
  msgid "Name"
360
  msgstr "Navn"
361
 
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
368
  msgid "Value"
369
  msgstr "Værdi"
370
 
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
375
  msgid "Type"
376
  msgstr "Type"
377
 
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
382
  msgid "Label"
383
  msgstr "Betegnelse"
384
 
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
389
  msgid "Description"
390
  msgstr "Beskrivelse"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
393
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
394
  msgid "Rules"
395
  msgstr "Regler"
396
 
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
399
  msgid "Actions"
400
  msgstr "Handlinger"
401
 
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
406
  #, fuzzy
407
  msgid "Fieldset"
408
  msgstr "Felter"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
412
  msgid "Can be empty"
413
  msgstr "Kan være tomt"
414
 
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
417
  msgid "Check for E-mail syntax"
418
  msgstr "Kontroller venligst e-mailadressen"
419
 
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
422
  msgid "Can be modified"
423
  msgstr "Kan ændres"
424
 
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
427
  msgid "Can be modified only if empty"
428
  msgstr "Kan kun ændres hvis feltet er tomt"
429
 
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
432
  msgid "Can be modified only by admin"
433
  msgstr "Kan kun ændres af Administrator"
434
 
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
437
  msgid "Can be modified only by admin or if empty"
438
  msgstr "Kan kun ændres hvis det er tomt"
439
 
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
442
  msgid "Cannot be modified"
443
  msgstr "Kan ikke ændres"
444
 
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
447
  msgid "Should be equal TO"
448
  msgstr "Skal være LIG MED"
449
 
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
452
  msgid "Case sensitive"
453
  msgstr "Forskel på store og små bogstaver"
454
 
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
457
  msgid "Regular Expression"
458
  msgstr ""
459
 
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
462
  msgid "Show the field in the registration"
463
  msgstr "Vis felt i forbindelse med brugerregistrering"
464
 
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
467
  msgid "Show the field in User's profile"
468
  msgstr "Vis felt i 'Brugerprofil'"
469
 
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
472
  #, fuzzy
473
  msgid "Show the field in Users Extended section"
474
  msgstr "Vis felt under 'Vis alle brugere'"
475
 
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
478
  #, fuzzy
479
  msgid "Show the field in the search engine"
480
  msgstr "Vis felt i forbindelse med brugerregistrering"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
484
  #, fuzzy
485
  msgid "Show the field in the blog"
486
  msgstr "Vis felt i forbindelse med brugerregistrering"
487
 
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
490
  #, fuzzy
491
  msgid "Show the field if the role is at least:"
492
  msgstr "Vis felt i forbindelse med brugerregistrering"
493
 
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
496
  msgid "Anonymous"
497
  msgstr ""
498
 
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
501
  msgid "User has 'view_cimy_extra_fields' capability"
502
  msgstr ""
503
 
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
505
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
506
  msgid "Send an email to the admin if the user changes its value"
507
  msgstr ""
508
 
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
510
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
511
  #, fuzzy
512
  msgid "Advanced options"
513
  msgstr "Handlinger"
514
 
515
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
516
  msgid "Clear"
517
  msgstr "Slet"
518
 
519
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
520
  msgid "Invert selection"
521
  msgstr "Omvend markering"
522
 
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
524
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
525
  msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
526
 
527
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
528
  msgid "WordPress Fields"
529
  msgstr "WordPress felter"
530
 
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
532
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
535
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
536
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
537
  msgid "Extra Fields"
538
  msgstr "Ekstra felter"
539
 
540
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
541
  msgid "None!"
542
  msgstr "Ingen!"
543
 
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
545
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
546
  msgid "Order"
547
  msgstr "Rækkefølge"
548
 
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
550
  msgid "Reset"
551
  msgstr "Nulstil"
552
 
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
554
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
555
  msgid "SUCCESSFUL"
556
  msgstr "GENNEMFØRT"
557
 
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
560
  #, fuzzy
561
  msgid "select"
562
  msgstr "Slet"
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
566
  #, fuzzy
567
  msgid "Users per page"
568
  msgstr "Tabel for brugerdata"
569
 
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
571
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
572
  msgid "Apply"
573
  msgstr ""
574
 
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
577
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
578
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -580,70 +602,70 @@ msgstr ""
580
  msgid "Users Extended"
581
  msgstr "Vis alle brugere"
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
584
  #, php-format
585
  msgid "Search results for &#8220;%s&#8221;"
586
  msgstr ""
587
 
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
589
  #, php-format
590
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
591
  msgstr ""
592
 
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
594
  msgid "Search Users"
595
  msgstr ""
596
 
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
599
  #, fuzzy
600
  msgid "Role"
601
  msgstr "Regler"
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
605
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
606
  msgid "Website"
607
  msgstr "Website"
608
 
609
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
611
  msgid "Posts"
612
  msgstr "Indlæg"
613
 
614
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
615
  msgid "View posts by this author"
616
  msgstr "Vis denne brugers indlæg"
617
 
618
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
619
  msgid "Super Admin"
620
  msgstr ""
621
 
622
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
623
  #, php-format
624
  msgid "e-mail: %s"
625
  msgstr "e-mail: %s"
626
 
627
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
628
  #, fuzzy
629
  msgid "Change"
630
  msgstr "Ændre rækkefølge"
631
 
632
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
633
  #, fuzzy
634
  msgid "Update selected users"
635
  msgstr "Slet valgte felter"
636
 
637
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
638
  #, fuzzy
639
  msgid "Update"
640
  msgstr "Opdater felt"
641
 
642
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
643
  msgid "OK"
644
  msgstr ""
645
 
646
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
647
  msgid "Cancel"
648
  msgstr ""
649
 
@@ -777,12 +799,12 @@ msgstr "Opdater felt"
777
  msgid "Picture URL:"
778
  msgstr ""
779
 
780
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
781
  #, php-format
782
  msgid "%s previous value: %s new value: %s"
783
  msgstr ""
784
 
785
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
786
  #, php-format
787
  msgid "%s (%s) has changed one or more fields"
788
  msgstr ""
@@ -1196,17 +1218,14 @@ msgid "All"
1196
  msgstr ""
1197
 
1198
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1199
- #, fuzzy
1200
  msgid "Done"
1201
  msgstr ""
1202
 
1203
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1204
- #, fuzzy
1205
  msgid "&laquo; Previous"
1206
  msgstr ""
1207
 
1208
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1209
- #, fuzzy
1210
  msgid "Next &raquo;"
1211
  msgstr ""
1212
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "FEJL"
38
 
54
  msgstr "er forkert"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "JA"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NEJ"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Brugernavn"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Upload venligst et billede af en af følgende filtyper"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Upload venligst et billede af en af følgende filtyper"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Ændre rækkefølge"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Ændre rækkefølge"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Min. længde"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Eksakt længde"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Max. længde"
198
 
227
  msgstr "Sletning gennemført"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Min. størrelse"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Eksakt størrelse"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Max. størrelse"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Eksakt eller Max. størrelse"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Min. størrelse"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Eksakt størrelse"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Max. størrelse"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Navn ikke angivet"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Navnet må ikke indeholde mellemrum"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "Betegnelse ikke angivet"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "ikke valgt (kræves ved denne Type)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Ved valg"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "Min eller Max kan ikke vælges"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "skal angives indenfor følgende talrække"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "LIG MED ikke angivet"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "Ved 'Type' - 'checkbox' kan LIG MED kun være"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "Ved 'Type' - 'radio' kan LIG MED kun være"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "Ved 'Type' - 'checkbox' kan 'Værdi' kun være"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "Ved 'Type' - 'radio' kan 'Værdi' kun være"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Felt indsat"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Felt #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "Opdatering gennemført"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Det valgte navn findes allerede, vælg venligst et andet"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Tilføj et nyt felt"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "For at tilføje et nyt felt kræves angivelse af navn, type og betegnelse; værdi og beskrivelse kan fravælges. Reglerne anvendes under brugerregistrering."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "<strong>radio</strong> og <strong>checkbox</strong>: <em>Værdi</em> og <em>LIG MED</em> kan kun have værdierne 'Yes' eller 'No', dvs. valgt eller ikke valgt."
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "<strong>drop-down</strong>: Du skal angive de mulige valgmuligheder under 'betegnelse' i følgende format: Betegnelse/værdi1,værdi2. F. eks.: Køn/mand,kvinde"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "<strong>picture-url</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; <em>er LIG MED</em> betegner billedets maksimale pixelbredde (højden reguleres proportionelt)."
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "<strong>registration-date</strong>: <em>LIG MED</em> henviser til dato- og tidsformat."
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  #, fuzzy
363
  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"
364
  msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
365
 
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
367
  #, fuzzy
368
  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"
369
  msgstr "<strong>picture</strong>: Du kan anvende et standardbillede ved angivelse af billedets adresse (URL) under <em>Værdi</em>; 'min, eksakt, max størrelse' angives i KB;<em>er LIG MED</em> betegner den maksimale pixelstørrelse (højde eller bredde) for thumbnail-billede."
370
 
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
372
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
373
+ msgstr ""
374
+
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
381
  msgid "Name"
382
  msgstr "Navn"
383
 
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
390
  msgid "Value"
391
  msgstr "Værdi"
392
 
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
397
  msgid "Type"
398
  msgstr "Type"
399
 
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
404
  msgid "Label"
405
  msgstr "Betegnelse"
406
 
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
411
  msgid "Description"
412
  msgstr "Beskrivelse"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
416
  msgid "Rules"
417
  msgstr "Regler"
418
 
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
421
  msgid "Actions"
422
  msgstr "Handlinger"
423
 
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
428
  #, fuzzy
429
  msgid "Fieldset"
430
  msgstr "Felter"
431
 
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
434
  msgid "Can be empty"
435
  msgstr "Kan være tomt"
436
 
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
439
  msgid "Check for E-mail syntax"
440
  msgstr "Kontroller venligst e-mailadressen"
441
 
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
444
  msgid "Can be modified"
445
  msgstr "Kan ændres"
446
 
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
449
  msgid "Can be modified only if empty"
450
  msgstr "Kan kun ændres hvis feltet er tomt"
451
 
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
454
  msgid "Can be modified only by admin"
455
  msgstr "Kan kun ændres af Administrator"
456
 
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
459
  msgid "Can be modified only by admin or if empty"
460
  msgstr "Kan kun ændres hvis det er tomt"
461
 
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
464
  msgid "Cannot be modified"
465
  msgstr "Kan ikke ændres"
466
 
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
469
  msgid "Should be equal TO"
470
  msgstr "Skal være LIG MED"
471
 
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
474
  msgid "Case sensitive"
475
  msgstr "Forskel på store og små bogstaver"
476
 
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
479
  msgid "Regular Expression"
480
  msgstr ""
481
 
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
484
  msgid "Show the field in the registration"
485
  msgstr "Vis felt i forbindelse med brugerregistrering"
486
 
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
489
  msgid "Show the field in User's profile"
490
  msgstr "Vis felt i 'Brugerprofil'"
491
 
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
493
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
494
  #, fuzzy
495
  msgid "Show the field in Users Extended section"
496
  msgstr "Vis felt under 'Vis alle brugere'"
497
 
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
500
  #, fuzzy
501
  msgid "Show the field in the search engine"
502
  msgstr "Vis felt i forbindelse med brugerregistrering"
503
 
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
506
  #, fuzzy
507
  msgid "Show the field in the blog"
508
  msgstr "Vis felt i forbindelse med brugerregistrering"
509
 
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
512
  #, fuzzy
513
  msgid "Show the field if the role is at least:"
514
  msgstr "Vis felt i forbindelse med brugerregistrering"
515
 
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
518
  msgid "Anonymous"
519
  msgstr ""
520
 
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
523
  msgid "User has 'view_cimy_extra_fields' capability"
524
  msgstr ""
525
 
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
527
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
528
  msgid "Send an email to the admin if the user changes its value"
529
  msgstr ""
530
 
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
532
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
533
  #, fuzzy
534
  msgid "Advanced options"
535
  msgstr "Handlinger"
536
 
537
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
538
  msgid "Clear"
539
  msgstr "Slet"
540
 
541
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
542
  msgid "Invert selection"
543
  msgstr "Omvend markering"
544
 
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
546
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
547
  msgstr "Er du sikker på at du vil slette dette/disse felt(er) og al tilknyttet brugerdata?"
548
 
549
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
550
  msgid "WordPress Fields"
551
  msgstr "WordPress felter"
552
 
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
557
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
558
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
559
  msgid "Extra Fields"
560
  msgstr "Ekstra felter"
561
 
562
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
563
  msgid "None!"
564
  msgstr "Ingen!"
565
 
566
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
567
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
568
  msgid "Order"
569
  msgstr "Rækkefølge"
570
 
571
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
572
  msgid "Reset"
573
  msgstr "Nulstil"
574
 
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
577
  msgid "SUCCESSFUL"
578
  msgstr "GENNEMFØRT"
579
 
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
581
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
582
  #, fuzzy
583
  msgid "select"
584
  msgstr "Slet"
585
 
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
588
  #, fuzzy
589
  msgid "Users per page"
590
  msgstr "Tabel for brugerdata"
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
593
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
594
  msgid "Apply"
595
  msgstr ""
596
 
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
598
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
599
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
600
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
602
  msgid "Users Extended"
603
  msgstr "Vis alle brugere"
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
606
  #, php-format
607
  msgid "Search results for &#8220;%s&#8221;"
608
  msgstr ""
609
 
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
611
  #, php-format
612
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
613
  msgstr ""
614
 
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
616
  msgid "Search Users"
617
  msgstr ""
618
 
619
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
621
  #, fuzzy
622
  msgid "Role"
623
  msgstr "Regler"
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
626
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
627
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
628
  msgid "Website"
629
  msgstr "Website"
630
 
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
632
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
633
  msgid "Posts"
634
  msgstr "Indlæg"
635
 
636
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
637
  msgid "View posts by this author"
638
  msgstr "Vis denne brugers indlæg"
639
 
640
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
641
  msgid "Super Admin"
642
  msgstr ""
643
 
644
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
645
  #, php-format
646
  msgid "e-mail: %s"
647
  msgstr "e-mail: %s"
648
 
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
650
  #, fuzzy
651
  msgid "Change"
652
  msgstr "Ændre rækkefølge"
653
 
654
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
655
  #, fuzzy
656
  msgid "Update selected users"
657
  msgstr "Slet valgte felter"
658
 
659
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
660
  #, fuzzy
661
  msgid "Update"
662
  msgstr "Opdater felt"
663
 
664
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
665
  msgid "OK"
666
  msgstr ""
667
 
668
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
669
  msgid "Cancel"
670
  msgstr ""
671
 
799
  msgid "Picture URL:"
800
  msgstr ""
801
 
802
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
803
  #, php-format
804
  msgid "%s previous value: %s new value: %s"
805
  msgstr ""
806
 
807
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
808
  #, php-format
809
  msgid "%s (%s) has changed one or more fields"
810
  msgstr ""
1218
  msgstr ""
1219
 
1220
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1221
  msgid "Done"
1222
  msgstr ""
1223
 
1224
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1225
  msgid "&laquo; Previous"
1226
  msgstr ""
1227
 
1228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1229
  msgid "Next &raquo;"
1230
  msgstr ""
1231
 
langs/cimy_uef-de_DE.mo CHANGED
Binary file
langs/cimy_uef-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:39-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:39-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "FEHLER"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "ist nicht richtig"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "JA"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NEIN"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "\"Benutzer\"name"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-Mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Reihenfolge ändern "
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Reihenfolge ändern "
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Minimale Länge"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Exakte Länge"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Maximale Länge"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "erfolgreich gelöscht"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Minimale Größe"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Exakte Größe"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Maximale Größe"
243
 
@@ -245,332 +245,354 @@ msgstr "Maximale Größe"
245
  msgid "Exact or Max size"
246
  msgstr "Exakte oder maximale Größe"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Name nicht ausgefüllt"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Der Name darf keine Leerstellen enthalten."
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "nicht ausgewählt (für diesen Typ notwendig)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Wenn Sie folgendes auswählen"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "sollte im Bereich sein (von/bis)"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Feld richtig eingefügt."
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Feld #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "Update erfolgreich"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Ein neues Feld hinzufügen"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "Um ein neues Feld hinzuzufügen, musst Du einen Namen, einen Typ und eine Bezeichnung/\"label\" angeben. Wert/$value und Beschreibung sind optional. Die Regeln werden bei der User-Registrierung angewandt."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "Bei <strong>radio</strong> und <strong>checkbox</strong> gilt: <em>Wert/$value</em> und <em>ENTSRPICHT(equal TO)</em> können nur \"Yes\" oder \"No\" beinhalten, was \"ausgewählt\" oder \"nicht ausgewählt\" bedeutet."
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "Bei <strong>drop-down</strong> gilt: Du musst alle möglichen Werte in das Feld Bezeichnung/\"label\" schreiben. Beispiel: Bezeichnung/Wert1,Wert2. Pseudocode: Benutzerdefinierter Schlüssel/Wert,Wert; Code: $key/$value,$value; Spezifiziertes Beispiel: Geschlecht/männlich,weiblich"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "Bei <strong>picture-url</strong> gilt: Du kannst ein Bild einstellen, indem Du die Bildadresse (Url) in <em>Wert/$value</em> eingibst; <em>ENTSPRICHT(equal TO)</em> meint die maximale Breite in Pixel (die Höhe wird proportional angepasst)."
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
345
  msgstr "Für <strong>Avatar</strong>: Du kannst einen Standardavatar laden, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
346
 
347
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
348
  #, fuzzy
349
  msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
350
  msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
351
 
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
358
  msgid "Name"
359
  msgstr "Name"
360
 
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
367
  msgid "Value"
368
  msgstr "Wert/$value"
369
 
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
374
  msgid "Type"
375
  msgstr "Typ"
376
 
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
381
  msgid "Label"
382
  msgstr "Bezeichnung/\"label\""
383
 
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
388
  msgid "Description"
389
  msgstr "Beschreibung"
390
 
391
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
393
  msgid "Rules"
394
  msgstr "Regeln"
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
398
  msgid "Actions"
399
  msgstr "Aktion"
400
 
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
405
  #, fuzzy
406
  msgid "Fieldset"
407
  msgstr "Felder"
408
 
409
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
411
  msgid "Can be empty"
412
  msgstr "Kann leer sein"
413
 
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
416
  msgid "Check for E-mail syntax"
417
  msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
418
 
419
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
421
  msgid "Can be modified"
422
  msgstr "Änderung des Feldes möglich"
423
 
424
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
426
  msgid "Can be modified only if empty"
427
  msgstr "Änderung des Feldes möglich wenn leer"
428
 
429
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
431
  msgid "Can be modified only by admin"
432
  msgstr "Änderung des Feldes nur durch Admin möglich"
433
 
434
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
436
  msgid "Can be modified only by admin or if empty"
437
  msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
438
 
439
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
441
  msgid "Cannot be modified"
442
  msgstr "Änderung des Feldes nicht möglich"
443
 
444
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
446
  msgid "Should be equal TO"
447
  msgstr "ENTSPRICHT (equal TO) folgendem"
448
 
449
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
451
  msgid "Case sensitive"
452
  msgstr "Groß-/Kleinschreibung beachten"
453
 
454
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
456
  msgid "Regular Expression"
457
  msgstr ""
458
 
459
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
461
  msgid "Show the field in the registration"
462
  msgstr "Zeige das Feld bei der Registrierung"
463
 
464
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
466
  msgid "Show the field in User's profile"
467
  msgstr "Zeige das Feld im \"Benutzer\"profil"
468
 
469
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
471
  #, fuzzy
472
  msgid "Show the field in Users Extended section"
473
  msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
474
 
475
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
477
  #, fuzzy
478
  msgid "Show the field in the search engine"
479
  msgstr "Zeige das Feld bei der Registrierung"
480
 
481
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
483
  #, fuzzy
484
  msgid "Show the field in the blog"
485
  msgstr "Zeige das Feld bei der Registrierung"
486
 
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
489
  #, fuzzy
490
  msgid "Show the field if the role is at least:"
491
  msgstr "Zeige das Feld bei der Registrierung"
492
 
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
495
  msgid "Anonymous"
496
  msgstr ""
497
 
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
500
  msgid "User has 'view_cimy_extra_fields' capability"
501
  msgstr ""
502
 
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
505
  msgid "Send an email to the admin if the user changes its value"
506
  msgstr ""
507
 
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
510
  #, fuzzy
511
  msgid "Advanced options"
512
  msgstr "Aktion"
513
 
514
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
515
  msgid "Clear"
516
  msgstr "Löschen"
517
 
518
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
519
  msgid "Invert selection"
520
  msgstr "Auswahl umkehren"
521
 
522
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
523
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
524
  msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
525
 
526
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
527
  msgid "WordPress Fields"
528
  msgstr "WordPress Felder"
529
 
530
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
532
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
533
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
535
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
536
  msgid "Extra Fields"
537
  msgstr "Benutzerdefinierte Felder"
538
 
539
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
540
  msgid "None!"
541
  msgstr "Keine!"
542
 
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
545
  msgid "Order"
546
  msgstr "Reihenfolge"
547
 
548
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
549
  msgid "Reset"
550
  msgstr "Reset"
551
 
552
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
553
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
554
  msgid "SUCCESSFUL"
555
  msgstr "ERFOLGREICH"
556
 
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
559
  #, fuzzy
560
  msgid "select"
561
  msgstr "Löschen"
562
 
563
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
565
  msgid "Users per page"
566
  msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
567
 
568
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
569
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
570
  msgid "Apply"
571
  msgstr "anwenden"
572
 
573
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
574
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
575
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -578,69 +600,69 @@ msgstr "anwenden"
578
  msgid "Users Extended"
579
  msgstr "Liste aller \"Benutzer\""
580
 
581
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
582
  #, php-format
583
  msgid "Search results for &#8220;%s&#8221;"
584
  msgstr ""
585
 
586
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
587
  #, php-format
588
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
589
  msgstr ""
590
 
591
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
592
  msgid "Search Users"
593
  msgstr "Suche \"Benutzer\""
594
 
595
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
596
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
597
  msgid "Role"
598
  msgstr "\"Benutzer\"-Rollen"
599
 
600
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
601
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
602
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
603
  msgid "Website"
604
  msgstr "Webseite"
605
 
606
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
607
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
608
  msgid "Posts"
609
  msgstr "Artikel"
610
 
611
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
612
  msgid "View posts by this author"
613
  msgstr "Zeige Artikel dieses Autors"
614
 
615
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
616
  msgid "Super Admin"
617
  msgstr ""
618
 
619
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
620
  #, php-format
621
  msgid "e-mail: %s"
622
  msgstr "E-Mail: %s"
623
 
624
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
625
  #, fuzzy
626
  msgid "Change"
627
  msgstr "Reihenfolge ändern "
628
 
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
630
  #, fuzzy
631
  msgid "Update selected users"
632
  msgstr "Ausgewählte Felder löschen"
633
 
634
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
635
  #, fuzzy
636
  msgid "Update"
637
  msgstr "Feld aktualisieren"
638
 
639
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
640
  msgid "OK"
641
  msgstr ""
642
 
643
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
644
  msgid "Cancel"
645
  msgstr ""
646
 
@@ -772,12 +794,12 @@ msgstr "Bild aktualisieren"
772
  msgid "Picture URL:"
773
  msgstr "URL für Bild:"
774
 
775
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
776
  #, php-format
777
  msgid "%s previous value: %s new value: %s"
778
  msgstr ""
779
 
780
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
781
  #, php-format
782
  msgid "%s (%s) has changed one or more fields"
783
  msgstr ""
@@ -1186,17 +1208,14 @@ msgid "All"
1186
  msgstr ""
1187
 
1188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1189
- #, fuzzy
1190
  msgid "Done"
1191
  msgstr ""
1192
 
1193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1194
- #, fuzzy
1195
  msgid "&laquo; Previous"
1196
  msgstr ""
1197
 
1198
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1199
- #, fuzzy
1200
  msgid "Next &raquo;"
1201
  msgstr ""
1202
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:19-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:19-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "FEHLER"
38
 
54
  msgstr "ist nicht richtig"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "JA"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NEIN"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "\"Benutzer\"name"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-Mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Bitte lade ein Bild mit einer der folgenden Dateiendungen hoch"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Reihenfolge ändern "
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Reihenfolge ändern "
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Minimale Länge"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Exakte Länge"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Maximale Länge"
198
 
227
  msgstr "erfolgreich gelöscht"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Minimale Größe"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Exakte Größe"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Maximale Größe"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Exakte oder maximale Größe"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Minimale Größe"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Exakte Größe"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Maximale Größe"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Name nicht ausgefüllt"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Der Name darf keine Leerstellen enthalten."
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "\"label\"/Feld-Titel nicht ausgefüllt"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "nicht ausgewählt (für diesen Typ notwendig)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Wenn Sie folgendes auswählen"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "Sie dürfen \"Min\" oder \"Max\" nicht festlegen"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "sollte im Bereich sein (von/bis)"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "ENTSPRICHT (equal TO) nicht spezifiziert"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "Beim Typ <strong>checkbox</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "Beim Typ <strong>radio</strong> kann ENTSPRICHT (equal TO) nur folgendes sein"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "Beim Typ <strong>checkbox</strong> kann der Wert/$value nur folgendes sein"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "Beim Typ <strong>radio</strong> kann der Wert/$value nur folgendes sein"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Feld richtig eingefügt."
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Feld #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "Update erfolgreich"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Dieser Name ist in der Datenbank bereits vorhanden, bitte wähle einen anderen"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Ein neues Feld hinzufügen"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "Um ein neues Feld hinzuzufügen, musst Du einen Namen, einen Typ und eine Bezeichnung/\"label\" angeben. Wert/$value und Beschreibung sind optional. Die Regeln werden bei der User-Registrierung angewandt."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "Bei <strong>radio</strong> und <strong>checkbox</strong> gilt: <em>Wert/$value</em> und <em>ENTSRPICHT(equal TO)</em> können nur \"Yes\" oder \"No\" beinhalten, was \"ausgewählt\" oder \"nicht ausgewählt\" bedeutet."
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "Bei <strong>drop-down</strong> gilt: Du musst alle möglichen Werte in das Feld Bezeichnung/\"label\" schreiben. Beispiel: Bezeichnung/Wert1,Wert2. Pseudocode: Benutzerdefinierter Schlüssel/Wert,Wert; Code: $key/$value,$value; Spezifiziertes Beispiel: Geschlecht/männlich,weiblich"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "Bei <strong>picture-url</strong> gilt: Du kannst ein Bild einstellen, indem Du die Bildadresse (Url) in <em>Wert/$value</em> eingibst; <em>ENTSPRICHT(equal TO)</em> meint die maximale Breite in Pixel (die Höhe wird proportional angepasst)."
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "Bei <strong>registration-date</strong> gilt: <em>ENTSRPICHT(equal TO)</em> meint das Format für Datum und Zeit."
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  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"
363
  msgstr "Für <strong>Avatar</strong>: Du kannst einen Standardavatar laden, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
364
 
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
366
  #, fuzzy
367
  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"
368
  msgstr "Bei <strong>picture</strong> gilt: Du kannst ein Bild hochladen, indem Du die Url unter <em>Wert/Value</em> eingibst; \"minimale, exakte und maximale Größe\" sind in KB; <em>ENTSPRICHT(equal TO)</em> beinhaltet die maximale Pixel-Zahl (Breite oder Höhe) für das ausgegebene Bild (Thumbnail) und wird automatisch auf 512 Pixel gesetzt."
369
 
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
371
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
372
+ msgstr ""
373
+
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
380
  msgid "Name"
381
  msgstr "Name"
382
 
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
389
  msgid "Value"
390
  msgstr "Wert/$value"
391
 
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
396
  msgid "Type"
397
  msgstr "Typ"
398
 
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
403
  msgid "Label"
404
  msgstr "Bezeichnung/\"label\""
405
 
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
410
  msgid "Description"
411
  msgstr "Beschreibung"
412
 
413
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
415
  msgid "Rules"
416
  msgstr "Regeln"
417
 
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
420
  msgid "Actions"
421
  msgstr "Aktion"
422
 
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
427
  #, fuzzy
428
  msgid "Fieldset"
429
  msgstr "Felder"
430
 
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
433
  msgid "Can be empty"
434
  msgstr "Kann leer sein"
435
 
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
438
  msgid "Check for E-mail syntax"
439
  msgstr "Kontrollieren Sie bitte die E-Mail-Syntax"
440
 
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
443
  msgid "Can be modified"
444
  msgstr "Änderung des Feldes möglich"
445
 
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
448
  msgid "Can be modified only if empty"
449
  msgstr "Änderung des Feldes möglich wenn leer"
450
 
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
453
  msgid "Can be modified only by admin"
454
  msgstr "Änderung des Feldes nur durch Admin möglich"
455
 
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
458
  msgid "Can be modified only by admin or if empty"
459
  msgstr "Änderung des Feldes nur durch Admin, oder wenn leer"
460
 
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
463
  msgid "Cannot be modified"
464
  msgstr "Änderung des Feldes nicht möglich"
465
 
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
468
  msgid "Should be equal TO"
469
  msgstr "ENTSPRICHT (equal TO) folgendem"
470
 
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
473
  msgid "Case sensitive"
474
  msgstr "Groß-/Kleinschreibung beachten"
475
 
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
478
  msgid "Regular Expression"
479
  msgstr ""
480
 
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
483
  msgid "Show the field in the registration"
484
  msgstr "Zeige das Feld bei der Registrierung"
485
 
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
488
  msgid "Show the field in User's profile"
489
  msgstr "Zeige das Feld im \"Benutzer\"profil"
490
 
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
493
  #, fuzzy
494
  msgid "Show the field in Users Extended section"
495
  msgstr "Zeige das Feld in der \"Liste aller Benutzer\""
496
 
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
499
  #, fuzzy
500
  msgid "Show the field in the search engine"
501
  msgstr "Zeige das Feld bei der Registrierung"
502
 
503
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
505
  #, fuzzy
506
  msgid "Show the field in the blog"
507
  msgstr "Zeige das Feld bei der Registrierung"
508
 
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
511
  #, fuzzy
512
  msgid "Show the field if the role is at least:"
513
  msgstr "Zeige das Feld bei der Registrierung"
514
 
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
517
  msgid "Anonymous"
518
  msgstr ""
519
 
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
522
  msgid "User has 'view_cimy_extra_fields' capability"
523
  msgstr ""
524
 
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
527
  msgid "Send an email to the admin if the user changes its value"
528
  msgstr ""
529
 
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
532
  #, fuzzy
533
  msgid "Advanced options"
534
  msgstr "Aktion"
535
 
536
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
537
  msgid "Clear"
538
  msgstr "Löschen"
539
 
540
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
541
  msgid "Invert selection"
542
  msgstr "Auswahl umkehren"
543
 
544
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
545
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
546
  msgstr "Bist Du sicher, dass du diese(s) Feld(er) und alle Daten, die von \"Benutzer\"n angelegt wurden, löschen möchtest?"
547
 
548
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
549
  msgid "WordPress Fields"
550
  msgstr "WordPress Felder"
551
 
552
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
555
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
557
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
558
  msgid "Extra Fields"
559
  msgstr "Benutzerdefinierte Felder"
560
 
561
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
562
  msgid "None!"
563
  msgstr "Keine!"
564
 
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
566
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
567
  msgid "Order"
568
  msgstr "Reihenfolge"
569
 
570
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
571
  msgid "Reset"
572
  msgstr "Reset"
573
 
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
575
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
576
  msgid "SUCCESSFUL"
577
  msgstr "ERFOLGREICH"
578
 
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
581
  #, fuzzy
582
  msgid "select"
583
  msgstr "Löschen"
584
 
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
587
  msgid "Users per page"
588
  msgstr "anzuzeigende \"Benutzer\" pro \"Seite/page\""
589
 
590
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
591
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
592
  msgid "Apply"
593
  msgstr "anwenden"
594
 
595
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
596
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
597
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
598
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
600
  msgid "Users Extended"
601
  msgstr "Liste aller \"Benutzer\""
602
 
603
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
604
  #, php-format
605
  msgid "Search results for &#8220;%s&#8221;"
606
  msgstr ""
607
 
608
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
609
  #, php-format
610
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
611
  msgstr ""
612
 
613
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
614
  msgid "Search Users"
615
  msgstr "Suche \"Benutzer\""
616
 
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
618
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
619
  msgid "Role"
620
  msgstr "\"Benutzer\"-Rollen"
621
 
622
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
623
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
624
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
625
  msgid "Website"
626
  msgstr "Webseite"
627
 
628
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
630
  msgid "Posts"
631
  msgstr "Artikel"
632
 
633
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
634
  msgid "View posts by this author"
635
  msgstr "Zeige Artikel dieses Autors"
636
 
637
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
638
  msgid "Super Admin"
639
  msgstr ""
640
 
641
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
642
  #, php-format
643
  msgid "e-mail: %s"
644
  msgstr "E-Mail: %s"
645
 
646
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
647
  #, fuzzy
648
  msgid "Change"
649
  msgstr "Reihenfolge ändern "
650
 
651
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
652
  #, fuzzy
653
  msgid "Update selected users"
654
  msgstr "Ausgewählte Felder löschen"
655
 
656
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
657
  #, fuzzy
658
  msgid "Update"
659
  msgstr "Feld aktualisieren"
660
 
661
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
662
  msgid "OK"
663
  msgstr ""
664
 
665
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
666
  msgid "Cancel"
667
  msgstr ""
668
 
794
  msgid "Picture URL:"
795
  msgstr "URL für Bild:"
796
 
797
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
798
  #, php-format
799
  msgid "%s previous value: %s new value: %s"
800
  msgstr ""
801
 
802
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
803
  #, php-format
804
  msgid "%s (%s) has changed one or more fields"
805
  msgstr ""
1208
  msgstr ""
1209
 
1210
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1211
  msgid "Done"
1212
  msgstr ""
1213
 
1214
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1215
  msgid "&laquo; Previous"
1216
  msgstr ""
1217
 
1218
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1219
  msgid "Next &raquo;"
1220
  msgstr ""
1221
 
langs/cimy_uef-es_ES.mo CHANGED
Binary file
langs/cimy_uef-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:39-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:39-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ERROR"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "no es correcto"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "SI"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NO"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Nombre de usuario"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "Correo electr&oacute;nico"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Cambiar orden"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Cambiar orden"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Longitud m&iacute;nima"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Longitud exacta"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Longitud m&aacute;xima"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "borrado correctamente"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Tama&ntilde;o m&iacute;nimo"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Tama&ntilde;o exacto"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Tama&ntilde;o m&aacute;ximo"
243
 
@@ -245,331 +245,353 @@ msgstr "Tama&ntilde;o m&aacute;ximo"
245
  msgid "Exact or Max size"
246
  msgstr "Tama&ntilde;o m&aacute;ximo o exacto"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Nombre no especificado"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "El nombre no puede contener espacios"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "Etiqueta no especificada"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "no seleccionado (necesario para este tipo)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Si usted selecciona"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "usted no puede seleccionar m&iacute;nimo o m&aacute;ximo"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "debe estar en el rango de"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "Igual a no especificado"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "Con tipo radio \"igual a\" solo puede ser"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "Con tipo radio \"Valor\" solo puede ser"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Campo insertado correctamente"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Campo #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "Actualizado correctamente"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "El nombre insertado"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Agregar un nuevo Campo"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "Para agregar un nuevo campo, debe elegir un nombre, tipo y etiqueta. Es opcional indicar un valor y descripci&oacute;n. Las reglas se aplican durante el registro del usuario."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "Con <strong>radio</strong> y <strong>checkbox</strong>: <em>Valor</em> y <em>igual a</em> &uacute;nicamente puede ser 'Yes' o 'No', es decir seleccionado o no seleccionado"
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"m&iacute;nimo,exacto y m&aacute;ximo tama&ntilde;o\" est&aacute;n en KB; <em>igual a</em> significa el tama&ntilde;no m&aacute;ximo en pixeles (ancho o alto) para el thumbnail"
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "Con <strong>picture-url</strong>: puede precargar una imagen por defecto poniendo la URL en <em>Valor</em>; <em>igual a</em> significa el m&aacute;ximo tama&ntilde;o en pixeles (la altura ser&aacute; proporcional)"
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
345
  msgstr "Con <strong>avatar</strong>: puede precargar una imagen por defecto coloc&aacute;ndola en <em>Valor</em>; 'm&iacute;nimo,exacto,m&aacute;ximo tama&ntilde;o' son en KB; <em>igual a</em> es autom&aacute;ticamente fijado en 512 pixeles"
346
 
347
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
348
  #, fuzzy
349
  msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
350
  msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"m&iacute;nimo,exacto y m&aacute;ximo tama&ntilde;o\" est&aacute;n en KB; <em>igual a</em> significa el tama&ntilde;no m&aacute;ximo en pixeles (ancho o alto) para el thumbnail"
351
 
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
358
  msgid "Name"
359
  msgstr "Nombre"
360
 
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
367
  msgid "Value"
368
  msgstr "Valor"
369
 
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
374
  msgid "Type"
375
  msgstr "Tipo"
376
 
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
381
  msgid "Label"
382
  msgstr "Etiqueta"
383
 
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
388
  msgid "Description"
389
  msgstr "Descripci&oacute;n"
390
 
391
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
393
  msgid "Rules"
394
  msgstr "Reglas"
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
398
  msgid "Actions"
399
  msgstr "Acciones"
400
 
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
405
  msgid "Fieldset"
406
  msgstr "Grupo de campos"
407
 
408
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
409
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
410
  msgid "Can be empty"
411
  msgstr "Puede estar vac&iacute;o"
412
 
413
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
415
  msgid "Check for E-mail syntax"
416
  msgstr "Checar formato de e-mail"
417
 
418
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
419
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
420
  msgid "Can be modified"
421
  msgstr "Puede ser modificado"
422
 
423
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
424
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
425
  msgid "Can be modified only if empty"
426
  msgstr "Puede ser modificado solo si est&aacute; vac&iacute;o"
427
 
428
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
429
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
430
  msgid "Can be modified only by admin"
431
  msgstr "Puede ser modificado solo por el administrador"
432
 
433
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
434
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
435
  msgid "Can be modified only by admin or if empty"
436
  msgstr "Puede ser modificado solo por el administrador o si est&aacute; vac&iacute;o"
437
 
438
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
439
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
440
  msgid "Cannot be modified"
441
  msgstr "No puede ser modificado"
442
 
443
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
444
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
445
  msgid "Should be equal TO"
446
  msgstr "Debe ser igual a"
447
 
448
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
449
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
450
  msgid "Case sensitive"
451
  msgstr "Distinci&oacute;n may&uacute;sculas y min&uacute;sculas"
452
 
453
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
454
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
455
  msgid "Regular Expression"
456
  msgstr "Expresi&oacute;n regular"
457
 
458
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
459
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
460
  msgid "Show the field in the registration"
461
  msgstr "Mostrar el campo en el registro"
462
 
463
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
464
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
465
  msgid "Show the field in User's profile"
466
  msgstr "Mostrar el campo en el perfil del usuario"
467
 
468
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
469
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
470
  #, fuzzy
471
  msgid "Show the field in Users Extended section"
472
  msgstr "Mostrar el campo en el men&uacute; extendido de A&amp;U"
473
 
474
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
475
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
476
  #, fuzzy
477
  msgid "Show the field in the search engine"
478
  msgstr "Mostrar el campo en el registro"
479
 
480
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
481
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
482
  #, fuzzy
483
  msgid "Show the field in the blog"
484
  msgstr "Mostrar el campo en el registro"
485
 
486
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
488
  #, fuzzy
489
  msgid "Show the field if the role is at least:"
490
  msgstr "Mostrar el campo en el registro"
491
 
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
494
  msgid "Anonymous"
495
  msgstr ""
496
 
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
499
  msgid "User has 'view_cimy_extra_fields' capability"
500
  msgstr ""
501
 
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
504
  msgid "Send an email to the admin if the user changes its value"
505
  msgstr ""
506
 
507
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
509
  #, fuzzy
510
  msgid "Advanced options"
511
  msgstr "Acciones"
512
 
513
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
514
  msgid "Clear"
515
  msgstr "Vaciar"
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
518
  msgid "Invert selection"
519
  msgstr "Invertir Selecci&oacute;n"
520
 
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
522
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
523
  msgstr "&lquot;Est&aacute; seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
524
 
525
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
526
  msgid "WordPress Fields"
527
  msgstr "Campos WordPress"
528
 
529
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
530
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
532
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
533
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
535
  msgid "Extra Fields"
536
  msgstr "Campos Adicionales"
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
539
  msgid "None!"
540
  msgstr "Ninguno!"
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
544
  msgid "Order"
545
  msgstr "Orden"
546
 
547
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
548
  msgid "Reset"
549
  msgstr "Reestablecer"
550
 
551
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
552
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
553
  msgid "SUCCESSFUL"
554
  msgstr "EXITOSO"
555
 
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
558
  #, fuzzy
559
  msgid "select"
560
  msgstr "Borrar"
561
 
562
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
563
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
564
  msgid "Users per page"
565
  msgstr "Usuarios por p&aacute;gina"
566
 
567
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
568
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
569
  msgid "Apply"
570
  msgstr "Aplicar"
571
 
572
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
573
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
574
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
575
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -577,69 +599,69 @@ msgstr "Aplicar"
577
  msgid "Users Extended"
578
  msgstr "Usuarios extendido"
579
 
580
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
581
  #, php-format
582
  msgid "Search results for &#8220;%s&#8221;"
583
  msgstr ""
584
 
585
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
586
  #, php-format
587
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
588
  msgstr ""
589
 
590
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
591
  msgid "Search Users"
592
  msgstr "Buscar Usuarios"
593
 
594
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
595
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
596
  msgid "Role"
597
  msgstr "Rol"
598
 
599
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
600
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
601
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
602
  msgid "Website"
603
  msgstr "Sitio Web"
604
 
605
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
606
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
607
  msgid "Posts"
608
  msgstr "Entradas"
609
 
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
611
  msgid "View posts by this author"
612
  msgstr "Ver entradas de este autor"
613
 
614
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
615
  msgid "Super Admin"
616
  msgstr ""
617
 
618
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
619
  #, php-format
620
  msgid "e-mail: %s"
621
  msgstr "correo electr&oacute;nico: %s"
622
 
623
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
624
  #, fuzzy
625
  msgid "Change"
626
  msgstr "Cambiar orden"
627
 
628
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
629
  #, fuzzy
630
  msgid "Update selected users"
631
  msgstr "Borrar campos seleccionados"
632
 
633
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
634
  #, fuzzy
635
  msgid "Update"
636
  msgstr "Actualizar campo"
637
 
638
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
639
  msgid "OK"
640
  msgstr ""
641
 
642
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
643
  msgid "Cancel"
644
  msgstr ""
645
 
@@ -771,12 +793,12 @@ msgstr "Actualizar la imagen"
771
  msgid "Picture URL:"
772
  msgstr "URL de la imagen:"
773
 
774
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
775
  #, php-format
776
  msgid "%s previous value: %s new value: %s"
777
  msgstr ""
778
 
779
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
780
  #, php-format
781
  msgid "%s (%s) has changed one or more fields"
782
  msgstr ""
@@ -1184,17 +1206,14 @@ msgid "All"
1184
  msgstr ""
1185
 
1186
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1187
- #, fuzzy
1188
  msgid "Done"
1189
  msgstr ""
1190
 
1191
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1192
- #, fuzzy
1193
  msgid "&laquo; Previous"
1194
  msgstr ""
1195
 
1196
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1197
- #, fuzzy
1198
  msgid "Next &raquo;"
1199
  msgstr ""
1200
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ERROR"
38
 
54
  msgstr "no es correcto"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "SI"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NO"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Nombre de usuario"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "Correo electr&oacute;nico"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Por favor suba la imagen con alguna de las siguientes extensiones"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Cambiar orden"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Cambiar orden"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Longitud m&iacute;nima"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Longitud exacta"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Longitud m&aacute;xima"
198
 
227
  msgstr "borrado correctamente"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Tama&ntilde;o m&iacute;nimo"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Tama&ntilde;o exacto"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Tama&ntilde;o m&aacute;ximo"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Tama&ntilde;o m&aacute;ximo o exacto"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Tama&ntilde;o m&iacute;nimo"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Tama&ntilde;o exacto"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Tama&ntilde;o m&aacute;ximo"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Nombre no especificado"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "El nombre no puede contener espacios"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "Etiqueta no especificada"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "no seleccionado (necesario para este tipo)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Si usted selecciona"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "usted no puede seleccionar m&iacute;nimo o m&aacute;ximo"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "debe estar en el rango de"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "Igual a no especificado"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "Con tipo casilla de verificación \"igual a\" solo puede ser"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "Con tipo radio \"igual a\" solo puede ser"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "Con tipo casilla de verificación \"Valor\" solo puede ser"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "Con tipo radio \"Valor\" solo puede ser"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Campo insertado correctamente"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Campo #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "Actualizado correctamente"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "El nombre insertado"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Agregar un nuevo Campo"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "Para agregar un nuevo campo, debe elegir un nombre, tipo y etiqueta. Es opcional indicar un valor y descripci&oacute;n. Las reglas se aplican durante el registro del usuario."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "Con <strong>radio</strong> y <strong>checkbox</strong>: <em>Valor</em> y <em>igual a</em> &uacute;nicamente puede ser 'Yes' o 'No', es decir seleccionado o no seleccionado"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "Con <strong>drop-down</strong>: debe agregar todas las opciones en \"etiqueta\" por ejemplo: etiqueta/elemento1,elemento2,elemento3"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"m&iacute;nimo,exacto y m&aacute;ximo tama&ntilde;o\" est&aacute;n en KB; <em>igual a</em> significa el tama&ntilde;no m&aacute;ximo en pixeles (ancho o alto) para el thumbnail"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "Con <strong>picture-url</strong>: puede precargar una imagen por defecto poniendo la URL en <em>Valor</em>; <em>igual a</em> significa el m&aacute;ximo tama&ntilde;o en pixeles (la altura ser&aacute; proporcional)"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "Con <strong>registration-date</strong>: <em>igual a</em> significa el formato de fecha y hora"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  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"
363
  msgstr "Con <strong>avatar</strong>: puede precargar una imagen por defecto coloc&aacute;ndola en <em>Valor</em>; 'm&iacute;nimo,exacto,m&aacute;ximo tama&ntilde;o' son en KB; <em>igual a</em> es autom&aacute;ticamente fijado en 512 pixeles"
364
 
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
366
  #, fuzzy
367
  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"
368
  msgstr "Con <strong>picture</strong>: puede precargar una imagen por default poniendo su URL en <em>Valor</em>; \"m&iacute;nimo,exacto y m&aacute;ximo tama&ntilde;o\" est&aacute;n en KB; <em>igual a</em> significa el tama&ntilde;no m&aacute;ximo en pixeles (ancho o alto) para el thumbnail"
369
 
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
371
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
372
+ msgstr ""
373
+
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
380
  msgid "Name"
381
  msgstr "Nombre"
382
 
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
389
  msgid "Value"
390
  msgstr "Valor"
391
 
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
396
  msgid "Type"
397
  msgstr "Tipo"
398
 
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
403
  msgid "Label"
404
  msgstr "Etiqueta"
405
 
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
410
  msgid "Description"
411
  msgstr "Descripci&oacute;n"
412
 
413
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
415
  msgid "Rules"
416
  msgstr "Reglas"
417
 
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
420
  msgid "Actions"
421
  msgstr "Acciones"
422
 
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
427
  msgid "Fieldset"
428
  msgstr "Grupo de campos"
429
 
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
432
  msgid "Can be empty"
433
  msgstr "Puede estar vac&iacute;o"
434
 
435
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
437
  msgid "Check for E-mail syntax"
438
  msgstr "Checar formato de e-mail"
439
 
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
442
  msgid "Can be modified"
443
  msgstr "Puede ser modificado"
444
 
445
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
447
  msgid "Can be modified only if empty"
448
  msgstr "Puede ser modificado solo si est&aacute; vac&iacute;o"
449
 
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
452
  msgid "Can be modified only by admin"
453
  msgstr "Puede ser modificado solo por el administrador"
454
 
455
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
457
  msgid "Can be modified only by admin or if empty"
458
  msgstr "Puede ser modificado solo por el administrador o si est&aacute; vac&iacute;o"
459
 
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
462
  msgid "Cannot be modified"
463
  msgstr "No puede ser modificado"
464
 
465
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
467
  msgid "Should be equal TO"
468
  msgstr "Debe ser igual a"
469
 
470
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
472
  msgid "Case sensitive"
473
  msgstr "Distinci&oacute;n may&uacute;sculas y min&uacute;sculas"
474
 
475
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
477
  msgid "Regular Expression"
478
  msgstr "Expresi&oacute;n regular"
479
 
480
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
482
  msgid "Show the field in the registration"
483
  msgstr "Mostrar el campo en el registro"
484
 
485
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
487
  msgid "Show the field in User's profile"
488
  msgstr "Mostrar el campo en el perfil del usuario"
489
 
490
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
492
  #, fuzzy
493
  msgid "Show the field in Users Extended section"
494
  msgstr "Mostrar el campo en el men&uacute; extendido de A&amp;U"
495
 
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
498
  #, fuzzy
499
  msgid "Show the field in the search engine"
500
  msgstr "Mostrar el campo en el registro"
501
 
502
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
503
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
504
  #, fuzzy
505
  msgid "Show the field in the blog"
506
  msgstr "Mostrar el campo en el registro"
507
 
508
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
510
  #, fuzzy
511
  msgid "Show the field if the role is at least:"
512
  msgstr "Mostrar el campo en el registro"
513
 
514
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
516
  msgid "Anonymous"
517
  msgstr ""
518
 
519
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
521
  msgid "User has 'view_cimy_extra_fields' capability"
522
  msgstr ""
523
 
524
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
526
  msgid "Send an email to the admin if the user changes its value"
527
  msgstr ""
528
 
529
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
531
  #, fuzzy
532
  msgid "Advanced options"
533
  msgstr "Acciones"
534
 
535
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
536
  msgid "Clear"
537
  msgstr "Vaciar"
538
 
539
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
540
  msgid "Invert selection"
541
  msgstr "Invertir Selecci&oacute;n"
542
 
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
544
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
545
  msgstr "&lquot;Est&aacute; seguro de que quiere borrar los campos y todos los datos insertados por los usuarios?"
546
 
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
548
  msgid "WordPress Fields"
549
  msgstr "Campos WordPress"
550
 
551
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
552
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
554
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
555
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
557
  msgid "Extra Fields"
558
  msgstr "Campos Adicionales"
559
 
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
561
  msgid "None!"
562
  msgstr "Ninguno!"
563
 
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
566
  msgid "Order"
567
  msgstr "Orden"
568
 
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
570
  msgid "Reset"
571
  msgstr "Reestablecer"
572
 
573
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
574
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
575
  msgid "SUCCESSFUL"
576
  msgstr "EXITOSO"
577
 
578
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
580
  #, fuzzy
581
  msgid "select"
582
  msgstr "Borrar"
583
 
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
586
  msgid "Users per page"
587
  msgstr "Usuarios por p&aacute;gina"
588
 
589
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
590
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
591
  msgid "Apply"
592
  msgstr "Aplicar"
593
 
594
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
595
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
596
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
597
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
599
  msgid "Users Extended"
600
  msgstr "Usuarios extendido"
601
 
602
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
603
  #, php-format
604
  msgid "Search results for &#8220;%s&#8221;"
605
  msgstr ""
606
 
607
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
608
  #, php-format
609
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
610
  msgstr ""
611
 
612
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
613
  msgid "Search Users"
614
  msgstr "Buscar Usuarios"
615
 
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
618
  msgid "Role"
619
  msgstr "Rol"
620
 
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
622
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
623
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
624
  msgid "Website"
625
  msgstr "Sitio Web"
626
 
627
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
628
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
629
  msgid "Posts"
630
  msgstr "Entradas"
631
 
632
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
633
  msgid "View posts by this author"
634
  msgstr "Ver entradas de este autor"
635
 
636
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
637
  msgid "Super Admin"
638
  msgstr ""
639
 
640
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
641
  #, php-format
642
  msgid "e-mail: %s"
643
  msgstr "correo electr&oacute;nico: %s"
644
 
645
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
646
  #, fuzzy
647
  msgid "Change"
648
  msgstr "Cambiar orden"
649
 
650
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
651
  #, fuzzy
652
  msgid "Update selected users"
653
  msgstr "Borrar campos seleccionados"
654
 
655
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
656
  #, fuzzy
657
  msgid "Update"
658
  msgstr "Actualizar campo"
659
 
660
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
661
  msgid "OK"
662
  msgstr ""
663
 
664
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
665
  msgid "Cancel"
666
  msgstr ""
667
 
793
  msgid "Picture URL:"
794
  msgstr "URL de la imagen:"
795
 
796
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
797
  #, php-format
798
  msgid "%s previous value: %s new value: %s"
799
  msgstr ""
800
 
801
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
802
  #, php-format
803
  msgid "%s (%s) has changed one or more fields"
804
  msgstr ""
1206
  msgstr ""
1207
 
1208
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1209
  msgid "Done"
1210
  msgstr ""
1211
 
1212
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1213
  msgid "&laquo; Previous"
1214
  msgstr ""
1215
 
1216
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1217
  msgid "Next &raquo;"
1218
  msgstr ""
1219
 
langs/cimy_uef-fa_IR.mo ADDED
Binary file
langs/cimy_uef-fa_IR.po ADDED
@@ -0,0 +1,1266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cimy User Extra Fields\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
+ "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
+ "Language-Team: Mamoun Elkheir <krikabat@hotmail.com>\n"
9
+ "Language: ar\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.5.5\n"
17
+ "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
18
+
19
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
20
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
21
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
22
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:517
23
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:529
24
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
25
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
26
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
27
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
28
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
29
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
30
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
31
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
32
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
33
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
34
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
35
+ msgid "ERROR"
36
+ msgstr "خطا"
37
+
38
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
39
+ msgid "does not match."
40
+ msgstr "منطبق نیست"
41
+
42
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
43
+ msgid "hasn&#8217;t a correct email syntax."
44
+ msgstr "الگوی ایمیل را دارا نیست"
45
+
46
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:497
47
+ msgid "couldn&#8217;t be empty."
48
+ msgstr "ایمیل نمی تواند جاخالی باشد"
49
+
50
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:516
51
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
52
+ msgid "isn&#8217;t correct"
53
+ msgstr "صحیح نیست"
54
+
55
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
56
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
58
+ msgid "YES"
59
+ msgstr "بله"
60
+
61
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
62
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
64
+ msgid "NO"
65
+ msgstr "خیر"
66
+
67
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
68
+ msgid "should be"
69
+ msgstr "باید"
70
+
71
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:542
72
+ msgid "should be an image."
73
+ msgstr "باید یک تصویر باشد"
74
+
75
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:553
76
+ msgid "does not accept this file type."
77
+ msgstr "این نوع فایل پذیرفته نمی شود"
78
+
79
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:563
80
+ msgid "couldn&#8217;t have size less than"
81
+ msgstr "تعداد وارد شده کمتر از حد مجاز"
82
+
83
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:568
84
+ msgid "couldn&#8217;t have length less than"
85
+ msgstr "تعداد وارد شده کمتر از حد مجاز"
86
+
87
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:579
88
+ msgid "couldn&#8217;t have size different than"
89
+ msgstr "نمی توانند تعداد متفاوت داشته باشند"
90
+
91
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:584
92
+ msgid "couldn&#8217;t have length different than"
93
+ msgstr "نمی توانند طول متفاوت داشته باشند"
94
+
95
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:595
96
+ msgid "couldn&#8217;t have size more than"
97
+ msgstr "نمی توانند بیشتر از "
98
+
99
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
100
+ msgid "couldn&#8217;t have length more than"
101
+ msgstr "نمی توانند طول بیشتر از"
102
+
103
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
104
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
105
+ msgid "Typed code is not correct."
106
+ msgstr "کد تایپ شده اشتباه است"
107
+
108
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
109
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
112
+ msgid "Username"
113
+ msgstr "شناسه"
114
+
115
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
116
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
118
+ msgid "E-mail"
119
+ msgstr "ایمیل"
120
+
121
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
123
+ msgid "Please upload a file with one of the following extensions"
124
+ msgstr "لطفا یک فایل با یکی از این پسوند ها آپلود کنید"
125
+
126
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
129
+ msgid "Please upload an image with one of the following extensions"
130
+ msgstr "لطفا یک تصویر با یکی از این پسوند ها آپلود کنید"
131
+
132
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
133
+ msgid "Strength indicator"
134
+ msgstr "نشانه قدرت"
135
+
136
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
137
+ msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
138
+ msgstr "هشدار:رمز باید حداقل 7 حرف باشد.برای قوی کردن آن از حرف های کوچک و بزرگ ،اعداد و علامت های درصد،تعجبو غیره استفاده کنید "
139
+
140
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
141
+ msgid "Change image"
142
+ msgstr "تغییر تصویر"
143
+
144
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
145
+ msgid "Insert the code:"
146
+ msgstr "کد را وارد کنید"
147
+
148
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
149
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
150
+ msgid "Confirm your registration"
151
+ msgstr "ثبت نام خود را تایید کنید"
152
+
153
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
154
+ msgid "A password will be e-mailed to you."
155
+ msgstr "یک رمز به شما ارسال می شود"
156
+
157
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
158
+ msgid "&larr; Back"
159
+ msgstr "&larr; قبل"
160
+
161
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
162
+ msgid "Add field"
163
+ msgstr "یک فیلد اضافه کنید"
164
+
165
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:18
166
+ msgid "Update field"
167
+ msgstr "به روز رسانی"
168
+
169
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:19
170
+ msgid "Delete field"
171
+ msgstr "حذف"
172
+
173
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:20
174
+ msgid "Delete selected fields"
175
+ msgstr "فایل های انتخابی را حذف کنید"
176
+
177
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:21
178
+ msgid "Change order"
179
+ msgstr "تغییر ترتیب نمایش"
180
+
181
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
182
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
183
+ msgid "Min length"
184
+ msgstr "کمترین طول"
185
+
186
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
187
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
188
+ msgid "Exact length"
189
+ msgstr "طول دقیق"
190
+
191
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
192
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
193
+ msgid "Max length"
194
+ msgstr "بیش ترین طول"
195
+
196
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:33
197
+ msgid "Exact or Max length"
198
+ msgstr "طول دقیق یا بیش تر"
199
+
200
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
201
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:22
202
+ msgid "Fields"
203
+ msgstr "فیلد ها"
204
+
205
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
206
+ msgid "changed to"
207
+ msgstr "تغییر به"
208
+
209
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
210
+ msgid "You cannot give an order that misses some numbers"
211
+ msgstr "شما نمی توانید الگویی دهید که عدد در آن وجود ندارد."
212
+
213
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:139
214
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:214
215
+ msgid "Nothing selected"
216
+ msgstr "چیزی انتخاب نشده"
217
+
218
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
219
+ msgid "Field(s)"
220
+ msgstr "فیلد(ها)"
221
+
222
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:211
223
+ msgid "deleted correctly"
224
+ msgstr "به درستی حذف شدند"
225
+
226
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
227
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
228
+ msgid "Min size"
229
+ msgstr "کمترین تعداد"
230
+
231
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
232
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
233
+ msgid "Exact size"
234
+ msgstr "تعداد دقیق"
235
+
236
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
237
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
238
+ msgid "Max size"
239
+ msgstr "بیش ترین تعداد"
240
+
241
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:249
242
+ msgid "Exact or Max size"
243
+ msgstr "تعداد دقیق یا بیش ترین تعداد"
244
+
245
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
246
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
247
+ #, fuzzy
248
+ msgid "Min date"
249
+ msgstr "کمترین تعداد"
250
+
251
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
252
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
253
+ #, fuzzy
254
+ msgid "Exact date"
255
+ msgstr "تعداد دقیق"
256
+
257
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
258
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
259
+ #, fuzzy
260
+ msgid "Max date"
261
+ msgstr "بیش ترین تعداد"
262
+
263
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
264
+ msgid "Name not specified"
265
+ msgstr "نام مشخص نیست"
266
+
267
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
268
+ msgid "Name cannot contains spaces"
269
+ msgstr "نام نمی تواند دارای فاصله باشد"
270
+
271
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
272
+ msgid "Label not specified"
273
+ msgstr "عنوان مشخص نیست"
274
+
275
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
276
+ msgid "not selected (with this type is necessary)"
277
+ msgstr "انتخاب نشده(این نوع اجباری است)"
278
+
279
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
280
+ msgid "If you select"
281
+ msgstr "اگر انتخاب کرده اید"
282
+
283
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
284
+ msgid "you cannot select Min or Max"
285
+ msgstr "نمی توانید بیش ترین و کمترین را انتخاب کنید"
286
+
287
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
288
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
290
+ msgid "should be in the range of"
291
+ msgstr "باید در دمحدوده ی"
292
+
293
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
294
+ msgid "Equal TO not specified"
295
+ msgstr "تساوی مشخص نیست"
296
+
297
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
298
+ msgid "With checkbox type Equal TO can only be"
299
+ msgstr "با نوع چک باکس میتواند مساوی با"
300
+
301
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
302
+ msgid "With radio type Equal TO can only be"
303
+ msgstr "با نوع ردیو باتن میتواند مساوی با"
304
+
305
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
306
+ msgid "With checkbox type Value can only be"
307
+ msgstr "با نوع چک باکس می تواند مساوی با تنها"
308
+
309
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
310
+ msgid "With radio type Value can only be"
311
+ msgstr "با نوع ردیو بانت می تواند تنها مساوی با"
312
+
313
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
+ msgid "Field inserted correctly"
315
+ msgstr "فایل اشتباها قرار داده شده"
316
+
317
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
318
+ msgid "Field #"
319
+ msgstr "فیلد #"
320
+
321
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
322
+ msgid "updated correctly"
323
+ msgstr "به صورت صحیح به روز زسانی شد"
324
+
325
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
326
+ msgid "Name inserted is just in the database, change to another one"
327
+ msgstr "نام وارد شده قبلا در داده ها ثبت شده لطفا نام دیگری انتخاب کنید"
328
+
329
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
330
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
331
+ msgid "Add a new Field"
332
+ msgstr "یک فیلد جدید اضافه کنید"
333
+
334
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
335
+ msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
336
+ msgstr "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."
337
+
338
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
339
+ msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
340
+ msgstr "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'"
341
+
342
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
343
+ msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
344
+ msgstr "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
345
+
346
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
347
+ msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
348
+ msgstr "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"
349
+
350
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
351
+ msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
352
+ msgstr "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)"
353
+
354
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
355
+ msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
356
+ msgstr "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
357
+
358
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
359
+ msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
360
+ msgstr "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"
361
+
362
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
363
+ msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
364
+ msgstr "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"
365
+
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
367
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
368
+ msgstr ""
369
+
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
376
+ msgid "Name"
377
+ msgstr "نام"
378
+
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
385
+ msgid "Value"
386
+ msgstr "مقدار"
387
+
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
392
+ msgid "Type"
393
+ msgstr "نوع"
394
+
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
399
+ msgid "Label"
400
+ msgstr "عنوان"
401
+
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
406
+ msgid "Description"
407
+ msgstr "شرح"
408
+
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
411
+ msgid "Rules"
412
+ msgstr "قوانین"
413
+
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
416
+ msgid "Actions"
417
+ msgstr "اجرا ها"
418
+
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
423
+ msgid "Fieldset"
424
+ msgstr "Fieldset"
425
+
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
428
+ msgid "Can be empty"
429
+ msgstr "می تواند خالی باشد"
430
+
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
433
+ msgid "Check for E-mail syntax"
434
+ msgstr "چک کردنالگو برای ایمیل"
435
+
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
438
+ msgid "Can be modified"
439
+ msgstr "می تواند تغییر کند"
440
+
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
443
+ msgid "Can be modified only if empty"
444
+ msgstr "در صورت خالی بودن می تواند تغییر کند"
445
+
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
448
+ msgid "Can be modified only by admin"
449
+ msgstr "میتواند توسط ادمین عوض شود"
450
+
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
453
+ msgid "Can be modified only by admin or if empty"
454
+ msgstr "می تواند توسط ادمین عوض شود و یا خالی شود"
455
+
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
458
+ msgid "Cannot be modified"
459
+ msgstr "نمی تواند نغییر کند"
460
+
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
463
+ msgid "Should be equal TO"
464
+ msgstr "باید مساوی باشد با"
465
+
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
468
+ msgid "Case sensitive"
469
+ msgstr "حساس به کوچکی و بزرگی حروف"
470
+
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
473
+ msgid "Regular Expression"
474
+ msgstr "Regular Expression"
475
+
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
478
+ msgid "Show the field in the registration"
479
+ msgstr "فیلد رادر ثبت نام نمایش بده"
480
+
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
483
+ msgid "Show the field in User's profile"
484
+ msgstr "فیلد را در پروفایل کاربر نمایش بده"
485
+
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
488
+ msgid "Show the field in Users Extended section"
489
+ msgstr "فیلد را در قسمت Users Extended section نمایش بده"
490
+
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
493
+ msgid "Show the field in the search engine"
494
+ msgstr "فیلد را در موتورجستجو نمایش بده"
495
+
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
498
+ msgid "Show the field in the blog"
499
+ msgstr "فیلد را در بلگ نشان بده"
500
+
501
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
502
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
503
+ msgid "Show the field if the role is at least:"
504
+ msgstr "فیلد را نشان بده با حداقل نقش:"
505
+
506
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
507
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
508
+ msgid "Anonymous"
509
+ msgstr "بی نام"
510
+
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
512
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
513
+ msgid "User has 'view_cimy_extra_fields' capability"
514
+ msgstr "کاربر 'view_cimy_extra_fields' دارد"
515
+
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
518
+ msgid "Send an email to the admin if the user changes its value"
519
+ msgstr "اگر کاربر مقدارش را تغییر داد به ادمین ایمیل زده شود."
520
+
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
523
+ msgid "Advanced options"
524
+ msgstr "آپشن ها پیشرفته"
525
+
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
527
+ msgid "Clear"
528
+ msgstr "پاک کردن"
529
+
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
531
+ msgid "Invert selection"
532
+ msgstr "معکوس کردن انتخاب ها"
533
+
534
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
535
+ msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
536
+ msgstr "مطمئنید که تمام فیلها را می خواهید پاک کنید و تمام داده های کاربران را از بین ببرید؟"
537
+
538
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
539
+ msgid "WordPress Fields"
540
+ msgstr "فیلد های وردپرس"
541
+
542
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
544
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
546
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
548
+ msgid "Extra Fields"
549
+ msgstr "فیلد های اضافی"
550
+
551
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
552
+ msgid "None!"
553
+ msgstr "هیچی!"
554
+
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
556
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
557
+ msgid "Order"
558
+ msgstr "ترتیب"
559
+
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
561
+ msgid "Reset"
562
+ msgstr "Reset"
563
+
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
566
+ msgid "SUCCESSFUL"
567
+ msgstr "موفق"
568
+
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
570
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
571
+ msgid "select"
572
+ msgstr "انتخاب"
573
+
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
576
+ msgid "Users per page"
577
+ msgstr "کاربران هر برگه"
578
+
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
581
+ msgid "Apply"
582
+ msgstr "Apply"
583
+
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
588
+ msgid "Users Extended"
589
+ msgstr "Users Extneded"
590
+
591
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
592
+ #, php-format
593
+ msgid "Search results for &#8220;%s&#8221;"
594
+ msgstr "نتایج جستجو برای &#8220;%s&#8221;"
595
+
596
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
597
+ #, php-format
598
+ msgid "%1$s <span class=\"count\">(%2$s)</span>"
599
+ msgstr "%1$s <span class=\"count\">(%2$s)</span>"
600
+
601
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
602
+ msgid "Search Users"
603
+ msgstr "جستجوی کاربران"
604
+
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
606
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
607
+ msgid "Role"
608
+ msgstr "نقش"
609
+
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
612
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
613
+ msgid "Website"
614
+ msgstr "وب سایت"
615
+
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
618
+ msgid "Posts"
619
+ msgstr "پست ها"
620
+
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
622
+ msgid "View posts by this author"
623
+ msgstr "نشان دادن پست های این نویسنده"
624
+
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
626
+ msgid "Super Admin"
627
+ msgstr "مدیر کل"
628
+
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
630
+ #, php-format
631
+ msgid "e-mail: %s"
632
+ msgstr "ایمیل: %s"
633
+
634
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
635
+ msgid "Change"
636
+ msgstr "تغيير"
637
+
638
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
639
+ msgid "Update selected users"
640
+ msgstr "به روز رسانی کاربران انتخاب شده"
641
+
642
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
643
+ msgid "Update"
644
+ msgstr "به روز زسانی"
645
+
646
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
647
+ msgid "OK"
648
+ msgstr "OK"
649
+
650
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
651
+ msgid "Cancel"
652
+ msgstr "لغو"
653
+
654
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
655
+ #, php-format
656
+ msgid "New user registration on your site %s:"
657
+ msgstr "نام نویسی کاربر جدید %s:"
658
+
659
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
660
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
661
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:214
662
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:364
663
+ #, php-format
664
+ msgid "Username: %s"
665
+ msgstr "شناسه: %s"
666
+
667
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
668
+ #, php-format
669
+ msgid "E-mail: %s"
670
+ msgstr "ایمیل: %s."
671
+
672
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
673
+ #, php-format
674
+ msgid "[%s] New User Registration"
675
+ msgstr "[%s] نام نویسی کار بر جدید"
676
+
677
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
678
+ #, php-format
679
+ msgid "[%s] Your username and password"
680
+ msgstr "[%s] شناسه و رمز عبور شما"
681
+
682
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:105
683
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:118
684
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:131
685
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:137
686
+ #, php-format
687
+ msgid "%s: %s"
688
+ msgstr "%s: %s"
689
+
690
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:211
691
+ #, php-format
692
+ msgid ""
693
+ "To activate your user, please click the following link:\n"
694
+ "\n"
695
+ "%s\n"
696
+ "\n"
697
+ "After you activate, you will receive *another email* with your login.\n"
698
+ "\n"
699
+ msgstr ""
700
+ "برای فعال کردن نام کاربری خود لطفا بروی لینک زیر کلیک کنید: \n"
701
+ "\n"
702
+ "%s\n"
703
+ "\n"
704
+ "بعد التفعيل، ستصلك رسالة أخرى فيها بيانات الدخول.\n"
705
+ "\n"
706
+
707
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
708
+ #, php-format
709
+ msgid "[%1$s] Activate %2$s"
710
+ msgstr ""
711
+
712
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:234
713
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
714
+ msgid "Your account is now active!"
715
+ msgstr "حساب کاربری شما فعال شد!"
716
+
717
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:235
718
+ #, php-format
719
+ msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
720
+ msgstr "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
721
+
722
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:237
723
+ msgid "An error occurred during the activation"
724
+ msgstr "خطایی در مدت فعال سازی به وجود آمد."
725
+
726
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:243
727
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:215
728
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:365
729
+ #, php-format
730
+ msgid "Password: %s"
731
+ msgstr "کلمه عبور: %s"
732
+
733
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:257
734
+ msgid "Invalid activation key."
735
+ msgstr "کلید فعال سازی غیر معتبر است."
736
+
737
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
738
+ msgid "The site is already active."
739
+ msgstr "سایت قبلا فعال شده است."
740
+
741
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
742
+ msgid "Could not create user"
743
+ msgstr "نتوانست کاربر را بسازد."
744
+
745
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
746
+ msgid "That username is already activated."
747
+ msgstr "نام کاربری قبلا فعال شده است."
748
+
749
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:312
750
+ msgid "That username is currently reserved but may be available in a couple of days."
751
+ msgstr "نام کاربری رزرو شده است ولی احتمالا تا چند روز دیگر در دسترس است."
752
+
753
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:315
754
+ msgid "username and email used"
755
+ msgstr "نام کاربری و ایمیل استفاده شده است."
756
+
757
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:325
758
+ msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
759
+ msgstr "ایمیل قبلا استفاده شده است.لطفا اینباکس خود را برای فعال سازی ایمیل چک کنید.اگر اقدامی نکنید تا چند روز دیگر فعال خواهد شد."
760
+
761
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:144
762
+ msgid "(required)"
763
+ msgstr "(نیاز)"
764
+
765
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
766
+ msgid "Delete the file"
767
+ msgstr "پاک کردن فایل"
768
+
769
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:455
770
+ msgid "Update the file"
771
+ msgstr "به روز رسانی فایل"
772
+
773
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:458
774
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
775
+ msgid "Delete the picture"
776
+ msgstr "پاک کردن تصویر"
777
+
778
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:459
779
+ msgid "Update the picture"
780
+ msgstr "به روز رسانی تصویر"
781
+
782
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:479
783
+ msgid "Picture URL:"
784
+ msgstr "آدرس تصویر:"
785
+
786
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
787
+ #, php-format
788
+ msgid "%s previous value: %s new value: %s"
789
+ msgstr "%s مقدار قبلی: %s مقدار جدید: %s"
790
+
791
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
792
+ #, php-format
793
+ msgid "%s (%s) has changed one or more fields"
794
+ msgstr "%s (%s) فیلد یا فیلد هایش تغییر کرده"
795
+
796
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:21
797
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:364
798
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:559
799
+ msgid "Options"
800
+ msgstr "آپشن ها"
801
+
802
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:52
803
+ msgid "WordPress Fields table emptied"
804
+ msgstr "فیلد های جدول وردپرس خالی شد"
805
+
806
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
807
+ msgid "WordPress Fields table deleted"
808
+ msgstr "فیلد های جدول وردپرس خالی شد"
809
+
810
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:66
811
+ msgid "Extra Fields table emptied"
812
+ msgstr "جدول فیلد های اضافی خالی شد"
813
+
814
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
815
+ msgid "Extra Fields table deleted"
816
+ msgstr "جدول فیلد های اضافی پاک شد"
817
+
818
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:80
819
+ msgid "Users Data table emptied"
820
+ msgstr "جدول داده های کاربران خالی شد"
821
+
822
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:85
823
+ msgid "Users Data table deleted"
824
+ msgstr "جدول داده های کاربران پاک شد."
825
+
826
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:96
827
+ msgid "Options set to default values"
828
+ msgstr "آپشن ها به حالت پیش فرض"
829
+
830
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:102
831
+ msgid "Options deleted"
832
+ msgstr "آپشن ها پاک شد"
833
+
834
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:256
835
+ msgid "Options changed"
836
+ msgstr "آپشن ها تغییر کرد"
837
+
838
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:355
839
+ msgid "This operation will create/update all missing tables/options, do you want to proceed?"
840
+ msgstr "هذه العملية ستعمل على إنشاء/تحديث كل الجداول/الخيارات المفقودة، هل تريد الاستمرار؟"
841
+
842
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:373
843
+ msgid "Support the Cimy Project"
844
+ msgstr "ادعم Cimy Project"
845
+
846
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:381
847
+ msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
848
+ msgstr "هذه الإضافة نتاج ساعات من التطوير لإضافة مزيد من الخصائص، دعم إصدارات WordPress الجديدة، ومعالجة الشوائب. الرجاء التبرع بالمال إذا ساعدتك في توفير كل هذه الساعات!"
849
+
850
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:405
851
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:799
852
+ msgid "Save Changes"
853
+ msgstr "حفظ التغييرات"
854
+
855
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:406
856
+ msgid "General"
857
+ msgstr "عمومی"
858
+
859
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:414
860
+ msgid "installed is"
861
+ msgstr "نصب شده"
862
+
863
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:418
864
+ msgid "OPTIONS DELETED!"
865
+ msgstr "آپشن ها پاک شدند!"
866
+
867
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:421
868
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:426
869
+ msgid "Fix the problem"
870
+ msgstr "رفع مشکل"
871
+
872
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:424
873
+ msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
874
+ msgstr "ورژن ها به هم نمی خورند..می تواند به خاطر این باشد که پلاگین را بعد از به روز رسانی فعال یا غیر فعال نکرده اید!این میتواند مشکل ساز باشد...."
875
+
876
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:432
877
+ msgid "Picture/Avatar upload"
878
+ msgstr "آپلود تصویر/آواتار"
879
+
880
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:436
881
+ msgid "is created and writable"
882
+ msgstr "ساخته شده و قابل نوشتن است"
883
+
884
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:438
885
+ msgid "is NOT created or webserver does NOT have permission to write on it"
886
+ msgstr "ساخته نشد و یا سرور اجازه دسترسی ندارد"
887
+
888
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:445
889
+ msgid "Show all fields in the welcome email"
890
+ msgstr "نمایش تمام فیلد ها در ایمیل خوش آمد گویی"
891
+
892
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:449
893
+ msgid "the email sent to the admin and to the user upon registration will have all fields"
894
+ msgstr "ایمیل فرستاده به ادمین و کاربری که ثبت نام کرده تمام فیلد ها را داشته باشد"
895
+
896
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:457
897
+ msgid "Enable email confirmation"
898
+ msgstr "فعال سازی ایمیل تایید"
899
+
900
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:461
901
+ msgid "user that registers should confirm its email address via a link click"
902
+ msgstr "کاربر باید ایمیل خودش را با کلیک برروی یک لینک فعال کند."
903
+
904
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:463
905
+ msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
906
+ msgstr "<strong>نکته:</strong> این آپشن اگر انتخاب شود "
907
+
908
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:470
909
+ msgid "Enable form confirmation"
910
+ msgstr "فعال کردن تایید فرم"
911
+
912
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
913
+ msgid "a summary of the registration form will be presented to the user"
914
+ msgstr "خلاصه ای از ثبت نام به کاربر نمایش داده شود"
915
+
916
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
917
+ msgid "Customize welcome email sent to the new user"
918
+ msgstr "خصوصی سازی صفحه خوش آمد گویی به کاربر جدید"
919
+
920
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:484
921
+ msgid "if you change or remove the placeholders then the email won't have the correct information"
922
+ msgstr "if you change or remove the placeholders then the email won't have the correct information"
923
+
924
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
925
+ msgid "Redirect to the source"
926
+ msgstr "هدایت به منبع"
927
+
928
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:494
929
+ msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
930
+ msgstr "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
931
+
932
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:502
933
+ msgid "No captcha"
934
+ msgstr "بدون کپچا"
935
+
936
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
937
+ msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
938
+ msgstr "فعال کردن<a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
939
+
940
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
941
+ msgid "Public KEY"
942
+ msgstr "کلد عمومی"
943
+
944
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
945
+ msgid "Private KEY"
946
+ msgstr "کلید خصوصی"
947
+
948
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
949
+ msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
950
+ msgstr "فعال کردن <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">کپچای امنیتی</a>"
951
+
952
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
953
+ msgid "This captcha is probably weaker, but is easier for users"
954
+ msgstr "این کپچا احتمالا ضعیف تر است اما برای کاربران آسان تر است."
955
+
956
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
957
+ #, php-format
958
+ msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
959
+ msgstr "<strong>هشدار:برای فعال کردن این کپچا <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">nv hdk fsji</a> سپس آن را باز کنید %s</strong>"
960
+
961
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
962
+ msgid "Change login/registration page logo"
963
+ msgstr "تغییر لوگوی صفحه ی ورود و ثبت نام"
964
+
965
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
966
+ msgid "Maximum recommended logo width is 328px, but any height should work."
967
+ msgstr "بیشترین پهنای لوگو 328 پیکسل و ارتفاع دلخواه است."
968
+
969
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
970
+ msgid "Database"
971
+ msgstr "پایگاه داده"
972
+
973
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:566
974
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
975
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
976
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
977
+ msgid "select action"
978
+ msgstr "select action"
979
+
980
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:567
981
+ msgid "Default values"
982
+ msgstr "مقادیر پیش فرض"
983
+
984
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
985
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:588
986
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
987
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
988
+ msgid "Delete"
989
+ msgstr "پاک"
990
+
991
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
992
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:592
993
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:612
994
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:633
995
+ msgid "NOT PRESENT"
996
+ msgstr "غير موجود"
997
+
998
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
999
+ msgid "WordPress Fields table"
1000
+ msgstr "جدول فیلد های وردپرس"
1001
+
1002
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:587
1003
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
1004
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
1005
+ msgid "Empty"
1006
+ msgstr "خالی"
1007
+
1008
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:599
1009
+ msgid "Extra Fields table"
1010
+ msgstr "جدول فیلد های اضافی"
1011
+
1012
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:619
1013
+ msgid "Users Data table"
1014
+ msgstr "جدول اطلاعات کاربران"
1015
+
1016
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:630
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:640
1021
+ msgid "Force tables creation"
1022
+ msgstr "ایجاد جدول ها"
1023
+
1024
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
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:650
1029
+ msgid "User Profile"
1030
+ msgstr "استفاده از پروفایل"
1031
+
1032
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
1033
+ msgid "Extra Fields section title"
1034
+ msgstr "انتخاب عنوان فیلد های اضافه"
1035
+
1036
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
1037
+ msgid "Fieldset's titles, separates with comma"
1038
+ msgstr "Fieldset's titles, separates with comma"
1039
+
1040
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:657
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:658
1045
+ msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
1046
+ msgstr "<strong>نکته:</strong>اگر ترتیب را تغییر دهید و یا فیلدست ها را پاک کنید شما باید دوباره ت=نسبت دهی به فیلد ست ها را انجام دهید"
1047
+
1048
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
1049
+ msgid "Authors &amp; Users Extended"
1050
+ msgstr "نویسندگان و کابران"
1051
+
1052
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
1053
+ msgid "Hide username field"
1054
+ msgstr "پنهان سازی فیلد کاربری"
1055
+
1056
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:675
1057
+ msgid "Hide name field"
1058
+ msgstr "پنهان سازی فیلد نام"
1059
+
1060
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
1061
+ msgid "Hide email field"
1062
+ msgstr "پنهان سازی فیلد ایمیل"
1063
+
1064
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
1065
+ msgid "Hide role field"
1066
+ msgstr "پنهان سازی نقش فیلد"
1067
+
1068
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
1069
+ msgid "Hide website field"
1070
+ msgstr "پنهان کردن فیلد وب سایت"
1071
+
1072
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:703
1073
+ msgid "Hide n. posts field"
1074
+ msgstr "پست های پنهان فیلد"
1075
+
1076
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:709
1077
+ msgid "WordPress hidden fields"
1078
+ msgstr "فیلد های پنهان وردپرس"
1079
+
1080
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
1081
+ msgid "Show username"
1082
+ msgstr "نشان دادن شناسه"
1083
+
1084
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
1085
+ msgid "when unchecked the email address will be used as username"
1086
+ msgstr "زمانی که چک باکس انتخاب نشده ایمیل به عنوان نام کاربری انتخاب میشود"
1087
+
1088
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
1089
+ msgid "Show password"
1090
+ msgstr "نمایش کلمه عبور"
1091
+
1092
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:730
1093
+ msgid "Show confirmation password"
1094
+ msgstr "تایید کلمه عبور"
1095
+
1096
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
1097
+ msgid "Show password strength meter"
1098
+ msgstr "نمایش سنجش رمز"
1099
+
1100
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
1101
+ msgid "Show first name"
1102
+ msgstr "نمایش نام"
1103
+
1104
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
1105
+ msgid "Show last name"
1106
+ msgstr "نمایش نام خانوادگی"
1107
+
1108
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:758
1109
+ msgid "Show nickname"
1110
+ msgstr "نمایش نام مستعار"
1111
+
1112
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
1113
+ msgid "Show website"
1114
+ msgstr "نمایش سایت"
1115
+
1116
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:772
1117
+ msgid "Show AIM"
1118
+ msgstr "AIM"
1119
+
1120
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
1121
+ msgid "Show Yahoo IM"
1122
+ msgstr "Yahoo IM"
1123
+
1124
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
1125
+ msgid "Show Jabber / Google Talk"
1126
+ msgstr "Jabber / Google Talk"
1127
+
1128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
1129
+ msgid "Show Biographical Info"
1130
+ msgstr "بیوگرافی"
1131
+
1132
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
1133
+ #, php-format
1134
+ msgid "File '%s' doesn't exist?"
1135
+ msgstr "فایل '%s' موجود نیست"
1136
+
1137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
1138
+ msgid "The GD image library is not installed."
1139
+ msgstr "تصویر GD نصب نیست"
1140
+
1141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
1142
+ #, php-format
1143
+ msgid "File '%s' is not an image."
1144
+ msgstr "فایل '%s' تصویر نیست."
1145
+
1146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:207
1147
+ msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
1148
+ msgstr "<strong>توجه:</strong> این وب سایت اجازه می دهد که رمز خود را شخصی سازی کنید،شما ایمیلی با رمزی دیگر دریافت خواهید کرد،نگران نباشید!"
1149
+
1150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:218
1151
+ msgid "Password"
1152
+ msgstr "کلمه عبور"
1153
+
1154
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
1155
+ msgid "Password confirmation"
1156
+ msgstr "تایید کلمه عبور"
1157
+
1158
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:262
1159
+ msgid "First name"
1160
+ msgstr "نام"
1161
+
1162
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:284
1163
+ msgid "Last name"
1164
+ msgstr "نام خانوادگی"
1165
+
1166
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:306
1167
+ msgid "Nickname"
1168
+ msgstr "اسم مستعار"
1169
+
1170
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:350
1171
+ msgid "AIM"
1172
+ msgstr "AIM"
1173
+
1174
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:372
1175
+ msgid "Yahoo IM"
1176
+ msgstr "Yahoo IM"
1177
+
1178
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:394
1179
+ msgid "Jabber / Google Talk"
1180
+ msgstr "Jabber / Google Talk"
1181
+
1182
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:416
1183
+ msgid "Biographical Info"
1184
+ msgstr "بیوگرافی"
1185
+
1186
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:429
1187
+ msgid "no fieldset"
1188
+ msgstr "هیچ فیلد ستی پیدا نشد"
1189
+
1190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:433
1191
+ msgid "All"
1192
+ msgstr "همه"
1193
+
1194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1195
+ msgid "Done"
1196
+ msgstr ""
1197
+
1198
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1199
+ msgid "&laquo; Previous"
1200
+ msgstr ""
1201
+
1202
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1203
+ msgid "Next &raquo;"
1204
+ msgstr ""
1205
+
1206
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1021
1207
+ msgid "Today"
1208
+ msgstr ""
1209
+
1210
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1024
1211
+ msgid "Select Month"
1212
+ msgstr "select action"
1213
+
1214
+ #~ msgid ""
1215
+ #~ "You are about to permanently delete the selected items.\n"
1216
+ #~ " 'Cancel' to stop, 'OK' to delete."
1217
+ #~ msgstr ""
1218
+ #~ "Ви збираєтеся видалити вибрані елементи назавжди.\n"
1219
+ #~ "'Скасувати', щоб зупинити, 'OK', щоб видалити."
1220
+
1221
+ #~ msgid "Very weak"
1222
+ #~ msgstr "Дуже слабкий"
1223
+
1224
+ #~ msgid "Weak"
1225
+ #~ msgstr "Слабкий"
1226
+
1227
+ #~ msgid "Strong"
1228
+ #~ msgstr "Сильний"
1229
+
1230
+ #~ msgid "Mismatch"
1231
+ #~ msgstr "Неузгодженість"
1232
+
1233
+ #~ msgid "A&amp;U Extended"
1234
+ #~ msgstr "A и продвинутые П "
1235
+
1236
+ #, fuzzy
1237
+ #~ msgid "Users Extended List"
1238
+ #~ msgstr "Список Авторов и продвинутых пользователей"
1239
+
1240
+ #~ msgid "Authors &amp; Users Extended List"
1241
+ #~ msgstr "Список Авторов и продвинутых пользователей"
1242
+
1243
+ #, fuzzy
1244
+ #~ msgid "Username:"
1245
+ #~ msgstr "Имя пользователя"
1246
+
1247
+ #~ msgid "Disable get_cimyFieldValue function"
1248
+ #~ msgstr "Отключить функцию get_cimyFieldValue"
1249
+
1250
+ #~ msgid "leave disabled if you don't know what to do"
1251
+ #~ msgstr "оставьте отключенной, если не знаете, что делать"
1252
+
1253
+ #~ msgid "Update Options &raquo;"
1254
+ #~ msgstr "Обновление настроек &raquo;"
1255
+
1256
+ #~ msgid "Hide actions button"
1257
+ #~ msgstr "Скрыть кнопку действия"
1258
+
1259
+ #~ msgid "User ID"
1260
+ #~ msgstr "ID пользователя"
1261
+
1262
+ #~ msgid "Edit"
1263
+ #~ msgstr "Редактировать"
1264
+
1265
+ #~ msgid "label"
1266
+ #~ msgstr "метка"
langs/cimy_uef-fr_FR.mo CHANGED
Binary file
langs/cimy_uef-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:39-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:40-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ERREUR"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "n'est pas correct"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "OUI"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NON"
67
 
@@ -108,56 +108,56 @@ msgid "Typed code is not correct."
108
  msgstr "Le code saisi est incorrect."
109
 
110
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
112
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
113
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
114
  msgid "Username"
115
  msgstr "Identifiant"
116
 
117
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
119
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
120
  msgid "E-mail"
121
  msgstr "Courriel"
122
 
123
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
124
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Veuillez t&#233;l&#233;chargez un fichier avec l'une des extensions suivantes"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "S'il vous plait, t&#233;l&#233;chargez une image avec l'une des extensions suivantes"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr "Indicateur de s&#251;ret&#233;"
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  #, fuzzy
140
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
141
  msgstr "Suggestion: Le mot de passe devrait contenir au moins sept caract&#232;res. Pour le s&#233;curiser encore plus, utilisez une combinaison de minuscules, de majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
142
 
143
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
144
  msgid "Change image"
145
  msgstr "Changer l'image"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr "Ins&#233;rer le code :"
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Changer l'ordre"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Longueur min"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Longueur exacte"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Longueur max"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "supprm&#233;(e) correctement"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Taille min"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Taille exacte"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Taille max"
243
 
@@ -245,394 +245,416 @@ msgstr "Taille max"
245
  msgid "Exact or Max size"
246
  msgstr "Taille exacte ou Max"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Nom non sp&#233;cifi&#233;"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Le nom ne peut pas contenir d'espace"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "&#201;tiquette non sp&#233;cifi&#233;"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "non s&#233;lectionn&#233; (avec ce type, c'est n&#233;cessaire)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Si vous s&#233;lectionnez"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "vous ne pouvez pas s&#233;lectionner Min ou Max"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "devrait &#234;tre compris entre"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "&#201;gal &#192; non sp&#233;cifi&#233;"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "Avec le type checkbox, &#201;gal &#192; ne peut &#234;tre que"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "Avec le type radio, &#201;gal &#192; ne peut &#234;tre que"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "Avec le type checkbox, la valeur ne peut &#234;tre que"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "Avec le type radio, la valeur ne peut &#234;tre que"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Champ ins&#233;r&#233; correctement"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Champ #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "mis &#224; jour correctement"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Le nom est d&#233;j&#224; dans la base de donn&#233;es; veuillez le changer"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Ajouter un nouveau champ"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et une &#233;tiquette; la valeur et la description sont optionnelles. Les r&#232;gles sont appliqu&#233;es lors de l'inscription d'un utilisateur."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong> : <em>Valeur</em> et <em>&#233;gal &#192;</em> peuvent seulement &#234;tre 'Yes' ou 'No' ce qui signifie 's&#233;lectionn&#233;' ou 'non s&#233;lectionn&#233;'"
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'&#233;tiquette, par exemple: &#233;tiquette/item1,item2,item3"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "Avec le type <strong>picture</strong> : vous pouvez pr&#233;charger une image par d&#233;faut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>&#233;gal &#192;</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "Avec le type <strong>picture-url</strong> : vous pouvez pr&#233;charger une image par d&#233;faut en indiqaunt son URL dans <em>Valeur</em>; <em>&#233;gal &#192;</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "Avec le type <strong>registration-date</strong> : <em>&#233;gal &#192;</em> indique un format date et heure"
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
345
  msgstr "Avec le type <strong>picture</strong> : vous pouvez pr&#233;charger une image par d&#233;faut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>&#233;gal &#192;</em> est automatiquement mis &#224; 512 pixels"
346
 
347
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
348
  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"
349
  msgstr "Avec le type <strong>picture</strong> : vous pouvez pr&#233;charger un fichier par d&#233;faut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>&#233;gal &#192;</em> indique les extensions de fichiers accept&#233;s s&#233;par&#233;s par une virgule, exemple: zip,pdf,doc"
350
 
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
357
  msgid "Name"
358
  msgstr "Nom"
359
 
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
366
  msgid "Value"
367
  msgstr "Valeur"
368
 
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
373
  msgid "Type"
374
  msgstr "Type"
375
 
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
380
  msgid "Label"
381
  msgstr "&#201;tiquette"
382
 
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
387
  msgid "Description"
388
  msgstr "Description"
389
 
390
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
391
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
392
  msgid "Rules"
393
  msgstr "R&#232;gles"
394
 
395
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
397
  msgid "Actions"
398
  msgstr "Actions"
399
 
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
404
  msgid "Fieldset"
405
  msgstr "Regroupements"
406
 
407
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
408
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
409
  msgid "Can be empty"
410
  msgstr "Peut &#234;tre vide"
411
 
412
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
413
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
414
  msgid "Check for E-mail syntax"
415
  msgstr "V&#233;rifier la syntaxe du courriel"
416
 
417
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
418
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
419
  msgid "Can be modified"
420
  msgstr "Peut &#234;tre modifi&#233;"
421
 
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
423
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
424
  msgid "Can be modified only if empty"
425
  msgstr "Ne peut &#234;tre modifi&#233; que s'il est vide"
426
 
427
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
428
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
429
  msgid "Can be modified only by admin"
430
  msgstr "Ne peut &#234;tre modifi&#233; que par un admin"
431
 
432
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
433
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
434
  msgid "Can be modified only by admin or if empty"
435
  msgstr "Ne peut &#234;tre modifi&#233; que par un admin ou s'il est vide"
436
 
437
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
438
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
439
  msgid "Cannot be modified"
440
  msgstr "Ne peut pas &#234;tre modifi&#233;"
441
 
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
443
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
444
  msgid "Should be equal TO"
445
  msgstr "Devrait &#234;tre &#233;gal &#192;"
446
 
447
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
448
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
449
  msgid "Case sensitive"
450
  msgstr "Tenir compte de la case (majuscule/minuscule)"
451
 
452
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
453
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
454
  msgid "Regular Expression"
455
  msgstr "Expression r&#233;guli&#232;re"
456
 
457
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
458
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
459
  msgid "Show the field in the registration"
460
  msgstr "Montrer le champ lors de l'inscription"
461
 
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
463
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
464
  msgid "Show the field in User's profile"
465
  msgstr "Montrer le champ dans le profil de l'utilisateur"
466
 
467
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
468
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
469
  #, fuzzy
470
  msgid "Show the field in Users Extended section"
471
  msgstr "Montrer le champ dans le menu A&U &#201;tendu"
472
 
473
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
474
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
475
  msgid "Show the field in the search engine"
476
  msgstr "Montrer le champ dans les moteurs de recherche"
477
 
478
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
479
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
480
  msgid "Show the field in the blog"
481
  msgstr "Montrer le champ dans le blogue"
482
 
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
484
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
485
  msgid "Show the field if the role is at least:"
486
  msgstr "Montrer le champ si le r&#244;le est au moins :"
487
 
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
490
  msgid "Anonymous"
491
  msgstr "Anonyme"
492
 
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
495
  msgid "User has 'view_cimy_extra_fields' capability"
496
  msgstr ""
497
 
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
500
  msgid "Send an email to the admin if the user changes its value"
501
  msgstr "Envoyer un courriel &#224; l'administrateur si l'utilisateur modifie la valeur de ce champ"
502
 
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
505
  #, fuzzy
506
  msgid "Advanced options"
507
  msgstr "Actions"
508
 
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
510
  msgid "Clear"
511
  msgstr "Vider (RAZ)"
512
 
513
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
514
  msgid "Invert selection"
515
  msgstr "Inverser la s&#233;lection"
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
518
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
519
  msgstr "&#202;tes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les donn&#233;es ins&#233;r&#233;es par vos utilisateurs?"
520
 
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
522
  msgid "WordPress Fields"
523
  msgstr "Champs WordPress"
524
 
525
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
526
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
527
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
528
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
529
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
530
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
531
  msgid "Extra Fields"
532
  msgstr "Champs Suppl&#233;mentaires"
533
 
534
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
535
  msgid "None!"
536
  msgstr "Aucun!"
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
539
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
540
  msgid "Order"
541
  msgstr "Ordre"
542
 
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
544
  msgid "Reset"
545
  msgstr "R&#233;initialiser"
546
 
547
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
548
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
549
  msgid "SUCCESSFUL"
550
  msgstr "SUCC&#200;S"
551
 
552
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
554
  #, fuzzy
555
  msgid "select"
556
  msgstr "s&#233;lectionnez"
557
 
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
560
  msgid "Users per page"
561
  msgstr "Utilisateurs par page"
562
 
563
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
565
  msgid "Apply"
566
  msgstr "Appliquer"
567
 
568
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
569
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
570
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
571
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
572
  msgid "Users Extended"
573
  msgstr "Utilisateurs &#201;tendus"
574
 
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
576
  #, php-format
577
  msgid "Search results for &#8220;%s&#8221;"
578
  msgstr ""
579
 
580
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
581
  #, php-format
582
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
583
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
584
 
585
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
586
  msgid "Search Users"
587
  msgstr "Chercher des utilisateurs"
588
 
589
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
590
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
591
  msgid "Role"
592
  msgstr "R&#244;le"
593
 
594
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
595
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
596
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
597
  msgid "Website"
598
  msgstr "Site Web"
599
 
600
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
601
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
602
  msgid "Posts"
603
  msgstr "Articles"
604
 
605
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
606
  msgid "View posts by this author"
607
  msgstr "Voir les articles de cet auteur"
608
 
609
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
610
  msgid "Super Admin"
611
  msgstr ""
612
 
613
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
614
  #, php-format
615
  msgid "e-mail: %s"
616
  msgstr "courriel : %s"
617
 
618
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
619
  #, fuzzy
620
  msgid "Change"
621
  msgstr "Changer l'image"
622
 
623
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
624
  msgid "Update selected users"
625
  msgstr "Mettre &#224; jour les utilisateurs s&#233;lectionn&#233;s"
626
 
627
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
628
  msgid "Update"
629
  msgstr "Mettre &#224; jour"
630
 
631
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
632
  msgid "OK"
633
  msgstr "OK"
634
 
635
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
636
  msgid "Cancel"
637
  msgstr "Annuler"
638
 
@@ -767,12 +789,12 @@ msgstr "Mettre &#224; jour la photo"
767
  msgid "Picture URL:"
768
  msgstr "URL de la photo :"
769
 
770
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
771
  #, php-format
772
  msgid "%s previous value: %s new value: %s"
773
  msgstr "%s ancienne valeur : %s; nouvelle valeur : %s"
774
 
775
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
776
  #, php-format
777
  msgid "%s (%s) has changed one or more fields"
778
  msgstr "%s (%s) a modifi&#233; un ou plusieurs champs"
@@ -1179,17 +1201,14 @@ msgid "All"
1179
  msgstr "Tous"
1180
 
1181
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1182
- #, fuzzy
1183
  msgid "Done"
1184
  msgstr ""
1185
 
1186
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1187
- #, fuzzy
1188
  msgid "&laquo; Previous"
1189
  msgstr ""
1190
 
1191
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1192
- #, fuzzy
1193
  msgid "Next &raquo;"
1194
  msgstr ""
1195
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ERREUR"
38
 
54
  msgstr "n'est pas correct"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "OUI"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NON"
67
 
108
  msgstr "Le code saisi est incorrect."
109
 
110
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
112
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
113
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
114
  msgid "Username"
115
  msgstr "Identifiant"
116
 
117
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
119
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
120
  msgid "E-mail"
121
  msgstr "Courriel"
122
 
123
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
124
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Veuillez t&#233;l&#233;chargez un fichier avec l'une des extensions suivantes"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "S'il vous plait, t&#233;l&#233;chargez une image avec l'une des extensions suivantes"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr "Indicateur de s&#251;ret&#233;"
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  #, fuzzy
140
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
141
  msgstr "Suggestion: Le mot de passe devrait contenir au moins sept caract&#232;res. Pour le s&#233;curiser encore plus, utilisez une combinaison de minuscules, de majuscules, de chiffres et de symboles tels que ! \\\" ? $ % ^ & )."
142
 
143
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
144
  msgid "Change image"
145
  msgstr "Changer l'image"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr "Ins&#233;rer le code :"
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Changer l'ordre"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Longueur min"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Longueur exacte"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Longueur max"
198
 
227
  msgstr "supprm&#233;(e) correctement"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Taille min"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Taille exacte"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Taille max"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Taille exacte ou Max"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Taille min"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Taille exacte"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Taille max"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Nom non sp&#233;cifi&#233;"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Le nom ne peut pas contenir d'espace"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "&#201;tiquette non sp&#233;cifi&#233;"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "non s&#233;lectionn&#233; (avec ce type, c'est n&#233;cessaire)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Si vous s&#233;lectionnez"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "vous ne pouvez pas s&#233;lectionner Min ou Max"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "devrait &#234;tre compris entre"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "&#201;gal &#192; non sp&#233;cifi&#233;"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "Avec le type checkbox, &#201;gal &#192; ne peut &#234;tre que"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "Avec le type radio, &#201;gal &#192; ne peut &#234;tre que"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "Avec le type checkbox, la valeur ne peut &#234;tre que"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "Avec le type radio, la valeur ne peut &#234;tre que"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Champ ins&#233;r&#233; correctement"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Champ #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "mis &#224; jour correctement"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Le nom est d&#233;j&#224; dans la base de donn&#233;es; veuillez le changer"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Ajouter un nouveau champ"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "Pour ajouter un nouveau champ, vous devez choisir un nom, un type et une &#233;tiquette; la valeur et la description sont optionnelles. Les r&#232;gles sont appliqu&#233;es lors de l'inscription d'un utilisateur."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "Avec les types <strong>radio</strong> et <strong>checkbox</strong> : <em>Valeur</em> et <em>&#233;gal &#192;</em> peuvent seulement &#234;tre 'Yes' ou 'No' ce qui signifie 's&#233;lectionn&#233;' ou 'non s&#233;lectionn&#233;'"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "Avec le type <strong>drop-down</strong> : vous devez ajouter toutes les options dans l'&#233;tiquette, par exemple: &#233;tiquette/item1,item2,item3"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "Avec le type <strong>picture</strong> : vous pouvez pr&#233;charger une image par d&#233;faut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>&#233;gal &#192;</em> indique la taille max en pixels (largeur ou hauteur) pour les vignettes"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "Avec le type <strong>picture-url</strong> : vous pouvez pr&#233;charger une image par d&#233;faut en indiqaunt son URL dans <em>Valeur</em>; <em>&#233;gal &#192;</em> indique la taille de la largeur max en pixels (la hauteur sera proportionnelle)"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "Avec le type <strong>registration-date</strong> : <em>&#233;gal &#192;</em> indique un format date et heure"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  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"
363
  msgstr "Avec le type <strong>picture</strong> : vous pouvez pr&#233;charger une image par d&#233;faut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>&#233;gal &#192;</em> est automatiquement mis &#224; 512 pixels"
364
 
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
366
  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"
367
  msgstr "Avec le type <strong>picture</strong> : vous pouvez pr&#233;charger un fichier par d&#233;faut en indiquant son URL dans <em>Valeur</em>; 'taille min,exacte,max' sont en KB; <em>&#233;gal &#192;</em> indique les extensions de fichiers accept&#233;s s&#233;par&#233;s par une virgule, exemple: zip,pdf,doc"
368
 
369
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
370
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
371
+ msgstr ""
372
+
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
379
  msgid "Name"
380
  msgstr "Nom"
381
 
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
388
  msgid "Value"
389
  msgstr "Valeur"
390
 
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
395
  msgid "Type"
396
  msgstr "Type"
397
 
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
402
  msgid "Label"
403
  msgstr "&#201;tiquette"
404
 
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
409
  msgid "Description"
410
  msgstr "Description"
411
 
412
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
413
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
414
  msgid "Rules"
415
  msgstr "R&#232;gles"
416
 
417
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
419
  msgid "Actions"
420
  msgstr "Actions"
421
 
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
426
  msgid "Fieldset"
427
  msgstr "Regroupements"
428
 
429
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
431
  msgid "Can be empty"
432
  msgstr "Peut &#234;tre vide"
433
 
434
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
435
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
436
  msgid "Check for E-mail syntax"
437
  msgstr "V&#233;rifier la syntaxe du courriel"
438
 
439
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
441
  msgid "Can be modified"
442
  msgstr "Peut &#234;tre modifi&#233;"
443
 
444
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
445
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
446
  msgid "Can be modified only if empty"
447
  msgstr "Ne peut &#234;tre modifi&#233; que s'il est vide"
448
 
449
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
451
  msgid "Can be modified only by admin"
452
  msgstr "Ne peut &#234;tre modifi&#233; que par un admin"
453
 
454
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
455
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
456
  msgid "Can be modified only by admin or if empty"
457
  msgstr "Ne peut &#234;tre modifi&#233; que par un admin ou s'il est vide"
458
 
459
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
461
  msgid "Cannot be modified"
462
  msgstr "Ne peut pas &#234;tre modifi&#233;"
463
 
464
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
465
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
466
  msgid "Should be equal TO"
467
  msgstr "Devrait &#234;tre &#233;gal &#192;"
468
 
469
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
470
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
471
  msgid "Case sensitive"
472
  msgstr "Tenir compte de la case (majuscule/minuscule)"
473
 
474
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
475
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
476
  msgid "Regular Expression"
477
  msgstr "Expression r&#233;guli&#232;re"
478
 
479
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
480
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
481
  msgid "Show the field in the registration"
482
  msgstr "Montrer le champ lors de l'inscription"
483
 
484
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
485
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
486
  msgid "Show the field in User's profile"
487
  msgstr "Montrer le champ dans le profil de l'utilisateur"
488
 
489
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
490
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
491
  #, fuzzy
492
  msgid "Show the field in Users Extended section"
493
  msgstr "Montrer le champ dans le menu A&U &#201;tendu"
494
 
495
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
497
  msgid "Show the field in the search engine"
498
  msgstr "Montrer le champ dans les moteurs de recherche"
499
 
500
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
501
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
502
  msgid "Show the field in the blog"
503
  msgstr "Montrer le champ dans le blogue"
504
 
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
506
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
507
  msgid "Show the field if the role is at least:"
508
  msgstr "Montrer le champ si le r&#244;le est au moins :"
509
 
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
512
  msgid "Anonymous"
513
  msgstr "Anonyme"
514
 
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
517
  msgid "User has 'view_cimy_extra_fields' capability"
518
  msgstr ""
519
 
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
522
  msgid "Send an email to the admin if the user changes its value"
523
  msgstr "Envoyer un courriel &#224; l'administrateur si l'utilisateur modifie la valeur de ce champ"
524
 
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
527
  #, fuzzy
528
  msgid "Advanced options"
529
  msgstr "Actions"
530
 
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
532
  msgid "Clear"
533
  msgstr "Vider (RAZ)"
534
 
535
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
536
  msgid "Invert selection"
537
  msgstr "Inverser la s&#233;lection"
538
 
539
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
540
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
541
  msgstr "&#202;tes-vous certain de vouloir supprimer ce(s) champ(s) et toutes les donn&#233;es ins&#233;r&#233;es par vos utilisateurs?"
542
 
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
544
  msgid "WordPress Fields"
545
  msgstr "Champs WordPress"
546
 
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
548
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
549
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
550
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
551
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
552
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
553
  msgid "Extra Fields"
554
  msgstr "Champs Suppl&#233;mentaires"
555
 
556
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
557
  msgid "None!"
558
  msgstr "Aucun!"
559
 
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
561
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
562
  msgid "Order"
563
  msgstr "Ordre"
564
 
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
566
  msgid "Reset"
567
  msgstr "R&#233;initialiser"
568
 
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
570
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
571
  msgid "SUCCESSFUL"
572
  msgstr "SUCC&#200;S"
573
 
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
576
  #, fuzzy
577
  msgid "select"
578
  msgstr "s&#233;lectionnez"
579
 
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
581
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
582
  msgid "Users per page"
583
  msgstr "Utilisateurs par page"
584
 
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
587
  msgid "Apply"
588
  msgstr "Appliquer"
589
 
590
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
591
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
592
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
593
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
594
  msgid "Users Extended"
595
  msgstr "Utilisateurs &#201;tendus"
596
 
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
598
  #, php-format
599
  msgid "Search results for &#8220;%s&#8221;"
600
  msgstr ""
601
 
602
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
603
  #, php-format
604
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
605
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
606
 
607
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
608
  msgid "Search Users"
609
  msgstr "Chercher des utilisateurs"
610
 
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
612
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
613
  msgid "Role"
614
  msgstr "R&#244;le"
615
 
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
618
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
619
  msgid "Website"
620
  msgstr "Site Web"
621
 
622
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
623
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
624
  msgid "Posts"
625
  msgstr "Articles"
626
 
627
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
628
  msgid "View posts by this author"
629
  msgstr "Voir les articles de cet auteur"
630
 
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
632
  msgid "Super Admin"
633
  msgstr ""
634
 
635
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
636
  #, php-format
637
  msgid "e-mail: %s"
638
  msgstr "courriel : %s"
639
 
640
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
641
  #, fuzzy
642
  msgid "Change"
643
  msgstr "Changer l'image"
644
 
645
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
646
  msgid "Update selected users"
647
  msgstr "Mettre &#224; jour les utilisateurs s&#233;lectionn&#233;s"
648
 
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
650
  msgid "Update"
651
  msgstr "Mettre &#224; jour"
652
 
653
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
654
  msgid "OK"
655
  msgstr "OK"
656
 
657
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
658
  msgid "Cancel"
659
  msgstr "Annuler"
660
 
789
  msgid "Picture URL:"
790
  msgstr "URL de la photo :"
791
 
792
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
793
  #, php-format
794
  msgid "%s previous value: %s new value: %s"
795
  msgstr "%s ancienne valeur : %s; nouvelle valeur : %s"
796
 
797
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
798
  #, php-format
799
  msgid "%s (%s) has changed one or more fields"
800
  msgstr "%s (%s) a modifi&#233; un ou plusieurs champs"
1201
  msgstr "Tous"
1202
 
1203
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1204
  msgid "Done"
1205
  msgstr ""
1206
 
1207
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1208
  msgid "&laquo; Previous"
1209
  msgstr ""
1210
 
1211
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1212
  msgid "Next &raquo;"
1213
  msgstr ""
1214
 
langs/cimy_uef-it_IT.mo CHANGED
Binary file
langs/cimy_uef-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 15:01-0800\n"
6
- "PO-Revision-Date: 2013-09-02 15:02-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ERRORE"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "non &egrave; corretto"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "SI"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NO"
67
 
@@ -107,56 +107,56 @@ msgid "Typed code is not correct."
107
  msgstr "Il codice inserito non è corretto."
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr ""
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr ""
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Per favore spedisci un file con una delle seguenti estensioni"
126
 
127
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
132
 
133
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
134
  msgid "Strength indicator"
135
  msgstr ""
136
 
137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
138
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
  msgstr ""
140
 
141
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
142
  #, fuzzy
143
  msgid "Change image"
144
  msgstr "Cambia ordine"
145
 
146
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
147
  msgid "Insert the code:"
148
  msgstr ""
149
 
150
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
152
  msgid "Confirm your registration"
153
  msgstr "Conferma la registrazione"
154
 
155
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
156
  msgid "A password will be e-mailed to you."
157
  msgstr ""
158
 
159
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
160
  msgid "&larr; Back"
161
  msgstr "&larr; Indietro"
162
 
@@ -181,17 +181,17 @@ msgid "Change order"
181
  msgstr "Cambia ordine"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
185
  msgid "Min length"
186
  msgstr "Lunghezza Min"
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
190
  msgid "Exact length"
191
  msgstr "Lunghezza Esatta"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
195
  msgid "Max length"
196
  msgstr "Lunghezza Max"
197
 
@@ -226,17 +226,17 @@ msgid "deleted correctly"
226
  msgstr "cancellato(i) correttamente"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
230
  msgid "Min size"
231
  msgstr "Dimensione Min"
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
235
  msgid "Exact size"
236
  msgstr "Dimensione Esatta"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
240
  msgid "Max size"
241
  msgstr "Dimensione Max"
242
 
@@ -244,393 +244,412 @@ msgstr "Dimensione Max"
244
  msgid "Exact or Max size"
245
  msgstr "Dimensione Esatta o Max"
246
 
247
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid "Name not specified"
249
  msgstr "Nome non specificato"
250
 
251
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
252
  msgid "Name cannot contains spaces"
253
  msgstr "Il Nome non può contenere spazi"
254
 
255
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
256
  msgid "Label not specified"
257
  msgstr "Etichetta non specificata"
258
 
259
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
260
  msgid "not selected (with this type is necessary)"
261
  msgstr "non selezionata (con questo tipo è necessario)"
262
 
263
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
264
  msgid "If you select"
265
  msgstr "Se selezioni"
266
 
267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
268
  msgid "you cannot select Min or Max"
269
  msgstr "non puoi selezionare Min o Max"
270
 
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
274
  msgid "should be in the range of"
275
  msgstr "deve essere compreso tra"
276
 
277
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
278
  msgid "Equal TO not specified"
279
  msgstr "Uguale A non specificato"
280
 
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
282
  msgid "With checkbox type Equal TO can only be"
283
  msgstr "Con il tipo checkbox Uguale A pu&ograve; essere solo"
284
 
285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
286
  msgid "With radio type Equal TO can only be"
287
  msgstr "Con il tipo radio Uguale A pu&ograve; essere solo"
288
 
289
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
290
  msgid "With checkbox type Value can only be"
291
  msgstr "Con il tipo checkbox Valore pu&ograve; essere solo"
292
 
293
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
294
  msgid "With radio type Value can only be"
295
  msgstr "Con il tipo radio Valore pu&ograve; essere solo"
296
 
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
298
  msgid "Field inserted correctly"
299
  msgstr "Campo inserito correttamente"
300
 
301
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
302
  msgid "Field #"
303
  msgstr "Campo #"
304
 
305
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
306
  msgid "updated correctly"
307
  msgstr "aggiornato correttamente"
308
 
309
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
310
  msgid "Name inserted is just in the database, change to another one"
311
  msgstr "Il Nome inserito &egrave; gi&agrave; nel database, cambialo con un altro"
312
 
313
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
315
  msgid "Add a new Field"
316
  msgstr "Aggiungi un campo"
317
 
318
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
319
  msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
320
  msgstr "Per aggiungere un nuovo campo devi scegliere un nome, il tipo ed una etichetta; opzionale sono il valore e la descrizione. Le regole sono applicate durante la registrazione dell'utente."
321
 
322
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
323
  msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
324
  msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
325
 
326
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
327
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
328
  msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
329
 
330
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
331
  msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
332
  msgstr "Con <strong>picture</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> significa il numero max di pixel (larghezza o altezza) per la miniatura"
333
 
334
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
335
  msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
336
  msgstr "Con <strong>picture-url</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; <em>uguale A</em> significa max pixel in larghezza (l'altezza sar&agrave; proporzionale)"
337
 
338
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
339
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
340
  msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
341
 
342
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
343
  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"
344
  msgstr "Con <strong>avatar</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> viene automaticamente settato a 512 pixel"
345
 
346
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
347
  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"
348
  msgstr "Con <strong>file</strong>: puoi precaricare un file di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; in <em>uguale A</em> si possono specificare le estensioni separate dalla virgola, per esempio: zip,pdf,doc"
349
 
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
356
  msgid "Name"
357
  msgstr ""
358
 
359
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
365
  msgid "Value"
366
  msgstr ""
367
 
368
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
372
  msgid "Type"
373
  msgstr "Tipo"
374
 
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
379
  msgid "Label"
380
  msgstr "Etichetta"
381
 
382
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
386
  msgid "Description"
387
  msgstr ""
388
 
389
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
390
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
391
  msgid "Rules"
392
  msgstr "Regole"
393
 
394
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
395
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
396
  msgid "Actions"
397
  msgstr ""
398
 
399
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
403
  msgid "Fieldset"
404
  msgstr "Raggruppamento"
405
 
406
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
407
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
408
  msgid "Can be empty"
409
  msgstr "Può essere vuoto"
410
 
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
412
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
413
  msgid "Check for E-mail syntax"
414
  msgstr "Controlla la sintassi dell'E-mail"
415
 
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
417
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
418
  msgid "Can be modified"
419
  msgstr "Può essere modificato"
420
 
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
423
  msgid "Can be modified only if empty"
424
  msgstr "Può essere modificato solo se vuoto"
425
 
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
427
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
428
  msgid "Can be modified only by admin"
429
  msgstr "Può essere modificato solo dall'admin"
430
 
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
432
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
433
  msgid "Can be modified only by admin or if empty"
434
  msgstr "Può essere modificato solo dall'admin o se vuoto"
435
 
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
437
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
438
  msgid "Cannot be modified"
439
  msgstr "Non può essere modificato"
440
 
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
443
  msgid "Should be equal TO"
444
  msgstr "Deve essere uguale A"
445
 
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
447
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
448
  msgid "Case sensitive"
449
  msgstr "Distinguere le maiuscole"
450
 
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
452
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
453
  msgid "Regular Expression"
454
  msgstr "Espressione Regolare"
455
 
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
457
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
458
  msgid "Show the field in the registration"
459
  msgstr "Mostra il campo nella registrazione"
460
 
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
463
  msgid "Show the field in User's profile"
464
  msgstr "Mostra il campo nel profilo dell'utente"
465
 
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
467
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
468
  msgid "Show the field in Users Extended section"
469
  msgstr "Mostra il campo nella sezione Utenti estesa"
470
 
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
472
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
473
  msgid "Show the field in the search engine"
474
  msgstr "Mostra il campo nel motore di ricerca"
475
 
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
478
  msgid "Show the field in the blog"
479
  msgstr "Mostra il campo nel blog"
480
 
481
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
483
  msgid "Show the field if the role is at least:"
484
  msgstr "Mostra il campo se il ruolo è almeno:"
485
 
486
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
488
  msgid "Anonymous"
489
  msgstr ""
490
 
491
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
493
  msgid "User has 'view_cimy_extra_fields' capability"
494
  msgstr "L'utente ha la capacità 'view_cimy_extra_fields'"
495
 
496
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
498
  msgid "Send an email to the admin if the user changes its value"
499
  msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
500
 
501
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
503
  msgid "Advanced options"
504
  msgstr "Opzioni avanzate"
505
 
506
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
507
  msgid "Clear"
508
  msgstr "Pulisci"
509
 
510
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
511
  msgid "Invert selection"
512
  msgstr "Inverti selezione"
513
 
514
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
515
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
516
  msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
517
 
518
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
519
  msgid "WordPress Fields"
520
  msgstr "Campi WordPress"
521
 
522
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
524
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
525
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
526
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
527
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
528
  msgid "Extra Fields"
529
  msgstr "Campi Extra"
530
 
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
532
  msgid "None!"
533
  msgstr "Nessuno!"
534
 
535
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
536
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
537
  msgid "Order"
538
  msgstr "Ordine"
539
 
540
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
541
  msgid "Reset"
542
  msgstr "Reset"
543
 
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
545
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
546
  msgid "SUCCESSFUL"
547
  msgstr "SUCCESSO"
548
 
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
550
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
551
  msgid "select"
552
  msgstr "seleziona"
553
 
554
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
555
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
556
  msgid "Users per page"
557
  msgstr "Utenti per pagina"
558
 
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
560
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
561
  msgid "Apply"
562
  msgstr ""
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
565
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
566
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
567
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
568
  msgid "Users Extended"
569
  msgstr "Utenti Estesa"
570
 
571
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
572
  #, php-format
573
  msgid "Search results for &#8220;%s&#8221;"
574
  msgstr ""
575
 
576
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
577
  #, php-format
578
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
579
  msgstr ""
580
 
581
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
582
  msgid "Search Users"
583
  msgstr ""
584
 
585
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
586
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
587
  #, fuzzy
588
  msgid "Role"
589
  msgstr "Regole"
590
 
591
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
592
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
593
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
594
  msgid "Website"
595
  msgstr ""
596
 
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
599
  msgid "Posts"
600
  msgstr ""
601
 
602
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
603
  msgid "View posts by this author"
604
  msgstr ""
605
 
606
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
607
  msgid "Super Admin"
608
  msgstr ""
609
 
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
611
  #, php-format
612
  msgid "e-mail: %s"
613
  msgstr ""
614
 
615
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
616
  #, fuzzy
617
  msgid "Change"
618
  msgstr "Cambia ordine"
619
 
620
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
621
  msgid "Update selected users"
622
  msgstr "Aggiorna gli utenti selezionati"
623
 
624
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
625
  #, fuzzy
626
  msgid "Update"
627
  msgstr "Aggiorna campo"
628
 
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
630
  msgid "OK"
631
  msgstr ""
632
 
633
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
634
  msgid "Cancel"
635
  msgstr ""
636
 
@@ -766,12 +785,12 @@ msgstr "Aggiorna l'immagine"
766
  msgid "Picture URL:"
767
  msgstr "URL dell'immagine:"
768
 
769
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
770
  #, php-format
771
  msgid "%s previous value: %s new value: %s"
772
  msgstr "%s precedente valore: %s nuovo valore: %s"
773
 
774
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
775
  #, php-format
776
  msgid "%s (%s) has changed one or more fields"
777
  msgstr "%s (%s) ha cambiato uno o più campi"
@@ -1180,26 +1199,23 @@ msgstr "Nessun raggruppamento"
1180
  msgid "All"
1181
  msgstr ""
1182
 
1183
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1184
- #, fuzzy
1185
  msgid "Done"
1186
  msgstr ""
1187
 
1188
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1189
- #, fuzzy
1190
  msgid "&laquo; Previous"
1191
  msgstr ""
1192
 
1193
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1021
1194
- #, fuzzy
1195
  msgid "Next &raquo;"
1196
  msgstr ""
1197
 
1198
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1022
1199
  msgid "Today"
1200
  msgstr "Oggi"
1201
 
1202
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1025
1203
  #, fuzzy
1204
  msgid "Select Month"
1205
  msgstr "seleziona una azione"
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ERRORE"
38
 
54
  msgstr "non &egrave; corretto"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "SI"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NO"
67
 
107
  msgstr "Il codice inserito non è corretto."
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr ""
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr ""
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Per favore spedisci un file con una delle seguenti estensioni"
126
 
127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
132
 
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
134
  msgid "Strength indicator"
135
  msgstr ""
136
 
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
138
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
  msgstr ""
140
 
141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
142
  #, fuzzy
143
  msgid "Change image"
144
  msgstr "Cambia ordine"
145
 
146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
147
  msgid "Insert the code:"
148
  msgstr ""
149
 
150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
152
  msgid "Confirm your registration"
153
  msgstr "Conferma la registrazione"
154
 
155
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
156
  msgid "A password will be e-mailed to you."
157
  msgstr ""
158
 
159
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
160
  msgid "&larr; Back"
161
  msgstr "&larr; Indietro"
162
 
181
  msgstr "Cambia ordine"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
185
  msgid "Min length"
186
  msgstr "Lunghezza Min"
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
190
  msgid "Exact length"
191
  msgstr "Lunghezza Esatta"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
195
  msgid "Max length"
196
  msgstr "Lunghezza Max"
197
 
226
  msgstr "cancellato(i) correttamente"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
230
  msgid "Min size"
231
  msgstr "Dimensione Min"
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
235
  msgid "Exact size"
236
  msgstr "Dimensione Esatta"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
240
  msgid "Max size"
241
  msgstr "Dimensione Max"
242
 
244
  msgid "Exact or Max size"
245
  msgstr "Dimensione Esatta o Max"
246
 
247
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
249
+ msgid "Min date"
250
+ msgstr "Data min"
251
+
252
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
254
+ msgid "Exact date"
255
+ msgstr "Data esatta"
256
+
257
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
258
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
259
+ msgid "Max date"
260
+ msgstr "Data max"
261
+
262
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
263
  msgid "Name not specified"
264
  msgstr "Nome non specificato"
265
 
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
267
  msgid "Name cannot contains spaces"
268
  msgstr "Il Nome non può contenere spazi"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
271
  msgid "Label not specified"
272
  msgstr "Etichetta non specificata"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
275
  msgid "not selected (with this type is necessary)"
276
  msgstr "non selezionata (con questo tipo è necessario)"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
279
  msgid "If you select"
280
  msgstr "Se selezioni"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "you cannot select Min or Max"
284
  msgstr "non puoi selezionare Min o Max"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
287
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
288
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
289
  msgid "should be in the range of"
290
  msgstr "deve essere compreso tra"
291
 
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
293
  msgid "Equal TO not specified"
294
  msgstr "Uguale A non specificato"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
297
  msgid "With checkbox type Equal TO can only be"
298
  msgstr "Con il tipo checkbox Uguale A pu&ograve; essere solo"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
301
  msgid "With radio type Equal TO can only be"
302
  msgstr "Con il tipo radio Uguale A pu&ograve; essere solo"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
305
  msgid "With checkbox type Value can only be"
306
  msgstr "Con il tipo checkbox Valore pu&ograve; essere solo"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
309
  msgid "With radio type Value can only be"
310
  msgstr "Con il tipo radio Valore pu&ograve; essere solo"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
313
  msgid "Field inserted correctly"
314
  msgstr "Campo inserito correttamente"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
317
  msgid "Field #"
318
  msgstr "Campo #"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "updated correctly"
322
  msgstr "aggiornato correttamente"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
325
  msgid "Name inserted is just in the database, change to another one"
326
  msgstr "Il Nome inserito &egrave; gi&agrave; nel database, cambialo con un altro"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
329
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
330
  msgid "Add a new Field"
331
  msgstr "Aggiungi un campo"
332
 
333
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
334
  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."
335
  msgstr "Per aggiungere un nuovo campo devi scegliere un nome, il tipo ed una etichetta; opzionale sono il valore e la descrizione. Le regole sono applicate durante la registrazione dell'utente."
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
338
  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'"
339
  msgstr "Con <strong>radio</strong> e <strong>checkbox</strong>: <em>Valore</em> e <em>uguale A</em> possono essere solo 'Yes' o 'No' questo significa 'selezionati' o 'non selezionati'"
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
342
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
343
  msgstr "Con <strong>drop-down</strong>: devi aggiungere tutte le opzioni nell'etichetta per esempio: etichetta/oggetto1,oggetto2,oggetto3"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
346
  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"
347
  msgstr "Con <strong>picture</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> significa il numero max di pixel (larghezza o altezza) per la miniatura"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
350
  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)"
351
  msgstr "Con <strong>picture-url</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; <em>uguale A</em> significa max pixel in larghezza (l'altezza sar&agrave; proporzionale)"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
354
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
355
  msgstr "Con <strong>registration-date</strong>: <em>uguale A</em> significa il formato della data e dell'ora"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
358
  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"
359
  msgstr "Con <strong>avatar</strong>: puoi precaricare una immagine di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; <em>uguale A</em> viene automaticamente settato a 512 pixel"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
362
  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"
363
  msgstr "Con <strong>file</strong>: puoi precaricare un file di default mettendo l'indirizzo nel <em>Valore</em>; 'min,esatta,max dimensione' sono in KB; in <em>uguale A</em> si possono specificare le estensioni separate dalla virgola, per esempio: zip,pdf,doc"
364
 
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
366
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
367
+ msgstr "Con <strong>date</strong>: puoi precaricare una data di default nel <em>Valore</em>; 'data min' può essere relativa: -1d, -1m, -1y oppure una data specifica; 'data max' può essere relativa: +1d, +1m, +1y oppure una data specifica; <em>uguale A</em> può essere una data specifica"
368
+
369
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
375
  msgid "Name"
376
  msgstr ""
377
 
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
384
  msgid "Value"
385
  msgstr ""
386
 
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
391
  msgid "Type"
392
  msgstr "Tipo"
393
 
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
398
  msgid "Label"
399
  msgstr "Etichetta"
400
 
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
405
  msgid "Description"
406
  msgstr ""
407
 
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
410
  msgid "Rules"
411
  msgstr "Regole"
412
 
413
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
415
  msgid "Actions"
416
  msgstr ""
417
 
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
422
  msgid "Fieldset"
423
  msgstr "Raggruppamento"
424
 
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
427
  msgid "Can be empty"
428
  msgstr "Può essere vuoto"
429
 
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
432
  msgid "Check for E-mail syntax"
433
  msgstr "Controlla la sintassi dell'E-mail"
434
 
435
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
437
  msgid "Can be modified"
438
  msgstr "Può essere modificato"
439
 
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
442
  msgid "Can be modified only if empty"
443
  msgstr "Può essere modificato solo se vuoto"
444
 
445
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
447
  msgid "Can be modified only by admin"
448
  msgstr "Può essere modificato solo dall'admin"
449
 
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
452
  msgid "Can be modified only by admin or if empty"
453
  msgstr "Può essere modificato solo dall'admin o se vuoto"
454
 
455
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
457
  msgid "Cannot be modified"
458
  msgstr "Non può essere modificato"
459
 
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
462
  msgid "Should be equal TO"
463
  msgstr "Deve essere uguale A"
464
 
465
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
467
  msgid "Case sensitive"
468
  msgstr "Distinguere le maiuscole"
469
 
470
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
472
  msgid "Regular Expression"
473
  msgstr "Espressione Regolare"
474
 
475
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
477
  msgid "Show the field in the registration"
478
  msgstr "Mostra il campo nella registrazione"
479
 
480
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
482
  msgid "Show the field in User's profile"
483
  msgstr "Mostra il campo nel profilo dell'utente"
484
 
485
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
487
  msgid "Show the field in Users Extended section"
488
  msgstr "Mostra il campo nella sezione Utenti estesa"
489
 
490
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
492
  msgid "Show the field in the search engine"
493
  msgstr "Mostra il campo nel motore di ricerca"
494
 
495
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
497
  msgid "Show the field in the blog"
498
  msgstr "Mostra il campo nel blog"
499
 
500
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
501
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
502
  msgid "Show the field if the role is at least:"
503
  msgstr "Mostra il campo se il ruolo è almeno:"
504
 
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
506
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
507
  msgid "Anonymous"
508
  msgstr ""
509
 
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
512
  msgid "User has 'view_cimy_extra_fields' capability"
513
  msgstr "L'utente ha la capacità 'view_cimy_extra_fields'"
514
 
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
517
  msgid "Send an email to the admin if the user changes its value"
518
  msgstr "Invia una email all'amministratore quando l'utente cambia il contenuto"
519
 
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
522
  msgid "Advanced options"
523
  msgstr "Opzioni avanzate"
524
 
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
526
  msgid "Clear"
527
  msgstr "Pulisci"
528
 
529
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
530
  msgid "Invert selection"
531
  msgstr "Inverti selezione"
532
 
533
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
534
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
535
  msgstr "Sei sicuro di volere cancellare il(i) campo(i) e tutti i relativi dati inseriti dagli utenti?"
536
 
537
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
538
  msgid "WordPress Fields"
539
  msgstr "Campi WordPress"
540
 
541
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
542
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
544
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
545
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
546
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
547
  msgid "Extra Fields"
548
  msgstr "Campi Extra"
549
 
550
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
551
  msgid "None!"
552
  msgstr "Nessuno!"
553
 
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
556
  msgid "Order"
557
  msgstr "Ordine"
558
 
559
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
560
  msgid "Reset"
561
  msgstr "Reset"
562
 
563
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
564
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
565
  msgid "SUCCESSFUL"
566
  msgstr "SUCCESSO"
567
 
568
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
570
  msgid "select"
571
  msgstr "seleziona"
572
 
573
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
575
  msgid "Users per page"
576
  msgstr "Utenti per pagina"
577
 
578
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
580
  msgid "Apply"
581
  msgstr ""
582
 
583
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
584
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
585
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
586
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
587
  msgid "Users Extended"
588
  msgstr "Utenti Estesa"
589
 
590
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
591
  #, php-format
592
  msgid "Search results for &#8220;%s&#8221;"
593
  msgstr ""
594
 
595
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
596
  #, php-format
597
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
598
  msgstr ""
599
 
600
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
601
  msgid "Search Users"
602
  msgstr ""
603
 
604
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
606
  #, fuzzy
607
  msgid "Role"
608
  msgstr "Regole"
609
 
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
612
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
613
  msgid "Website"
614
  msgstr ""
615
 
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
618
  msgid "Posts"
619
  msgstr ""
620
 
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
622
  msgid "View posts by this author"
623
  msgstr ""
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
626
  msgid "Super Admin"
627
  msgstr ""
628
 
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
630
  #, php-format
631
  msgid "e-mail: %s"
632
  msgstr ""
633
 
634
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
635
  #, fuzzy
636
  msgid "Change"
637
  msgstr "Cambia ordine"
638
 
639
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
640
  msgid "Update selected users"
641
  msgstr "Aggiorna gli utenti selezionati"
642
 
643
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
644
  #, fuzzy
645
  msgid "Update"
646
  msgstr "Aggiorna campo"
647
 
648
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
649
  msgid "OK"
650
  msgstr ""
651
 
652
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
653
  msgid "Cancel"
654
  msgstr ""
655
 
785
  msgid "Picture URL:"
786
  msgstr "URL dell'immagine:"
787
 
788
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
789
  #, php-format
790
  msgid "%s previous value: %s new value: %s"
791
  msgstr "%s precedente valore: %s nuovo valore: %s"
792
 
793
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
794
  #, php-format
795
  msgid "%s (%s) has changed one or more fields"
796
  msgstr "%s (%s) ha cambiato uno o più campi"
1199
  msgid "All"
1200
  msgstr ""
1201
 
1202
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1203
  msgid "Done"
1204
  msgstr ""
1205
 
1206
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1207
  msgid "&laquo; Previous"
1208
  msgstr ""
1209
 
1210
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1211
  msgid "Next &raquo;"
1212
  msgstr ""
1213
 
1214
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1021
1215
  msgid "Today"
1216
  msgstr "Oggi"
1217
 
1218
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1024
1219
  #, fuzzy
1220
  msgid "Select Month"
1221
  msgstr "seleziona una azione"
langs/cimy_uef-pl_PL.mo CHANGED
Binary file
langs/cimy_uef-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:40-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:40-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <pik256@gmail.com>\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "BŁĄD"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "jest nieprawidłowy"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "TAK"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NIE"
67
 
@@ -107,56 +107,56 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Nazwa użytkownika"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Wgraj plik w jednym z następujących formatów"
126
 
127
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Wgraj obrazek w jednym z następujących formatów"
132
 
133
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
134
  msgid "Strength indicator"
135
  msgstr ""
136
 
137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
138
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
  msgstr ""
140
 
141
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
142
  #, fuzzy
143
  msgid "Change image"
144
  msgstr "Zmień kolejność"
145
 
146
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
147
  msgid "Insert the code:"
148
  msgstr ""
149
 
150
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
152
  msgid "Confirm your registration"
153
  msgstr ""
154
 
155
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
156
  msgid "A password will be e-mailed to you."
157
  msgstr ""
158
 
159
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
160
  msgid "&larr; Back"
161
  msgstr ""
162
 
@@ -181,17 +181,17 @@ msgid "Change order"
181
  msgstr "Zmień kolejność"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
185
  msgid "Min length"
186
  msgstr "Długość min"
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
190
  msgid "Exact length"
191
  msgstr "Długość dokładna"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
195
  msgid "Max length"
196
  msgstr "Długość max"
197
 
@@ -226,17 +226,17 @@ msgid "deleted correctly"
226
  msgstr "wykasowano prawidłowo"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
230
  msgid "Min size"
231
  msgstr "Rozmiar min"
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
235
  msgid "Exact size"
236
  msgstr "Rozmiar dokładny"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
240
  msgid "Max size"
241
  msgstr "Rozmiar max"
242
 
@@ -244,395 +244,417 @@ msgstr "Rozmiar max"
244
  msgid "Exact or Max size"
245
  msgstr "Rozmiar dokładny lub max"
246
 
247
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid "Name not specified"
249
  msgstr "Nazwa nie określona"
250
 
251
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
252
  msgid "Name cannot contains spaces"
253
  msgstr "Nazwa nie może zawierać spacji"
254
 
255
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
256
  msgid "Label not specified"
257
  msgstr "Etykieta nie określona"
258
 
259
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
260
  msgid "not selected (with this type is necessary)"
261
  msgstr "nie wybrano (niezbędne dla tego typu)"
262
 
263
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
264
  msgid "If you select"
265
  msgstr "Jeżeli wybierzesz"
266
 
267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
268
  msgid "you cannot select Min or Max"
269
  msgstr "Nie możesz wybrać Min lub Max"
270
 
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
274
  msgid "should be in the range of"
275
  msgstr "powinien się mieścić w zakresie"
276
 
277
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
278
  msgid "Equal TO not specified"
279
  msgstr "równość (=) nie określona"
280
 
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
282
  msgid "With checkbox type Equal TO can only be"
283
  msgstr "Dla <strong>checkbox</strong> może być tylko równość"
284
 
285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
286
  msgid "With radio type Equal TO can only be"
287
  msgstr "Dla <strong>radio</strong> może być tylko równość"
288
 
289
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
290
  msgid "With checkbox type Value can only be"
291
  msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
292
 
293
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
294
  msgid "With radio type Value can only be"
295
  msgstr "Dla <strong>radio</strong> wartość może być tylko"
296
 
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
298
  msgid "Field inserted correctly"
299
  msgstr "Pole wstawione poprawnie"
300
 
301
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
302
  msgid "Field #"
303
  msgstr "Pole #"
304
 
305
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
306
  msgid "updated correctly"
307
  msgstr "zaktualizowane prawidłowo"
308
 
309
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
310
  msgid "Name inserted is just in the database, change to another one"
311
  msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
312
 
313
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
315
  msgid "Add a new Field"
316
  msgstr "Dodaj nowe pole"
317
 
318
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
319
  msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
320
  msgstr "Aby dodać nowe pole musisz nadać mu nazwę, typ i etykietę; wartość i opis są opcjonalne. Reguły są stosowane podczas rejestracji użytkownika."
321
 
322
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
323
  msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
324
  msgstr "Dla <strong>radio</strong> i <strong>checkbox</strong>: <em>wartość</em> i <em>równe</em> mogą być tylko \"Yes\" lub \"No\", co oznacza zaznaczone lub nie zaznaczone."
325
 
326
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
327
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
328
  msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
329
 
330
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
331
  msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
332
  msgstr "Dla <strong>obrazka (picture)</strong>: należy uprzednio wgrać obrazek i podać jego Url w polu <em>wartość</em>; rozmiary min, dokładny, max są w KB; <em>równość</em> oznacza maksymalny rozmiar miniaturki (wysokość i szerokość) i będzie ustawiona automatycznie na 512 pikseli."
333
 
334
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
335
  msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
336
  msgstr "Dla <strong>url obrazka</strong>: można wgrać domyślny obrazek i wstawić jego adres (Url) do pola <em>wartość</em>; <em>równe</em> oznacza maksymalną szerokość w pikselach (wysokość zostanie ustawiona proporcjonalnie)."
337
 
338
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
339
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
340
  msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
341
 
342
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
343
  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"
344
  msgstr "Dla <strong>avatara</strong>: możesz wgrać domyślny obrazek wstawiając URL do <em>wartość</em>; \"min, dokładny i max rozmiar\" są w KB; <em>równe</em> oznacza maksymalny rozmiar w pikselach (wysokość i szerokość) dla miniaturki i będzie ustawiony automatycznie na 512 pikseli."
345
 
346
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
347
  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"
348
  msgstr "Dla <strong>Pliku</strong>: możesz wgrać plik domyślny podająć URL w polu <em>Wartość</em>; 'min,dokładny,max rozmiar' podane są w KB; w polu <em>równe</em> można podać dopuszczalne rozszerzenia, np.: zip,pdf,doc"
349
 
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
356
  msgid "Name"
357
  msgstr "Nazwa"
358
 
359
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
365
  msgid "Value"
366
  msgstr "Wartość"
367
 
368
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
372
  msgid "Type"
373
  msgstr "Typ"
374
 
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
379
  msgid "Label"
380
  msgstr "Etykieta"
381
 
382
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
386
  msgid "Description"
387
  msgstr "Opis"
388
 
389
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
390
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
391
  msgid "Rules"
392
  msgstr "Reguły"
393
 
394
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
395
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
396
  msgid "Actions"
397
  msgstr "Działania"
398
 
399
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
403
  msgid "Fieldset"
404
  msgstr "Grupa pól"
405
 
406
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
407
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
408
  msgid "Can be empty"
409
  msgstr "Może być puste"
410
 
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
412
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
413
  msgid "Check for E-mail syntax"
414
  msgstr "Sprawdzaj poprawność adresu email"
415
 
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
417
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
418
  msgid "Can be modified"
419
  msgstr "Może być zmieniane"
420
 
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
423
  msgid "Can be modified only if empty"
424
  msgstr "Może być zmienione tylko jeśli jest puste"
425
 
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
427
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
428
  msgid "Can be modified only by admin"
429
  msgstr "Może być modyfikowane tylko przez administratora"
430
 
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
432
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
433
  msgid "Can be modified only by admin or if empty"
434
  msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
435
 
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
437
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
438
  msgid "Cannot be modified"
439
  msgstr "Nie może być zmieniane"
440
 
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
443
  msgid "Should be equal TO"
444
  msgstr "Powinno być równe"
445
 
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
447
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
448
  msgid "Case sensitive"
449
  msgstr "Rozróżnia wielkość liter"
450
 
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
452
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
453
  msgid "Regular Expression"
454
  msgstr "Wyrażenie regularne"
455
 
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
457
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
458
  msgid "Show the field in the registration"
459
  msgstr "Pokaż pole podczas rejestracji"
460
 
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
463
  msgid "Show the field in User's profile"
464
  msgstr "Pokaż pole w profilu użytkownika"
465
 
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
467
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
468
  #, fuzzy
469
  msgid "Show the field in Users Extended section"
470
  msgstr "Pokaż pole na rozszerzonej liście użytkowników"
471
 
472
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
473
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
474
  msgid "Show the field in the search engine"
475
  msgstr "Pokaż pole w profilu użytkownika"
476
 
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
478
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
479
  msgid "Show the field in the blog"
480
  msgstr "Pokaż pole na blogu"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
484
  msgid "Show the field if the role is at least:"
485
  msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
486
 
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
489
  msgid "Anonymous"
490
  msgstr "Anonim"
491
 
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
494
  msgid "User has 'view_cimy_extra_fields' capability"
495
  msgstr ""
496
 
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
499
  msgid "Send an email to the admin if the user changes its value"
500
  msgstr ""
501
 
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
504
  #, fuzzy
505
  msgid "Advanced options"
506
  msgstr "Działania"
507
 
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
509
  msgid "Clear"
510
  msgstr "Wyczyść"
511
 
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
513
  msgid "Invert selection"
514
  msgstr "Odwróć wybór"
515
 
516
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
517
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
518
  msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
519
 
520
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
521
  msgid "WordPress Fields"
522
  msgstr "Pola Wordpressa"
523
 
524
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
525
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
526
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
527
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
528
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
529
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
530
  msgid "Extra Fields"
531
  msgstr "Pola dodatkowe"
532
 
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
534
  msgid "None!"
535
  msgstr "Brak!"
536
 
537
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
539
  msgid "Order"
540
  msgstr "Kolejność"
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
543
  msgid "Reset"
544
  msgstr "Wyczyść"
545
 
546
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
547
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
548
  msgid "SUCCESSFUL"
549
  msgstr "PRAWIDŁOWO"
550
 
551
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
552
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
553
  msgid "select"
554
  msgstr "- Wybierz -"
555
 
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
558
  msgid "Users per page"
559
  msgstr "Użytkowników na stronie"
560
 
561
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
562
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
563
  msgid "Apply"
564
  msgstr "Zastosuj"
565
 
566
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
567
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
568
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
569
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
570
  msgid "Users Extended"
571
  msgstr "Lista rozszerzona"
572
 
573
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
574
  #, php-format
575
  msgid "Search results for &#8220;%s&#8221;"
576
  msgstr ""
577
 
578
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
579
  #, php-format
580
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
581
  msgstr ""
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
584
  msgid "Search Users"
585
  msgstr "Szukaj użytkowników"
586
 
587
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
589
  msgid "Role"
590
  msgstr "Rola"
591
 
592
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
594
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
595
  msgid "Website"
596
  msgstr "Strona internetowa"
597
 
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
599
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
600
  msgid "Posts"
601
  msgstr "Wpisy"
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
604
  msgid "View posts by this author"
605
  msgstr "Zobacz wpisy tego autora"
606
 
607
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
608
  msgid "Super Admin"
609
  msgstr ""
610
 
611
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
612
  #, php-format
613
  msgid "e-mail: %s"
614
  msgstr "e-mail: %s"
615
 
616
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
617
  #, fuzzy
618
  msgid "Change"
619
  msgstr "Zmień kolejność"
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
622
  #, fuzzy
623
  msgid "Update selected users"
624
  msgstr "Usuń wybrane pola"
625
 
626
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
627
  #, fuzzy
628
  msgid "Update"
629
  msgstr "Zaktualizuj pole"
630
 
631
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
632
  msgid "OK"
633
  msgstr ""
634
 
635
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
636
  msgid "Cancel"
637
  msgstr ""
638
 
@@ -762,12 +784,12 @@ msgstr "Wgraj obrazek"
762
  msgid "Picture URL:"
763
  msgstr "URL obrazka:"
764
 
765
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
766
  #, php-format
767
  msgid "%s previous value: %s new value: %s"
768
  msgstr ""
769
 
770
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
771
  #, php-format
772
  msgid "%s (%s) has changed one or more fields"
773
  msgstr ""
@@ -1175,17 +1197,14 @@ msgid "All"
1175
  msgstr ""
1176
 
1177
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1178
- #, fuzzy
1179
  msgid "Done"
1180
  msgstr ""
1181
 
1182
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1183
- #, fuzzy
1184
  msgid "&laquo; Previous"
1185
  msgstr ""
1186
 
1187
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1188
- #, fuzzy
1189
  msgid "Next &raquo;"
1190
  msgstr ""
1191
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <pik256@gmail.com>\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "BŁĄD"
38
 
54
  msgstr "jest nieprawidłowy"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "TAK"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NIE"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Nazwa użytkownika"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Wgraj plik w jednym z następujących formatów"
126
 
127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Wgraj obrazek w jednym z następujących formatów"
132
 
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
134
  msgid "Strength indicator"
135
  msgstr ""
136
 
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
138
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
  msgstr ""
140
 
141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
142
  #, fuzzy
143
  msgid "Change image"
144
  msgstr "Zmień kolejność"
145
 
146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
147
  msgid "Insert the code:"
148
  msgstr ""
149
 
150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
152
  msgid "Confirm your registration"
153
  msgstr ""
154
 
155
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
156
  msgid "A password will be e-mailed to you."
157
  msgstr ""
158
 
159
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
160
  msgid "&larr; Back"
161
  msgstr ""
162
 
181
  msgstr "Zmień kolejność"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
185
  msgid "Min length"
186
  msgstr "Długość min"
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
190
  msgid "Exact length"
191
  msgstr "Długość dokładna"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
195
  msgid "Max length"
196
  msgstr "Długość max"
197
 
226
  msgstr "wykasowano prawidłowo"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
230
  msgid "Min size"
231
  msgstr "Rozmiar min"
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
235
  msgid "Exact size"
236
  msgstr "Rozmiar dokładny"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
240
  msgid "Max size"
241
  msgstr "Rozmiar max"
242
 
244
  msgid "Exact or Max size"
245
  msgstr "Rozmiar dokładny lub max"
246
 
247
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
249
+ #, fuzzy
250
+ msgid "Min date"
251
+ msgstr "Rozmiar min"
252
+
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
255
+ #, fuzzy
256
+ msgid "Exact date"
257
+ msgstr "Rozmiar dokładny"
258
+
259
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
261
+ #, fuzzy
262
+ msgid "Max date"
263
+ msgstr "Rozmiar max"
264
+
265
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
266
  msgid "Name not specified"
267
  msgstr "Nazwa nie określona"
268
 
269
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
270
  msgid "Name cannot contains spaces"
271
  msgstr "Nazwa nie może zawierać spacji"
272
 
273
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
274
  msgid "Label not specified"
275
  msgstr "Etykieta nie określona"
276
 
277
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
278
  msgid "not selected (with this type is necessary)"
279
  msgstr "nie wybrano (niezbędne dla tego typu)"
280
 
281
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
282
  msgid "If you select"
283
  msgstr "Jeżeli wybierzesz"
284
 
285
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
286
  msgid "you cannot select Min or Max"
287
  msgstr "Nie możesz wybrać Min lub Max"
288
 
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
292
  msgid "should be in the range of"
293
  msgstr "powinien się mieścić w zakresie"
294
 
295
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
296
  msgid "Equal TO not specified"
297
  msgstr "równość (=) nie określona"
298
 
299
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
300
  msgid "With checkbox type Equal TO can only be"
301
  msgstr "Dla <strong>checkbox</strong> może być tylko równość"
302
 
303
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
304
  msgid "With radio type Equal TO can only be"
305
  msgstr "Dla <strong>radio</strong> może być tylko równość"
306
 
307
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
308
  msgid "With checkbox type Value can only be"
309
  msgstr "Dla <strong>checkbox</strong> wartość może być tylko"
310
 
311
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
312
  msgid "With radio type Value can only be"
313
  msgstr "Dla <strong>radio</strong> wartość może być tylko"
314
 
315
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
316
  msgid "Field inserted correctly"
317
  msgstr "Pole wstawione poprawnie"
318
 
319
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
320
  msgid "Field #"
321
  msgstr "Pole #"
322
 
323
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
324
  msgid "updated correctly"
325
  msgstr "zaktualizowane prawidłowo"
326
 
327
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
328
  msgid "Name inserted is just in the database, change to another one"
329
  msgstr "Podana nazwa już jest w bazie danych, zmień na inną"
330
 
331
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
332
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
333
  msgid "Add a new Field"
334
  msgstr "Dodaj nowe pole"
335
 
336
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
337
  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."
338
  msgstr "Aby dodać nowe pole musisz nadać mu nazwę, typ i etykietę; wartość i opis są opcjonalne. Reguły są stosowane podczas rejestracji użytkownika."
339
 
340
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
341
  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'"
342
  msgstr "Dla <strong>radio</strong> i <strong>checkbox</strong>: <em>wartość</em> i <em>równe</em> mogą być tylko \"Yes\" lub \"No\", co oznacza zaznaczone lub nie zaznaczone."
343
 
344
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
345
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
346
  msgstr "Dla <strong>listy (drop-down)</strong>: musisz podać wszystkie opcje w etykiecie. Np.: etykieta/wartość1,wartość2,wartość3. "
347
 
348
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
349
  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"
350
  msgstr "Dla <strong>obrazka (picture)</strong>: należy uprzednio wgrać obrazek i podać jego Url w polu <em>wartość</em>; rozmiary min, dokładny, max są w KB; <em>równość</em> oznacza maksymalny rozmiar miniaturki (wysokość i szerokość) i będzie ustawiona automatycznie na 512 pikseli."
351
 
352
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
353
  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)"
354
  msgstr "Dla <strong>url obrazka</strong>: można wgrać domyślny obrazek i wstawić jego adres (Url) do pola <em>wartość</em>; <em>równe</em> oznacza maksymalną szerokość w pikselach (wysokość zostanie ustawiona proporcjonalnie)."
355
 
356
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
357
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
358
  msgstr "Dla <strong>daty rejestracji</strong>: <em>równe</em> oznacza datę i czas rejestracji."
359
 
360
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
361
  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"
362
  msgstr "Dla <strong>avatara</strong>: możesz wgrać domyślny obrazek wstawiając URL do <em>wartość</em>; \"min, dokładny i max rozmiar\" są w KB; <em>równe</em> oznacza maksymalny rozmiar w pikselach (wysokość i szerokość) dla miniaturki i będzie ustawiony automatycznie na 512 pikseli."
363
 
364
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
365
  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"
366
  msgstr "Dla <strong>Pliku</strong>: możesz wgrać plik domyślny podająć URL w polu <em>Wartość</em>; 'min,dokładny,max rozmiar' podane są w KB; w polu <em>równe</em> można podać dopuszczalne rozszerzenia, np.: zip,pdf,doc"
367
 
368
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
369
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
370
+ msgstr ""
371
+
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
378
  msgid "Name"
379
  msgstr "Nazwa"
380
 
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
387
  msgid "Value"
388
  msgstr "Wartość"
389
 
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
394
  msgid "Type"
395
  msgstr "Typ"
396
 
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
401
  msgid "Label"
402
  msgstr "Etykieta"
403
 
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
408
  msgid "Description"
409
  msgstr "Opis"
410
 
411
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
412
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
413
  msgid "Rules"
414
  msgstr "Reguły"
415
 
416
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
417
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
418
  msgid "Actions"
419
  msgstr "Działania"
420
 
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
425
  msgid "Fieldset"
426
  msgstr "Grupa pól"
427
 
428
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
429
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
430
  msgid "Can be empty"
431
  msgstr "Może być puste"
432
 
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
434
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
435
  msgid "Check for E-mail syntax"
436
  msgstr "Sprawdzaj poprawność adresu email"
437
 
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
439
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
440
  msgid "Can be modified"
441
  msgstr "Może być zmieniane"
442
 
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
444
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
445
  msgid "Can be modified only if empty"
446
  msgstr "Może być zmienione tylko jeśli jest puste"
447
 
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
449
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
450
  msgid "Can be modified only by admin"
451
  msgstr "Może być modyfikowane tylko przez administratora"
452
 
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
454
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
455
  msgid "Can be modified only by admin or if empty"
456
  msgstr "Może być modyfikowane tylko przez administratora jeśli jest puste"
457
 
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
459
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
460
  msgid "Cannot be modified"
461
  msgstr "Nie może być zmieniane"
462
 
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
464
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
465
  msgid "Should be equal TO"
466
  msgstr "Powinno być równe"
467
 
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
469
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
470
  msgid "Case sensitive"
471
  msgstr "Rozróżnia wielkość liter"
472
 
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
474
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
475
  msgid "Regular Expression"
476
  msgstr "Wyrażenie regularne"
477
 
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
479
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
480
  msgid "Show the field in the registration"
481
  msgstr "Pokaż pole podczas rejestracji"
482
 
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
484
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
485
  msgid "Show the field in User's profile"
486
  msgstr "Pokaż pole w profilu użytkownika"
487
 
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
489
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
490
  #, fuzzy
491
  msgid "Show the field in Users Extended section"
492
  msgstr "Pokaż pole na rozszerzonej liście użytkowników"
493
 
494
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
495
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
496
  msgid "Show the field in the search engine"
497
  msgstr "Pokaż pole w profilu użytkownika"
498
 
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
500
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
501
  msgid "Show the field in the blog"
502
  msgstr "Pokaż pole na blogu"
503
 
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
506
  msgid "Show the field if the role is at least:"
507
  msgstr "Pokaż pole jeżeli rolą użytkownika jest przynajmniej:"
508
 
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
511
  msgid "Anonymous"
512
  msgstr "Anonim"
513
 
514
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
516
  msgid "User has 'view_cimy_extra_fields' capability"
517
  msgstr ""
518
 
519
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
521
  msgid "Send an email to the admin if the user changes its value"
522
  msgstr ""
523
 
524
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
526
  #, fuzzy
527
  msgid "Advanced options"
528
  msgstr "Działania"
529
 
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
531
  msgid "Clear"
532
  msgstr "Wyczyść"
533
 
534
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
535
  msgid "Invert selection"
536
  msgstr "Odwróć wybór"
537
 
538
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
539
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
540
  msgstr "Czy na pewno chcesz wykasować pola i wszystkie dane wprowadzone w nie przez użytkowników"
541
 
542
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
543
  msgid "WordPress Fields"
544
  msgstr "Pola Wordpressa"
545
 
546
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
548
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
549
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
550
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
551
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
552
  msgid "Extra Fields"
553
  msgstr "Pola dodatkowe"
554
 
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
556
  msgid "None!"
557
  msgstr "Brak!"
558
 
559
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
561
  msgid "Order"
562
  msgstr "Kolejność"
563
 
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
565
  msgid "Reset"
566
  msgstr "Wyczyść"
567
 
568
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
569
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
570
  msgid "SUCCESSFUL"
571
  msgstr "PRAWIDŁOWO"
572
 
573
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
575
  msgid "select"
576
  msgstr "- Wybierz -"
577
 
578
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
580
  msgid "Users per page"
581
  msgstr "Użytkowników na stronie"
582
 
583
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
585
  msgid "Apply"
586
  msgstr "Zastosuj"
587
 
588
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
589
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
590
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
591
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
592
  msgid "Users Extended"
593
  msgstr "Lista rozszerzona"
594
 
595
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
596
  #, php-format
597
  msgid "Search results for &#8220;%s&#8221;"
598
  msgstr ""
599
 
600
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
601
  #, php-format
602
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
603
  msgstr ""
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
606
  msgid "Search Users"
607
  msgstr "Szukaj użytkowników"
608
 
609
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
611
  msgid "Role"
612
  msgstr "Rola"
613
 
614
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
616
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
617
  msgid "Website"
618
  msgstr "Strona internetowa"
619
 
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
622
  msgid "Posts"
623
  msgstr "Wpisy"
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
626
  msgid "View posts by this author"
627
  msgstr "Zobacz wpisy tego autora"
628
 
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
630
  msgid "Super Admin"
631
  msgstr ""
632
 
633
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
634
  #, php-format
635
  msgid "e-mail: %s"
636
  msgstr "e-mail: %s"
637
 
638
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
639
  #, fuzzy
640
  msgid "Change"
641
  msgstr "Zmień kolejność"
642
 
643
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
644
  #, fuzzy
645
  msgid "Update selected users"
646
  msgstr "Usuń wybrane pola"
647
 
648
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
649
  #, fuzzy
650
  msgid "Update"
651
  msgstr "Zaktualizuj pole"
652
 
653
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
654
  msgid "OK"
655
  msgstr ""
656
 
657
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
658
  msgid "Cancel"
659
  msgstr ""
660
 
784
  msgid "Picture URL:"
785
  msgstr "URL obrazka:"
786
 
787
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
788
  #, php-format
789
  msgid "%s previous value: %s new value: %s"
790
  msgstr ""
791
 
792
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
793
  #, php-format
794
  msgid "%s (%s) has changed one or more fields"
795
  msgstr ""
1197
  msgstr ""
1198
 
1199
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1200
  msgid "Done"
1201
  msgstr ""
1202
 
1203
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1204
  msgid "&laquo; Previous"
1205
  msgstr ""
1206
 
1207
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1208
  msgid "Next &raquo;"
1209
  msgstr ""
1210
 
langs/cimy_uef-pt_BR.mo CHANGED
Binary file
langs/cimy_uef-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:40-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:41-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ERRO"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "não está correto"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "SIM"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NÃO"
67
 
@@ -107,56 +107,56 @@ msgid "Typed code is not correct."
107
  msgstr "Código digitado não está correto."
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Nome de Usuário"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Por favor envie um arquivo com uma das seguintes extensões"
126
 
127
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Por favor envie uma imagem com uma das seguintes extensões"
132
 
133
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
134
  msgid "Strength indicator"
135
  msgstr "Indicador de força"
136
 
137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
138
  #, fuzzy
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ &amp; )."
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  msgid "Change image"
144
  msgstr "Mudar imagem"
145
 
146
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
147
  msgid "Insert the code:"
148
  msgstr "Inserir o código:"
149
 
150
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
152
  msgid "Confirm your registration"
153
  msgstr ""
154
 
155
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
156
  msgid "A password will be e-mailed to you."
157
  msgstr ""
158
 
159
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
160
  msgid "&larr; Back"
161
  msgstr ""
162
 
@@ -181,17 +181,17 @@ msgid "Change order"
181
  msgstr "Mudar ordem"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
185
  msgid "Min length"
186
  msgstr "Caracteres Mín."
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
190
  msgid "Exact length"
191
  msgstr "Caracteres Exatos"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
195
  msgid "Max length"
196
  msgstr "Caracteres Máx."
197
 
@@ -226,17 +226,17 @@ msgid "deleted correctly"
226
  msgstr "excluído(s)"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
230
  msgid "Min size"
231
  msgstr "Tamanho Mín."
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
235
  msgid "Exact size"
236
  msgstr "Tamanho Exato"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
240
  msgid "Max size"
241
  msgstr "Tamanho Máx."
242
 
@@ -244,393 +244,415 @@ msgstr "Tamanho Máx."
244
  msgid "Exact or Max size"
245
  msgstr "Tamanho Máx. ou Exato"
246
 
247
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid "Name not specified"
249
  msgstr "Nome não especificado"
250
 
251
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
252
  msgid "Name cannot contains spaces"
253
  msgstr "Nome não pode conter espaços"
254
 
255
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
256
  msgid "Label not specified"
257
  msgstr "Rótulo não especificado"
258
 
259
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
260
  msgid "not selected (with this type is necessary)"
261
  msgstr "não selecionado (necessário neste tipo de campo)"
262
 
263
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
264
  msgid "If you select"
265
  msgstr "Se você selecionar"
266
 
267
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
268
  msgid "you cannot select Min or Max"
269
  msgstr "você não pode selecionar Mínimo ou Máximo"
270
 
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
274
  msgid "should be in the range of"
275
  msgstr "deve ser no limite de"
276
 
277
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
278
  msgid "Equal TO not specified"
279
  msgstr "<strong>Igual a</strong> não especificado"
280
 
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
282
  msgid "With checkbox type Equal TO can only be"
283
  msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
284
 
285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
286
  msgid "With radio type Equal TO can only be"
287
  msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
288
 
289
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
290
  msgid "With checkbox type Value can only be"
291
  msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
292
 
293
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
294
  msgid "With radio type Value can only be"
295
  msgstr "Com botões de rádio <strong>valor</strong> só podeser"
296
 
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
298
  msgid "Field inserted correctly"
299
  msgstr "Campo inserido!"
300
 
301
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
302
  msgid "Field #"
303
  msgstr "Campo #"
304
 
305
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
306
  msgid "updated correctly"
307
  msgstr "atualizado!"
308
 
309
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
310
  msgid "Name inserted is just in the database, change to another one"
311
  msgstr "Nome inserido já está no banco de dados, escolha outro."
312
 
313
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
314
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
315
  msgid "Add a new Field"
316
  msgstr "Adicionar Novo Campo"
317
 
318
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
319
  msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
320
  msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
321
 
322
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
323
  msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
324
  msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
325
 
326
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
327
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
328
  msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
329
 
330
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
331
  msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
332
  msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
333
 
334
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
335
  msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
336
  msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
337
 
338
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
339
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
340
  msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
341
 
342
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
343
  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"
344
  msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
345
 
346
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
347
  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"
348
  msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
349
 
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
356
  msgid "Name"
357
  msgstr "Nome"
358
 
359
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
365
  msgid "Value"
366
  msgstr "Valor"
367
 
368
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
372
  msgid "Type"
373
  msgstr "Tipo"
374
 
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
379
  msgid "Label"
380
  msgstr "Rótulo"
381
 
382
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
386
  msgid "Description"
387
  msgstr "Descrição"
388
 
389
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
390
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
391
  msgid "Rules"
392
  msgstr "Regras"
393
 
394
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
395
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
396
  msgid "Actions"
397
  msgstr "Ações"
398
 
399
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
403
  msgid "Fieldset"
404
  msgstr "Área do Campo"
405
 
406
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
407
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
408
  msgid "Can be empty"
409
  msgstr "Pode ser vazio"
410
 
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
412
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
413
  msgid "Check for E-mail syntax"
414
  msgstr "Verficar sintaxe de e-mail"
415
 
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
417
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
418
  msgid "Can be modified"
419
  msgstr "Pode ser modificado"
420
 
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
423
  msgid "Can be modified only if empty"
424
  msgstr "Pode ser modificado se vazio"
425
 
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
427
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
428
  msgid "Can be modified only by admin"
429
  msgstr "Pode ser modificado apenas por Admin"
430
 
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
432
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
433
  msgid "Can be modified only by admin or if empty"
434
  msgstr "Pode ser modificado por Admin ou se vazio"
435
 
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
437
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
438
  msgid "Cannot be modified"
439
  msgstr "Não pode ser modificado"
440
 
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
443
  msgid "Should be equal TO"
444
  msgstr "Deve ser <strong>Igual a</strong>"
445
 
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
447
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
448
  msgid "Case sensitive"
449
  msgstr "Diferenciar maiúsc./minúsc."
450
 
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
452
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
453
  msgid "Regular Expression"
454
  msgstr "Expressão Regular"
455
 
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
457
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
458
  msgid "Show the field in the registration"
459
  msgstr "Mostrar na <strong>Página de Registro</strong>"
460
 
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
463
  msgid "Show the field in User's profile"
464
  msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
465
 
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
467
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
468
  #, fuzzy
469
  msgid "Show the field in Users Extended section"
470
  msgstr "Mostrar em <strong>Autores & Usuários</strong>"
471
 
472
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
473
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
474
  msgid "Show the field in the search engine"
475
  msgstr "Mostrar no formulário de pesquisa"
476
 
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
478
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
479
  msgid "Show the field in the blog"
480
  msgstr "Mostrar no site"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
484
  msgid "Show the field if the role is at least:"
485
  msgstr "Mostrar se usuário for ao menos:"
486
 
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
489
  msgid "Anonymous"
490
  msgstr "Anônimo"
491
 
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
494
  msgid "User has 'view_cimy_extra_fields' capability"
495
  msgstr ""
496
 
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
499
  msgid "Send an email to the admin if the user changes its value"
500
  msgstr ""
501
 
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
504
  #, fuzzy
505
  msgid "Advanced options"
506
  msgstr "Ações"
507
 
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
509
  msgid "Clear"
510
  msgstr "Limpar"
511
 
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
513
  msgid "Invert selection"
514
  msgstr "Inverter seleção"
515
 
516
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
517
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
518
  msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
519
 
520
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
521
  msgid "WordPress Fields"
522
  msgstr "Campos WordPress"
523
 
524
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
525
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
526
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
527
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
528
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
529
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
530
  msgid "Extra Fields"
531
  msgstr "Campos Adicionais"
532
 
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
534
  msgid "None!"
535
  msgstr "Nenhum!"
536
 
537
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
539
  msgid "Order"
540
  msgstr "Ordem"
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
543
  msgid "Reset"
544
  msgstr "Redefinir"
545
 
546
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
547
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
548
  msgid "SUCCESSFUL"
549
  msgstr "CONCLUÍDO"
550
 
551
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
552
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
553
  msgid "select"
554
  msgstr "Selecionar"
555
 
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
558
  msgid "Users per page"
559
  msgstr "Usuários por Páginas"
560
 
561
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
562
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
563
  msgid "Apply"
564
  msgstr "Aplicar"
565
 
566
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
567
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
568
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
569
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
570
  msgid "Users Extended"
571
  msgstr "Usuários Extendidos"
572
 
573
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
574
  #, php-format
575
  msgid "Search results for &#8220;%s&#8221;"
576
  msgstr ""
577
 
578
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
579
  #, php-format
580
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
581
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
584
  msgid "Search Users"
585
  msgstr "Pesquisar por Usuários"
586
 
587
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
589
  msgid "Role"
590
  msgstr "Função"
591
 
592
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
594
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
595
  msgid "Website"
596
  msgstr "Website"
597
 
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
599
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
600
  msgid "Posts"
601
  msgstr "Postagens"
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
604
  msgid "View posts by this author"
605
  msgstr "Ver postagens desse autor"
606
 
607
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
608
  msgid "Super Admin"
609
  msgstr ""
610
 
611
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
612
  #, php-format
613
  msgid "e-mail: %s"
614
  msgstr "e-mail: %s"
615
 
616
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
617
  #, fuzzy
618
  msgid "Change"
619
  msgstr "Mudar imagem"
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
622
  msgid "Update selected users"
623
  msgstr "Atualizar Usuários selecionados"
624
 
625
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
626
  msgid "Update"
627
  msgstr "Atualizar"
628
 
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
630
  msgid "OK"
631
  msgstr ""
632
 
633
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
634
  msgid "Cancel"
635
  msgstr ""
636
 
@@ -766,12 +788,12 @@ msgstr "Atualizar figura"
766
  msgid "Picture URL:"
767
  msgstr "URL da figura:"
768
 
769
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
770
  #, php-format
771
  msgid "%s previous value: %s new value: %s"
772
  msgstr ""
773
 
774
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
775
  #, php-format
776
  msgid "%s (%s) has changed one or more fields"
777
  msgstr ""
@@ -1177,17 +1199,14 @@ msgid "All"
1177
  msgstr ""
1178
 
1179
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1180
- #, fuzzy
1181
  msgid "Done"
1182
  msgstr ""
1183
 
1184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1185
- #, fuzzy
1186
  msgid "&laquo; Previous"
1187
  msgstr ""
1188
 
1189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1190
- #, fuzzy
1191
  msgid "Next &raquo;"
1192
  msgstr ""
1193
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ERRO"
38
 
54
  msgstr "não está correto"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "SIM"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NÃO"
67
 
107
  msgstr "Código digitado não está correto."
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Nome de Usuário"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Por favor envie um arquivo com uma das seguintes extensões"
126
 
127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Por favor envie uma imagem com uma das seguintes extensões"
132
 
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
134
  msgid "Strength indicator"
135
  msgstr "Indicador de força"
136
 
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
138
  #, fuzzy
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ &amp; )."
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  msgid "Change image"
144
  msgstr "Mudar imagem"
145
 
146
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
147
  msgid "Insert the code:"
148
  msgstr "Inserir o código:"
149
 
150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
152
  msgid "Confirm your registration"
153
  msgstr ""
154
 
155
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
156
  msgid "A password will be e-mailed to you."
157
  msgstr ""
158
 
159
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
160
  msgid "&larr; Back"
161
  msgstr ""
162
 
181
  msgstr "Mudar ordem"
182
 
183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
185
  msgid "Min length"
186
  msgstr "Caracteres Mín."
187
 
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
190
  msgid "Exact length"
191
  msgstr "Caracteres Exatos"
192
 
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
194
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
195
  msgid "Max length"
196
  msgstr "Caracteres Máx."
197
 
226
  msgstr "excluído(s)"
227
 
228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
229
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
230
  msgid "Min size"
231
  msgstr "Tamanho Mín."
232
 
233
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
235
  msgid "Exact size"
236
  msgstr "Tamanho Exato"
237
 
238
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
239
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
240
  msgid "Max size"
241
  msgstr "Tamanho Máx."
242
 
244
  msgid "Exact or Max size"
245
  msgstr "Tamanho Máx. ou Exato"
246
 
247
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
249
+ #, fuzzy
250
+ msgid "Min date"
251
+ msgstr "Tamanho Mín."
252
+
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
255
+ #, fuzzy
256
+ msgid "Exact date"
257
+ msgstr "Tamanho Exato"
258
+
259
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
261
+ #, fuzzy
262
+ msgid "Max date"
263
+ msgstr "Tamanho Máx."
264
+
265
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
266
  msgid "Name not specified"
267
  msgstr "Nome não especificado"
268
 
269
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
270
  msgid "Name cannot contains spaces"
271
  msgstr "Nome não pode conter espaços"
272
 
273
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
274
  msgid "Label not specified"
275
  msgstr "Rótulo não especificado"
276
 
277
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
278
  msgid "not selected (with this type is necessary)"
279
  msgstr "não selecionado (necessário neste tipo de campo)"
280
 
281
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
282
  msgid "If you select"
283
  msgstr "Se você selecionar"
284
 
285
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
286
  msgid "you cannot select Min or Max"
287
  msgstr "você não pode selecionar Mínimo ou Máximo"
288
 
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
292
  msgid "should be in the range of"
293
  msgstr "deve ser no limite de"
294
 
295
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
296
  msgid "Equal TO not specified"
297
  msgstr "<strong>Igual a</strong> não especificado"
298
 
299
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
300
  msgid "With checkbox type Equal TO can only be"
301
  msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
302
 
303
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
304
  msgid "With radio type Equal TO can only be"
305
  msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
306
 
307
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
308
  msgid "With checkbox type Value can only be"
309
  msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
310
 
311
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
312
  msgid "With radio type Value can only be"
313
  msgstr "Com botões de rádio <strong>valor</strong> só podeser"
314
 
315
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
316
  msgid "Field inserted correctly"
317
  msgstr "Campo inserido!"
318
 
319
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
320
  msgid "Field #"
321
  msgstr "Campo #"
322
 
323
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
324
  msgid "updated correctly"
325
  msgstr "atualizado!"
326
 
327
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
328
  msgid "Name inserted is just in the database, change to another one"
329
  msgstr "Nome inserido já está no banco de dados, escolha outro."
330
 
331
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
332
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
333
  msgid "Add a new Field"
334
  msgstr "Adicionar Novo Campo"
335
 
336
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
337
  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."
338
  msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
339
 
340
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
341
  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'"
342
  msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
343
 
344
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
345
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
346
  msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
347
 
348
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
349
  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"
350
  msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
351
 
352
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
353
  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)"
354
  msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
355
 
356
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
357
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
358
  msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
359
 
360
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
361
  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"
362
  msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
363
 
364
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
365
  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"
366
  msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
367
 
368
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
369
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
370
+ msgstr ""
371
+
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
378
  msgid "Name"
379
  msgstr "Nome"
380
 
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
387
  msgid "Value"
388
  msgstr "Valor"
389
 
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
394
  msgid "Type"
395
  msgstr "Tipo"
396
 
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
401
  msgid "Label"
402
  msgstr "Rótulo"
403
 
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
408
  msgid "Description"
409
  msgstr "Descrição"
410
 
411
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
412
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
413
  msgid "Rules"
414
  msgstr "Regras"
415
 
416
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
417
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
418
  msgid "Actions"
419
  msgstr "Ações"
420
 
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
425
  msgid "Fieldset"
426
  msgstr "Área do Campo"
427
 
428
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
429
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
430
  msgid "Can be empty"
431
  msgstr "Pode ser vazio"
432
 
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
434
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
435
  msgid "Check for E-mail syntax"
436
  msgstr "Verficar sintaxe de e-mail"
437
 
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
439
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
440
  msgid "Can be modified"
441
  msgstr "Pode ser modificado"
442
 
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
444
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
445
  msgid "Can be modified only if empty"
446
  msgstr "Pode ser modificado se vazio"
447
 
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
449
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
450
  msgid "Can be modified only by admin"
451
  msgstr "Pode ser modificado apenas por Admin"
452
 
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
454
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
455
  msgid "Can be modified only by admin or if empty"
456
  msgstr "Pode ser modificado por Admin ou se vazio"
457
 
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
459
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
460
  msgid "Cannot be modified"
461
  msgstr "Não pode ser modificado"
462
 
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
464
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
465
  msgid "Should be equal TO"
466
  msgstr "Deve ser <strong>Igual a</strong>"
467
 
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
469
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
470
  msgid "Case sensitive"
471
  msgstr "Diferenciar maiúsc./minúsc."
472
 
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
474
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
475
  msgid "Regular Expression"
476
  msgstr "Expressão Regular"
477
 
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
479
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
480
  msgid "Show the field in the registration"
481
  msgstr "Mostrar na <strong>Página de Registro</strong>"
482
 
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
484
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
485
  msgid "Show the field in User's profile"
486
  msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
487
 
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
489
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
490
  #, fuzzy
491
  msgid "Show the field in Users Extended section"
492
  msgstr "Mostrar em <strong>Autores & Usuários</strong>"
493
 
494
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
495
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
496
  msgid "Show the field in the search engine"
497
  msgstr "Mostrar no formulário de pesquisa"
498
 
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
500
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
501
  msgid "Show the field in the blog"
502
  msgstr "Mostrar no site"
503
 
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
506
  msgid "Show the field if the role is at least:"
507
  msgstr "Mostrar se usuário for ao menos:"
508
 
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
511
  msgid "Anonymous"
512
  msgstr "Anônimo"
513
 
514
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
516
  msgid "User has 'view_cimy_extra_fields' capability"
517
  msgstr ""
518
 
519
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
521
  msgid "Send an email to the admin if the user changes its value"
522
  msgstr ""
523
 
524
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
526
  #, fuzzy
527
  msgid "Advanced options"
528
  msgstr "Ações"
529
 
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
531
  msgid "Clear"
532
  msgstr "Limpar"
533
 
534
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
535
  msgid "Invert selection"
536
  msgstr "Inverter seleção"
537
 
538
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
539
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
540
  msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
541
 
542
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
543
  msgid "WordPress Fields"
544
  msgstr "Campos WordPress"
545
 
546
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
548
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
549
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
550
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
551
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
552
  msgid "Extra Fields"
553
  msgstr "Campos Adicionais"
554
 
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
556
  msgid "None!"
557
  msgstr "Nenhum!"
558
 
559
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
561
  msgid "Order"
562
  msgstr "Ordem"
563
 
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
565
  msgid "Reset"
566
  msgstr "Redefinir"
567
 
568
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
569
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
570
  msgid "SUCCESSFUL"
571
  msgstr "CONCLUÍDO"
572
 
573
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
574
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
575
  msgid "select"
576
  msgstr "Selecionar"
577
 
578
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
580
  msgid "Users per page"
581
  msgstr "Usuários por Páginas"
582
 
583
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
585
  msgid "Apply"
586
  msgstr "Aplicar"
587
 
588
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
589
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
590
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
591
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
592
  msgid "Users Extended"
593
  msgstr "Usuários Extendidos"
594
 
595
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
596
  #, php-format
597
  msgid "Search results for &#8220;%s&#8221;"
598
  msgstr ""
599
 
600
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
601
  #, php-format
602
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
603
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
606
  msgid "Search Users"
607
  msgstr "Pesquisar por Usuários"
608
 
609
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
611
  msgid "Role"
612
  msgstr "Função"
613
 
614
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
616
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
617
  msgid "Website"
618
  msgstr "Website"
619
 
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
622
  msgid "Posts"
623
  msgstr "Postagens"
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
626
  msgid "View posts by this author"
627
  msgstr "Ver postagens desse autor"
628
 
629
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
630
  msgid "Super Admin"
631
  msgstr ""
632
 
633
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
634
  #, php-format
635
  msgid "e-mail: %s"
636
  msgstr "e-mail: %s"
637
 
638
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
639
  #, fuzzy
640
  msgid "Change"
641
  msgstr "Mudar imagem"
642
 
643
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
644
  msgid "Update selected users"
645
  msgstr "Atualizar Usuários selecionados"
646
 
647
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
648
  msgid "Update"
649
  msgstr "Atualizar"
650
 
651
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
652
  msgid "OK"
653
  msgstr ""
654
 
655
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
656
  msgid "Cancel"
657
  msgstr ""
658
 
788
  msgid "Picture URL:"
789
  msgstr "URL da figura:"
790
 
791
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
792
  #, php-format
793
  msgid "%s previous value: %s new value: %s"
794
  msgstr ""
795
 
796
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
797
  #, php-format
798
  msgid "%s (%s) has changed one or more fields"
799
  msgstr ""
1199
  msgstr ""
1200
 
1201
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1202
  msgid "Done"
1203
  msgstr ""
1204
 
1205
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1206
  msgid "&laquo; Previous"
1207
  msgstr ""
1208
 
1209
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1210
  msgid "Next &raquo;"
1211
  msgstr ""
1212
 
langs/cimy_uef-ru_RU.mo CHANGED
Binary file
langs/cimy_uef-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:41-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:41-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: mikolka <mikolka.info@gmail.com>\n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ОШИБКА"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "не верно"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "ДА"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "НЕТ"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Имя пользователя"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Изменить порядок"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "Изменить порядок"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Мин длина"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Точная длина"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Макс длина"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "удалены правильно"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Мин размер"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Точный размер"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Макс размер"
243
 
@@ -245,334 +245,356 @@ msgstr "Макс размер"
245
  msgid "Exact or Max size"
246
  msgstr "Точный или Макс размер"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Имя не задано"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Имя не должно содержать пробелов"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "Метка не выбрана"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "не выбрано (с этим типом необходимо)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Если Вы выбрали"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "Вы не можете выбрать Мин или Макс"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "должно быть в диапозоне"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "Равная ЧЕМУ не выбрано"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "Может быть только с флажками выбора типа Значение"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "Может быть только с переключателем выбора типа Значение"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "Поле вставлено корректно"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "Поле #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "обновлено корректно"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Вставляемое имя уже есть в БД, выберите другое"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "Добавить новое поле"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  #, fuzzy
345
  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"
346
  msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
347
 
348
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
349
  #, fuzzy
350
  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"
351
  msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
352
 
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
359
  msgid "Name"
360
  msgstr "Имя"
361
 
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
368
  msgid "Value"
369
  msgstr "Значение"
370
 
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
375
  msgid "Type"
376
  msgstr "Тип"
377
 
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
382
  msgid "Label"
383
  msgstr "Метка"
384
 
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
389
  msgid "Description"
390
  msgstr "Описание"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
393
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
394
  msgid "Rules"
395
  msgstr "Правила"
396
 
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
399
  msgid "Actions"
400
  msgstr "Действия"
401
 
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
406
  #, fuzzy
407
  msgid "Fieldset"
408
  msgstr "Поля"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
412
  msgid "Can be empty"
413
  msgstr "Может быть пустым"
414
 
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
417
  msgid "Check for E-mail syntax"
418
  msgstr "Проверка синтаксиса E-mail"
419
 
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
422
  msgid "Can be modified"
423
  msgstr "Может быть изменено"
424
 
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
427
  msgid "Can be modified only if empty"
428
  msgstr "Может быть изменено только если пустое"
429
 
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
432
  msgid "Can be modified only by admin"
433
  msgstr "Может быть изменено только админом"
434
 
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
437
  msgid "Can be modified only by admin or if empty"
438
  msgstr "Может быть изменено только админом или если пустое"
439
 
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
442
  msgid "Cannot be modified"
443
  msgstr "Не может быть изменено"
444
 
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
447
  msgid "Should be equal TO"
448
  msgstr "Долднадолжно быть равно ЧЕМУ"
449
 
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
452
  msgid "Case sensitive"
453
  msgstr "Чуствительность к регистру"
454
 
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
457
  msgid "Regular Expression"
458
  msgstr ""
459
 
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
462
  msgid "Show the field in the registration"
463
  msgstr "Показывать поле при регистрации"
464
 
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
467
  msgid "Show the field in User's profile"
468
  msgstr "Показывать поле в профиле пользователя"
469
 
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
472
  #, fuzzy
473
  msgid "Show the field in Users Extended section"
474
  msgstr "Показывать поле в меню A&amp;продвинутых П"
475
 
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
477
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
478
  #, fuzzy
479
  msgid "Show the field in the search engine"
480
  msgstr "Показывать поле при регистрации"
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
484
  #, fuzzy
485
  msgid "Show the field in the blog"
486
  msgstr "Показывать поле при регистрации"
487
 
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
490
  #, fuzzy
491
  msgid "Show the field if the role is at least:"
492
  msgstr "Показывать поле при регистрации"
493
 
494
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
496
  msgid "Anonymous"
497
  msgstr ""
498
 
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
501
  msgid "User has 'view_cimy_extra_fields' capability"
502
  msgstr ""
503
 
504
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
505
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
506
  msgid "Send an email to the admin if the user changes its value"
507
  msgstr ""
508
 
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
510
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
511
  #, fuzzy
512
  msgid "Advanced options"
513
  msgstr "Действия"
514
 
515
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
516
  msgid "Clear"
517
  msgstr "Очистить"
518
 
519
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
520
  msgid "Invert selection"
521
  msgstr "Инветировать выбор"
522
 
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
524
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
525
  msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
526
 
527
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
528
  msgid "WordPress Fields"
529
  msgstr "WordPress Fields"
530
 
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
532
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
535
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
536
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
537
  msgid "Extra Fields"
538
  msgstr "Extra Fields"
539
 
540
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
541
  msgid "None!"
542
  msgstr "Нет!"
543
 
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
545
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
546
  msgid "Order"
547
  msgstr "Порядок"
548
 
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
550
  msgid "Reset"
551
  msgstr "Сброс"
552
 
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
554
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
555
  msgid "SUCCESSFUL"
556
  msgstr "УСПЕШНО"
557
 
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
560
  #, fuzzy
561
  msgid "select"
562
  msgstr "Удалить"
563
 
564
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
566
  #, fuzzy
567
  msgid "Users per page"
568
  msgstr "Таблица данных пользователей"
569
 
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
571
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
572
  msgid "Apply"
573
  msgstr ""
574
 
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
577
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
578
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
@@ -580,70 +602,70 @@ msgstr ""
580
  msgid "Users Extended"
581
  msgstr "Список Авторов и продвинутых пользователей"
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
584
  #, php-format
585
  msgid "Search results for &#8220;%s&#8221;"
586
  msgstr ""
587
 
588
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
589
  #, php-format
590
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
591
  msgstr ""
592
 
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
594
  msgid "Search Users"
595
  msgstr ""
596
 
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
599
  #, fuzzy
600
  msgid "Role"
601
  msgstr "Правила"
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
605
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
606
  msgid "Website"
607
  msgstr "Адрес сайта"
608
 
609
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
611
  msgid "Posts"
612
  msgstr "Сообщения"
613
 
614
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
615
  msgid "View posts by this author"
616
  msgstr "Просмотреть сообщения этого автора"
617
 
618
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
619
  msgid "Super Admin"
620
  msgstr ""
621
 
622
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
623
  #, php-format
624
  msgid "e-mail: %s"
625
  msgstr "e-mail: %s"
626
 
627
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
628
  #, fuzzy
629
  msgid "Change"
630
  msgstr "Изменить порядок"
631
 
632
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
633
  #, fuzzy
634
  msgid "Update selected users"
635
  msgstr "Удалить выбранные поля"
636
 
637
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
638
  #, fuzzy
639
  msgid "Update"
640
  msgstr "Обновить поле"
641
 
642
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
643
  msgid "OK"
644
  msgstr ""
645
 
646
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
647
  msgid "Cancel"
648
  msgstr ""
649
 
@@ -777,12 +799,12 @@ msgstr "Обновить поле"
777
  msgid "Picture URL:"
778
  msgstr ""
779
 
780
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
781
  #, php-format
782
  msgid "%s previous value: %s new value: %s"
783
  msgstr ""
784
 
785
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
786
  #, php-format
787
  msgid "%s (%s) has changed one or more fields"
788
  msgstr ""
@@ -1196,17 +1218,14 @@ msgid "All"
1196
  msgstr ""
1197
 
1198
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1199
- #, fuzzy
1200
  msgid "Done"
1201
  msgstr ""
1202
 
1203
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1204
- #, fuzzy
1205
  msgid "&laquo; Previous"
1206
  msgstr ""
1207
 
1208
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1209
- #, fuzzy
1210
  msgid "Next &raquo;"
1211
  msgstr ""
1212
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: mikolka <mikolka.info@gmail.com>\n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ОШИБКА"
38
 
54
  msgstr "не верно"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "ДА"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "НЕТ"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Имя пользователя"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-mail"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "Изменить порядок"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "Изменить порядок"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Мин длина"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Точная длина"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Макс длина"
198
 
227
  msgstr "удалены правильно"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Мин размер"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Точный размер"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Макс размер"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Точный или Макс размер"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Мин размер"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Точный размер"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Макс размер"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Имя не задано"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Имя не должно содержать пробелов"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "Метка не выбрана"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "не выбрано (с этим типом необходимо)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Если Вы выбрали"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "Вы не можете выбрать Мин или Макс"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "должно быть в диапозоне"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "Равная ЧЕМУ не выбрано"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "Может быть только с флажком выбора типа Равная ЧЕМУ"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "Может быть только с переключателем выбора типа Равная ЧЕМУ"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "Может быть только с флажками выбора типа Значение"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "Может быть только с переключателем выбора типа Значение"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "Поле вставлено корректно"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "Поле #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "обновлено корректно"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Вставляемое имя уже есть в БД, выберите другое"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "Добавить новое поле"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "Для добавления нового поля вам необходимо задать имя, тип и метку; значение и описание. Правила применяются в процессе регистрации пользователя."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "С <strong>переключателем(radio)</strong> и <strong>флажками(checkbox)</strong>: <em>Значение</em> и <em>равно ЧЕМУ</em> может быть либо 'Yes', либо 'No' - это означает 'выбрано' или 'не выбрано'"
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "С <strong>выпадающим списком(drop-down)</strong>: вы можете добавить все опции в метку, например: метка/элемент1,элемент2,элемент3"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "С <strong>picture-url</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; <em>равная ЧЕМУ</em> подразумевает max ширину для превью (высота будет установлена пропорционально)"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "С <strong>датой регистрации(registration-date)</strong>: <em>равна ЧЕМУ</em> подразумевает формат даты и времени"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  #, fuzzy
363
  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"
364
  msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
365
 
366
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
367
  #, fuzzy
368
  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"
369
  msgstr "С <strong>изображением(picture)</strong>: вы можете предварительно загрузить изображение по умолчанию поместив url в <em>Значение</em>; 'мин,точный,макс размер' в KB; <em>равная ЧЕМУ</em> подразумевает max размер в px (ширина или высота) для превью"
370
 
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
372
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
373
+ msgstr ""
374
+
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
381
  msgid "Name"
382
  msgstr "Имя"
383
 
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
390
  msgid "Value"
391
  msgstr "Значение"
392
 
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
397
  msgid "Type"
398
  msgstr "Тип"
399
 
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
404
  msgid "Label"
405
  msgstr "Метка"
406
 
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
411
  msgid "Description"
412
  msgstr "Описание"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
416
  msgid "Rules"
417
  msgstr "Правила"
418
 
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
421
  msgid "Actions"
422
  msgstr "Действия"
423
 
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
428
  #, fuzzy
429
  msgid "Fieldset"
430
  msgstr "Поля"
431
 
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
434
  msgid "Can be empty"
435
  msgstr "Может быть пустым"
436
 
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
439
  msgid "Check for E-mail syntax"
440
  msgstr "Проверка синтаксиса E-mail"
441
 
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
444
  msgid "Can be modified"
445
  msgstr "Может быть изменено"
446
 
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
449
  msgid "Can be modified only if empty"
450
  msgstr "Может быть изменено только если пустое"
451
 
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
454
  msgid "Can be modified only by admin"
455
  msgstr "Может быть изменено только админом"
456
 
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
459
  msgid "Can be modified only by admin or if empty"
460
  msgstr "Может быть изменено только админом или если пустое"
461
 
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
464
  msgid "Cannot be modified"
465
  msgstr "Не может быть изменено"
466
 
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
469
  msgid "Should be equal TO"
470
  msgstr "Долднадолжно быть равно ЧЕМУ"
471
 
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
474
  msgid "Case sensitive"
475
  msgstr "Чуствительность к регистру"
476
 
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
479
  msgid "Regular Expression"
480
  msgstr ""
481
 
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
484
  msgid "Show the field in the registration"
485
  msgstr "Показывать поле при регистрации"
486
 
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
489
  msgid "Show the field in User's profile"
490
  msgstr "Показывать поле в профиле пользователя"
491
 
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
493
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
494
  #, fuzzy
495
  msgid "Show the field in Users Extended section"
496
  msgstr "Показывать поле в меню A&amp;продвинутых П"
497
 
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
499
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
500
  #, fuzzy
501
  msgid "Show the field in the search engine"
502
  msgstr "Показывать поле при регистрации"
503
 
504
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
505
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
506
  #, fuzzy
507
  msgid "Show the field in the blog"
508
  msgstr "Показывать поле при регистрации"
509
 
510
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
511
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
512
  #, fuzzy
513
  msgid "Show the field if the role is at least:"
514
  msgstr "Показывать поле при регистрации"
515
 
516
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
518
  msgid "Anonymous"
519
  msgstr ""
520
 
521
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
523
  msgid "User has 'view_cimy_extra_fields' capability"
524
  msgstr ""
525
 
526
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
527
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
528
  msgid "Send an email to the admin if the user changes its value"
529
  msgstr ""
530
 
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
532
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
533
  #, fuzzy
534
  msgid "Advanced options"
535
  msgstr "Действия"
536
 
537
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
538
  msgid "Clear"
539
  msgstr "Очистить"
540
 
541
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
542
  msgid "Invert selection"
543
  msgstr "Инветировать выбор"
544
 
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
546
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
547
  msgstr "Вы действительно хотите удалить поле(я) и данные вставленные в них пользователями?"
548
 
549
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
550
  msgid "WordPress Fields"
551
  msgstr "WordPress Fields"
552
 
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
554
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
555
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
557
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
558
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
559
  msgid "Extra Fields"
560
  msgstr "Extra Fields"
561
 
562
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
563
  msgid "None!"
564
  msgstr "Нет!"
565
 
566
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
567
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
568
  msgid "Order"
569
  msgstr "Порядок"
570
 
571
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
572
  msgid "Reset"
573
  msgstr "Сброс"
574
 
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
576
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
577
  msgid "SUCCESSFUL"
578
  msgstr "УСПЕШНО"
579
 
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
581
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
582
  #, fuzzy
583
  msgid "select"
584
  msgstr "Удалить"
585
 
586
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
588
  #, fuzzy
589
  msgid "Users per page"
590
  msgstr "Таблица данных пользователей"
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
593
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
594
  msgid "Apply"
595
  msgstr ""
596
 
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
598
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
599
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
600
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
602
  msgid "Users Extended"
603
  msgstr "Список Авторов и продвинутых пользователей"
604
 
605
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
606
  #, php-format
607
  msgid "Search results for &#8220;%s&#8221;"
608
  msgstr ""
609
 
610
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
611
  #, php-format
612
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
613
  msgstr ""
614
 
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
616
  msgid "Search Users"
617
  msgstr ""
618
 
619
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
621
  #, fuzzy
622
  msgid "Role"
623
  msgstr "Правила"
624
 
625
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
626
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
627
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
628
  msgid "Website"
629
  msgstr "Адрес сайта"
630
 
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
632
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
633
  msgid "Posts"
634
  msgstr "Сообщения"
635
 
636
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
637
  msgid "View posts by this author"
638
  msgstr "Просмотреть сообщения этого автора"
639
 
640
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
641
  msgid "Super Admin"
642
  msgstr ""
643
 
644
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
645
  #, php-format
646
  msgid "e-mail: %s"
647
  msgstr "e-mail: %s"
648
 
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
650
  #, fuzzy
651
  msgid "Change"
652
  msgstr "Изменить порядок"
653
 
654
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
655
  #, fuzzy
656
  msgid "Update selected users"
657
  msgstr "Удалить выбранные поля"
658
 
659
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
660
  #, fuzzy
661
  msgid "Update"
662
  msgstr "Обновить поле"
663
 
664
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
665
  msgid "OK"
666
  msgstr ""
667
 
668
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
669
  msgid "Cancel"
670
  msgstr ""
671
 
799
  msgid "Picture URL:"
800
  msgstr ""
801
 
802
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
803
  #, php-format
804
  msgid "%s previous value: %s new value: %s"
805
  msgstr ""
806
 
807
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
808
  #, php-format
809
  msgid "%s (%s) has changed one or more fields"
810
  msgstr ""
1218
  msgstr ""
1219
 
1220
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1221
  msgid "Done"
1222
  msgstr ""
1223
 
1224
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1225
  msgid "&laquo; Previous"
1226
  msgstr ""
1227
 
1228
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1229
  msgid "Next &raquo;"
1230
  msgstr ""
1231
 
langs/cimy_uef-sv_SE.mo CHANGED
Binary file
langs/cimy_uef-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:41-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:41-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "FEL"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "&auml;r ej korrekt"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "JA"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "NEJ"
67
 
@@ -107,57 +107,57 @@ msgid "Typed code is not correct."
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Anv&auml;ndarnamn"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "E-post"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Ladda upp en bild med en av f&ouml;ljlande fil&auml;ndelser"
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Ladda upp en bild med en av f&ouml;ljlande fil&auml;ndelser"
133
 
134
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "&Auml;ndra ordning"
146
 
147
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
152
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
@@ -182,17 +182,17 @@ msgid "Change order"
182
  msgstr "&Auml;ndra ordning"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
186
  msgid "Min length"
187
  msgstr "Min. l&auml;ngd"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
191
  msgid "Exact length"
192
  msgstr "Exakt l&auml;ngd"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
196
  msgid "Max length"
197
  msgstr "Max. l&auml;ngd"
198
 
@@ -227,17 +227,17 @@ msgid "deleted correctly"
227
  msgstr "korrekt raderade"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
231
  msgid "Min size"
232
  msgstr "Min. storlek"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
236
  msgid "Exact size"
237
  msgstr "Exakt storlek"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
241
  msgid "Max size"
242
  msgstr "Max. storlek"
243
 
@@ -245,400 +245,422 @@ msgstr "Max. storlek"
245
  msgid "Exact or Max size"
246
  msgstr "Exakt eller Max. storlek"
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Name not specified"
250
  msgstr "Namn ej angivet"
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
253
  msgid "Name cannot contains spaces"
254
  msgstr "Namnet f&aring;r inte ha mellanrum"
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
257
  msgid "Label not specified"
258
  msgstr "Etikett ej angiven"
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
261
  msgid "not selected (with this type is necessary)"
262
  msgstr "Ej vald (kr&auml;vs vid denna typ)"
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
265
  msgid "If you select"
266
  msgstr "Om du v&auml;ljer"
267
 
268
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
269
  msgid "you cannot select Min or Max"
270
  msgstr "Min eller Max kan ej v&auml;ljas"
271
 
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
275
  msgid "should be in the range of"
276
  msgstr "skall vara mellan"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
279
  msgid "Equal TO not specified"
280
  msgstr "Lika MED ej angivet"
281
 
282
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
283
  msgid "With checkbox type Equal TO can only be"
284
  msgstr "N&auml;r typen &auml;r checkbox kan LIKA MED endast vara"
285
 
286
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
287
  msgid "With radio type Equal TO can only be"
288
  msgstr "N&auml;r typen &auml;r radio kan LIKA MED endast vara"
289
 
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
291
  msgid "With checkbox type Value can only be"
292
  msgstr "N&auml;r typen &auml;r checkbox kan v&auml;rde endast vara"
293
 
294
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
295
  msgid "With radio type Value can only be"
296
  msgstr "N&auml;r typen &auml;r radio kan v&auml;rde endast vara"
297
 
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
299
  msgid "Field inserted correctly"
300
  msgstr "F&auml;lt upplagt korrekt"
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
303
  msgid "Field #"
304
  msgstr "F&auml;lt #"
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
307
  msgid "updated correctly"
308
  msgstr "korrekt uppdaterat"
309
 
310
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
311
  msgid "Name inserted is just in the database, change to another one"
312
  msgstr "Namnet du valt &auml;r redan i bruk, v&auml;lj ett annat"
313
 
314
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
316
  msgid "Add a new Field"
317
  msgstr "L&auml;gg till ett f&auml;lt"
318
 
319
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
320
  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."
321
  msgstr "F&ouml;r att l&auml;gga till ett nytt f&auml;lt, m&aring;ste du v&auml;lja ett namn, en typ och en etikett; ej tvingande f&auml;lt &auml;r v&auml;rde och beskrivning. Vid registrering av anv&auml;ndare m&aring;ste detta regelverk f&ouml;ljas."
322
 
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
324
  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'"
325
  msgstr "Med <strong>radio</strong> och <strong>checkbox</strong>: <em>V&auml;rde</em> och <em>LIKA MED</em> kan bara vara 'Yes' eller 'No', som betyder vald eller ej vald."
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
328
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
329
  msgstr "<strong>drop-down</strong>: Du m&aring;ste ange alla alternativ i etikett t.ex: Etikett/v&auml;rde1,v&auml;rde2,v&auml;rde3"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
332
  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"
333
  msgstr "Med <strong>bild</strong>: Du kan anv&auml;nde en standard bild med (URL) under <em>V&auml;rde</em>; 'min, exakt, max st&ouml;rleken' angiven i KB;<em>LIKA MED</em> betyder max pixelst&ouml;rlek (h&ouml;jd eller bredd) f&ouml;r tumnagelbild."
334
 
335
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
336
  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)"
337
  msgstr "Med <strong>bild-url</strong>: Du kan anger en standardbild genom (URL) under <em>V&auml;rde</em>; <em>LIKA MED</em> betyder max pixelbred (h&ouml;jden justeras proportioneligt)."
338
 
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
340
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
341
  msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
342
 
343
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
344
  msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
345
  msgstr "Med <strong>avatar</strong>: kan du anv&auml;nda en standardbild med (URL) under <em>V&auml;rde</em>; 'min, exakt, max storleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstorlek (h&ouml;jd eller bredd) f&ouml;r tumnagelbild."
346
 
347
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
348
  #, fuzzy
349
  msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
350
  msgstr "Med <strong>bild</strong>: Du kan anv&auml;nde en standard bild med (URL) under <em>V&auml;rde</em>; 'min, exakt, max st&ouml;rleken' angiven i KB;<em>LIKA MED</em> betyder max pixelst&ouml;rlek (h&ouml;jd eller bredd) f&ouml;r tumnagelbild."
351
 
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
357
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
358
  msgid "Name"
359
  msgstr "Namn"
360
 
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
365
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
366
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
367
  msgid "Value"
368
  msgstr "V&auml;rde"
369
 
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
373
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
374
  msgid "Type"
375
  msgstr "Typ"
376
 
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
378
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
381
  msgid "Label"
382
  msgstr "Etikett"
383
 
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
385
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
386
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
387
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
388
  msgid "Description"
389
  msgstr "Beskrivning"
390
 
391
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
393
  msgid "Rules"
394
  msgstr "Regler"
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
398
  msgid "Actions"
399
  msgstr "Åtg&auml;rder"
400
 
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
403
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
405
  msgid "Fieldset"
406
  msgstr "F&auml;ltsektion"
407
 
408
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
409
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
410
  msgid "Can be empty"
411
  msgstr "Kan vara t&ouml;m"
412
 
413
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
415
  msgid "Check for E-mail syntax"
416
  msgstr "Kontrollera epostadressen"
417
 
418
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
419
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
420
  msgid "Can be modified"
421
  msgstr "Kan &auml;ndras"
422
 
423
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
424
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
425
  msgid "Can be modified only if empty"
426
  msgstr "Kan &auml;ndras endast om f&auml;ltet &auml;r tomt"
427
 
428
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
429
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
430
  msgid "Can be modified only by admin"
431
  msgstr "Kan endast &auml;ndras av en administrat&ouml;r"
432
 
433
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
434
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
435
  msgid "Can be modified only by admin or if empty"
436
  msgstr "Kan &auml;ndras endast av en administrat&ouml;r eller om f&auml;ltet &auml;r tomt"
437
 
438
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
439
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
440
  msgid "Cannot be modified"
441
  msgstr "Kan inte &auml;ndras"
442
 
443
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
444
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
445
  msgid "Should be equal TO"
446
  msgstr "Skall vara LIKA MED"
447
 
448
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
449
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
450
  msgid "Case sensitive"
451
  msgstr "Skiftl&auml;gesk&auml;nslig"
452
 
453
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
454
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
455
  msgid "Regular Expression"
456
  msgstr ""
457
 
458
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
459
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
460
  msgid "Show the field in the registration"
461
  msgstr "Visa f&auml;lt vid registrering"
462
 
463
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
464
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
465
  msgid "Show the field in User's profile"
466
  msgstr "Visa f&auml;lt i Anv&auml;ndarprofil"
467
 
468
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
469
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
470
  #, fuzzy
471
  msgid "Show the field in Users Extended section"
472
  msgstr "Visa f&auml;lt i menyn F&amp;A Ut&ouml;kat"
473
 
474
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
475
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
476
  #, fuzzy
477
  msgid "Show the field in the search engine"
478
  msgstr "Visa f&auml;lt vid registrering"
479
 
480
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
481
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
482
  #, fuzzy
483
  msgid "Show the field in the blog"
484
  msgstr "Visa f&auml;lt vid registrering"
485
 
486
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
488
  #, fuzzy
489
  msgid "Show the field if the role is at least:"
490
  msgstr "Visa f&auml;lt vid registrering"
491
 
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
494
  msgid "Anonymous"
495
  msgstr ""
496
 
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
499
  msgid "User has 'view_cimy_extra_fields' capability"
500
  msgstr ""
501
 
502
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
504
  msgid "Send an email to the admin if the user changes its value"
505
  msgstr ""
506
 
507
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
508
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
509
  #, fuzzy
510
  msgid "Advanced options"
511
  msgstr "Åtg&auml;rder"
512
 
513
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
514
  msgid "Clear"
515
  msgstr "Nollst&auml;ll"
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
518
  msgid "Invert selection"
519
  msgstr "Omv&auml;nd markering"
520
 
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
522
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
523
  msgstr "&Auml;r du s&auml;ker p&aring; at du vill ta bort detta f&auml;lt och all ev data som matats in?"
524
 
525
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
526
  msgid "WordPress Fields"
527
  msgstr "WordPress-f&auml;lt"
528
 
529
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
530
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
532
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
533
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
534
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
535
  msgid "Extra Fields"
536
  msgstr "Extraf&auml;lt"
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
539
  msgid "None!"
540
  msgstr "Ingen!"
541
 
542
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
544
  msgid "Order"
545
  msgstr "Ordningsf&ouml;ljd"
546
 
547
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
548
  msgid "Reset"
549
  msgstr "Nollst&auml;ll"
550
 
551
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
552
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
553
  msgid "SUCCESSFUL"
554
  msgstr "FRAMGÅNGSRIKT"
555
 
556
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
557
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
558
  #, fuzzy
559
  msgid "select"
560
  msgstr "Ta bort"
561
 
562
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
563
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
564
  msgid "Users per page"
565
  msgstr "Anv&auml;ndare per sida"
566
 
567
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
568
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
569
  msgid "Apply"
570
  msgstr ""
571
 
572
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
573
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
574
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
575
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
576
  msgid "Users Extended"
577
  msgstr "Extra f&auml;lt f&ouml;r anv&auml;ndare"
578
 
579
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
580
  #, php-format
581
  msgid "Search results for &#8220;%s&#8221;"
582
  msgstr ""
583
 
584
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
585
  #, php-format
586
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
587
  msgstr ""
588
 
589
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
590
  msgid "Search Users"
591
  msgstr "S&ouml;k Anv&auml;ndare"
592
 
593
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
594
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
595
  msgid "Role"
596
  msgstr "Roll"
597
 
598
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
599
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
600
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
601
  msgid "Website"
602
  msgstr "Webbsajt"
603
 
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
605
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
606
  msgid "Posts"
607
  msgstr "Postningar"
608
 
609
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
610
  msgid "View posts by this author"
611
  msgstr "Visa postningar av dessa skribent"
612
 
613
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
614
  msgid "Super Admin"
615
  msgstr ""
616
 
617
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
618
  #, php-format
619
  msgid "e-mail: %s"
620
  msgstr "e-post: %s"
621
 
622
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
623
  #, fuzzy
624
  msgid "Change"
625
  msgstr "&Auml;ndra ordning"
626
 
627
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
628
  #, fuzzy
629
  msgid "Update selected users"
630
  msgstr "Ta bort valda f&auml;lter"
631
 
632
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
633
  #, fuzzy
634
  msgid "Update"
635
  msgstr "Uppdatera f&auml;lt"
636
 
637
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
638
  msgid "OK"
639
  msgstr ""
640
 
641
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
642
  msgid "Cancel"
643
  msgstr ""
644
 
@@ -770,12 +792,12 @@ msgstr "Uppdatra bild"
770
  msgid "Picture URL:"
771
  msgstr ""
772
 
773
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
774
  #, php-format
775
  msgid "%s previous value: %s new value: %s"
776
  msgstr ""
777
 
778
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
779
  #, php-format
780
  msgid "%s (%s) has changed one or more fields"
781
  msgstr ""
@@ -1181,17 +1203,14 @@ msgid "All"
1181
  msgstr ""
1182
 
1183
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1184
- #, fuzzy
1185
  msgid "Done"
1186
  msgstr ""
1187
 
1188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1189
- #, fuzzy
1190
  msgid "&laquo; Previous"
1191
  msgstr ""
1192
 
1193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1194
- #, fuzzy
1195
  msgid "Next &raquo;"
1196
  msgstr ""
1197
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:20-0800\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "FEL"
38
 
54
  msgstr "&auml;r ej korrekt"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "JA"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "NEJ"
67
 
107
  msgstr ""
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Anv&auml;ndarnamn"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "E-post"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  #, fuzzy
125
  msgid "Please upload a file with one of the following extensions"
126
  msgstr "Ladda upp en bild med en av f&ouml;ljlande fil&auml;ndelser"
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
130
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
131
  msgid "Please upload an image with one of the following extensions"
132
  msgstr "Ladda upp en bild med en av f&ouml;ljlande fil&auml;ndelser"
133
 
134
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
135
  msgid "Strength indicator"
136
  msgstr ""
137
 
138
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
139
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
140
  msgstr ""
141
 
142
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
143
  #, fuzzy
144
  msgid "Change image"
145
  msgstr "&Auml;ndra ordning"
146
 
147
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
148
  msgid "Insert the code:"
149
  msgstr ""
150
 
151
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
152
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
153
  msgid "Confirm your registration"
154
  msgstr ""
155
 
156
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
157
  msgid "A password will be e-mailed to you."
158
  msgstr ""
159
 
160
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
161
  msgid "&larr; Back"
162
  msgstr ""
163
 
182
  msgstr "&Auml;ndra ordning"
183
 
184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
185
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
186
  msgid "Min length"
187
  msgstr "Min. l&auml;ngd"
188
 
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
191
  msgid "Exact length"
192
  msgstr "Exakt l&auml;ngd"
193
 
194
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
196
  msgid "Max length"
197
  msgstr "Max. l&auml;ngd"
198
 
227
  msgstr "korrekt raderade"
228
 
229
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
231
  msgid "Min size"
232
  msgstr "Min. storlek"
233
 
234
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
235
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
236
  msgid "Exact size"
237
  msgstr "Exakt storlek"
238
 
239
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
241
  msgid "Max size"
242
  msgstr "Max. storlek"
243
 
245
  msgid "Exact or Max size"
246
  msgstr "Exakt eller Max. storlek"
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
249
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
250
+ #, fuzzy
251
+ msgid "Min date"
252
+ msgstr "Min. storlek"
253
+
254
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
256
+ #, fuzzy
257
+ msgid "Exact date"
258
+ msgstr "Exakt storlek"
259
+
260
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
262
+ #, fuzzy
263
+ msgid "Max date"
264
+ msgstr "Max. storlek"
265
+
266
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
267
  msgid "Name not specified"
268
  msgstr "Namn ej angivet"
269
 
270
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
271
  msgid "Name cannot contains spaces"
272
  msgstr "Namnet f&aring;r inte ha mellanrum"
273
 
274
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
275
  msgid "Label not specified"
276
  msgstr "Etikett ej angiven"
277
 
278
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
279
  msgid "not selected (with this type is necessary)"
280
  msgstr "Ej vald (kr&auml;vs vid denna typ)"
281
 
282
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
283
  msgid "If you select"
284
  msgstr "Om du v&auml;ljer"
285
 
286
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
287
  msgid "you cannot select Min or Max"
288
  msgstr "Min eller Max kan ej v&auml;ljas"
289
 
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
292
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
293
  msgid "should be in the range of"
294
  msgstr "skall vara mellan"
295
 
296
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
297
  msgid "Equal TO not specified"
298
  msgstr "Lika MED ej angivet"
299
 
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
301
  msgid "With checkbox type Equal TO can only be"
302
  msgstr "N&auml;r typen &auml;r checkbox kan LIKA MED endast vara"
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
305
  msgid "With radio type Equal TO can only be"
306
  msgstr "N&auml;r typen &auml;r radio kan LIKA MED endast vara"
307
 
308
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
309
  msgid "With checkbox type Value can only be"
310
  msgstr "N&auml;r typen &auml;r checkbox kan v&auml;rde endast vara"
311
 
312
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
313
  msgid "With radio type Value can only be"
314
  msgstr "N&auml;r typen &auml;r radio kan v&auml;rde endast vara"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
317
  msgid "Field inserted correctly"
318
  msgstr "F&auml;lt upplagt korrekt"
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
321
  msgid "Field #"
322
  msgstr "F&auml;lt #"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
325
  msgid "updated correctly"
326
  msgstr "korrekt uppdaterat"
327
 
328
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
329
  msgid "Name inserted is just in the database, change to another one"
330
  msgstr "Namnet du valt &auml;r redan i bruk, v&auml;lj ett annat"
331
 
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
333
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
334
  msgid "Add a new Field"
335
  msgstr "L&auml;gg till ett f&auml;lt"
336
 
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
338
  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."
339
  msgstr "F&ouml;r att l&auml;gga till ett nytt f&auml;lt, m&aring;ste du v&auml;lja ett namn, en typ och en etikett; ej tvingande f&auml;lt &auml;r v&auml;rde och beskrivning. Vid registrering av anv&auml;ndare m&aring;ste detta regelverk f&ouml;ljas."
340
 
341
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
342
  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'"
343
  msgstr "Med <strong>radio</strong> och <strong>checkbox</strong>: <em>V&auml;rde</em> och <em>LIKA MED</em> kan bara vara 'Yes' eller 'No', som betyder vald eller ej vald."
344
 
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
346
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
347
  msgstr "<strong>drop-down</strong>: Du m&aring;ste ange alla alternativ i etikett t.ex: Etikett/v&auml;rde1,v&auml;rde2,v&auml;rde3"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
350
  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"
351
  msgstr "Med <strong>bild</strong>: Du kan anv&auml;nde en standard bild med (URL) under <em>V&auml;rde</em>; 'min, exakt, max st&ouml;rleken' angiven i KB;<em>LIKA MED</em> betyder max pixelst&ouml;rlek (h&ouml;jd eller bredd) f&ouml;r tumnagelbild."
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
354
  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)"
355
  msgstr "Med <strong>bild-url</strong>: Du kan anger en standardbild genom (URL) under <em>V&auml;rde</em>; <em>LIKA MED</em> betyder max pixelbred (h&ouml;jden justeras proportioneligt)."
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
358
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
359
  msgstr "Med <strong>registration-datum</strong>: <em>LIKA MED</em> betyder datum- och tidsformat."
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
362
  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"
363
  msgstr "Med <strong>avatar</strong>: kan du anv&auml;nda en standardbild med (URL) under <em>V&auml;rde</em>; 'min, exakt, max storleken' angiven i KB;<em>LIKA MED</em> betyder max pixelstorlek (h&ouml;jd eller bredd) f&ouml;r tumnagelbild."
364
 
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
366
  #, fuzzy
367
  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"
368
  msgstr "Med <strong>bild</strong>: Du kan anv&auml;nde en standard bild med (URL) under <em>V&auml;rde</em>; 'min, exakt, max st&ouml;rleken' angiven i KB;<em>LIKA MED</em> betyder max pixelst&ouml;rlek (h&ouml;jd eller bredd) f&ouml;r tumnagelbild."
369
 
370
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
371
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
372
+ msgstr ""
373
+
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
378
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
380
  msgid "Name"
381
  msgstr "Namn"
382
 
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
387
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
389
  msgid "Value"
390
  msgstr "V&auml;rde"
391
 
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
393
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
396
  msgid "Type"
397
  msgstr "Typ"
398
 
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
403
  msgid "Label"
404
  msgstr "Etikett"
405
 
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
407
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
409
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
410
  msgid "Description"
411
  msgstr "Beskrivning"
412
 
413
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
415
  msgid "Rules"
416
  msgstr "Regler"
417
 
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
419
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
420
  msgid "Actions"
421
  msgstr "Åtg&auml;rder"
422
 
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
425
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
427
  msgid "Fieldset"
428
  msgstr "F&auml;ltsektion"
429
 
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
431
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
432
  msgid "Can be empty"
433
  msgstr "Kan vara t&ouml;m"
434
 
435
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
437
  msgid "Check for E-mail syntax"
438
  msgstr "Kontrollera epostadressen"
439
 
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
441
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
442
  msgid "Can be modified"
443
  msgstr "Kan &auml;ndras"
444
 
445
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
447
  msgid "Can be modified only if empty"
448
  msgstr "Kan &auml;ndras endast om f&auml;ltet &auml;r tomt"
449
 
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
451
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
452
  msgid "Can be modified only by admin"
453
  msgstr "Kan endast &auml;ndras av en administrat&ouml;r"
454
 
455
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
457
  msgid "Can be modified only by admin or if empty"
458
  msgstr "Kan &auml;ndras endast av en administrat&ouml;r eller om f&auml;ltet &auml;r tomt"
459
 
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
461
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
462
  msgid "Cannot be modified"
463
  msgstr "Kan inte &auml;ndras"
464
 
465
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
466
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
467
  msgid "Should be equal TO"
468
  msgstr "Skall vara LIKA MED"
469
 
470
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
471
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
472
  msgid "Case sensitive"
473
  msgstr "Skiftl&auml;gesk&auml;nslig"
474
 
475
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
476
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
477
  msgid "Regular Expression"
478
  msgstr ""
479
 
480
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
481
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
482
  msgid "Show the field in the registration"
483
  msgstr "Visa f&auml;lt vid registrering"
484
 
485
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
486
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
487
  msgid "Show the field in User's profile"
488
  msgstr "Visa f&auml;lt i Anv&auml;ndarprofil"
489
 
490
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
491
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
492
  #, fuzzy
493
  msgid "Show the field in Users Extended section"
494
  msgstr "Visa f&auml;lt i menyn F&amp;A Ut&ouml;kat"
495
 
496
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
498
  #, fuzzy
499
  msgid "Show the field in the search engine"
500
  msgstr "Visa f&auml;lt vid registrering"
501
 
502
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
503
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
504
  #, fuzzy
505
  msgid "Show the field in the blog"
506
  msgstr "Visa f&auml;lt vid registrering"
507
 
508
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
509
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
510
  #, fuzzy
511
  msgid "Show the field if the role is at least:"
512
  msgstr "Visa f&auml;lt vid registrering"
513
 
514
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
515
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
516
  msgid "Anonymous"
517
  msgstr ""
518
 
519
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
520
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
521
  msgid "User has 'view_cimy_extra_fields' capability"
522
  msgstr ""
523
 
524
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
525
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
526
  msgid "Send an email to the admin if the user changes its value"
527
  msgstr ""
528
 
529
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
530
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
531
  #, fuzzy
532
  msgid "Advanced options"
533
  msgstr "Åtg&auml;rder"
534
 
535
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
536
  msgid "Clear"
537
  msgstr "Nollst&auml;ll"
538
 
539
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
540
  msgid "Invert selection"
541
  msgstr "Omv&auml;nd markering"
542
 
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
544
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
545
  msgstr "&Auml;r du s&auml;ker p&aring; at du vill ta bort detta f&auml;lt och all ev data som matats in?"
546
 
547
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
548
  msgid "WordPress Fields"
549
  msgstr "WordPress-f&auml;lt"
550
 
551
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
552
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
553
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
554
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
555
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
556
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
557
  msgid "Extra Fields"
558
  msgstr "Extraf&auml;lt"
559
 
560
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
561
  msgid "None!"
562
  msgstr "Ingen!"
563
 
564
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
566
  msgid "Order"
567
  msgstr "Ordningsf&ouml;ljd"
568
 
569
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
570
  msgid "Reset"
571
  msgstr "Nollst&auml;ll"
572
 
573
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
574
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
575
  msgid "SUCCESSFUL"
576
  msgstr "FRAMGÅNGSRIKT"
577
 
578
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
579
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
580
  #, fuzzy
581
  msgid "select"
582
  msgstr "Ta bort"
583
 
584
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
586
  msgid "Users per page"
587
  msgstr "Anv&auml;ndare per sida"
588
 
589
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
590
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
591
  msgid "Apply"
592
  msgstr ""
593
 
594
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
595
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
596
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
597
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
598
  msgid "Users Extended"
599
  msgstr "Extra f&auml;lt f&ouml;r anv&auml;ndare"
600
 
601
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
602
  #, php-format
603
  msgid "Search results for &#8220;%s&#8221;"
604
  msgstr ""
605
 
606
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
607
  #, php-format
608
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
609
  msgstr ""
610
 
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
612
  msgid "Search Users"
613
  msgstr "S&ouml;k Anv&auml;ndare"
614
 
615
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
616
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
617
  msgid "Role"
618
  msgstr "Roll"
619
 
620
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
622
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
623
  msgid "Website"
624
  msgstr "Webbsajt"
625
 
626
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
627
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
628
  msgid "Posts"
629
  msgstr "Postningar"
630
 
631
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
632
  msgid "View posts by this author"
633
  msgstr "Visa postningar av dessa skribent"
634
 
635
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
636
  msgid "Super Admin"
637
  msgstr ""
638
 
639
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
640
  #, php-format
641
  msgid "e-mail: %s"
642
  msgstr "e-post: %s"
643
 
644
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
645
  #, fuzzy
646
  msgid "Change"
647
  msgstr "&Auml;ndra ordning"
648
 
649
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
650
  #, fuzzy
651
  msgid "Update selected users"
652
  msgstr "Ta bort valda f&auml;lter"
653
 
654
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
655
  #, fuzzy
656
  msgid "Update"
657
  msgstr "Uppdatera f&auml;lt"
658
 
659
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
660
  msgid "OK"
661
  msgstr ""
662
 
663
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
664
  msgid "Cancel"
665
  msgstr ""
666
 
792
  msgid "Picture URL:"
793
  msgstr ""
794
 
795
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
796
  #, php-format
797
  msgid "%s previous value: %s new value: %s"
798
  msgstr ""
799
 
800
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
801
  #, php-format
802
  msgid "%s (%s) has changed one or more fields"
803
  msgstr ""
1203
  msgstr ""
1204
 
1205
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1206
  msgid "Done"
1207
  msgstr ""
1208
 
1209
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1210
  msgid "&laquo; Previous"
1211
  msgstr ""
1212
 
1213
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1214
  msgid "Next &raquo;"
1215
  msgstr ""
1216
 
langs/cimy_uef-uk.mo CHANGED
Binary file
langs/cimy_uef-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-02 16:41-0800\n"
6
- "PO-Revision-Date: 2013-09-02 16:42-0800\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"
@@ -32,7 +32,7 @@ msgstr ""
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
36
  msgid "ERROR"
37
  msgstr "ПОМИЛКА"
38
 
@@ -54,14 +54,14 @@ msgid "isn&#8217;t correct"
54
  msgstr "не правильно"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
59
  msgid "YES"
60
  msgstr "ТАК"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1025
64
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1028
65
  msgid "NO"
66
  msgstr "НІ"
67
 
@@ -107,55 +107,55 @@ msgid "Typed code is not correct."
107
  msgstr "Введений код не правильний."
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1487
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Ім'я користувача"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1497
118
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1498
119
  msgid "E-mail"
120
  msgstr "Ел. пошта"
121
 
122
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:999
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
126
 
127
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1005
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
132
 
133
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1180
134
  msgid "Strength indicator"
135
  msgstr "Індикатор сили"
136
 
137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1181
138
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
  msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ &amp; )."
140
 
141
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1220
142
  msgid "Change image"
143
  msgstr "Змінити картинку"
144
 
145
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1223
146
  msgid "Insert the code:"
147
  msgstr "Вставте код:"
148
 
149
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1295
150
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1297
151
  msgid "Confirm your registration"
152
  msgstr "Підтвердіть реєстрацію"
153
 
154
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1303
155
  msgid "A password will be e-mailed to you."
156
  msgstr "Пароль буде направлений до вас ел. поштою."
157
 
158
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1311
159
  msgid "&larr; Back"
160
  msgstr "&larr; Назад"
161
 
@@ -180,17 +180,17 @@ msgid "Change order"
180
  msgstr "Зміна порядку"
181
 
182
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
183
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:870
184
  msgid "Min length"
185
  msgstr "Мін. довжина"
186
 
187
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
188
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:871
189
  msgid "Exact length"
190
  msgstr "Точна довжина"
191
 
192
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
193
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:872
194
  msgid "Max length"
195
  msgstr "Макс. довжина"
196
 
@@ -225,17 +225,17 @@ msgid "deleted correctly"
225
  msgstr "видалено правильно"
226
 
227
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
228
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:862
229
  msgid "Min size"
230
  msgstr "Мін. розмір"
231
 
232
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
233
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:863
234
  msgid "Exact size"
235
  msgstr "Точний розмір"
236
 
237
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
238
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:864
239
  msgid "Max size"
240
  msgstr "Макс. розмір"
241
 
@@ -243,390 +243,412 @@ msgstr "Макс. розмір"
243
  msgid "Exact or Max size"
244
  msgstr "Точний або макс. розмір"
245
 
246
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "Name not specified"
248
  msgstr "Ім'я не задано"
249
 
250
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:290
251
  msgid "Name cannot contains spaces"
252
  msgstr "Ім'я не може містити пробіли"
253
 
254
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:293
255
  msgid "Label not specified"
256
  msgstr "Надпис не задано"
257
 
258
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
259
  msgid "not selected (with this type is necessary)"
260
  msgstr "не вибрано (з цим типом необхідно)"
261
 
262
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
263
  msgid "If you select"
264
  msgstr "Якщо ви виберете"
265
 
266
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:304
267
  msgid "you cannot select Min or Max"
268
  msgstr "Ви не можете вибрати Мін. або Макс."
269
 
270
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:309
271
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:314
272
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:319
273
  msgid "should be in the range of"
274
  msgstr "повинно бути в діапазоні"
275
 
276
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:329
277
  msgid "Equal TO not specified"
278
  msgstr "Не обрано Дорівнює"
279
 
280
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:332
281
  msgid "With checkbox type Equal TO can only be"
282
  msgstr "Може бути тільки з прапорцем вибору типу Дорівнює"
283
 
284
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:335
285
  msgid "With radio type Equal TO can only be"
286
  msgstr "Може бути тільки з перемикачем вибору (радіо) типу Дорівнює "
287
 
288
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:351
289
  msgid "With checkbox type Value can only be"
290
  msgstr "Може бути тільки з прапорцем вибору типу Значення "
291
 
292
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:354
293
  msgid "With radio type Value can only be"
294
  msgstr "Може бути тільки з перемикачем вибору (радіо) типу Значення"
295
 
296
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:410
297
  msgid "Field inserted correctly"
298
  msgstr "Поле вставлене коректно"
299
 
300
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
301
  msgid "Field #"
302
  msgstr "Поле №"
303
 
304
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
305
  msgid "updated correctly"
306
  msgstr "оновлено коректно"
307
 
308
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:424
309
  msgid "Name inserted is just in the database, change to another one"
310
  msgstr "Вставлене ім'я вже є у базі даних, змінити на інше"
311
 
312
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
313
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
314
  msgid "Add a new Field"
315
  msgstr "Додати нове поле"
316
 
317
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:554
318
  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."
319
  msgstr "Щоб додати нове поле ви повинні вибрати назву, тип та надпис; додатково можна значення і опис. Правила застосовуються при реєстрації користувача."
320
 
321
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:556
322
  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'"
323
  msgstr "З <strong> радіо</strong> та <strong>прапорцем</strong>: <em>Значення</em> і <em>Дорівнює</em> може бути тільки 'Так' або 'Ні', що означає 'обрано' або 'не обрано'"
324
 
325
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:557
326
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
327
  msgstr "З <strong>випадаючим списком (drop-down)</strong>: ви повинні додати всі варіанти надписів, наприклад: надпис/елемент1, елемент2, елемент3"
328
 
329
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:558
330
  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"
331
  msgstr "З <strong>картинкою</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' у КБ; <em>Дорівнює</em> означає макс. розмір у пікселях (ширина або висота) для ескізів"
332
 
333
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:559
334
  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)"
335
  msgstr "З <strong>URL-картинки</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; <em>Дорівнює</em> означає макс. ширину у пікселах (висота буде пропорційною)"
336
 
337
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:560
338
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
339
  msgstr "З <strong>датою реєстрації</strong>: <em>Дорівнює</em> означає формат дати і часу"
340
 
341
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:561
342
  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"
343
  msgstr "З <strong>аватар</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; <em>Дорівнює</em> автоматично встановлює на 512 пікселів"
344
 
345
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:562
346
  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"
347
  msgstr "З <strong>файл<strong>: ви можете попередньо завантажити файл за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; під <em>Дорівнює</em> можуть бути вказані дозволені розширення, розділені комами, напр.: zip, pdf, doc"
348
 
349
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:579
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
352
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:895
353
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1493
 
 
 
 
355
  msgid "Name"
356
  msgstr "Ім'я"
357
 
358
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:569
359
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:580
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
361
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
362
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
364
  msgid "Value"
365
  msgstr "Значення"
366
 
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:570
368
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:583
369
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:801
370
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:901
371
  msgid "Type"
372
  msgstr "Тип"
373
 
374
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:599
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
377
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
378
  msgid "Label"
379
  msgstr "Надпис"
380
 
381
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:571
382
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:600
383
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:802
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:921
385
  msgid "Description"
386
  msgstr "Надпис"
387
 
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:572
389
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:803
390
  msgid "Rules"
391
  msgstr "Правила"
392
 
393
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:573
394
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:804
395
  msgid "Actions"
396
  msgstr "Дії"
397
 
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
399
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:912
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1238
401
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1329
402
  msgid "Fieldset"
403
  msgstr "Група полів"
404
 
405
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
406
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:939
407
  msgid "Can be empty"
408
  msgstr "Може бути порожнім"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
411
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:941
412
  msgid "Check for E-mail syntax"
413
  msgstr "Перевірка синтаксису ел. пошти "
414
 
415
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:944
417
  msgid "Can be modified"
418
  msgstr "Може бути змінено"
419
 
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
421
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
422
  msgid "Can be modified only if empty"
423
  msgstr "Може бути змінено, тільки якщо порожнє"
424
 
425
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:946
427
  msgid "Can be modified only by admin"
428
  msgstr "Може бути змінено тільки адміністратором"
429
 
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
431
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:947
432
  msgid "Can be modified only by admin or if empty"
433
  msgstr "Може бути змінено тільки адміністратором або якщо порожнє"
434
 
435
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
436
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
437
  msgid "Cannot be modified"
438
  msgstr "Не може бути змінено"
439
 
440
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
441
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:954
442
  msgid "Should be equal TO"
443
  msgstr "Повинно дорівнювати"
444
 
445
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:957
447
  msgid "Case sensitive"
448
  msgstr "З урахуванням регістру"
449
 
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
451
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:960
452
  msgid "Regular Expression"
453
  msgstr "Регулярні вирази"
454
 
455
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:641
456
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:966
457
  msgid "Show the field in the registration"
458
  msgstr "Показати поле при реєстрації"
459
 
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:645
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:970
462
  msgid "Show the field in User's profile"
463
  msgstr "Показати поле в профілі Користувача"
464
 
465
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:980
467
  msgid "Show the field in Users Extended section"
468
  msgstr "Показати поле в Розширеному розділі Користувачів"
469
 
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
471
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:984
472
  msgid "Show the field in the search engine"
473
  msgstr "Показати поле в пошукових системах"
474
 
475
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
476
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
477
  msgid "Show the field in the blog"
478
  msgstr "Показати поле у блозі"
479
 
480
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
481
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
482
  msgid "Show the field if the role is at least:"
483
  msgstr "Показати поле, якщо роль, принаймні:"
484
 
485
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:662
486
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
487
  msgid "Anonymous"
488
  msgstr "Анонімний"
489
 
490
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
491
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:999
492
  msgid "User has 'view_cimy_extra_fields' capability"
493
  msgstr "Користувач має 'view_cimy_extra_fields' можливості"
494
 
495
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
496
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1008
497
  msgid "Send an email to the admin if the user changes its value"
498
  msgstr "Надіслати повідомлення адміну, якщо користувач змінює своє значення"
499
 
500
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:676
501
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
502
  msgid "Advanced options"
503
  msgstr "Додаткові опції"
504
 
505
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
506
  msgid "Clear"
507
  msgstr "Очистити"
508
 
509
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:765
510
  msgid "Invert selection"
511
  msgstr "Все крім вибраного"
512
 
513
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:766
514
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
515
  msgstr "Ви дійсно хочете видалити поле (-я) і всі дані, вставлені користувачами?"
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:772
518
  msgid "WordPress Fields"
519
  msgstr "Поля WordPress"
520
 
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:774
522
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1803
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1808
524
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
525
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
526
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
527
  msgid "Extra Fields"
528
  msgstr "Додаткові поля"
529
 
530
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:785
531
  msgid "None!"
532
  msgstr "Жодного!"
533
 
534
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:800
535
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:883
536
  msgid "Order"
537
  msgstr "Порядок"
538
 
539
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
540
  msgid "Reset"
541
  msgstr "Скидання"
542
 
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1083
544
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
545
  msgid "SUCCESSFUL"
546
  msgstr "УСПІШНО"
547
 
548
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1102
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
550
  msgid "select"
551
  msgstr "вибрати"
552
 
553
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1242
554
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1333
555
  msgid "Users per page"
556
  msgstr "Користувачів на сторінку"
557
 
558
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1244
559
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1335
560
  msgid "Apply"
561
  msgstr "Застосувати"
562
 
563
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1409
564
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
565
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
566
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
567
  msgid "Users Extended"
568
  msgstr "Користувачі (Розширене)"
569
 
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1417
571
  #, php-format
572
  msgid "Search results for &#8220;%s&#8221;"
573
  msgstr "Шукати результати для &#8220;%s&#8221;"
574
 
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1455
576
  #, php-format
577
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
578
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
579
 
580
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
581
  msgid "Search Users"
582
  msgstr "Пошук Користувачів"
583
 
584
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
585
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1503
586
  msgid "Role"
587
  msgstr "Роль"
588
 
589
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
590
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1508
591
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
592
  msgid "Website"
593
  msgstr "Веб-сайт"
594
 
595
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1512
596
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1513
597
  msgid "Posts"
598
  msgstr "Дописи"
599
 
600
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1636
601
  msgid "View posts by this author"
602
  msgstr "Переглянути всі дописи цього автора"
603
 
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1661
605
  msgid "Super Admin"
606
  msgstr "Супер Адмін"
607
 
608
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1672
609
  #, php-format
610
  msgid "e-mail: %s"
611
  msgstr "ел. пошта: %s"
612
 
613
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1783
614
  msgid "Change"
615
  msgstr "Зміна"
616
 
617
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1799
618
  msgid "Update selected users"
619
  msgstr "Оновлення вибраних користувачів"
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1820
622
  msgid "Update"
623
  msgstr "Оновлення"
624
 
625
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1835
626
  msgid "OK"
627
  msgstr "ОК"
628
 
629
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1836
630
  msgid "Cancel"
631
  msgstr "Скасувати"
632
 
@@ -762,12 +784,12 @@ msgstr "Оновлення картинки"
762
  msgid "Picture URL:"
763
  msgstr "URL картинки:"
764
 
765
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:729
766
  #, php-format
767
  msgid "%s previous value: %s new value: %s"
768
  msgstr "Попереднє значення %s: нове значення %s: % s."
769
 
770
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:744
771
  #, php-format
772
  msgid "%s (%s) has changed one or more fields"
773
  msgstr "%s (%s) змінило одне або кілька полів"
@@ -1172,17 +1194,14 @@ msgid "All"
1172
  msgstr "Всі"
1173
 
1174
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
1175
- #, fuzzy
1176
  msgid "Done"
1177
  msgstr ""
1178
 
1179
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
1180
- #, fuzzy
1181
  msgid "&laquo; Previous"
1182
  msgstr ""
1183
 
1184
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
1185
- #, fuzzy
1186
  msgid "Next &raquo;"
1187
  msgstr ""
1188
 
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-09-28 06:20-0800\n"
6
+ "PO-Revision-Date: 2013-09-28 06:21-0800\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"
32
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:600
33
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:641
34
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:649
35
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1112
36
  msgid "ERROR"
37
  msgstr "ПОМИЛКА"
38
 
54
  msgstr "не правильно"
55
 
56
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
57
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
59
  msgid "YES"
60
  msgstr "ТАК"
61
 
62
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:522
63
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1026
64
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1029
65
  msgid "NO"
66
  msgstr "НІ"
67
 
107
  msgstr "Введений код не правильний."
108
 
109
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:719
110
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1534
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
112
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:196
113
  msgid "Username"
114
  msgstr "Ім'я користувача"
115
 
116
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:746
117
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1544
118
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
119
  msgid "E-mail"
120
  msgstr "Ел. пошта"
121
 
122
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1000
123
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:310
124
  msgid "Please upload a file with one of the following extensions"
125
  msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
126
 
127
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1006
128
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:316
129
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:282
130
  msgid "Please upload an image with one of the following extensions"
131
  msgstr "Будь ласка, завантажте файл з одним з наступних розширень"
132
 
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1185
134
  msgid "Strength indicator"
135
  msgstr "Індикатор сили"
136
 
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1186
138
  msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ &amp; )."
139
  msgstr "Підказка: пароль повинен бути не менше семи символів. Щоб зробити його сильнішим, використовуйте верхній та нижній регістр, цифри і символи, наприклад ! \" ? $ % ^ &amp; )."
140
 
141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1225
142
  msgid "Change image"
143
  msgstr "Змінити картинку"
144
 
145
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1228
146
  msgid "Insert the code:"
147
  msgstr "Вставте код:"
148
 
149
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1300
150
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1302
151
  msgid "Confirm your registration"
152
  msgstr "Підтвердіть реєстрацію"
153
 
154
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1308
155
  msgid "A password will be e-mailed to you."
156
  msgstr "Пароль буде направлений до вас ел. поштою."
157
 
158
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:1316
159
  msgid "&larr; Back"
160
  msgstr "&larr; Назад"
161
 
180
  msgstr "Зміна порядку"
181
 
182
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
183
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:916
184
  msgid "Min length"
185
  msgstr "Мін. довжина"
186
 
187
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:31
188
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:917
189
  msgid "Exact length"
190
  msgstr "Точна довжина"
191
 
192
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:32
193
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:918
194
  msgid "Max length"
195
  msgstr "Макс. довжина"
196
 
225
  msgstr "видалено правильно"
226
 
227
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:245
228
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:898
229
  msgid "Min size"
230
  msgstr "Мін. розмір"
231
 
232
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:246
233
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:899
234
  msgid "Exact size"
235
  msgstr "Точний розмір"
236
 
237
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:247
238
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:900
239
  msgid "Max size"
240
  msgstr "Макс. розмір"
241
 
243
  msgid "Exact or Max size"
244
  msgstr "Точний або макс. розмір"
245
 
246
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:252
247
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:907
248
+ #, fuzzy
249
+ msgid "Min date"
250
+ msgstr "Мін. розмір"
251
+
252
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:253
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:908
254
+ #, fuzzy
255
+ msgid "Exact date"
256
+ msgstr "Точний розмір"
257
+
258
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:254
259
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:909
260
+ #, fuzzy
261
+ msgid "Max date"
262
+ msgstr "Макс. розмір"
263
+
264
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:315
265
  msgid "Name not specified"
266
  msgstr "Ім'я не задано"
267
 
268
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:317
269
  msgid "Name cannot contains spaces"
270
  msgstr "Ім'я не може містити пробіли"
271
 
272
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:320
273
  msgid "Label not specified"
274
  msgstr "Надпис не задано"
275
 
276
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
277
  msgid "not selected (with this type is necessary)"
278
  msgstr "не вибрано (з цим типом необхідно)"
279
 
280
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
281
  msgid "If you select"
282
  msgstr "Якщо ви виберете"
283
 
284
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
285
  msgid "you cannot select Min or Max"
286
  msgstr "Ви не можете вибрати Мін. або Макс."
287
 
288
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:337
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:342
290
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
291
  msgid "should be in the range of"
292
  msgstr "повинно бути в діапазоні"
293
 
294
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:358
295
  msgid "Equal TO not specified"
296
  msgstr "Не обрано Дорівнює"
297
 
298
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:361
299
  msgid "With checkbox type Equal TO can only be"
300
  msgstr "Може бути тільки з прапорцем вибору типу Дорівнює"
301
 
302
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:364
303
  msgid "With radio type Equal TO can only be"
304
  msgstr "Може бути тільки з перемикачем вибору (радіо) типу Дорівнює "
305
 
306
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:380
307
  msgid "With checkbox type Value can only be"
308
  msgstr "Може бути тільки з прапорцем вибору типу Значення "
309
 
310
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:383
311
  msgid "With radio type Value can only be"
312
  msgstr "Може бути тільки з перемикачем вибору (радіо) типу Значення"
313
 
314
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:439
315
  msgid "Field inserted correctly"
316
  msgstr "Поле вставлене коректно"
317
 
318
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
319
  msgid "Field #"
320
  msgstr "Поле №"
321
 
322
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:441
323
  msgid "updated correctly"
324
  msgstr "оновлено коректно"
325
 
326
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:453
327
  msgid "Name inserted is just in the database, change to another one"
328
  msgstr "Вставлене ім'я вже є у базі даних, змінити на інше"
329
 
330
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:468
331
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
332
  msgid "Add a new Field"
333
  msgstr "Додати нове поле"
334
 
335
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:586
336
  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."
337
  msgstr "Щоб додати нове поле ви повинні вибрати назву, тип та надпис; додатково можна значення і опис. Правила застосовуються при реєстрації користувача."
338
 
339
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:588
340
  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'"
341
  msgstr "З <strong> радіо</strong> та <strong>прапорцем</strong>: <em>Значення</em> і <em>Дорівнює</em> може бути тільки 'Так' або 'Ні', що означає 'обрано' або 'не обрано'"
342
 
343
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:589
344
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
345
  msgstr "З <strong>випадаючим списком (drop-down)</strong>: ви повинні додати всі варіанти надписів, наприклад: надпис/елемент1, елемент2, елемент3"
346
 
347
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:590
348
  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"
349
  msgstr "З <strong>картинкою</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' у КБ; <em>Дорівнює</em> означає макс. розмір у пікселях (ширина або висота) для ескізів"
350
 
351
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:591
352
  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)"
353
  msgstr "З <strong>URL-картинки</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; <em>Дорівнює</em> означає макс. ширину у пікселах (висота буде пропорційною)"
354
 
355
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:592
356
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
357
  msgstr "З <strong>датою реєстрації</strong>: <em>Дорівнює</em> означає формат дати і часу"
358
 
359
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:593
360
  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"
361
  msgstr "З <strong>аватар</strong>: ви можете попередньо завантажити зображення за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; <em>Дорівнює</em> автоматично встановлює на 512 пікселів"
362
 
363
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:594
364
  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"
365
  msgstr "З <strong>файл<strong>: ви можете попередньо завантажити файл за замовчуванням введенням URL в поле <em>Значення</em>; 'мін., точний, макс. розміри' в КБ; під <em>Дорівнює</em> можуть бути вказані дозволені розширення, розділені комами, напр.: zip, pdf, doc"
366
 
367
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:595
368
+ msgid "With <strong>date</strong>: you can preload a default date in <em>Value</em>; 'min date' can be relative: -1d, -1m, -1y or a specific date; 'max date' can be relative: +1d, +1m, +1y or a specific date; <em>equal TO</em> can be a specific date"
369
+ msgstr ""
370
+
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
372
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
374
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:942
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1539
376
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
377
  msgid "Name"
378
  msgstr "Ім'я"
379
 
380
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:602
381
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:613
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:945
384
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
385
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
386
  msgid "Value"
387
  msgstr "Значення"
388
 
389
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:603
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
391
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:834
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:948
393
  msgid "Type"
394
  msgstr "Тип"
395
 
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
397
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
398
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
399
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:965
400
  msgid "Label"
401
  msgstr "Надпис"
402
 
403
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:604
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
405
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:835
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:968
407
  msgid "Description"
408
  msgstr "Надпис"
409
 
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:605
411
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:836
412
  msgid "Rules"
413
  msgstr "Правила"
414
 
415
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:606
416
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:837
417
  msgid "Actions"
418
  msgstr "Дії"
419
 
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
421
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:959
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1285
423
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1376
424
  msgid "Fieldset"
425
  msgstr "Група полів"
426
 
427
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
428
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:986
429
  msgid "Can be empty"
430
  msgstr "Може бути порожнім"
431
 
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
433
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:988
434
  msgid "Check for E-mail syntax"
435
  msgstr "Перевірка синтаксису ел. пошти "
436
 
437
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:991
439
  msgid "Can be modified"
440
  msgstr "Може бути змінено"
441
 
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
443
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:992
444
  msgid "Can be modified only if empty"
445
  msgstr "Може бути змінено, тільки якщо порожнє"
446
 
447
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:993
449
  msgid "Can be modified only by admin"
450
  msgstr "Може бути змінено тільки адміністратором"
451
 
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
453
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:994
454
  msgid "Can be modified only by admin or if empty"
455
  msgstr "Може бути змінено тільки адміністратором або якщо порожнє"
456
 
457
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:658
458
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:995
459
  msgid "Cannot be modified"
460
  msgstr "Не може бути змінено"
461
 
462
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:663
463
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1001
464
  msgid "Should be equal TO"
465
  msgstr "Повинно дорівнювати"
466
 
467
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1004
469
  msgid "Case sensitive"
470
  msgstr "З урахуванням регістру"
471
 
472
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:670
473
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1007
474
  msgid "Regular Expression"
475
  msgstr "Регулярні вирази"
476
 
477
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
478
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1013
479
  msgid "Show the field in the registration"
480
  msgstr "Показати поле при реєстрації"
481
 
482
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
483
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1017
484
  msgid "Show the field in User's profile"
485
  msgstr "Показати поле в профілі Користувача"
486
 
487
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
488
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1027
489
  msgid "Show the field in Users Extended section"
490
  msgstr "Показати поле в Розширеному розділі Користувачів"
491
 
492
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
493
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1031
494
  msgid "Show the field in the search engine"
495
  msgstr "Показати поле в пошукових системах"
496
 
497
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:690
498
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1035
499
  msgid "Show the field in the blog"
500
  msgstr "Показати поле у блозі"
501
 
502
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:693
503
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
504
  msgid "Show the field if the role is at least:"
505
  msgstr "Показати поле, якщо роль, принаймні:"
506
 
507
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:695
508
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
509
  msgid "Anonymous"
510
  msgstr "Анонімний"
511
 
512
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:701
513
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
514
  msgid "User has 'view_cimy_extra_fields' capability"
515
  msgstr "Користувач має 'view_cimy_extra_fields' можливості"
516
 
517
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:707
518
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
519
  msgid "Send an email to the admin if the user changes its value"
520
  msgstr "Надіслати повідомлення адміну, якщо користувач змінює своє значення"
521
 
522
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
523
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1060
524
  msgid "Advanced options"
525
  msgstr "Додаткові опції"
526
 
527
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
528
  msgid "Clear"
529
  msgstr "Очистити"
530
 
531
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:798
532
  msgid "Invert selection"
533
  msgstr "Все крім вибраного"
534
 
535
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:799
536
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
537
  msgstr "Ви дійсно хочете видалити поле (-я) і всі дані, вставлені користувачами?"
538
 
539
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:805
540
  msgid "WordPress Fields"
541
  msgstr "Поля WordPress"
542
 
543
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
544
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1850
545
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1855
546
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:367
547
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:115
548
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:369
549
  msgid "Extra Fields"
550
  msgstr "Додаткові поля"
551
 
552
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:818
553
  msgid "None!"
554
  msgstr "Жодного!"
555
 
556
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:833
557
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:930
558
  msgid "Order"
559
  msgstr "Порядок"
560
 
561
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
562
  msgid "Reset"
563
  msgstr "Скидання"
564
 
565
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1130
566
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:391
567
  msgid "SUCCESSFUL"
568
  msgstr "УСПІШНО"
569
 
570
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
571
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1877
572
  msgid "select"
573
  msgstr "вибрати"
574
 
575
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1289
576
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1380
577
  msgid "Users per page"
578
  msgstr "Користувачів на сторінку"
579
 
580
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1291
581
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1382
582
  msgid "Apply"
583
  msgstr "Застосувати"
584
 
585
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
586
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:23
587
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:31
588
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_init.php:36
589
  msgid "Users Extended"
590
  msgstr "Користувачі (Розширене)"
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
593
  #, php-format
594
  msgid "Search results for &#8220;%s&#8221;"
595
  msgstr "Шукати результати для &#8220;%s&#8221;"
596
 
597
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1502
598
  #, php-format
599
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
600
  msgstr "%1$s <span class=\"count\">(%2$s)</span>"
601
 
602
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1511
603
  msgid "Search Users"
604
  msgstr "Пошук Користувачів"
605
 
606
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1549
607
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1550
608
  msgid "Role"
609
  msgstr "Роль"
610
 
611
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1554
612
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1555
613
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:328
614
  msgid "Website"
615
  msgstr "Веб-сайт"
616
 
617
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1559
618
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1560
619
  msgid "Posts"
620
  msgstr "Дописи"
621
 
622
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
623
  msgid "View posts by this author"
624
  msgstr "Переглянути всі дописи цього автора"
625
 
626
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1708
627
  msgid "Super Admin"
628
  msgstr "Супер Адмін"
629
 
630
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1719
631
  #, php-format
632
  msgid "e-mail: %s"
633
  msgstr "ел. пошта: %s"
634
 
635
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1830
636
  msgid "Change"
637
  msgstr "Зміна"
638
 
639
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1846
640
  msgid "Update selected users"
641
  msgstr "Оновлення вибраних користувачів"
642
 
643
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1867
644
  msgid "Update"
645
  msgstr "Оновлення"
646
 
647
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1882
648
  msgid "OK"
649
  msgstr "ОК"
650
 
651
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1883
652
  msgid "Cancel"
653
  msgstr "Скасувати"
654
 
784
  msgid "Picture URL:"
785
  msgstr "URL картинки:"
786
 
787
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:735
788
  #, php-format
789
  msgid "%s previous value: %s new value: %s"
790
  msgstr "Попереднє значення %s: нове значення %s: % s."
791
 
792
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:750
793
  #, php-format
794
  msgid "%s (%s) has changed one or more fields"
795
  msgstr "%s (%s) змінило одне або кілька полів"
1194
  msgstr "Всі"
1195
 
1196
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1018
 
1197
  msgid "Done"
1198
  msgstr ""
1199
 
1200
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1019
 
1201
  msgid "&laquo; Previous"
1202
  msgstr ""
1203
 
1204
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:1020
 
1205
  msgid "Next &raquo;"
1206
  msgstr ""
1207
 
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.6
8
- Stable tag: 2.6.0
9
 
10
  Add some useful fields to registration and user's info
11
 
@@ -28,6 +28,7 @@ WordPress is becoming more than ever a tool to open blog/websites and CMSs in an
28
  * registration-date
29
  * avatar
30
  * file
 
31
 
32
  future versions can have more.
33
 
@@ -66,43 +67,46 @@ The plug-in adds two new menu voices in the admin for the administrator and two
66
 
67
  = Rules are: =
68
 
69
- * min/exact/max length admitted
70
- [only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
 
 
 
71
 
72
  * field can be empty
73
- [only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file]
74
 
75
  * check for e-mail address syntax
76
- [only for text, textarea, textarea-rich, password]
77
 
78
  * field can be modified after the registration
79
- [only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file]
80
- [for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
81
 
82
  * field equal to some value (for example accept terms and conditions)
83
- [all except avatar by default set to 512]
84
 
85
  * equal to can be or not case sensitive
86
- [only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
87
 
88
  = Visualization rules: =
89
  * field can be hidden during registration
90
- [all except the email address]
91
 
92
  * field can be hidden in user's profile
93
- [all except the WordPress fields]
94
 
95
  * field can be hidden in Users Extended page
96
- [all]
97
 
98
  * field can be hidden in Search Engine (only if you installed the template)
99
- [all]
100
 
101
  * field can be hidden in Blog's public page (only if you installed the template)
102
- [all]
103
 
104
  * all visualization rules can be overridden if an user has certain rights (default=no override)
105
- [all]
106
 
107
  == Frequently Asked Questions ==
108
 
5
  Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
6
  Requires at least: 3.1
7
  Tested up to: 3.6
8
+ Stable tag: 2.6.1
9
 
10
  Add some useful fields to registration and user's info
11
 
28
  * registration-date
29
  * avatar
30
  * file
31
+ * date
32
 
33
  future versions can have more.
34
 
67
 
68
  = Rules are: =
69
 
70
+ * min/max length admitted
71
+ [only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file, date]
72
+
73
+ * exact length admitted
74
+ [only for text, textarea, textarea-rich, password, picture, picture-url, avatar, file]
75
 
76
  * field can be empty
77
+ [only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, dropdown-multi, avatar, file]
78
 
79
  * check for e-mail address syntax
80
+ [only for text, textarea, textarea-rich, password]
81
 
82
  * field can be modified after the registration
83
+ [only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, dropdown-multi, avatar, file]
84
+ [for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
85
 
86
  * field equal to some value (for example accept terms and conditions)
87
+ [all except avatar by default set to 512]
88
 
89
  * equal to can be or not case sensitive
90
+ [only for text, textarea, textarea-rich, password, dropdown, dropdown-multi]
91
 
92
  = Visualization rules: =
93
  * field can be hidden during registration
94
+ [all except the email address]
95
 
96
  * field can be hidden in user's profile
97
+ [all except the WordPress fields]
98
 
99
  * field can be hidden in Users Extended page
100
+ [all]
101
 
102
  * field can be hidden in Search Engine (only if you installed the template)
103
+ [all]
104
 
105
  * field can be hidden in Blog's public page (only if you installed the template)
106
+ [all]
107
 
108
  * all visualization rules can be overridden if an user has certain rights (default=no override)
109
+ [all]
110
 
111
  == Frequently Asked Questions ==
112
 
securimage/README.txt CHANGED
@@ -2,7 +2,7 @@ NAME:
2
 
3
  Securimage - A PHP class for creating captcha images and audio with many options.
4
 
5
- VERSION: 3.5
6
 
7
  AUTHOR:
8
 
2
 
3
  Securimage - A PHP class for creating captcha images and audio with many options.
4
 
5
+ VERSION: 3.5.1
6
 
7
  AUTHOR:
8
 
securimage/example_form.ajax.php CHANGED
@@ -26,45 +26,7 @@ process_si_contact_form();
26
  .note { font-size: 18px; }
27
  -->
28
  </style>
29
-
30
- <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js"></script>
31
-
32
- <script type="text/javascript">
33
- function reloadCaptcha()
34
- {
35
- document.getElementById('siimage').src = './securimage_show.php?sid=' + Math.random();
36
- }
37
-
38
- function processForm()
39
- {
40
- new Ajax.Request('<?php echo $_SERVER['PHP_SELF'] ?>', {
41
- method: 'post',
42
- parameters: $('contact_form').serialize(),
43
- onSuccess: function(transport) {
44
- try {
45
- var r = transport.responseText.evalJSON();
46
-
47
- if (r.error == 0) {
48
- $('success_message').show();
49
- $('contact_form').reset();
50
- reloadCaptcha();
51
- setTimeout("$('success_message').hide()", 30000);
52
- } else {
53
- alert("There was an error with your submission.\n\n" + r.message);
54
- }
55
- } catch(ex) {
56
- alert("There was an error parsing the json");
57
- }
58
- },
59
- onFailure: function(err) {
60
- alert("Ajax request failed");
61
- }
62
- });
63
-
64
- return false;
65
- }
66
- </script>
67
- </head>
68
  <body>
69
 
70
  <fieldset>
@@ -119,6 +81,37 @@ process_si_contact_form();
119
  </form>
120
  </fieldset>
121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  </body>
123
  </html>
124
 
26
  .note { font-size: 18px; }
27
  -->
28
  </style>
29
+ </head>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  <body>
31
 
32
  <fieldset>
81
  </form>
82
  </fieldset>
83
 
84
+ <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
85
+ <script type="text/javascript">
86
+ $.noConflict();
87
+
88
+ function reloadCaptcha()
89
+ {
90
+ jQuery('#siimage').src = './securimage_show.php?sid=' + Math.random();
91
+ }
92
+
93
+ function processForm()
94
+ {
95
+ jQuery.ajax({
96
+ url: '<?php echo $_SERVER['PHP_SELF'] ?>',
97
+ type: 'POST',
98
+ data: jQuery('#contact_form').serialize(),
99
+ dataType: 'json',
100
+ }).done(function(data) {
101
+ if (data.error === 0) {
102
+ jQuery('#success_message').show();
103
+ jQuery('#contact_form')[0].reset();
104
+ reloadCaptcha();
105
+ setTimeout("jQuery('#success_message').fadeOut()", 30000);
106
+ } else {
107
+ alert("There was an error with your submission.\n\n" + data.message);
108
+ }
109
+ });
110
+
111
+ return false;
112
+ }
113
+ </script>
114
+
115
  </body>
116
  </html>
117
 
securimage/example_form.php CHANGED
@@ -44,7 +44,7 @@ if (isset($_SESSION['ctform']['error']) && $_SESSION['ctform']['error'] == true
44
  <span class="success">The captcha was correct and the message has been sent!</span><br /><br />
45
  <?php endif; ?>
46
 
47
- <form method="post" action="<?php echo $_SERVER['REQUEST_URI'] . $_SERVER['QUERY_STRING'] ?>" id="contact_form">
48
  <input type="hidden" name="do" value="contact" />
49
 
50
  <p>
44
  <span class="success">The captcha was correct and the message has been sent!</span><br /><br />
45
  <?php endif; ?>
46
 
47
+ <form method="post" action="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'] . $_SERVER['QUERY_STRING']) ?>" id="contact_form">
48
  <input type="hidden" name="do" value="contact" />
49
 
50
  <p>
securimage/securimage.php CHANGED
@@ -41,22 +41,25 @@
41
  * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
42
  * @copyright 2013 Drew Phillips
43
  * @author Drew Phillips <drew@drew-phillips.com>
44
- * @version 3.5 (April 2013)
45
  * @package Securimage
46
  *
47
  */
48
 
49
  /**
50
  ChangeLog
51
-
 
 
 
52
  3.5
53
  - Release new version
54
  - MB string support for charlist
55
  - Modify audio file path to use language directories
56
  - Changed default captcha appearance
57
-
58
  3.2RC4
59
- - Add MySQL, PostgreSQL, and SQLite3 support for database storage
60
  - Deprecate "use_sqlite_db" option and remove SQLite2/sqlite_* functions
61
  - Add new captcha type that displays 2 dictionary words on one image
62
  - Update examples
@@ -196,31 +199,31 @@ class Securimage
196
  * @var int
197
  */
198
  const SI_CAPTCHA_WORDS = 2;
199
-
200
  /**
201
  * MySQL option identifier for database storage option
202
- *
203
  * @var string
204
  */
205
  const SI_DRIVER_MYSQL = 'mysql';
206
-
207
  /**
208
  * PostgreSQL option identifier for database storage option
209
- *
210
  * @var string
211
  */
212
  const SI_DRIVER_PGSQL = 'pgsql';
213
-
214
  /**
215
  * SQLite option identifier for database storage option
216
- *
217
  * @var string
218
  */
219
  const SI_DRIVER_SQLITE3 = 'sqlite';
220
 
221
  /*%*********************************************************************%*/
222
  // Properties
223
-
224
  /**
225
  * The width of the captcha image
226
  * @var int
@@ -343,73 +346,73 @@ class Securimage
343
  * @deprecated 3.2RC4
344
  */
345
  public $use_sqlite_db = false;
346
-
347
  /**
348
  * Use a database backend for code storage.
349
  * Provides a fallback to users with cookies disabled.
350
  * Required when using captcha IDs.
351
- *
352
  * @see Securimage::$database_driver
353
  * @var bool
354
  */
355
  public $use_database = false;
356
-
357
  /**
358
  * Database driver to use for database support.
359
  * Allowable values: 'mysql', 'pgsql', 'sqlite'.
360
  * Default: sqlite
361
- *
362
  * @var string
363
  */
364
  public $database_driver = self::SI_DRIVER_SQLITE3;
365
-
366
  /**
367
  * Database host to connect to when using mysql or postgres
368
  * On Linux use "localhost" for Unix domain socket, otherwise uses TCP/IP
369
  * Does not apply to SQLite
370
- *
371
  * @var string
372
  */
373
  public $database_host = 'localhost';
374
-
375
  /**
376
  * Database username for connection (mysql, postgres only)
377
  * Default is an empty string
378
- *
379
- * @var string
380
  */
381
  public $database_user = '';
382
-
383
  /**
384
  * Database password for connection (mysql, postgres only)
385
  * Default is empty string
386
- *
387
  * @var string
388
  */
389
  public $database_pass = '';
390
-
391
  /**
392
  * Name of the database to select (mysql, postgres only)
393
- *
394
  * @see Securimage::$database_file for SQLite
395
  * @var string
396
  */
397
  public $database_name = '';
398
-
399
  /**
400
  * Database table where captcha codes are stored
401
  * Note: Securimage will attempt to create this table for you if it does
402
  * not exist. If the table cannot be created, an E_USER_WARNING is emitted.
403
- *
404
  * @var string
405
  */
406
  public $database_table = 'captcha_codes';
407
-
408
  /**
409
  * Fully qualified path to the database file when using SQLite3.
410
  * This value is only used when $database_driver == sqlite3 and does
411
  * not apply when no database is used, or when using MySQL or PostgreSQL.
412
- *
413
  * @var string
414
  */
415
  public $database_file;
@@ -596,7 +599,7 @@ class Securimage
596
 
597
  /**
598
  * PDO connection when a database is used
599
- *
600
  * @var resource
601
  */
602
  protected $pdo_conn;
@@ -748,7 +751,7 @@ class Securimage
748
 
749
  /**
750
  * Validate a captcha code input against a captcha ID
751
- *
752
  * @param string $id The captcha ID to check
753
  * @param string $value The captcha value supplied by the user
754
  * @param array $options Array of options to construct Securimage with.
@@ -762,9 +765,9 @@ class Securimage
762
  $opts = array('captchaId' => $id,
763
  'no_session' => true,
764
  'use_database' => true);
765
-
766
  if (sizeof($options) > 0) $opts = array_merge($options, $opts);
767
-
768
  $si = new self($opts);
769
 
770
  if ($si->openDatabase()) {
@@ -777,7 +780,7 @@ class Securimage
777
 
778
  if ($si->check($value)) {
779
  $si->clearCodeFromDatabase();
780
-
781
  return true;
782
  } else {
783
  return false;
@@ -898,7 +901,7 @@ class Securimage
898
  $code = '';
899
  $time = 0;
900
  $disp = 'error';
901
-
902
  if ($returnExisting && strlen($this->code) > 0) {
903
  if ($array) {
904
  return array('code' => $this->code,
@@ -1154,7 +1157,7 @@ class Securimage
1154
  $this->code_display = "$left $sign $right";
1155
  break;
1156
  }
1157
-
1158
  case self::SI_CAPTCHA_WORDS:
1159
  $words = $this->readCodeFromFile(2);
1160
  $this->code = implode(' ', $words);
@@ -1457,7 +1460,7 @@ class Securimage
1457
 
1458
  $fsize = filesize($this->wordlist_file);
1459
  if ($fsize < 128) return false; // too small of a list to be effective
1460
-
1461
  if ((int)$numWords < 1 || (int)$numWords > 5) $numWords = 1;
1462
 
1463
  $words = array();
@@ -1466,23 +1469,23 @@ class Securimage
1466
  fseek($fp, mt_rand(0, $fsize - 64), SEEK_SET); // seek to a random position of file from 0 to filesize-64
1467
  $data = fread($fp, 64); // read a chunk from our random position
1468
  $data = preg_replace("/\r?\n/", "\n", $data);
1469
-
1470
  $start = @strpos($data, "\n", mt_rand(0, 56)) + 1; // random start position
1471
  $end = @strpos($data, "\n", $start); // find end of word
1472
-
1473
  if ($start === false) {
1474
  // picked start position at end of file
1475
  continue;
1476
  } else if ($end === false) {
1477
  $end = strlen($data);
1478
  }
1479
-
1480
  $word = strtolower(substr($data, $start, $end - $start)); // return a line of the file
1481
  $words[] = $word;
1482
  } while (++$i < $numWords);
1483
-
1484
  fclose($fp);
1485
-
1486
  if ($numWords < 2) {
1487
  return $words[0];
1488
  } else {
@@ -1541,7 +1544,7 @@ class Securimage
1541
  $code_entered = preg_replace('/\s+/', ' ', $code_entered);
1542
  $code_entered = strtolower($code_entered);
1543
  }
1544
-
1545
  if ($code == $code_entered) {
1546
  $this->correct_code = true;
1547
  if ($this->no_session != true) {
@@ -1569,7 +1572,7 @@ class Securimage
1569
  $_SESSION['securimage_code_value'][$this->namespace] = $this->code;
1570
  $_SESSION['securimage_code_ctime'][$this->namespace] = time();
1571
  }
1572
-
1573
  if ($this->use_database) {
1574
  $this->saveCodeToDatabase();
1575
  }
@@ -1586,31 +1589,31 @@ class Securimage
1586
  if ($this->use_database && $this->pdo_conn) {
1587
  $id = $this->getCaptchaId(false);
1588
  $ip = $_SERVER['REMOTE_ADDR'];
1589
-
1590
  if (empty($id)) {
1591
  $id = $ip;
1592
  }
1593
-
1594
  $time = time();
1595
  $code = $this->code;
1596
  $code_disp = $this->code_display;
1597
 
1598
  // This is somewhat expensive in PDO Sqlite3 (when there is something to delete)
1599
  $this->clearCodeFromDatabase();
1600
-
1601
  $query = "INSERT INTO {$this->database_table} ("
1602
  ."id, code, code_display, namespace, created) "
1603
  ."VALUES(?, ?, ?, ?, ?)";
1604
-
1605
  $stmt = $this->pdo_conn->prepare($query);
1606
  $success = $stmt->execute(array($id, $code, $code_disp, $this->namespace, $time));
1607
-
1608
  if (!$success) {
1609
  $err = $stmt->errorInfo();
1610
  trigger_error("Failed to insert code into database. {$err[1]}: {$err[2]}", E_USER_WARNING);
1611
  }
1612
  }
1613
-
1614
  return $success !== false;
1615
  }
1616
 
@@ -1620,10 +1623,10 @@ class Securimage
1620
  protected function openDatabase()
1621
  {
1622
  $this->pdo_conn = false;
1623
-
1624
  if ($this->use_database) {
1625
  $pdo_extension = 'PDO_' . strtoupper($this->database_driver);
1626
-
1627
  if (!extension_loaded($pdo_extension)) {
1628
  trigger_error("Database support is turned on in Securimage, but the chosen extension $pdo_extension is not loaded in PHP.", E_USER_WARNING);
1629
  return false;
@@ -1655,7 +1658,7 @@ class Securimage
1655
  trigger_error("Database connection failed: " . $pdoex->getMessage(), E_USER_WARNING);
1656
  return false;
1657
  }
1658
-
1659
  try {
1660
  if (!$this->checkTablesExist()) {
1661
  // create tables...
@@ -1666,23 +1669,23 @@ class Securimage
1666
  $this->pdo_conn = null;
1667
  return false;
1668
  }
1669
-
1670
  if (mt_rand(0, 100) / 100.0 == 1.0) {
1671
  $this->purgeOldCodesFromDatabase();
1672
  }
1673
 
1674
  return $this->pdo_conn;
1675
  }
1676
-
1677
  protected function getDsn()
1678
  {
1679
  $dsn = sprintf('%s:', $this->database_driver);
1680
-
1681
  switch($this->database_driver) {
1682
  case self::SI_DRIVER_SQLITE3:
1683
  $dsn .= $this->database_file;
1684
  break;
1685
-
1686
  case self::SI_DRIVER_MYSQL:
1687
  case self::SI_DRIVER_PGSQL:
1688
  $dsn .= sprintf('host=%s;dbname=%s',
@@ -1691,41 +1694,41 @@ class Securimage
1691
  break;
1692
 
1693
  }
1694
-
1695
  return $dsn;
1696
  }
1697
-
1698
  protected function checkTablesExist()
1699
  {
1700
  $table = $this->pdo_conn->quote($this->database_table);
1701
-
1702
  switch($this->database_driver) {
1703
  case self::SI_DRIVER_SQLITE3:
1704
  // query row count for sqlite, PRAGMA queries seem to return no
1705
  // rowCount using PDO even if there are rows returned
1706
  $query = "SELECT COUNT(id) FROM $table";
1707
  break;
1708
-
1709
  case self::SI_DRIVER_MYSQL:
1710
  $query = "SHOW TABLES LIKE $table";
1711
  break;
1712
-
1713
  case self::SI_DRIVER_PGSQL:
1714
  $query = "SELECT * FROM information_schema.columns WHERE table_name = $table;";
1715
  break;
1716
  }
1717
-
1718
  $result = $this->pdo_conn->query($query);
1719
-
1720
  if (!$result) {
1721
  $err = $this->pdo_conn->errorInfo();
1722
-
1723
  if ($this->database_driver == self::SI_DRIVER_SQLITE3 &&
1724
  $err[1] === 1 && strpos($err[2], 'no such table') !== false)
1725
  {
1726
  return false;
1727
  }
1728
-
1729
  throw new Exception("Failed to check tables: {$err[0]} - {$err[1]}: {$err[2]}");
1730
  } else if ($this->database_driver == self::SI_DRIVER_SQLITE3) {
1731
  // successful here regardless of row count for sqlite
@@ -1740,7 +1743,7 @@ class Securimage
1740
  protected function createDatabaseTables()
1741
  {
1742
  $queries = array();
1743
-
1744
  switch($this->database_driver) {
1745
  case self::SI_DRIVER_SQLITE3:
1746
  $queries[] = "CREATE TABLE \"{$this->database_table}\" (
@@ -1751,10 +1754,10 @@ class Securimage
1751
  created INTEGER NOT NULL,
1752
  PRIMARY KEY(id, namespace)
1753
  )";
1754
-
1755
  $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created)";
1756
  break;
1757
-
1758
  case self::SI_DRIVER_MYSQL:
1759
  $queries[] = "CREATE TABLE `{$this->database_table}` (
1760
  `id` VARCHAR(40) NOT NULL,
@@ -1766,7 +1769,7 @@ class Securimage
1766
  INDEX(created)
1767
  )";
1768
  break;
1769
-
1770
  case self::SI_DRIVER_PGSQL:
1771
  $queries[] = "CREATE TABLE {$this->database_table} (
1772
  id character varying(40) NOT NULL,
@@ -1776,16 +1779,16 @@ class Securimage
1776
  created integer NOT NULL,
1777
  CONSTRAINT pkey_id_namespace PRIMARY KEY (id, namespace)
1778
  )";
1779
-
1780
  $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created);";
1781
  break;
1782
  }
1783
-
1784
  $this->pdo_conn->beginTransaction();
1785
-
1786
  foreach($queries as $query) {
1787
  $result = $this->pdo_conn->query($query);
1788
-
1789
  if (!$result) {
1790
  $err = $this->pdo_conn->errorInfo();
1791
  trigger_error("Failed to create table. {$err[1]}: {$err[2]}", E_USER_WARNING);
@@ -1794,12 +1797,12 @@ class Securimage
1794
  return false;
1795
  }
1796
  }
1797
-
1798
  $this->pdo_conn->commit();
1799
-
1800
  return true;
1801
  }
1802
-
1803
  /**
1804
  * Get a code from the sqlite database for ip address/captchaId.
1805
  *
@@ -1819,13 +1822,13 @@ class Securimage
1819
  } else {
1820
  $ip = $_SERVER['REMOTE_ADDR'];
1821
  $ns = $this->namespace;
1822
-
1823
  // ip is stored in id column when no captchaId
1824
  $query = "SELECT * FROM {$this->database_table} WHERE id = ? AND namespace = ?";
1825
  $stmt = $this->pdo_conn->prepare($query);
1826
  $result = $stmt->execute(array($ip, $ns));
1827
  }
1828
-
1829
  if (!$result) {
1830
  $err = $this->pdo_conn->errorInfo();
1831
  trigger_error("Failed to select code from database. {$err[0]}: {$err[1]}", E_USER_WARNING);
@@ -1843,7 +1846,7 @@ class Securimage
1843
  }
1844
  }
1845
  }
1846
-
1847
  return $code;
1848
  }
1849
 
@@ -1856,13 +1859,13 @@ class Securimage
1856
  $ip = $_SERVER['REMOTE_ADDR'];
1857
  $ns = $this->pdo_conn->quote($this->namespace);
1858
  $id = Securimage::$_captchaId;
1859
-
1860
  if (empty($id)) {
1861
  $id = $ip; // if no captchaId set, IP address is captchaId.
1862
  }
1863
-
1864
  $id = $this->pdo_conn->quote($id);
1865
-
1866
  $query = sprintf("DELETE FROM %s WHERE id = %s AND namespace = %s",
1867
  $this->database_table, $id, $ns);
1868
 
@@ -1881,12 +1884,12 @@ class Securimage
1881
  if ($this->use_database && $this->pdo_conn) {
1882
  $now = time();
1883
  $limit = (!is_numeric($this->expiry_time) || $this->expiry_time < 1) ? 86400 : $this->expiry_time;
1884
-
1885
  $query = sprintf("DELETE FROM %s WHERE %s - created > %s",
1886
  $this->database_table,
1887
  $this->pdo_conn->quote($now, PDO::PARAM_INT),
1888
  $this->pdo_conn->quote($limit, PDO::PARAM_INT));
1889
-
1890
  $result = $this->pdo_conn->query($query);
1891
  }
1892
  }
41
  * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
42
  * @copyright 2013 Drew Phillips
43
  * @author Drew Phillips <drew@drew-phillips.com>
44
+ * @version 3.5.1 (June 21, 2013)
45
  * @package Securimage
46
  *
47
  */
48
 
49
  /**
50
  ChangeLog
51
+
52
+ 3.5.1
53
+ - Fix XSS vulnerability in example_form.php (discovered by Gjoko Krstic - <gjoko@zeroscience.mk>)
54
+
55
  3.5
56
  - Release new version
57
  - MB string support for charlist
58
  - Modify audio file path to use language directories
59
  - Changed default captcha appearance
60
+
61
  3.2RC4
62
+ - Add MySQL, PostgreSQL, and SQLite3 support for database storage
63
  - Deprecate "use_sqlite_db" option and remove SQLite2/sqlite_* functions
64
  - Add new captcha type that displays 2 dictionary words on one image
65
  - Update examples
199
  * @var int
200
  */
201
  const SI_CAPTCHA_WORDS = 2;
202
+
203
  /**
204
  * MySQL option identifier for database storage option
205
+ *
206
  * @var string
207
  */
208
  const SI_DRIVER_MYSQL = 'mysql';
209
+
210
  /**
211
  * PostgreSQL option identifier for database storage option
212
+ *
213
  * @var string
214
  */
215
  const SI_DRIVER_PGSQL = 'pgsql';
216
+
217
  /**
218
  * SQLite option identifier for database storage option
219
+ *
220
  * @var string
221
  */
222
  const SI_DRIVER_SQLITE3 = 'sqlite';
223
 
224
  /*%*********************************************************************%*/
225
  // Properties
226
+
227
  /**
228
  * The width of the captcha image
229
  * @var int
346
  * @deprecated 3.2RC4
347
  */
348
  public $use_sqlite_db = false;
349
+
350
  /**
351
  * Use a database backend for code storage.
352
  * Provides a fallback to users with cookies disabled.
353
  * Required when using captcha IDs.
354
+ *
355
  * @see Securimage::$database_driver
356
  * @var bool
357
  */
358
  public $use_database = false;
359
+
360
  /**
361
  * Database driver to use for database support.
362
  * Allowable values: 'mysql', 'pgsql', 'sqlite'.
363
  * Default: sqlite
364
+ *
365
  * @var string
366
  */
367
  public $database_driver = self::SI_DRIVER_SQLITE3;
368
+
369
  /**
370
  * Database host to connect to when using mysql or postgres
371
  * On Linux use "localhost" for Unix domain socket, otherwise uses TCP/IP
372
  * Does not apply to SQLite
373
+ *
374
  * @var string
375
  */
376
  public $database_host = 'localhost';
377
+
378
  /**
379
  * Database username for connection (mysql, postgres only)
380
  * Default is an empty string
381
+ *
382
+ * @var string
383
  */
384
  public $database_user = '';
385
+
386
  /**
387
  * Database password for connection (mysql, postgres only)
388
  * Default is empty string
389
+ *
390
  * @var string
391
  */
392
  public $database_pass = '';
393
+
394
  /**
395
  * Name of the database to select (mysql, postgres only)
396
+ *
397
  * @see Securimage::$database_file for SQLite
398
  * @var string
399
  */
400
  public $database_name = '';
401
+
402
  /**
403
  * Database table where captcha codes are stored
404
  * Note: Securimage will attempt to create this table for you if it does
405
  * not exist. If the table cannot be created, an E_USER_WARNING is emitted.
406
+ *
407
  * @var string
408
  */
409
  public $database_table = 'captcha_codes';
410
+
411
  /**
412
  * Fully qualified path to the database file when using SQLite3.
413
  * This value is only used when $database_driver == sqlite3 and does
414
  * not apply when no database is used, or when using MySQL or PostgreSQL.
415
+ *
416
  * @var string
417
  */
418
  public $database_file;
599
 
600
  /**
601
  * PDO connection when a database is used
602
+ *
603
  * @var resource
604
  */
605
  protected $pdo_conn;
751
 
752
  /**
753
  * Validate a captcha code input against a captcha ID
754
+ *
755
  * @param string $id The captcha ID to check
756
  * @param string $value The captcha value supplied by the user
757
  * @param array $options Array of options to construct Securimage with.
765
  $opts = array('captchaId' => $id,
766
  'no_session' => true,
767
  'use_database' => true);
768
+
769
  if (sizeof($options) > 0) $opts = array_merge($options, $opts);
770
+
771
  $si = new self($opts);
772
 
773
  if ($si->openDatabase()) {
780
 
781
  if ($si->check($value)) {
782
  $si->clearCodeFromDatabase();
783
+
784
  return true;
785
  } else {
786
  return false;
901
  $code = '';
902
  $time = 0;
903
  $disp = 'error';
904
+
905
  if ($returnExisting && strlen($this->code) > 0) {
906
  if ($array) {
907
  return array('code' => $this->code,
1157
  $this->code_display = "$left $sign $right";
1158
  break;
1159
  }
1160
+
1161
  case self::SI_CAPTCHA_WORDS:
1162
  $words = $this->readCodeFromFile(2);
1163
  $this->code = implode(' ', $words);
1460
 
1461
  $fsize = filesize($this->wordlist_file);
1462
  if ($fsize < 128) return false; // too small of a list to be effective
1463
+
1464
  if ((int)$numWords < 1 || (int)$numWords > 5) $numWords = 1;
1465
 
1466
  $words = array();
1469
  fseek($fp, mt_rand(0, $fsize - 64), SEEK_SET); // seek to a random position of file from 0 to filesize-64
1470
  $data = fread($fp, 64); // read a chunk from our random position
1471
  $data = preg_replace("/\r?\n/", "\n", $data);
1472
+
1473
  $start = @strpos($data, "\n", mt_rand(0, 56)) + 1; // random start position
1474
  $end = @strpos($data, "\n", $start); // find end of word
1475
+
1476
  if ($start === false) {
1477
  // picked start position at end of file
1478
  continue;
1479
  } else if ($end === false) {
1480
  $end = strlen($data);
1481
  }
1482
+
1483
  $word = strtolower(substr($data, $start, $end - $start)); // return a line of the file
1484
  $words[] = $word;
1485
  } while (++$i < $numWords);
1486
+
1487
  fclose($fp);
1488
+
1489
  if ($numWords < 2) {
1490
  return $words[0];
1491
  } else {
1544
  $code_entered = preg_replace('/\s+/', ' ', $code_entered);
1545
  $code_entered = strtolower($code_entered);
1546
  }
1547
+
1548
  if ($code == $code_entered) {
1549
  $this->correct_code = true;
1550
  if ($this->no_session != true) {
1572
  $_SESSION['securimage_code_value'][$this->namespace] = $this->code;
1573
  $_SESSION['securimage_code_ctime'][$this->namespace] = time();
1574
  }
1575
+
1576
  if ($this->use_database) {
1577
  $this->saveCodeToDatabase();
1578
  }
1589
  if ($this->use_database && $this->pdo_conn) {
1590
  $id = $this->getCaptchaId(false);
1591
  $ip = $_SERVER['REMOTE_ADDR'];
1592
+
1593
  if (empty($id)) {
1594
  $id = $ip;
1595
  }
1596
+
1597
  $time = time();
1598
  $code = $this->code;
1599
  $code_disp = $this->code_display;
1600
 
1601
  // This is somewhat expensive in PDO Sqlite3 (when there is something to delete)
1602
  $this->clearCodeFromDatabase();
1603
+
1604
  $query = "INSERT INTO {$this->database_table} ("
1605
  ."id, code, code_display, namespace, created) "
1606
  ."VALUES(?, ?, ?, ?, ?)";
1607
+
1608
  $stmt = $this->pdo_conn->prepare($query);
1609
  $success = $stmt->execute(array($id, $code, $code_disp, $this->namespace, $time));
1610
+
1611
  if (!$success) {
1612
  $err = $stmt->errorInfo();
1613
  trigger_error("Failed to insert code into database. {$err[1]}: {$err[2]}", E_USER_WARNING);
1614
  }
1615
  }
1616
+
1617
  return $success !== false;
1618
  }
1619
 
1623
  protected function openDatabase()
1624
  {
1625
  $this->pdo_conn = false;
1626
+
1627
  if ($this->use_database) {
1628
  $pdo_extension = 'PDO_' . strtoupper($this->database_driver);
1629
+
1630
  if (!extension_loaded($pdo_extension)) {
1631
  trigger_error("Database support is turned on in Securimage, but the chosen extension $pdo_extension is not loaded in PHP.", E_USER_WARNING);
1632
  return false;
1658
  trigger_error("Database connection failed: " . $pdoex->getMessage(), E_USER_WARNING);
1659
  return false;
1660
  }
1661
+
1662
  try {
1663
  if (!$this->checkTablesExist()) {
1664
  // create tables...
1669
  $this->pdo_conn = null;
1670
  return false;
1671
  }
1672
+
1673
  if (mt_rand(0, 100) / 100.0 == 1.0) {
1674
  $this->purgeOldCodesFromDatabase();
1675
  }
1676
 
1677
  return $this->pdo_conn;
1678
  }
1679
+
1680
  protected function getDsn()
1681
  {
1682
  $dsn = sprintf('%s:', $this->database_driver);
1683
+
1684
  switch($this->database_driver) {
1685
  case self::SI_DRIVER_SQLITE3:
1686
  $dsn .= $this->database_file;
1687
  break;
1688
+
1689
  case self::SI_DRIVER_MYSQL:
1690
  case self::SI_DRIVER_PGSQL:
1691
  $dsn .= sprintf('host=%s;dbname=%s',
1694
  break;
1695
 
1696
  }
1697
+
1698
  return $dsn;
1699
  }
1700
+
1701
  protected function checkTablesExist()
1702
  {
1703
  $table = $this->pdo_conn->quote($this->database_table);
1704
+
1705
  switch($this->database_driver) {
1706
  case self::SI_DRIVER_SQLITE3:
1707
  // query row count for sqlite, PRAGMA queries seem to return no
1708
  // rowCount using PDO even if there are rows returned
1709
  $query = "SELECT COUNT(id) FROM $table";
1710
  break;
1711
+
1712
  case self::SI_DRIVER_MYSQL:
1713
  $query = "SHOW TABLES LIKE $table";
1714
  break;
1715
+
1716
  case self::SI_DRIVER_PGSQL:
1717
  $query = "SELECT * FROM information_schema.columns WHERE table_name = $table;";
1718
  break;
1719
  }
1720
+
1721
  $result = $this->pdo_conn->query($query);
1722
+
1723
  if (!$result) {
1724
  $err = $this->pdo_conn->errorInfo();
1725
+
1726
  if ($this->database_driver == self::SI_DRIVER_SQLITE3 &&
1727
  $err[1] === 1 && strpos($err[2], 'no such table') !== false)
1728
  {
1729
  return false;
1730
  }
1731
+
1732
  throw new Exception("Failed to check tables: {$err[0]} - {$err[1]}: {$err[2]}");
1733
  } else if ($this->database_driver == self::SI_DRIVER_SQLITE3) {
1734
  // successful here regardless of row count for sqlite
1743
  protected function createDatabaseTables()
1744
  {
1745
  $queries = array();
1746
+
1747
  switch($this->database_driver) {
1748
  case self::SI_DRIVER_SQLITE3:
1749
  $queries[] = "CREATE TABLE \"{$this->database_table}\" (
1754
  created INTEGER NOT NULL,
1755
  PRIMARY KEY(id, namespace)
1756
  )";
1757
+
1758
  $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created)";
1759
  break;
1760
+
1761
  case self::SI_DRIVER_MYSQL:
1762
  $queries[] = "CREATE TABLE `{$this->database_table}` (
1763
  `id` VARCHAR(40) NOT NULL,
1769
  INDEX(created)
1770
  )";
1771
  break;
1772
+
1773
  case self::SI_DRIVER_PGSQL:
1774
  $queries[] = "CREATE TABLE {$this->database_table} (
1775
  id character varying(40) NOT NULL,
1779
  created integer NOT NULL,
1780
  CONSTRAINT pkey_id_namespace PRIMARY KEY (id, namespace)
1781
  )";
1782
+
1783
  $queries[] = "CREATE INDEX ndx_created ON {$this->database_table} (created);";
1784
  break;
1785
  }
1786
+
1787
  $this->pdo_conn->beginTransaction();
1788
+
1789
  foreach($queries as $query) {
1790
  $result = $this->pdo_conn->query($query);
1791
+
1792
  if (!$result) {
1793
  $err = $this->pdo_conn->errorInfo();
1794
  trigger_error("Failed to create table. {$err[1]}: {$err[2]}", E_USER_WARNING);
1797
  return false;
1798
  }
1799
  }
1800
+
1801
  $this->pdo_conn->commit();
1802
+
1803
  return true;
1804
  }
1805
+
1806
  /**
1807
  * Get a code from the sqlite database for ip address/captchaId.
1808
  *
1822
  } else {
1823
  $ip = $_SERVER['REMOTE_ADDR'];
1824
  $ns = $this->namespace;
1825
+
1826
  // ip is stored in id column when no captchaId
1827
  $query = "SELECT * FROM {$this->database_table} WHERE id = ? AND namespace = ?";
1828
  $stmt = $this->pdo_conn->prepare($query);
1829
  $result = $stmt->execute(array($ip, $ns));
1830
  }
1831
+
1832
  if (!$result) {
1833
  $err = $this->pdo_conn->errorInfo();
1834
  trigger_error("Failed to select code from database. {$err[0]}: {$err[1]}", E_USER_WARNING);
1846
  }
1847
  }
1848
  }
1849
+
1850
  return $code;
1851
  }
1852
 
1859
  $ip = $_SERVER['REMOTE_ADDR'];
1860
  $ns = $this->pdo_conn->quote($this->namespace);
1861
  $id = Securimage::$_captchaId;
1862
+
1863
  if (empty($id)) {
1864
  $id = $ip; // if no captchaId set, IP address is captchaId.
1865
  }
1866
+
1867
  $id = $this->pdo_conn->quote($id);
1868
+
1869
  $query = sprintf("DELETE FROM %s WHERE id = %s AND namespace = %s",
1870
  $this->database_table, $id, $ns);
1871
 
1884
  if ($this->use_database && $this->pdo_conn) {
1885
  $now = time();
1886
  $limit = (!is_numeric($this->expiry_time) || $this->expiry_time < 1) ? 86400 : $this->expiry_time;
1887
+
1888
  $query = sprintf("DELETE FROM %s WHERE %s - created > %s",
1889
  $this->database_table,
1890
  $this->pdo_conn->quote($now, PDO::PARAM_INT),
1891
  $this->pdo_conn->quote($limit, PDO::PARAM_INT));
1892
+
1893
  $result = $this->pdo_conn->query($query);
1894
  }
1895
  }
securimage/securimage_play.php CHANGED
@@ -29,7 +29,7 @@
29
  * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
30
  * @copyright 2012 Drew Phillips
31
  * @author Drew Phillips <drew@drew-phillips.com>
32
- * @version 3.2RC2 (April 2012)
33
  * @package Securimage
34
  *
35
  */
29
  * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
30
  * @copyright 2012 Drew Phillips
31
  * @author Drew Phillips <drew@drew-phillips.com>
32
+ * @version 3.5.1 (June 21, 2013)
33
  * @package Securimage
34
  *
35
  */
securimage/securimage_show.php CHANGED
@@ -39,7 +39,7 @@
39
  * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
40
  * @copyright 2013 Drew Phillips
41
  * @author Drew Phillips <drew@drew-phillips.com>
42
- * @version 3.5 (April 2013)
43
  * @package Securimage
44
  *
45
  */
39
  * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation
40
  * @copyright 2013 Drew Phillips
41
  * @author Drew Phillips <drew@drew-phillips.com>
42
+ * @version 3.5.1 (June 21, 2013)
43
  * @package Securimage
44
  *
45
  */