Cimy User Extra Fields - Version 2.0.2

Version Description

Download this release

Release Info

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

Code changes from version 2.0.1 to 2.0.2

README_OFFICIAL.txt CHANGED
@@ -512,8 +512,8 @@ A: Probably you installed the first time WordPress on PHP4 and you experienced t
512
  To fix the problem you need to create another administrator user and change admin user to another role and then back to administrator.
513
 
514
 
515
- Q: I'm using your plug-in on WordPress MultiSite per-blog installation and when I register one user all Extra Fields are ignored, why?
516
- Q: I get this error: 'Fatal error: Call to undefined function cimy_uef_mu_blog_exists()', why?
517
 
518
  A: Because you missed to move cimy_uef_mu_activation.php file please check carefully the installation steps.
519
 
@@ -569,6 +569,16 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
569
 
570
 
571
  CHANGELOG:
 
 
 
 
 
 
 
 
 
 
572
  v2.0.1 - 19/11/2010
573
  - Added possibility to change individual values "on the fly" into the Extra Fields from A&U Extended page (thanks to Cuántica Webs for sponsoring it)
574
  - Added Extra Fields group filtering in the A&U Extended page
512
  To fix the problem you need to create another administrator user and change admin user to another role and then back to administrator.
513
 
514
 
515
+ Q1: I'm using your plug-in on WordPress MultiSite per-blog installation and when I register one user all Extra Fields are ignored, why?
516
+ Q2: I get this error: 'Fatal error: Call to undefined function cimy_uef_mu_blog_exists()', why?
517
 
518
  A: Because you missed to move cimy_uef_mu_activation.php file please check carefully the installation steps.
519
 
569
 
570
 
571
  CHANGELOG:
572
+ v2.0.2 - 05/02/2011
573
+ - Fixed for some WordPress MS unique installations DB table definitions were wrongly set (thanks to Yuri)
574
+ - Fixed registration date now works for all registered users, regardless when the field has been added
575
+ - Fixed dropdown-multi can't deselect all values
576
+ - Fixed registration emails are now sent with Blog's name as sender
577
+ - Fixed Extra Fields were shown to "anonymous" users even when setting minimum level to "subscriber" (thanks to Bruno PS)
578
+ - Fixed Extra Fields were not included in the welcome email when email confirmation was enabled (non MS only) (thanks to Michael T. Lee)
579
+ - Code cleanup
580
+ - Updated French translation (Bruno PS)
581
+
582
  v2.0.1 - 19/11/2010
583
  - Added possibility to change individual values "on the fly" into the Extra Fields from A&U Extended page (thanks to Cuántica Webs for sponsoring it)
584
  - Added Extra Fields group filtering in the A&U Extended page
cimy_uef_admin.php CHANGED
@@ -287,6 +287,9 @@ function cimy_admin_define_extra_fields() {
287
  $show_level = $_POST['show_level'][$field_order];
288
  $store_rule['show_level'] = $show_level;
289
 
 
 
 
290
  // START CHECKING FOR ERRORS
291
  if ($name == "")
292
  $errors['name'] = __("Name not specified", $cimy_uef_domain);
@@ -451,106 +454,85 @@ function cimy_admin_define_extra_fields() {
451
  unset($store_rule['max_length']);
452
 
453
  // SHOW LEVEL
454
- $show_anonymous = '';
455
  $show_subscriber = '';
456
  $show_contributor = '';
457
  $show_author = '';
458
  $show_editor = '';
459
  $show_admin = '';
460
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  if ($action == "add") {
462
  // CAN BE MODIFIED OR NOT
463
  $selected_input[$store_rule['edit']] = ' selected="selected"';
464
 
465
  // NAME
466
- if ($name != "")
467
  $selected_input["name"] = $name;
468
- else
469
- $selected_input["name"] = '';
470
-
471
- // LABEL
472
- if ($label != "")
473
- $selected_input["label"] = $label;
474
- else
475
- $selected_input["label"] = '';
476
-
477
- // VALUE
478
- if ($value != "")
479
- $selected_input["value"] = $value;
480
- else
481
- $selected_input["value"] = '';
482
-
483
  // DESCRIPTION
484
- if ($desc != "")
485
  $selected_input["desc"] = $desc;
486
- else
487
- $selected_input["desc"] = '';
488
-
489
  // TYPE
490
- if ($type != "")
491
  $selected_input[$type] = ' selected="selected"';
492
- else
493
- $selected_input["text"] = ' selected="selected"';
494
-
495
  // MIN LEN
496
- if ($minlen != "")
497
  $selected_input["minlen"] = ' checked="checked"';
498
- else
499
- $selected_input["minlen"] = '';
500
-
501
  if (isset($store_rule['min_length']))
502
  $selected_input["min_length"] = $store_rule['min_length'];
503
- else
504
- $selected_input["min_length"] = '';
505
-
506
  // EXACT LEN
507
- if ($exactlen != "")
508
  $selected_input["exactlen"] = ' checked="checked"';
509
- else
510
- $selected_input["exactlen"] = '';
511
-
512
  if (isset($store_rule['exact_length']))
513
  $selected_input["exact_length"] = $store_rule['exact_length'];
514
- else
515
- $selected_input["exact_length"] = '';
516
 
517
  // MAX LEN
518
- if ($maxlen != "")
519
  $selected_input["maxlen"] = ' checked="checked"';
520
- else
521
- $selected_input["maxlen"] = '';
522
-
523
  if (isset($store_rule['max_length']))
524
  $selected_input["max_length"] = $store_rule['max_length'];
525
- else
526
- $selected_input["max_length"] = '';
527
-
528
  // EQUAL TO
529
  if (isset($equal))
530
  $selected_input["equal"] = ' checked="checked"';
531
- else
532
- $selected_input["equal"] = '';
533
-
534
  if (isset($store_rule['equal_to']))
535
  $selected_input["equal_to"] = $store_rule['equal_to'];
536
- else
537
- $selected_input["equal_to"] = '';
538
-
539
  if (isset($equalto_casesens))
540
  $selected_input["equal_to_case_sensitive"] = ' checked="checked"';
541
- else
542
- $selected_input["equal_to_case_sensitive"] = '';
543
 
544
  if (isset($equalto_regex))
545
  $selected_input["equal_to_regex"] = ' checked="checked"';
546
- else
547
- $selected_input["equal_to_regex"] = '';
548
 
549
  // CHECK EMAIL SYNTAX
550
  if ($store_rule['email'] == true)
551
  $selected_input["email"] = ' checked="checked"';
552
- else
553
- $selected_input["email"] = '';
554
 
555
  // SHOW LEVEL
556
  switch ($store_rule['show_level']) {
@@ -573,11 +555,13 @@ function cimy_admin_define_extra_fields() {
573
  $show_admin = ' selected="selected"';
574
  break;
575
  }
 
 
 
 
576
  }
577
  // action is not "add"
578
  else {
579
- $selected_input["ok_edit"] = ' selected="selected"';
580
- $show_anonymous = ' selected="selected"';
581
  }
582
 
583
  // CAN BE EMPTY
@@ -735,6 +719,10 @@ function cimy_admin_define_extra_fields() {
735
  <option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
736
  </select>
737
  <br />
 
 
 
 
738
  </td>
739
  <td align="center" style="vertical-align: middle;">
740
  <p class="submit" style="border-width: 0px;">
@@ -1010,6 +998,11 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
1010
  else
1011
  $show_in_blog = "";
1012
 
 
 
 
 
 
1013
  // SHOW LEVEL
1014
  $show_anonymous = '';
1015
  $show_subscriber = '';
@@ -1170,6 +1163,15 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $err
1170
  <option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
1171
  </select>
1172
  <br />
 
 
 
 
 
 
 
 
 
1173
  </td>
1174
  <td align="center" style="vertical-align: middle;">
1175
  <p class="submit" style="border-width: 0px;">
@@ -1816,6 +1818,7 @@ function cimy_admin_users_list_page() {
1816
  echo '</a>';
1817
  }
1818
  else if ($type == "registration-date") {
 
1819
  if (isset($rules['equal_to']))
1820
  $registration_date = cimy_get_formatted_date($field, $rules['equal_to']);
1821
  else
@@ -1827,7 +1830,7 @@ function cimy_admin_users_list_page() {
1827
  echo $field;
1828
 
1829
  echo "</div>";
1830
- if ((!in_array($type, $cimy_uef_file_types)) && ($type != "radio"))
1831
  echo "[<a href=\"#\" onclick=\"editExtraField(".$user_object->ID.", '".$name."'); return false;\">".__("Change")."</a>]";
1832
 
1833
  echo "&nbsp;</span></td>";
287
  $show_level = $_POST['show_level'][$field_order];
288
  $store_rule['show_level'] = $show_level;
289
 
290
+ $email_admin = $_POST['email_admin'][$field_order];
291
+ $email_admin == "1" ? $store_rule['email_admin'] = true : $store_rule['email_admin'] = false;
292
+
293
  // START CHECKING FOR ERRORS
294
  if ($name == "")
295
  $errors['name'] = __("Name not specified", $cimy_uef_domain);
454
  unset($store_rule['max_length']);
455
 
456
  // SHOW LEVEL
457
+ $show_anonymous = ' selected="selected"';
458
  $show_subscriber = '';
459
  $show_contributor = '';
460
  $show_author = '';
461
  $show_editor = '';
462
  $show_admin = '';
463
+
464
+ (empty($label)) ? $selected_input["label"] = '' : $selected_input["label"] = $label;
465
+ (empty($value)) ? $selected_input["value"] = '' : $selected_input["value"] = $value;
466
+ $selected_input["name"] = '';
467
+ $selected_input["desc"] = '';
468
+ $selected_input["text"] = ' selected="selected"';
469
+ $selected_input["min_length"] = '';
470
+ $selected_input["exact_length"] = '';
471
+ $selected_input["max_length"] = '';
472
+ $selected_input["equal"] = '';
473
+ $selected_input["equal_to"] = '';
474
+ $selected_input["equal_to_case_sensitive"] = '';
475
+ $selected_input["equal_to_regex"] = '';
476
+ $selected_input["email"] = '';
477
+ $selected_input["email_admin"] = '';
478
+ $selected_input["ok_edit"] = ' selected="selected"';
479
+ $selected_input["minlen"] = '';
480
+ $selected_input["exactlen"] = '';
481
+ $selected_input["maxlen"] = '';
482
+
483
  if ($action == "add") {
484
  // CAN BE MODIFIED OR NOT
485
  $selected_input[$store_rule['edit']] = ' selected="selected"';
486
 
487
  // NAME
488
+ if (!empty($name))
489
  $selected_input["name"] = $name;
490
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  // DESCRIPTION
492
+ if (!empty($desc))
493
  $selected_input["desc"] = $desc;
494
+
 
 
495
  // TYPE
496
+ if (!empty($type))
497
  $selected_input[$type] = ' selected="selected"';
498
+
 
 
499
  // MIN LEN
500
+ if (!empty($minlen))
501
  $selected_input["minlen"] = ' checked="checked"';
502
+
 
 
503
  if (isset($store_rule['min_length']))
504
  $selected_input["min_length"] = $store_rule['min_length'];
505
+
 
 
506
  // EXACT LEN
507
+ if (!empty($exactlen))
508
  $selected_input["exactlen"] = ' checked="checked"';
509
+
 
 
510
  if (isset($store_rule['exact_length']))
511
  $selected_input["exact_length"] = $store_rule['exact_length'];
 
 
512
 
513
  // MAX LEN
514
+ if (!empty($maxlen))
515
  $selected_input["maxlen"] = ' checked="checked"';
516
+
 
 
517
  if (isset($store_rule['max_length']))
518
  $selected_input["max_length"] = $store_rule['max_length'];
519
+
 
 
520
  // EQUAL TO
521
  if (isset($equal))
522
  $selected_input["equal"] = ' checked="checked"';
523
+
 
 
524
  if (isset($store_rule['equal_to']))
525
  $selected_input["equal_to"] = $store_rule['equal_to'];
526
+
 
 
527
  if (isset($equalto_casesens))
528
  $selected_input["equal_to_case_sensitive"] = ' checked="checked"';
 
 
529
 
530
  if (isset($equalto_regex))
531
  $selected_input["equal_to_regex"] = ' checked="checked"';
 
 
532
 
533
  // CHECK EMAIL SYNTAX
534
  if ($store_rule['email'] == true)
535
  $selected_input["email"] = ' checked="checked"';
 
 
536
 
537
  // SHOW LEVEL
538
  switch ($store_rule['show_level']) {
555
  $show_admin = ' selected="selected"';
556
  break;
557
  }
558
+
559
+ // EMAIL ADMIN
560
+ if ($store_rule['email_admin'] == true)
561
+ $selected_input["email_admin"] = ' checked="checked"';
562
  }
563
  // action is not "add"
564
  else {
 
 
565
  }
566
 
567
  // CAN BE EMPTY
719
  <option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
720
  </select>
721
  <br />
722
+
723
+ <!-- EMAIL ADMIN -->
724
+ <input type="checkbox" name="email_admin[0]" value="1"<?php echo $selected_input["email_admin"]; ?> /> <?php _e("Send an email to the admin if the user changes its value", $cimy_uef_domain); ?><br />
725
+
726
  </td>
727
  <td align="center" style="vertical-align: middle;">
728
  <p class="submit" style="border-width: 0px;">
998
  else
999
  $show_in_blog = "";
1000
 
1001
+ if ($rules['email_admin'])
1002
+ $email_admin = ' checked="checked"';
1003
+ else
1004
+ $email_admin = "";
1005
+
1006
  // SHOW LEVEL
1007
  $show_anonymous = '';
1008
  $show_subscriber = '';
1163
  <option value="8"<?php echo $show_admin ?>><?php echo translate_user_role("Administrator"); ?></option>
1164
  </select>
1165
  <br />
1166
+
1167
+ <?php
1168
+ if (!$wp_fields) {
1169
+ ?>
1170
+ <!-- EMAIL ADMIN -->
1171
+ <input type="checkbox" name="email_admin[<?php echo $order ?>]" value="1"<?php echo $email_admin ?> /> <?php _e("Send an email to the admin if the user changes its value", $cimy_uef_domain); ?><br />
1172
+ <?php
1173
+ }
1174
+ ?>
1175
  </td>
1176
  <td align="center" style="vertical-align: middle;">
1177
  <p class="submit" style="border-width: 0px;">
1818
  echo '</a>';
1819
  }
1820
  else if ($type == "registration-date") {
1821
+ $field = cimy_get_registration_date($user_object->ID, $field);
1822
  if (isset($rules['equal_to']))
1823
  $registration_date = cimy_get_formatted_date($field, $rules['equal_to']);
1824
  else
1830
  echo $field;
1831
 
1832
  echo "</div>";
1833
+ if ((!in_array($type, $cimy_uef_file_types)) && ($type != "radio") && ($type != "registration-date"))
1834
  echo "[<a href=\"#\" onclick=\"editExtraField(".$user_object->ID.", '".$name."'); return false;\">".__("Change")."</a>]";
1835
 
1836
  echo "&nbsp;</span></td>";
cimy_uef_email_handler.php CHANGED
@@ -24,24 +24,32 @@ function wp_new_user_notification($user_id, $plaintext_pass = '') {
24
  }
25
  endif;
26
 
27
- function wp_new_user_notification_original($user_id, $plaintext_pass = '', $include_fields = false) {
28
  $user = new WP_User($user_id);
29
 
30
  $user_login = stripslashes($user->user_login);
31
  $user_email = stripslashes($user->user_email);
 
32
 
33
  // The blogname option is escaped with esc_html on the way into the database in sanitize_option
34
  // we want to reverse this for the plain text arena of emails.
35
  $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
 
 
 
 
 
 
 
36
 
37
  $message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
38
  $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
39
  $message .= sprintf(__('E-mail: %s'), $user_email) . "\r\n";
40
 
41
  if ($include_fields)
42
- $message .= cimy_uef_mail_fields($user);
43
 
44
- @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
45
 
46
  if ( empty($plaintext_pass) )
47
  return;
@@ -50,10 +58,10 @@ function wp_new_user_notification_original($user_id, $plaintext_pass = '', $incl
50
  $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
51
 
52
  if ($include_fields)
53
- $message .= cimy_uef_mail_fields($user);
54
  $message .= wp_login_url() . "\r\n";
55
 
56
- wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $message);
57
  }
58
 
59
  function cimy_uef_mail_fields($user = false, $activation_data = false) {
@@ -73,9 +81,11 @@ function cimy_uef_mail_fields($user = false, $activation_data = false) {
73
  $meta = $activation_data["meta"];
74
 
75
  // neet to do it here, otherwise I pick up main options instead of blog's ones
76
- cimy_switch_to_blog($meta);
 
77
  $options = cimy_get_options();
78
- restore_current_blog();
 
79
 
80
  if (!$options["mail_include_fields"])
81
  return $message;
@@ -259,7 +269,8 @@ function cimy_uef_activate_signup($key) {
259
  if ( isset( $user_already_exists ) )
260
  return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
261
 
262
- wp_new_user_notification_original($user_id, $password);
 
263
  return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
264
  }
265
 
24
  }
25
  endif;
26
 
27
+ function wp_new_user_notification_original($user_id, $plaintext_pass = '', $include_fields = false, $activation_data = false) {
28
  $user = new WP_User($user_id);
29
 
30
  $user_login = stripslashes($user->user_login);
31
  $user_email = stripslashes($user->user_email);
32
+ $admin_email = get_option('admin_email');
33
 
34
  // The blogname option is escaped with esc_html on the way into the database in sanitize_option
35
  // we want to reverse this for the plain text arena of emails.
36
  $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
37
+ // Get the site domain and get rid of www.
38
+ $sitename = strtolower( $_SERVER['SERVER_NAME'] );
39
+ if ( substr( $sitename, 0, 4 ) == 'www.' )
40
+ $sitename = substr( $sitename, 4 );
41
+
42
+ $from_email = 'wordpress@' . $sitename;
43
+ $headers = sprintf("From: %s <%s>\r\n\\", $blogname, $from_email);
44
 
45
  $message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
46
  $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
47
  $message .= sprintf(__('E-mail: %s'), $user_email) . "\r\n";
48
 
49
  if ($include_fields)
50
+ $message .= cimy_uef_mail_fields($user, $activation_data);
51
 
52
+ @wp_mail($admin_email, sprintf(__('[%s] New User Registration'), $blogname), $message, $headers);
53
 
54
  if ( empty($plaintext_pass) )
55
  return;
58
  $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
59
 
60
  if ($include_fields)
61
+ $message .= cimy_uef_mail_fields($user, $activation_data);
62
  $message .= wp_login_url() . "\r\n";
63
 
64
+ wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogname), $message, $headers);
65
  }
66
 
67
  function cimy_uef_mail_fields($user = false, $activation_data = false) {
81
  $meta = $activation_data["meta"];
82
 
83
  // neet to do it here, otherwise I pick up main options instead of blog's ones
84
+ if (is_multisite())
85
+ cimy_switch_to_blog($meta);
86
  $options = cimy_get_options();
87
+ if (is_multisite())
88
+ restore_current_blog();
89
 
90
  if (!$options["mail_include_fields"])
91
  return $message;
269
  if ( isset( $user_already_exists ) )
270
  return new WP_Error( 'user_already_exists', __( 'That username is already activated.', $cimy_uef_domain), $signup);
271
 
272
+ $options = cimy_get_options();
273
+ wp_new_user_notification_original($user_id, $password, $options["mail_include_fields"], $meta);
274
  return array('user_id' => $user_id, 'password' => $password, 'meta' => $meta);
275
  }
276
 
cimy_uef_functions.php CHANGED
@@ -282,7 +282,7 @@ function get_cimyFieldValue($user_id, $field_name, $field_value=false) {
282
  else
283
  return NULL;
284
 
285
- $field_data = cimy_change_radio_labels($field_data);
286
 
287
  if (($field_name) && ($user_id))
288
  $field_data = $field_data[0]['VALUE'];
@@ -290,9 +290,9 @@ function get_cimyFieldValue($user_id, $field_name, $field_value=false) {
290
  return $field_data;
291
  }
292
 
293
- function cimy_change_radio_labels($field_data) {
294
  $i = 0;
295
-
296
  while ($i < count($field_data)) {
297
  if ($field_data[$i]['TYPE'] == "radio") {
298
  $field_data[$i]['VALUE'] = $field_data[$i]['LABEL'];
@@ -302,7 +302,13 @@ function cimy_change_radio_labels($field_data) {
302
 
303
  $field_data[$i]['LABEL'] = $ret['label'];
304
  }
305
-
 
 
 
 
 
 
306
  $i++;
307
  }
308
 
@@ -481,4 +487,17 @@ function cimy_switch_current_blog($hidden_field=false) {
481
  }
482
  }
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  ?>
282
  else
283
  return NULL;
284
 
285
+ $field_data = cimy_change_radio_labels($field_data, $user_id);
286
 
287
  if (($field_name) && ($user_id))
288
  $field_data = $field_data[0]['VALUE'];
290
  return $field_data;
291
  }
292
 
293
+ function cimy_change_radio_labels($field_data, $user_id) {
294
  $i = 0;
295
+
296
  while ($i < count($field_data)) {
297
  if ($field_data[$i]['TYPE'] == "radio") {
298
  $field_data[$i]['VALUE'] = $field_data[$i]['LABEL'];
302
 
303
  $field_data[$i]['LABEL'] = $ret['label'];
304
  }
305
+ else if ($field_data[$i]['TYPE'] == "registration-date") {
306
+ if (isset($field_data[$i]['user_id']))
307
+ $field_data[$i]['VALUE'] = cimy_get_registration_date($field_data[$i]['user_id'], $field_data[$i]['VALUE']);
308
+ else
309
+ $field_data[$i]['VALUE'] = cimy_get_registration_date($user_id, $field_data[$i]['VALUE']);
310
+ }
311
+
312
  $i++;
313
  }
314
 
487
  }
488
  }
489
 
490
+ function cimy_get_registration_date($user_id, $value) {
491
+ if (!empty($value))
492
+ return $value;
493
+
494
+ $author_meta = get_userdata(intval($user_id));
495
+ $author_registered = $author_meta->user_registered;
496
+ if (!empty($author_registered))
497
+ if (($date = strtotime($author_registered)) !== FALSE);
498
+ return $date;
499
+
500
+ return "";
501
+ }
502
+
503
  ?>
cimy_uef_profile.php CHANGED
@@ -121,6 +121,7 @@ function cimy_extract_ExtraFields() {
121
  echo "\n\t";
122
 
123
  $value = esc_attr($value);
 
124
 
125
  switch($type) {
126
  case "picture-url":
@@ -318,6 +319,7 @@ function cimy_extract_ExtraFields() {
318
  break;
319
 
320
  case "registration-date":
 
321
  if (isset($rules['equal_to']))
322
  $obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
323
  else
@@ -378,6 +380,7 @@ function cimy_extract_ExtraFields() {
378
  global $cimy_uef_plugins_dir;
379
 
380
  $blog_path = $cuef_upload_path;
 
381
 
382
  if (($cimy_uef_plugins_dir == "plugins") && (is_multisite())) {
383
  global $blog_id;
@@ -419,8 +422,8 @@ function cimy_extract_ExtraFields() {
419
  // take the "can be modified" rule just set before
420
  $dis_delete_img = $obj_disabled;
421
 
422
- echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
423
- echo "\n\t\t";
424
  }
425
 
426
  echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
@@ -454,6 +457,8 @@ function cimy_extract_ExtraFields() {
454
  echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
455
  }
456
 
 
 
457
  // write to the html the form object built
458
  if ($type != "registration-date")
459
  echo $form_object;
@@ -489,12 +494,12 @@ function cimy_extract_ExtraFields() {
489
  }
490
 
491
  function cimy_update_ExtraFields() {
492
- global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level;
493
 
494
  // if updating meta-data from registration post then exit
495
  if (isset($_POST['cimy_post']))
496
  return;
497
-
498
  if (isset($_POST['user_id'])) {
499
  $get_user_id = $_POST['user_id'];
500
 
@@ -505,15 +510,18 @@ function cimy_update_ExtraFields() {
505
  return;
506
 
507
  $get_user_id = intval($get_user_id);
 
 
 
508
  $extra_fields = get_cimyFields(false, true);
509
 
510
  $query = "UPDATE ".$wpdb_data_table." SET VALUE=CASE FIELD_ID";
511
  $i = 0;
512
 
513
  $field_ids = "";
 
514
 
515
  foreach ($extra_fields as $thisField) {
516
-
517
  $field_id = $thisField["ID"];
518
  $name = $thisField["NAME"];
519
  $type = $thisField["TYPE"];
@@ -535,6 +543,8 @@ function cimy_update_ExtraFields() {
535
  continue;
536
  }
537
 
 
 
538
  if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
539
  if ($type == "dropdown-multi")
540
  $field_value = stripslashes(implode(",", $_POST[$input_name]));
@@ -561,22 +571,27 @@ function cimy_update_ExtraFields() {
561
  $query.= " WHEN ".$field_id." THEN ";
562
 
563
  switch ($type) {
 
 
 
 
564
  case 'picture-url':
565
  case 'textarea':
566
  case 'textarea-rich':
567
- case 'dropdown':
568
- case 'dropdown-multi':
569
  case 'password':
570
  case 'text':
571
  $value = "'".$field_value."'";
 
572
  break;
573
 
574
  case 'checkbox':
575
  $value = $field_value == '1' ? "'YES'" : "'NO'";
 
576
  break;
577
 
578
  case 'radio':
579
  $value = $field_value == $field_id ? "'selected'" : "''";
 
580
  break;
581
  }
582
 
@@ -588,9 +603,6 @@ function cimy_update_ExtraFields() {
588
  $rules = $thisField['RULES'];
589
 
590
  if (in_array($type, $cimy_uef_file_types)) {
591
- $profileuser = get_user_to_edit($get_user_id);
592
- $user_login = $profileuser->user_login;
593
-
594
  if ($type == "avatar") {
595
  // since avatars are drawn max to 512px then we can save bandwith resizing, do it!
596
  $rules['equal_to'] = 512;
@@ -601,8 +613,8 @@ function cimy_update_ExtraFields() {
601
  else
602
  $delete_file = false;
603
 
604
- if (isset($_POST[$input_name.'_oldfile']))
605
- $old_file = stripslashes($_POST[$input_name.'_oldfile']);
606
  else
607
  $old_file = false;
608
 
@@ -617,10 +629,13 @@ function cimy_update_ExtraFields() {
617
  $field_ids.= $field_id;
618
 
619
  $value = "'".$field_value."'";
620
-
 
621
  $query.= " WHEN ".$field_id." THEN ";
622
  $query.= $value;
623
  }
 
 
624
  }
625
 
626
  if ($type == 'checkbox') {
@@ -634,12 +649,42 @@ function cimy_update_ExtraFields() {
634
  $i = 1;
635
 
636
  $field_ids.= $field_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
 
 
 
 
 
 
 
 
638
  $query.= " WHEN ".$field_id." THEN ";
639
- $query.= "'NO'";
640
  }
641
  }
642
  }
 
 
 
 
643
  }
644
 
645
  if ($i > 0) {
@@ -648,6 +693,13 @@ function cimy_update_ExtraFields() {
648
  // $query WILL BE: UPDATE <table> SET VALUE=CASE FIELD_ID WHEN <field_id1> THEN <value1> [WHEN ... THEN ...] ELSE FIELD_ID END WHERE FIELD_ID IN(<field_id1>, [<field_id2>...]) AND USER_ID=<user_id>
649
  $wpdb->query($query);
650
  }
 
 
 
 
 
 
 
651
  }
652
 
653
  ?>
121
  echo "\n\t";
122
 
123
  $value = esc_attr($value);
124
+ $old_value = esc_attr($old_value);
125
 
126
  switch($type) {
127
  case "picture-url":
319
  break;
320
 
321
  case "registration-date":
322
+ $value = cimy_get_registration_date($get_user_id, $value);
323
  if (isset($rules['equal_to']))
324
  $obj_value = cimy_get_formatted_date($value, $rules['equal_to']);
325
  else
380
  global $cimy_uef_plugins_dir;
381
 
382
  $blog_path = $cuef_upload_path;
383
+ $old_value = basename($old_value);
384
 
385
  if (($cimy_uef_plugins_dir == "plugins") && (is_multisite())) {
386
  global $blog_id;
422
  // take the "can be modified" rule just set before
423
  $dis_delete_img = $obj_disabled;
424
 
425
+ // echo '<input type="hidden" name="'.$input_name.'_oldfile" value="'.basename($value).'" />';
426
+ // echo "\n\t\t";
427
  }
428
 
429
  echo '<input type="checkbox" name="'.$input_name.'_del" value="1" style="width:auto; border:0; background:white;"'.$dis_delete_img.' />';
457
  echo "<br />".__("Picture URL:", $cimy_uef_domain)."<br />\n\t\t";
458
  }
459
 
460
+ // write previous value
461
+ echo "<input type=\"hidden\" name=\"".$input_name."_".$field_id."_prev_value\" value=\"".$old_value."\" />\n\t\t";
462
  // write to the html the form object built
463
  if ($type != "registration-date")
464
  echo $form_object;
494
  }
495
 
496
  function cimy_update_ExtraFields() {
497
+ global $wpdb, $wpdb_data_table, $user_ID, $max_length_value, $fields_name_prefix, $cimy_uef_file_types, $user_level, $cimy_uef_domain;
498
 
499
  // if updating meta-data from registration post then exit
500
  if (isset($_POST['cimy_post']))
501
  return;
502
+
503
  if (isset($_POST['user_id'])) {
504
  $get_user_id = $_POST['user_id'];
505
 
510
  return;
511
 
512
  $get_user_id = intval($get_user_id);
513
+ $profileuser = get_user_to_edit($get_user_id);
514
+ $user_login = $profileuser->user_login;
515
+ $user_displayname = $profileuser->display_name;
516
  $extra_fields = get_cimyFields(false, true);
517
 
518
  $query = "UPDATE ".$wpdb_data_table." SET VALUE=CASE FIELD_ID";
519
  $i = 0;
520
 
521
  $field_ids = "";
522
+ $mail_changes = "";
523
 
524
  foreach ($extra_fields as $thisField) {
 
525
  $field_id = $thisField["ID"];
526
  $name = $thisField["NAME"];
527
  $type = $thisField["TYPE"];
543
  continue;
544
  }
545
 
546
+ $prev_value = $wpdb->escape(stripslashes($_POST[$input_name."_".$field_id."_prev_value"]));
547
+
548
  if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
549
  if ($type == "dropdown-multi")
550
  $field_value = stripslashes(implode(",", $_POST[$input_name]));
571
  $query.= " WHEN ".$field_id." THEN ";
572
 
573
  switch ($type) {
574
+ case 'dropdown':
575
+ case 'dropdown-multi':
576
+ $ret = cimy_dropDownOptions($label, $field_value);
577
+ $label = $ret['label'];
578
  case 'picture-url':
579
  case 'textarea':
580
  case 'textarea-rich':
 
 
581
  case 'password':
582
  case 'text':
583
  $value = "'".$field_value."'";
584
+ $prev_value = "'".$prev_value."'";
585
  break;
586
 
587
  case 'checkbox':
588
  $value = $field_value == '1' ? "'YES'" : "'NO'";
589
+ $prev_value = $prev_value == "YES" ? "'YES'" : "'NO'";
590
  break;
591
 
592
  case 'radio':
593
  $value = $field_value == $field_id ? "'selected'" : "''";
594
+ $prev_value = "'".$prev_value."'";
595
  break;
596
  }
597
 
603
  $rules = $thisField['RULES'];
604
 
605
  if (in_array($type, $cimy_uef_file_types)) {
 
 
 
606
  if ($type == "avatar") {
607
  // since avatars are drawn max to 512px then we can save bandwith resizing, do it!
608
  $rules['equal_to'] = 512;
613
  else
614
  $delete_file = false;
615
 
616
+ if (isset($_POST[$input_name."_".$field_id."_prev_value"]))
617
+ $old_file = stripslashes($_POST[$input_name."_".$field_id."_prev_value"]);
618
  else
619
  $old_file = false;
620
 
629
  $field_ids.= $field_id;
630
 
631
  $value = "'".$field_value."'";
632
+ $prev_value = "'".$prev_value."'";
633
+
634
  $query.= " WHEN ".$field_id." THEN ";
635
  $query.= $value;
636
  }
637
+ else
638
+ $prev_value = $value;
639
  }
640
 
641
  if ($type == 'checkbox') {
649
  $i = 1;
650
 
651
  $field_ids.= $field_id;
652
+
653
+ $field_value = "NO";
654
+ $value = "'".$field_value."'";
655
+ $prev_value = $prev_value == "YES" ? "'YES'" : "'NO'";
656
+
657
+ $query.= " WHEN ".$field_id." THEN ";
658
+ $query.= $value;
659
+ }
660
+ }
661
+
662
+ if ($type == 'dropdown-multi') {
663
+ // if can be editable then write ''
664
+ // there is no way to understand if was YES or NO previously
665
+ // without adding other hidden inputs so write always
666
+ if (($rules['edit'] == "ok_edit") || (($rules['edit'] == 'edit_only_by_admin') && (current_user_can('edit_users')))) {
667
+ if ($i > 0)
668
+ $field_ids.= ", ";
669
+ else
670
+ $i = 1;
671
 
672
+ $field_ids.= $field_id;
673
+
674
+ $field_value = '';
675
+ $value = "'".$field_value."'";
676
+ $prev_value = "'".$prev_value."'";
677
+ $ret = cimy_dropDownOptions($label, $field_value);
678
+ $label = $ret['label'];
679
  $query.= " WHEN ".$field_id." THEN ";
680
+ $query.= $value;
681
  }
682
  }
683
  }
684
+ if (($rules["email_admin"]) && ($value != $prev_value) && ($type != "registration-date")) {
685
+ $mail_changes.= sprintf(__("%s previous value: %s new value: %s", $cimy_uef_domain), $label, stripslashes($prev_value), stripslashes($value));
686
+ $mail_changes.= "\r\n";
687
+ }
688
  }
689
 
690
  if ($i > 0) {
693
  // $query WILL BE: UPDATE <table> SET VALUE=CASE FIELD_ID WHEN <field_id1> THEN <value1> [WHEN ... THEN ...] ELSE FIELD_ID END WHERE FIELD_ID IN(<field_id1>, [<field_id2>...]) AND USER_ID=<user_id>
694
  $wpdb->query($query);
695
  }
696
+
697
+ // mail only if set and if there is something to mail
698
+ if (!empty($mail_changes)) {
699
+ $admin_email = get_option('admin_email');
700
+ $mail_subject = sprintf(__("%s (%s) has changed one or more fields", $cimy_uef_domain), $user_displayname, $user_login);
701
+ wp_mail($admin_email, $mail_subject, $mail_changes);
702
+ }
703
  }
704
 
705
  ?>
cimy_uef_register.php CHANGED
@@ -80,9 +80,11 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
80
  if ($_POST["action"] == "adduser")
81
  return;
82
 
83
- // if not set, set to -1 == anonymous
84
- if (!isset($user_level))
85
- $user_level = -1;
 
 
86
 
87
  $options = cimy_get_options();
88
  $extra_fields = get_cimyFields(false, true);
@@ -128,7 +130,7 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
128
 
129
  // if the current user LOGGED IN has not enough permissions to see the field, skip it
130
  // apply only for EXTRA FIELDS
131
- if ($user_level < $rules['show_level'])
132
  continue;
133
 
134
  // if show_level == anonymous then do NOT ovverride other show_xyz rules
@@ -201,7 +203,7 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
201
  break;
202
 
203
  case 'registration-date':
204
- $field_value = mktime();
205
  break;
206
  }
207
 
@@ -277,9 +279,11 @@ function cimy_registration_check($user_login, $user_email, $errors) {
277
  if ($_POST["action"] == "adduser")
278
  return $errors;
279
 
280
- // if not set, set to -1 == anonymous
281
- if (!isset($user_level))
282
- $user_level = -1;
 
 
283
 
284
  $extra_fields = get_cimyFields(false, true);
285
  $wp_fields = get_cimyFields(true);
@@ -315,7 +319,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
315
 
316
  // if the current user LOGGED IN has not enough permissions to see the field, skip it
317
  // apply only for EXTRA FIELDS
318
- if ($user_level < $rules['show_level'])
319
  continue;
320
 
321
  // if show_level == anonymous then do NOT ovverride other show_xyz rules
@@ -382,7 +386,7 @@ function cimy_registration_check($user_login, $user_email, $errors) {
382
  $file_size = $_FILES[$input_name]['size'] / 1024;
383
  $file_type = $_FILES[$input_name]['type'];
384
  $value = $_FILES[$input_name]['name'];
385
- $old_file = $_POST[$input_name."_oldfile"];
386
  $del_old_file = $_POST[$input_name."_del"];
387
  }
388
 
@@ -557,9 +561,11 @@ function cimy_registration_form($errors=null, $show_type=0) {
557
 
558
  // cimy_switch_to_blog();
559
 
560
- // if not set, set to -1 == anonymous
561
- if (!isset($user_level))
562
- $user_level = -1;
 
 
563
 
564
  // needed by cimy_uef_init_mce.php
565
  $cimy_uef_register_page = true;
@@ -629,7 +635,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
629
 
630
  // if the current user LOGGED IN has not enough permissions to see the field, skip it
631
  // apply only for EXTRA FIELDS
632
- if (($user_level < $rules['show_level']) && ($i == 2))
633
  continue;
634
 
635
  // if show_level == anonymous then do NOT ovverride other show_xyz rules
80
  if ($_POST["action"] == "adduser")
81
  return;
82
 
83
+ $my_user_level = $user_level;
84
+
85
+ // -1 == anonymous
86
+ if (!is_user_logged_in())
87
+ $my_user_level = -1;
88
 
89
  $options = cimy_get_options();
90
  $extra_fields = get_cimyFields(false, true);
130
 
131
  // if the current user LOGGED IN has not enough permissions to see the field, skip it
132
  // apply only for EXTRA FIELDS
133
+ if ($my_user_level < $rules['show_level'])
134
  continue;
135
 
136
  // if show_level == anonymous then do NOT ovverride other show_xyz rules
203
  break;
204
 
205
  case 'registration-date':
206
+ $field_value = time();
207
  break;
208
  }
209
 
279
  if ($_POST["action"] == "adduser")
280
  return $errors;
281
 
282
+ $my_user_level = $user_level;
283
+
284
+ // -1 == anonymous
285
+ if (!is_user_logged_in())
286
+ $my_user_level = -1;
287
 
288
  $extra_fields = get_cimyFields(false, true);
289
  $wp_fields = get_cimyFields(true);
319
 
320
  // if the current user LOGGED IN has not enough permissions to see the field, skip it
321
  // apply only for EXTRA FIELDS
322
+ if ($my_user_level < $rules['show_level'])
323
  continue;
324
 
325
  // if show_level == anonymous then do NOT ovverride other show_xyz rules
386
  $file_size = $_FILES[$input_name]['size'] / 1024;
387
  $file_type = $_FILES[$input_name]['type'];
388
  $value = $_FILES[$input_name]['name'];
389
+ $old_file = $_POST[$input_name."_".$field_id."_prev_value"];
390
  $del_old_file = $_POST[$input_name."_del"];
391
  }
392
 
561
 
562
  // cimy_switch_to_blog();
563
 
564
+ $my_user_level = $user_level;
565
+
566
+ // -1 == anonymous
567
+ if (!is_user_logged_in())
568
+ $my_user_level = -1;
569
 
570
  // needed by cimy_uef_init_mce.php
571
  $cimy_uef_register_page = true;
635
 
636
  // if the current user LOGGED IN has not enough permissions to see the field, skip it
637
  // apply only for EXTRA FIELDS
638
+ if (($my_user_level < $rules['show_level']) && ($i == 2))
639
  continue;
640
 
641
  // if show_level == anonymous then do NOT ovverride other show_xyz rules
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
  Plugin Description: Add some useful fields to registration and user's info
6
- Version: 2.0.1
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  */
@@ -11,7 +11,7 @@ Author URI: mailto:cimmino.marco@gmail.com
11
  /*
12
 
13
  Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
14
- Copyright (c) 2006-2010 Marco Cimmino
15
 
16
  Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
17
  Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
@@ -40,21 +40,25 @@ global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $w
40
 
41
  function cimy_uef_set_tables() {
42
  global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $cuef_upload_path, $cimy_uef_domain, $cimy_uef_plugins_dir;
 
43
 
44
  if (is_multisite()) {
45
  $cimy_uef_plugins_dir = __FILE__;
46
  if (!stristr($cimy_uef_plugins_dir, "mu-plugins") === false)
 
 
47
  $cimy_uef_plugins_dir = "mu-plugins";
 
48
  else
49
  $cimy_uef_plugins_dir = "plugins";
50
  }
51
 
52
- $old_wpdb_data_table = $wpdb->prefix."cimy_data";
53
- $old_wpdb_fields_table = $wpdb->prefix."cimy_fields";
54
 
55
- $wpdb_data_table = $wpdb->prefix."cimy_uef_data";
56
- $wpdb_fields_table = $wpdb->prefix."cimy_uef_fields";
57
- $wpdb_wp_fields_table = $wpdb->prefix."cimy_uef_wp_fields";
58
  }
59
 
60
  cimy_uef_set_tables();
@@ -185,13 +189,13 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
185
  require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
186
 
187
  $cimy_uef_name = "Cimy User Extra Fields";
188
- $cimy_uef_version = "2.0.1";
189
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
190
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
191
 
192
  $start_cimy_uef_comment = "<!--\n";
193
  $start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version."\n";
194
- $start_cimy_uef_comment .= "\tCopyright (c) 2006-2010 Marco Cimmino\n";
195
  $start_cimy_uef_comment .= "\t".$cimy_uef_url."\n";
196
  $start_cimy_uef_comment .= "-->\n";
197
 
3
  Plugin Name: Cimy User Extra Fields
4
  Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
5
  Plugin Description: Add some useful fields to registration and user's info
6
+ Version: 2.0.2
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  */
11
  /*
12
 
13
  Cimy User Extra Fields - Allows adding mySQL Data fields to store/add more user info
14
+ Copyright (c) 2006-2011 Marco Cimmino
15
 
16
  Code for drop-down support is in part from Raymond Elferink raymond@raycom.com
17
  Code for regular expression under equalTo rule is in part from Shane Hartman shane@shanehartman.com
40
 
41
  function cimy_uef_set_tables() {
42
  global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $cuef_upload_path, $cimy_uef_domain, $cimy_uef_plugins_dir;
43
+ $prefix = $wpdb->prefix;
44
 
45
  if (is_multisite()) {
46
  $cimy_uef_plugins_dir = __FILE__;
47
  if (!stristr($cimy_uef_plugins_dir, "mu-plugins") === false)
48
+ {
49
+ $prefix = $wpdb->base_prefix;
50
  $cimy_uef_plugins_dir = "mu-plugins";
51
+ }
52
  else
53
  $cimy_uef_plugins_dir = "plugins";
54
  }
55
 
56
+ $old_wpdb_data_table = $prefix."cimy_data";
57
+ $old_wpdb_fields_table = $prefix."cimy_fields";
58
 
59
+ $wpdb_data_table = $prefix."cimy_uef_data";
60
+ $wpdb_fields_table = $prefix."cimy_uef_fields";
61
+ $wpdb_wp_fields_table = $prefix."cimy_uef_wp_fields";
62
  }
63
 
64
  cimy_uef_set_tables();
189
  require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
190
 
191
  $cimy_uef_name = "Cimy User Extra Fields";
192
+ $cimy_uef_version = "2.0.2";
193
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
194
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
195
 
196
  $start_cimy_uef_comment = "<!--\n";
197
  $start_cimy_uef_comment .= "\tStart code from ".$cimy_uef_name." ".$cimy_uef_version."\n";
198
+ $start_cimy_uef_comment .= "\tCopyright (c) 2006-2011 Marco Cimmino\n";
199
  $start_cimy_uef_comment .= "\t".$cimy_uef_url."\n";
200
  $start_cimy_uef_comment .= "-->\n";
201
 
langs/cimy_uef-bg_BG.mo CHANGED
Binary file
langs/cimy_uef-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-10-13 22:39+0300\n"
6
- "PO-Revision-Date: 2010-10-13 22:39+0300\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,519 +16,523 @@ msgstr ""
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
18
 
19
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
20
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
21
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
22
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:442
23
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
24
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
25
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
26
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
27
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
28
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
29
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
30
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
31
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
32
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
33
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1203
 
34
  msgid "ERROR"
35
  msgstr "ГРЕШКА"
36
 
37
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:403
38
  msgid "does not match."
39
  msgstr ""
40
 
41
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
42
  msgid "hasn&#8217;t a correct email syntax."
43
  msgstr "няма правилен email синтаксис."
44
 
45
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:421
46
  msgid "couldn&#8217;t be empty."
47
  msgstr "не може да е празно."
48
 
49
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:441
50
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
51
  msgid "isn&#8217;t correct"
52
  msgstr "не е правилно"
53
 
54
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
55
  msgid "YES"
56
  msgstr "ДА"
57
 
58
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:447
59
  msgid "NO"
60
  msgstr "НЕ"
61
 
62
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:452
63
  msgid "should be"
64
  msgstr "трябва да е"
65
 
66
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:461
67
  msgid "should be an image."
68
  msgstr "трябва да е снимка."
69
 
70
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:472
71
  msgid "couldn&#8217;t have size less than"
72
  msgstr "не може да е с по-малък размер от"
73
 
74
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:478
75
  msgid "couldn&#8217;t have length less than"
76
  msgstr "не може да има по-малка дължина от"
77
 
78
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
79
  msgid "couldn&#8217;t have size different than"
80
  msgstr "не може да има размер различен от"
81
 
82
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:496
83
  msgid "couldn&#8217;t have length different than"
84
  msgstr "не може да има дължина различна от"
85
 
86
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:508
87
  msgid "couldn&#8217;t have size more than"
88
  msgstr "не може да има размер по-голям от"
89
 
90
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:514
91
  msgid "couldn&#8217;t have length more than"
92
  msgstr "не може да има дължина по-голяма от"
93
 
94
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:527
95
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:547
96
  msgid "Typed code is not correct."
97
  msgstr ""
98
 
99
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:824
100
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
101
  #, fuzzy
102
  msgid "Please upload a file with one of the following extensions"
103
  msgstr "Моля качете снимка с някое от тези разширения"
104
 
105
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
106
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:368
107
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
108
  msgid "Please upload an image with one of the following extensions"
109
  msgstr "Моля качете снимка с някое от тези разширения"
110
 
111
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:910
112
  msgid "Strength indicator"
113
  msgstr ""
114
 
115
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:911
116
  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; )."
117
  msgstr ""
118
 
119
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:948
120
  #, fuzzy
121
  msgid "Change image"
122
  msgstr "Смени реда"
123
 
124
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:951
125
  msgid "Insert the code:"
126
  msgstr ""
127
 
128
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
129
  #, fuzzy
130
  msgid "no fieldset"
131
  msgstr "Опции по колекция"
132
 
133
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:40
 
 
 
 
134
  msgid "WordPress Fields table emptied"
135
  msgstr "Таблицата с WordPress полета е изпразнена"
136
 
137
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:45
138
  msgid "WordPress Fields table deleted"
139
  msgstr "Таблицата с WordPress полета е изтрита"
140
 
141
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:54
142
  msgid "Extra Fields table emptied"
143
  msgstr "Таблицата с допълнителни полета е изпразнена"
144
 
145
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:59
146
  msgid "Extra Fields table deleted"
147
  msgstr "Таблицата с допълнителни полета е изтрита"
148
 
149
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:68
150
  msgid "Users Data table emptied"
151
  msgstr "Таблицата с потребителски данни е изпразнена"
152
 
153
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:73
154
  msgid "Users Data table deleted"
155
  msgstr "Таблицата с потребителски данни е изтрита"
156
 
157
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:84
158
  msgid "Options set to default values"
159
  msgstr "Вариантите са сменени по подразбиране"
160
 
161
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:90
162
  msgid "Options deleted"
163
  msgstr "Вариантите са изтрити"
164
 
165
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:344
166
  msgid "Options changed"
167
  msgstr "Вариантите са променени"
168
 
169
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:471
170
  msgid "This operation will create/update all missing tables/options, do you want to proceed?"
171
  msgstr ""
172
 
173
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:480
174
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:652
175
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:726
176
  msgid "Options"
177
  msgstr "Настройки"
178
 
179
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
180
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
181
  msgid "Add a new Field"
182
  msgstr "Добави друго поле"
183
 
184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
185
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:796
186
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1823
187
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1828
188
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
189
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
190
  msgid "Extra Fields"
191
  msgstr "Допълнителни полета"
192
 
193
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:489
194
  msgid "Support the Cimy Project"
195
  msgstr ""
196
 
197
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:497
198
  msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
199
  msgstr ""
200
 
201
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:507
202
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
203
  msgid "SUCCESSFUL"
204
  msgstr "УСПЕХ"
205
 
206
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:520
207
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:826
208
  msgid "Save Changes"
209
  msgstr "Запази промените"
210
 
211
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
212
  msgid "General"
213
  msgstr "Общи"
214
 
215
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:529
216
  msgid "installed is"
217
  msgstr "инсталирано е"
218
 
219
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
220
  msgid "OPTIONS DELETED!"
221
  msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
222
 
223
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
224
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:541
225
  msgid "Fix the problem"
226
  msgstr ""
227
 
228
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:539
229
  msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
230
  msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
231
 
232
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:547
233
  msgid "Picture/Avatar upload"
234
  msgstr ""
235
 
236
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
237
  msgid "is created and writable"
238
  msgstr ""
239
 
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:553
241
  msgid "is NOT created or webserver does NOT have permission to write on it"
242
  msgstr ""
243
 
244
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:560
245
  #, fuzzy
246
  msgid "Show all fields in the welcome email"
247
  msgstr "Покажи полето при регистрация"
248
 
249
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
250
  msgid "the email sent to the admin and to the user upon registration will have all fields"
251
  msgstr ""
252
 
253
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:572
254
  msgid "Enable email confirmation"
255
  msgstr ""
256
 
257
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
258
  msgid "user that registers should confirm its email address via a link click"
259
  msgstr ""
260
 
261
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:578
262
  msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
263
  msgstr ""
264
 
265
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:585
266
  msgid "Redirect to the source"
267
  msgstr ""
268
 
269
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
270
  msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
271
  msgstr ""
272
 
273
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:597
274
  msgid "No captcha"
275
  msgstr ""
276
 
277
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:605
278
  msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
279
  msgstr ""
280
 
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
282
  msgid "Public KEY"
283
  msgstr ""
284
 
285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
286
  msgid "Private KEY"
287
  msgstr ""
288
 
289
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:621
290
  msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
291
  msgstr ""
292
 
293
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:624
294
  msgid "This captcha is probably weaker, but is easier for users"
295
  msgstr ""
296
 
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
298
  #, php-format
299
  msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
300
  msgstr ""
301
 
302
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:635
303
  msgid "Change login/registration page logo"
304
  msgstr ""
305
 
306
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:640
307
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
308
  #, fuzzy
309
  msgid "Delete the picture"
310
  msgstr "Изтрий поле"
311
 
312
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:643
313
  msgid "Maximum recommended logo width is 328px, but any height should work."
314
  msgstr ""
315
 
316
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:649
317
  msgid "Database"
318
  msgstr "База данни"
319
 
320
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:658
321
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:676
322
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:695
323
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:712
324
  msgid "select action"
325
  msgstr "избери действие"
326
 
327
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
328
  msgid "Default values"
329
  msgstr "Стойност по подразбиране"
330
 
331
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
332
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
333
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
334
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
335
  msgid "Delete"
336
  msgstr "Изтрий"
337
 
338
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
339
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:683
340
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
341
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:719
342
  msgid "NOT PRESENT"
343
  msgstr "НЕ СЪЩЕСТВУВА"
344
 
345
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:669
346
  msgid "WordPress Fields table"
347
  msgstr "Таблица с WordPress полета"
348
 
349
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
351
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
352
  msgid "Empty"
353
  msgstr "Празно"
354
 
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
356
  msgid "Extra Fields table"
357
  msgstr "Таблица с допълнителни полета"
358
 
359
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:706
360
  msgid "Users Data table"
361
  msgstr "Таблица с потребителски данни"
362
 
363
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
364
  msgid "all data inserted by users in all and only extra fields"
365
  msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
366
 
367
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:724
368
  msgid "Force tables creation"
369
  msgstr "Задължително създаване на таблица"
370
 
371
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
372
  msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
373
  msgstr ""
374
 
375
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:733
376
  msgid "User Profile"
377
  msgstr "Потребителски профил"
378
 
379
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:736
380
  #, fuzzy
381
  msgid "Extra Fields section title"
382
  msgstr "Таблица с допълнителни полета"
383
 
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
385
  msgid "Fieldset's titles, separates with comma"
386
  msgstr "Заглавията на колекция разделени със запетайка"
387
 
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
389
  msgid "example: title1,title2,title3"
390
  msgstr "пример: заглавие1,заглавие2,заглавие3"
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
393
  msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
394
  msgstr ""
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
397
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
398
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
399
  msgid "Authors &amp; Users Extended"
400
  msgstr "Автори &amp; Потребители с разширения"
401
 
402
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
403
  msgid "Hide username field"
404
  msgstr "Скрий полето за потребителско име"
405
 
406
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:756
407
  msgid "Hide name field"
408
  msgstr "Скрий полето за име"
409
 
410
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:761
411
  msgid "Hide email field"
412
  msgstr "Скрий полето за email"
413
 
414
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
415
  msgid "Hide role field"
416
  msgstr "Скрий полето за роля"
417
 
418
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
419
  msgid "Hide website field"
420
  msgstr "Скрий полето за интернет сайт"
421
 
422
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
423
  msgid "Hide n. posts field"
424
  msgstr "Скрий полето за брой постове"
425
 
426
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:778
427
  msgid "WordPress hidden fields"
428
  msgstr "Скрити полета на WordPress"
429
 
430
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:781
431
  msgid "Show password"
432
  msgstr ""
433
 
434
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
435
  msgid "Show confirmation password"
436
  msgstr ""
437
 
438
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
439
  msgid "Show password strength meter"
440
  msgstr ""
441
 
442
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
443
  msgid "Show first name"
444
  msgstr "Покажи първото име"
445
 
446
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
447
  msgid "Show last name"
448
  msgstr "Покажи второто име"
449
 
450
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
451
  msgid "Show nickname"
452
  msgstr "Покажи потребителското име"
453
 
454
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
455
  msgid "Show website"
456
  msgstr "Покажи интернет сайта"
457
 
458
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
459
  msgid "Show AIM"
460
  msgstr "Покажи AIM"
461
 
462
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
463
  msgid "Show Yahoo IM"
464
  msgstr "Покажи Yahoo IM"
465
 
466
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:817
467
  msgid "Show Jabber / Google Talk"
468
  msgstr "Покажи Jabber / Google Talk"
469
 
470
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
471
  msgid "Show Biographical Info"
472
  msgstr ""
473
 
474
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:200
475
  msgid "Password"
476
  msgstr ""
477
 
478
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
479
  msgid "Password confirmation"
480
  msgstr ""
481
 
482
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
483
  #, fuzzy
484
  msgid "First name"
485
  msgstr "Покажи първото име"
486
 
487
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
488
  #, fuzzy
489
  msgid "Last name"
490
  msgstr "Покажи второто име"
491
 
492
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
493
  #, fuzzy
494
  msgid "Nickname"
495
  msgstr "Име"
496
 
497
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
498
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1514
499
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1515
500
  msgid "Website"
501
  msgstr "Интернет сайт"
502
 
503
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
504
  msgid "AIM"
505
  msgstr ""
506
 
507
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
508
  #, fuzzy
509
  msgid "Yahoo IM"
510
  msgstr "Покажи Yahoo IM"
511
 
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
513
  #, fuzzy
514
  msgid "Jabber / Google Talk"
515
  msgstr "Покажи Jabber / Google Talk"
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
518
  msgid "Biographical Info"
519
  msgstr ""
520
 
521
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
522
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
523
  msgid "Fields"
524
  msgstr "Полета"
525
 
526
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
527
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
528
  msgid "A&amp;U Extended"
529
  msgstr "А&amp;П с разширения"
530
 
531
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
532
  #, fuzzy
533
  msgid "Users Extended"
534
  msgstr "Разширен списък с Автори &amp; Потребители"
@@ -547,67 +551,77 @@ msgstr ""
547
  msgid "File '%s' is not an image."
548
  msgstr ""
549
 
550
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
551
  #, fuzzy
552
  msgid "Delete the file"
553
  msgstr "Изтрий поле"
554
 
555
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
556
  #, fuzzy
557
  msgid "Update the file"
558
  msgstr "Поднови поле"
559
 
560
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
561
  #, fuzzy
562
  msgid "Update the picture"
563
  msgstr "Поднови поле"
564
 
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
566
  msgid "Picture URL:"
567
  msgstr ""
568
 
569
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
 
 
 
 
 
 
 
 
 
 
570
  #, php-format
571
  msgid "New user registration on your site %s:"
572
  msgstr ""
573
 
574
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
575
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
576
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
577
  #, fuzzy, php-format
578
  msgid "Username: %s"
579
  msgstr "Потребителско име"
580
 
581
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
582
  #, fuzzy, php-format
583
  msgid "E-mail: %s"
584
  msgstr "e-mail: %s"
585
 
586
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
587
  #, php-format
588
  msgid "[%s] New User Registration"
589
  msgstr ""
590
 
591
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
592
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
593
  #, php-format
594
  msgid "Password: %s"
595
  msgstr ""
596
 
597
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
598
  #, php-format
599
  msgid "[%s] Your username and password"
600
  msgstr ""
601
 
602
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:91
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:97
604
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:109
605
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:115
606
  #, php-format
607
  msgid "%s: %s"
608
  msgstr ""
609
 
610
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:189
611
  #, php-format
612
  msgid ""
613
  "To activate your user, please click the following link:\n"
@@ -618,45 +632,45 @@ msgid ""
618
  "\n"
619
  msgstr ""
620
 
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:205
622
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
 
623
  msgid "Your account is now active!"
624
  msgstr ""
625
 
626
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:206
627
  #, php-format
628
  msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
629
  msgstr ""
630
 
631
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:208
632
  msgid "An error occurred during the activation"
633
  msgstr ""
634
 
635
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:227
636
  msgid "Invalid activation key."
637
  msgstr ""
638
 
639
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:230
640
  msgid "The site is already active."
641
  msgstr ""
642
 
643
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:249
644
  msgid "Could not create user"
645
  msgstr ""
646
 
647
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:261
648
  msgid "That username is already activated."
649
  msgstr ""
650
 
651
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:280
652
  msgid "That username is currently reserved but may be available in a couple of days."
653
  msgstr ""
654
 
655
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:283
656
  msgid "username and email used"
657
  msgstr ""
658
 
659
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
660
  msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
661
  msgstr ""
662
 
@@ -681,17 +695,17 @@ msgid "Change order"
681
  msgstr "Смени реда"
682
 
683
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
684
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
685
  msgid "Min length"
686
  msgstr "Минимална дължина"
687
 
688
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
689
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
690
  msgid "Exact length"
691
  msgstr "Точна дължина"
692
 
693
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
694
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
695
  msgid "Max length"
696
  msgstr "Максимална дължина"
697
 
@@ -699,399 +713,419 @@ msgstr "Максимална дължина"
699
  msgid "Exact or Max length"
700
  msgstr "Точна или максимална дължина"
701
 
702
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
703
  msgid "changed to"
704
  msgstr "променен на"
705
 
706
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:123
707
  msgid "You cannot give an order that misses some numbers"
708
  msgstr "Не може да даваш ред, в който липсват числа"
709
 
710
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:126
711
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:197
712
  msgid "Nothing selected"
713
  msgstr "Нищо не е избрано"
714
 
715
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:194
716
  msgid "Field(s)"
717
  msgstr "Поле(та)"
718
 
719
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:194
720
  msgid "deleted correctly"
721
  msgstr "изтрит успешно"
722
 
723
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
724
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
725
  msgid "Min size"
726
  msgstr "Минимален размер"
727
 
728
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
729
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
730
  msgid "Exact size"
731
  msgstr "Точен размер"
732
 
733
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
734
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
735
  msgid "Max size"
736
  msgstr "Максимален размер"
737
 
738
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:230
739
  msgid "Exact or Max size"
740
  msgstr "Точен или максимален размер"
741
 
742
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:282
743
  msgid "Name not specified"
744
  msgstr "Не е определено име"
745
 
746
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:284
747
  msgid "Name cannot contains spaces"
748
  msgstr "Името не може да съдържа шпации"
749
 
750
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:287
751
  msgid "Label not specified"
752
  msgstr "Не е определен етикет"
753
 
754
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:292
755
  msgid "not selected (with this type is necessary)"
756
  msgstr "не е избрано (задължително за този тип)"
757
 
758
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
759
  msgid "If you select"
760
  msgstr "Ако избра"
761
 
762
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:298
763
  msgid "you cannot select Min or Max"
764
  msgstr "не можеш да избереш минимума или максимума"
765
 
766
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:303
767
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:308
768
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:313
769
  msgid "should be in the range of"
770
  msgstr "трябва да е в рамките на"
771
 
772
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:323
773
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:325
774
  msgid "Equal TO not specified"
775
  msgstr "Равно НА не е определено"
776
 
777
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:328
778
  msgid "With checkbox type Equal TO can only be"
779
  msgstr "С отметка от тип Равно НА може да е само"
780
 
781
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:331
782
  msgid "With radio type Equal TO can only be"
783
  msgstr "С радио бутон от тип Равно НА може да е само"
784
 
785
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:347
786
  msgid "With checkbox type Value can only be"
787
  msgstr "С отметка от тип Стойност може да е само"
788
 
789
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:350
790
  msgid "With radio type Value can only be"
791
  msgstr "С радио бутон от тип Стойност може да е само"
792
 
793
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:407
794
  msgid "Field inserted correctly"
795
  msgstr "Полето е добавено успешно"
796
 
797
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
798
  msgid "Field #"
799
  msgstr "Поле #"
800
 
801
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:409
802
  msgid "updated correctly"
803
  msgstr "подновено успешно"
804
 
805
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:412
806
  msgid "Name inserted is just in the database, change to another one"
807
  msgstr "Въведеното име е в базата данни, променето го"
808
 
809
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
810
  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."
811
  msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
812
 
813
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
814
  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'"
815
  msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
816
 
817
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
818
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
819
  msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
820
 
821
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
822
  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"
823
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
824
 
825
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
826
  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)"
827
  msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
828
 
829
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
830
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
831
  msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
832
 
833
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
834
  #, fuzzy
835
  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"
836
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
837
 
838
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
839
  #, fuzzy
840
  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"
841
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
842
 
843
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
844
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:642
845
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
846
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
847
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1499
848
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1500
849
  msgid "Name"
850
  msgstr "Име"
851
 
852
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
853
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
854
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
855
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1068
856
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1823
857
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1828
858
  msgid "Value"
859
  msgstr "Стойност"
860
 
861
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
862
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
863
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
864
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
865
  msgid "Type"
866
  msgstr "Тип"
867
 
868
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
869
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
870
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
871
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1093
872
  msgid "Label"
873
  msgstr "Етикет"
874
 
875
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
876
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
877
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
878
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
879
  msgid "Description"
880
  msgstr "Описание"
881
 
882
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
883
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
884
  msgid "Rules"
885
  msgstr "Правила"
886
 
887
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
888
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
889
  msgid "Actions"
890
  msgstr "Действия"
891
 
892
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
893
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
 
894
  #, fuzzy
895
  msgid "Fieldset"
896
  msgstr "Полета"
897
 
898
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
899
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
900
  msgid "Can be empty"
901
  msgstr "Може да е празно"
902
 
903
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
904
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
905
  msgid "Check for E-mail syntax"
906
  msgstr "Провери за Email синтаксис"
907
 
908
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
909
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
910
  msgid "Can be modified"
911
  msgstr "Може да бъде променяно"
912
 
913
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
914
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
915
  msgid "Can be modified only if empty"
916
  msgstr "Може да бъде променяно само ако е празно"
917
 
918
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
919
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
920
  msgid "Can be modified only by admin"
921
  msgstr "Може да бъде променяно само от администратора"
922
 
923
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
924
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
925
  msgid "Can be modified only by admin or if empty"
926
  msgstr "Може да бъде променяно само от администратора или ако е празно"
927
 
928
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
929
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
930
  msgid "Cannot be modified"
931
  msgstr "Не може да бъде променяно"
932
 
933
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
934
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
935
  msgid "Should be equal TO"
936
  msgstr "Би трябвало да е равно НА"
937
 
938
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
939
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
940
  msgid "Case sensitive"
941
  msgstr "Различават се големи и малко букви"
942
 
943
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
944
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
945
  msgid "Regular Expression"
946
  msgstr ""
947
 
948
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
949
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
950
  msgid "Show the field in the registration"
951
  msgstr "Покажи полето при регистрация"
952
 
953
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
954
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
955
  msgid "Show the field in User's profile"
956
  msgstr "Покажи полето в профила на потребителя"
957
 
958
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
959
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
960
  msgid "Show the field in A&amp;U Extended menu"
961
  msgstr "Покажи полето в A&amp;П разширеното меню"
962
 
963
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
964
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
965
  #, fuzzy
966
  msgid "Show the field in the search engine"
967
  msgstr "Покажи полето при регистрация"
968
 
969
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
970
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
971
  #, fuzzy
972
  msgid "Show the field in the blog"
973
  msgstr "Покажи полето при регистрация"
974
 
975
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
976
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
977
  #, fuzzy
978
  msgid "Show the field if the role is at least:"
979
  msgstr "Покажи полето при регистрация"
980
 
981
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
982
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
983
  msgid "Anonymous"
984
  msgstr ""
985
 
986
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
 
 
 
 
 
987
  msgid "Clear"
988
  msgstr "Изчисти"
989
 
990
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
991
  msgid "Invert selection"
992
  msgstr "Обърни избора"
993
 
994
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
995
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
996
  msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
997
 
998
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
999
  msgid "WordPress Fields"
1000
  msgstr "WordPress полета"
1001
 
1002
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
1003
  msgid "None!"
1004
  msgstr "Няма!"
1005
 
1006
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
1007
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
1008
  msgid "Order"
1009
  msgstr "Подреди"
1010
 
1011
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
1012
  msgid "Reset"
1013
  msgstr "Отмени"
1014
 
1015
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
 
1016
  #, fuzzy
1017
  msgid "select"
1018
  msgstr "Изтрий"
1019
 
1020
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1377
1021
  #, php-format
1022
  msgid "Users Matching \"%s\""
1023
  msgstr "Потребители отговарящи на \"%s\""
1024
 
1025
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1381
1026
  #, fuzzy
1027
  msgid "Users Extended List"
1028
  msgstr "Разширен списък с Автори &amp; Потребители"
1029
 
1030
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1383
1031
  msgid "Authors &amp; Users Extended List"
1032
  msgstr "Разширен списък с Автори &amp; Потребители"
1033
 
1034
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1422
1035
  #, php-format
1036
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
1037
  msgstr ""
1038
 
1039
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1434
1040
  msgid "Search Users"
1041
  msgstr "Търсене на потребители"
1042
 
1043
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1460
1044
  msgid "&laquo; Back to All Users"
1045
  msgstr "&laquo; Назад към Всички потребители"
1046
 
1047
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1466
1048
  #, fuzzy
1049
  msgid "Users per page"
1050
  msgstr "Таблица с потребителски данни"
1051
 
1052
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1481
1053
  msgid "Apply"
1054
  msgstr ""
1055
 
1056
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1494
1057
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1495
1058
  msgid "Username"
1059
  msgstr "Потребителско име"
1060
 
1061
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1504
1062
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1505
1063
  msgid "E-mail"
1064
  msgstr "E-mail"
1065
 
1066
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1509
1067
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1510
1068
  msgid "Role"
1069
  msgstr "Роля"
1070
 
1071
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1519
1072
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
1073
  msgid "Posts"
1074
  msgstr "Постове"
1075
 
1076
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1652
1077
  msgid "View posts by this author"
1078
  msgstr "Виж постовете на този автор"
1079
 
1080
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1683
1081
  #, php-format
1082
  msgid "e-mail: %s"
1083
  msgstr "e-mail: %s"
1084
 
1085
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1819
 
 
 
 
 
1086
  #, fuzzy
1087
  msgid "Update selected users"
1088
  msgstr "Изтрий маркираните полета"
1089
 
1090
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1840
1091
  #, fuzzy
1092
  msgid "Update"
1093
  msgstr "Поднови поле"
1094
 
 
 
 
 
 
 
 
 
1095
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
1096
  msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
1097
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-01-30 14:07+0300\n"
6
+ "PO-Revision-Date: 2011-01-30 14:07+0300\n"
7
  "Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
8
  "Language-Team: <cimmino.marco@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: /var/www/wp-content/plugins/cimy-user-extra-fields\n"
18
 
 
19
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
20
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
21
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
22
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:446
23
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:458
24
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
25
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
26
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
27
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
28
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
29
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
30
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
31
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
32
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
33
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1218
34
  msgid "ERROR"
35
  msgstr "ГРЕШКА"
36
 
37
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
38
  msgid "does not match."
39
  msgstr ""
40
 
41
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
42
  msgid "hasn&#8217;t a correct email syntax."
43
  msgstr "няма правилен email синтаксис."
44
 
45
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
46
  msgid "couldn&#8217;t be empty."
47
  msgstr "не може да е празно."
48
 
49
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:445
50
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
51
  msgid "isn&#8217;t correct"
52
  msgstr "не е правилно"
53
 
54
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
55
  msgid "YES"
56
  msgstr "ДА"
57
 
58
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
59
  msgid "NO"
60
  msgstr "НЕ"
61
 
62
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
63
  msgid "should be"
64
  msgstr "трябва да е"
65
 
66
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:465
67
  msgid "should be an image."
68
  msgstr "трябва да е снимка."
69
 
70
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
71
  msgid "couldn&#8217;t have size less than"
72
  msgstr "не може да е с по-малък размер от"
73
 
74
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
75
  msgid "couldn&#8217;t have length less than"
76
  msgstr "не може да има по-малка дължина от"
77
 
78
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
79
  msgid "couldn&#8217;t have size different than"
80
  msgstr "не може да има размер различен от"
81
 
82
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
83
  msgid "couldn&#8217;t have length different than"
84
  msgstr "не може да има дължина различна от"
85
 
86
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
87
  msgid "couldn&#8217;t have size more than"
88
  msgstr "не може да има размер по-голям от"
89
 
90
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
91
  msgid "couldn&#8217;t have length more than"
92
  msgstr "не може да има дължина по-голяма от"
93
 
94
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
95
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
96
  msgid "Typed code is not correct."
97
  msgstr ""
98
 
99
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
100
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
101
  #, fuzzy
102
  msgid "Please upload a file with one of the following extensions"
103
  msgstr "Моля качете снимка с някое от тези разширения"
104
 
105
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:836
106
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
107
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
108
  msgid "Please upload an image with one of the following extensions"
109
  msgstr "Моля качете снимка с някое от тези разширения"
110
 
111
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:916
112
  msgid "Strength indicator"
113
  msgstr ""
114
 
115
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
116
  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; )."
117
  msgstr ""
118
 
119
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:954
120
  #, fuzzy
121
  msgid "Change image"
122
  msgstr "Смени реда"
123
 
124
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
125
  msgid "Insert the code:"
126
  msgstr ""
127
 
128
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
129
  #, fuzzy
130
  msgid "no fieldset"
131
  msgstr "Опции по колекция"
132
 
133
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
134
+ msgid "All"
135
+ msgstr ""
136
+
137
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
138
  msgid "WordPress Fields table emptied"
139
  msgstr "Таблицата с WordPress полета е изпразнена"
140
 
141
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
142
  msgid "WordPress Fields table deleted"
143
  msgstr "Таблицата с WordPress полета е изтрита"
144
 
145
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
146
  msgid "Extra Fields table emptied"
147
  msgstr "Таблицата с допълнителни полета е изпразнена"
148
 
149
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
150
  msgid "Extra Fields table deleted"
151
  msgstr "Таблицата с допълнителни полета е изтрита"
152
 
153
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
154
  msgid "Users Data table emptied"
155
  msgstr "Таблицата с потребителски данни е изпразнена"
156
 
157
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
158
  msgid "Users Data table deleted"
159
  msgstr "Таблицата с потребителски данни е изтрита"
160
 
161
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
162
  msgid "Options set to default values"
163
  msgstr "Вариантите са сменени по подразбиране"
164
 
165
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
166
  msgid "Options deleted"
167
  msgstr "Вариантите са изтрити"
168
 
169
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
170
  msgid "Options changed"
171
  msgstr "Вариантите са променени"
172
 
173
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
174
  msgid "This operation will create/update all missing tables/options, do you want to proceed?"
175
  msgstr ""
176
 
177
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
178
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
179
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:749
180
  msgid "Options"
181
  msgstr "Настройки"
182
 
183
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
184
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
185
  msgid "Add a new Field"
186
  msgstr "Добави друго поле"
187
 
188
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
189
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
190
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1863
191
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1868
192
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
193
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:283
194
  msgid "Extra Fields"
195
  msgstr "Допълнителни полета"
196
 
197
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
198
  msgid "Support the Cimy Project"
199
  msgstr ""
200
 
201
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
202
  msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
203
  msgstr ""
204
 
205
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
206
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
207
  msgid "SUCCESSFUL"
208
  msgstr "УСПЕХ"
209
 
210
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
211
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
212
  msgid "Save Changes"
213
  msgstr "Запази промените"
214
 
215
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
216
  msgid "General"
217
  msgstr "Общи"
218
 
219
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
220
  msgid "installed is"
221
  msgstr "инсталирано е"
222
 
223
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
224
  msgid "OPTIONS DELETED!"
225
  msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
226
 
227
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
228
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
229
  msgid "Fix the problem"
230
  msgstr ""
231
 
232
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
233
  msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
234
  msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
235
 
236
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
237
  msgid "Picture/Avatar upload"
238
  msgstr ""
239
 
240
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
241
  msgid "is created and writable"
242
  msgstr ""
243
 
244
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
245
  msgid "is NOT created or webserver does NOT have permission to write on it"
246
  msgstr ""
247
 
248
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
249
  #, fuzzy
250
  msgid "Show all fields in the welcome email"
251
  msgstr "Покажи полето при регистрация"
252
 
253
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
254
  msgid "the email sent to the admin and to the user upon registration will have all fields"
255
  msgstr ""
256
 
257
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
258
  msgid "Enable email confirmation"
259
  msgstr ""
260
 
261
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
262
  msgid "user that registers should confirm its email address via a link click"
263
  msgstr ""
264
 
265
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
266
  msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
267
  msgstr ""
268
 
269
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
270
  msgid "Redirect to the source"
271
  msgstr ""
272
 
273
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
274
  msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
275
  msgstr ""
276
 
277
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
278
  msgid "No captcha"
279
  msgstr ""
280
 
281
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
282
  msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
283
  msgstr ""
284
 
285
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
286
  msgid "Public KEY"
287
  msgstr ""
288
 
289
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
290
  msgid "Private KEY"
291
  msgstr ""
292
 
293
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
294
  msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
295
  msgstr ""
296
 
297
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
298
  msgid "This captcha is probably weaker, but is easier for users"
299
  msgstr ""
300
 
301
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
302
  #, php-format
303
  msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
304
  msgstr ""
305
 
306
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
307
  msgid "Change login/registration page logo"
308
  msgstr ""
309
 
310
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
311
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:435
312
  #, fuzzy
313
  msgid "Delete the picture"
314
  msgstr "Изтрий поле"
315
 
316
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
317
  msgid "Maximum recommended logo width is 328px, but any height should work."
318
  msgstr ""
319
 
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
321
  msgid "Database"
322
  msgstr "База данни"
323
 
324
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
325
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
326
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
327
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
328
  msgid "select action"
329
  msgstr "избери действие"
330
 
331
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
332
  msgid "Default values"
333
  msgstr "Стойност по подразбиране"
334
 
335
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
336
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:701
338
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
339
  msgid "Delete"
340
  msgstr "Изтрий"
341
 
342
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
343
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:687
344
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
345
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
346
  msgid "NOT PRESENT"
347
  msgstr "НЕ СЪЩЕСТВУВА"
348
 
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
350
  msgid "WordPress Fields table"
351
  msgstr "Таблица с WordPress полета"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
354
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
355
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
356
  msgid "Empty"
357
  msgstr "Празно"
358
 
359
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
360
  msgid "Extra Fields table"
361
  msgstr "Таблица с допълнителни полета"
362
 
363
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
364
  msgid "Users Data table"
365
  msgstr "Таблица с потребителски данни"
366
 
367
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
368
  msgid "all data inserted by users in all and only extra fields"
369
  msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
370
 
371
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
372
  msgid "Force tables creation"
373
  msgstr "Задължително създаване на таблица"
374
 
375
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
376
  msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
377
  msgstr ""
378
 
379
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
380
  msgid "User Profile"
381
  msgstr "Потребителски профил"
382
 
383
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
384
  #, fuzzy
385
  msgid "Extra Fields section title"
386
  msgstr "Таблица с допълнителни полета"
387
 
388
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
389
  msgid "Fieldset's titles, separates with comma"
390
  msgstr "Заглавията на колекция разделени със запетайка"
391
 
392
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
393
  msgid "example: title1,title2,title3"
394
  msgstr "пример: заглавие1,заглавие2,заглавие3"
395
 
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
397
  msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
398
  msgstr ""
399
 
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
401
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
402
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:760
403
  msgid "Authors &amp; Users Extended"
404
  msgstr "Автори &amp; Потребители с разширения"
405
 
406
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
407
  msgid "Hide username field"
408
  msgstr "Скрий полето за потребителско име"
409
 
410
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
411
  msgid "Hide name field"
412
  msgstr "Скрий полето за име"
413
 
414
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
415
  msgid "Hide email field"
416
  msgstr "Скрий полето за email"
417
 
418
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
419
  msgid "Hide role field"
420
  msgstr "Скрий полето за роля"
421
 
422
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
423
  msgid "Hide website field"
424
  msgstr "Скрий полето за интернет сайт"
425
 
426
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
427
  msgid "Hide n. posts field"
428
  msgstr "Скрий полето за брой постове"
429
 
430
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
431
  msgid "WordPress hidden fields"
432
  msgstr "Скрити полета на WordPress"
433
 
434
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
435
  msgid "Show password"
436
  msgstr ""
437
 
438
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
439
  msgid "Show confirmation password"
440
  msgstr ""
441
 
442
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
443
  msgid "Show password strength meter"
444
  msgstr ""
445
 
446
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
447
  msgid "Show first name"
448
  msgstr "Покажи първото име"
449
 
450
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801