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