Cimy User Extra Fields - Version 2.0.0-beta2

Version Description

Download this release

Release Info

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

Code changes from version 2.0.0-beta1 to 2.0.0-beta2

README_OFFICIAL.txt CHANGED
@@ -44,8 +44,8 @@ WordPress and WordPress MultiSite per-blog registration:
44
  2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
45
 
46
  Wordpress MultiSite unique registration:
47
- 1. "Site Admin -> Users Extended" - lets you show users lists with the new fields that are created
48
- 2. "Site Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
49
 
50
  Rules are:
51
 
@@ -110,7 +110,7 @@ If you want that ALL Blogs on your MultiSite installation follow the same regist
110
  Every blog will have shared registration page and only the Super Admin can change it.
111
  - unpack the package under 'wp-content/mu-plugins' directory (if this directory does not exist, create it);
112
  - be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary);
113
- - go to "Site Admin -> Cimy User Extra Fields", press "Fix the problem" button and confirm.
114
 
115
  2) Per-Blog registration
116
  If you want that every single Blog can define its own Extra Fields then you should choose this installation.
@@ -557,6 +557,14 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
557
 
558
 
559
  CHANGELOG:
 
 
 
 
 
 
 
 
560
  v2.0.0 beta1 - 02/09/2010
561
  - Added WordPress 3.0.x support
562
  - Fixed MultiSite recognization
44
  2. "Settings -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
45
 
46
  Wordpress MultiSite unique registration:
47
+ 1. "Super Admin -> Users Extended" - lets you show users lists with the new fields that are created
48
+ 2. "Super Admin -> Cimy User Extra Fields" - lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
49
 
50
  Rules are:
51
 
110
  Every blog will have shared registration page and only the Super Admin can change it.
111
  - unpack the package under 'wp-content/mu-plugins' directory (if this directory does not exist, create it);
112
  - be sure that cimy_user_extra_fields.php is outside Cimy folder (move it if necessary);
113
+ - go to "Super Admin -> Cimy User Extra Fields", press "Fix the problem" button and confirm.
114
 
115
  2) Per-Blog registration
116
  If you want that every single Blog can define its own Extra Fields then you should choose this installation.
557
 
558
 
559
  CHANGELOG:
560
+ v2.0.0 beta2 - 22/09/2010
561
+ - Added Securimage Captcha support (thanks to Patrick McCain for sponsoring it)
562
+ - Added redirection support (non MS only) (thanks to Patrick McCain for sponsoring it)
563
+ - Fixed adding/updating a field is now more user-friendly
564
+ - Fixed uploading of any file should be forbidden during the registration if the confirmation email is turned on
565
+ - Fixed an user can't register again after admin deletion within 2 days if the email confirmation is turned on (non MS only)
566
+ - Fixed show permissions were not saved properly (causing checkboxes can't be unchecked anymore since v2.0.0-beta1) (thanks to Bak)
567
+
568
  v2.0.0 beta1 - 02/09/2010
569
  - Added WordPress 3.0.x support
570
  - Fixed MultiSite recognization
cimy_uef_admin.php CHANGED
@@ -245,7 +245,7 @@ function cimy_admin_define_extra_fields() {
245
  $empty = $_POST['empty'][$field_order];
246
  $empty == "1" ? $store_rule['can_be_empty'] = true : $store_rule['can_be_empty'] = false;
247
 
248
- $store_rule['edit'] = $_POST['edit'.$field_order];
249
 
250
  $email = $_POST['email'][$field_order];
251
  $email == "1" ? $store_rule['email'] = true : $store_rule['email'] = false;
@@ -429,39 +429,7 @@ function cimy_admin_define_extra_fields() {
429
  <?php
430
 
431
  // print errors if there are some
432
- if (count($errors) > 0) {
433
- ?>
434
- <div class="error">
435
- <h3><?php _e("ERROR", $cimy_uef_domain); ?></h3>
436
- <ul>
437
- <?php
438
- foreach ($errors as $error)
439
- echo "<li>".$error."</li>";
440
- ?>
441
- </ul>
442
- <br />
443
- </div>
444
- <?php
445
- }
446
- ?>
447
-
448
- <?php
449
-
450
- // print successes if there are some
451
- if (count($results) > 0) {
452
- ?>
453
- <div class="updated">
454
- <h3><?php _e("SUCCESSFUL", $cimy_uef_domain); ?></h3>
455
- <ul>
456
- <?php
457
- foreach ($results as $result)
458
- echo "<li>".$result."</li>";
459
- ?>
460
- </ul>
461
- <br />
462
- </div>
463
- <?php
464
- }
465
 
466
  if ($store_rule['min_length'] == 0)
467
  unset($store_rule['min_length']);
@@ -771,15 +739,24 @@ function cimy_admin_define_extra_fields() {
771
 
772
  </div>
773
 
 
 
 
 
 
 
 
 
 
774
  <?php
775
  wp_print_scripts("cimy_uef_invert_sel");
776
  $wp_fields = get_cimyFields(true);
777
 
778
- cimy_admin_show_extra_fields($wp_fields, $submit_msgs, true);
779
- cimy_admin_show_extra_fields($allFields, $submit_msgs, false);
780
  }
781
 
782
- function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
783
  global $wpdb, $cimy_uef_domain, $rule_maxlen, $rule_email, $rule_canbeempty, $rule_equalto, $rule_equalto_case_sensitive, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $cimy_uef_file_types, $rule_equalto_regex;
784
 
785
  if (!cimy_check_admin("manage_options"))
@@ -1069,8 +1046,8 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
1069
 
1070
  $style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
1071
  ?>
1072
-
1073
- <tr <?php echo "id=\"".$field_anchor.$order."\" ".$style; ?>>
1074
  <td align="center" style="vertical-align: middle;">
1075
  <input name="check[<?php echo $order ?>]" type="checkbox" value="<?php echo $order ?>" /><br /><br />
1076
  <label><strong><?php _e("Order", $cimy_uef_domain); ?></strong><br />
@@ -1186,7 +1163,7 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
1186
  <td align="center" style="vertical-align: middle;">
1187
  <p class="submit" style="border-width: 0px;">
1188
  <input name="reset" type="reset" value="<?php _e("Reset", $cimy_uef_domain); ?>" /><br /><br />
1189
- <input class="button-primary" name="submit_edit[<?php echo $order ?>]" type="submit" value="<?php echo $edit_caption." #".$order ?>" /><br /><br />
1190
 
1191
  <?php if (!$wp_fields) { ?>
1192
  <input name="submit_del[<?php echo $order ?>]" type="submit" value="<?php echo $del_caption." #".$order ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
@@ -1219,6 +1196,40 @@ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields) {
1219
  <?php
1220
  }
1221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1222
  function cimy_admin_users_list_page() {
1223
  global $wpdb, $wp_roles, $wpdb_data_table, $cimy_uef_options, $cuef_upload_path, $cimy_uef_domain;
1224
 
245
  $empty = $_POST['empty'][$field_order];
246
  $empty == "1" ? $store_rule['can_be_empty'] = true : $store_rule['can_be_empty'] = false;
247
 
248
+ $store_rule['edit'] = $_POST['edit'][$field_order];
249
 
250
  $email = $_POST['email'][$field_order];
251
  $email == "1" ? $store_rule['email'] = true : $store_rule['email'] = false;
429
  <?php
430
 
431
  // print errors if there are some
432
+ cimy_uef_print_messages($errors, $results);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
 
434
  if ($store_rule['min_length'] == 0)
435
  unset($store_rule['min_length']);
739
 
740
  </div>
741
 
742
+ <script type="text/javascript">
743
+ <!--//
744
+ function changeFormAction(form_id, tr_id) {
745
+ var element = document.getElementById(form_id);
746
+ element.action = '#'+tr_id;
747
+ }
748
+ //-->
749
+ </script>
750
+
751
  <?php
752
  wp_print_scripts("cimy_uef_invert_sel");
753
  $wp_fields = get_cimyFields(true);
754
 
755
+ cimy_admin_show_extra_fields($wp_fields, $submit_msgs, true, $errors, $results, $wp_fields_post, $field_order);
756
+ cimy_admin_show_extra_fields($allFields, $submit_msgs, false, $errors, $results, $wp_fields_post, $field_order);
757
  }
758
 
759
+ function cimy_admin_show_extra_fields($allFields, $submit_msgs, $wp_fields, $errors, $results, $wp_fields_post, $field_order) {
760
  global $wpdb, $cimy_uef_domain, $rule_maxlen, $rule_email, $rule_canbeempty, $rule_equalto, $rule_equalto_case_sensitive, $available_types, $max_length_name, $max_length_label, $max_length_desc, $max_length_value, $max_size_file, $cimy_uef_file_types, $rule_equalto_regex;
761
 
762
  if (!cimy_check_admin("manage_options"))
1046
 
1047
  $style = ('class="alternate"' == $style) ? '' : 'class="alternate"';
1048
  ?>
1049
+ <?php if (($field_order == $order) && ($wp_fields_post == $wp_fields)) { ?><tr <?php echo "id=\"".$field_anchor.$order."\""; ?>><td colspan="5"><?php cimy_uef_print_messages($errors, $results); ?></td></tr><?php } ?>
1050
+ <tr <?php echo $style; ?>>
1051
  <td align="center" style="vertical-align: middle;">
1052
  <input name="check[<?php echo $order ?>]" type="checkbox" value="<?php echo $order ?>" /><br /><br />
1053
  <label><strong><?php _e("Order", $cimy_uef_domain); ?></strong><br />
1163
  <td align="center" style="vertical-align: middle;">
1164
  <p class="submit" style="border-width: 0px;">
1165
  <input name="reset" type="reset" value="<?php _e("Reset", $cimy_uef_domain); ?>" /><br /><br />
1166
+ <input class="button-primary" name="submit_edit[<?php echo $order ?>]" type="submit" value="<?php echo $edit_caption." #".$order ?>" onclick="changeFormAction('<?php echo $form_id; ?>', '<?php echo $field_anchor.$order; ?>')" /><br /><br />
1167
 
1168
  <?php if (!$wp_fields) { ?>
1169
  <input name="submit_del[<?php echo $order ?>]" type="submit" value="<?php echo $del_caption." #".$order ?>" onclick="return confirm('<?php echo $delete_fields_label; ?>');" />
1196
  <?php
1197
  }
1198
 
1199
+ function cimy_uef_print_messages($errors, $results) {
1200
+ if (count($errors) > 0) {
1201
+ ?>
1202
+ <div class="error inline">
1203
+ <h3><?php _e("ERROR", $cimy_uef_domain); ?></h3>
1204
+ <ul>
1205
+ <?php
1206
+ foreach ($errors as $error)
1207
+ echo "<li>".$error."</li>";
1208
+ ?>
1209
+ </ul>
1210
+ </div>
1211
+ <?php
1212
+ }
1213
+ ?>
1214
+
1215
+ <?php
1216
+
1217
+ // print successes if there are some
1218
+ if (count($results) > 0) {
1219
+ ?>
1220
+ <div class="updated inline">
1221
+ <h3><?php _e("SUCCESSFUL", $cimy_uef_domain); ?></h3>
1222
+ <ul>
1223
+ <?php
1224
+ foreach ($results as $result)
1225
+ echo "<li>".$result."</li>";
1226
+ ?>
1227
+ </ul>
1228
+ </div>
1229
+ <?php
1230
+ }
1231
+ }
1232
+
1233
  function cimy_admin_users_list_page() {
1234
  global $wpdb, $wp_roles, $wpdb_data_table, $cimy_uef_options, $cuef_upload_path, $cimy_uef_domain;
1235
 
cimy_uef_db.php CHANGED
@@ -167,6 +167,38 @@ function cimy_plugin_install () {
167
  }
168
  }
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  $options['version'] = $cimy_uef_version;
171
 
172
  cimy_set_options($options);
@@ -243,6 +275,7 @@ function cimy_manage_db($command) {
243
  'aue_hidden_fields' => array('website', 'posts', 'email'),
244
  'wp_hidden_fields' => array(),
245
  'fieldset_title' => '',
 
246
  );
247
 
248
  switch ($command) {
167
  }
168
  }
169
 
170
+ if (version_compare($options['version'], "2.0.0-beta1", "<=") === true) {
171
+ if ($options["recaptcha"])
172
+ $options["captcha"] = "recaptcha";
173
+ else
174
+ $options["captcha"] = "none";
175
+ unset($options["recaptcha"]);
176
+
177
+ for ($i = 0; $i <= 1; $i++) {
178
+ if ($i == 0)
179
+ $the_table = $wpdb_wp_fields_table;
180
+ else
181
+ $the_table = $wpdb_fields_table;
182
+
183
+ $sql = "SELECT ID, RULES FROM ".$the_table;
184
+ $all_rules = $wpdb->get_results($sql, ARRAY_A);
185
+
186
+ if (isset($all_rules)) {
187
+ foreach ($all_rules as $rule) {
188
+ $rule_to_be_updated = unserialize($rule["RULES"]);
189
+ $rule_id = $rule["ID"];
190
+
191
+ // stupid bug introduced in v2.0.0-beta1
192
+ if (empty($rule_to_be_updated["edit"]))
193
+ $rule_to_be_updated["edit"] = "ok_edit";
194
+
195
+ $sql = "UPDATE ".$the_table." SET RULES='".$wpdb->escape(serialize($rule_to_be_updated))."' WHERE ID=".$rule_id;
196
+ $wpdb->query($sql);
197
+ }
198
+ }
199
+ }
200
+ }
201
+
202
  $options['version'] = $cimy_uef_version;
203
 
204
  cimy_set_options($options);
275
  'aue_hidden_fields' => array('website', 'posts', 'email'),
276
  'wp_hidden_fields' => array(),
277
  'fieldset_title' => '',
278
+ 'captcha' => 'none',
279
  );
280
 
281
  switch ($command) {
cimy_uef_email_handler.php CHANGED
@@ -173,13 +173,20 @@ function cimy_signup_user_notification($user, $user_email, $key, $meta = '') {
173
  if ( !apply_filters('wpmu_signup_user_notification', $user, $user_email, $key, $meta) )
174
  return false;
175
 
 
 
 
 
 
 
 
176
  // Send email with activation link.
177
  $admin_email = get_site_option( 'admin_email' );
178
  if ( $admin_email == '' )
179
  $admin_email = 'support@' . $_SERVER['SERVER_NAME'];
180
  $from_name = get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) );
181
  $message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
182
- $message = sprintf( apply_filters( 'wpmu_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\n" ) ), site_url( "wp-login.php?cimy_key=$key" ), $key );
183
  // TODO: Don't hard code activation link.
184
  $subject = sprintf( __( apply_filters( 'wpmu_signup_user_notification_subject', '[%1$s] Activate %2$s' ) ), $from_name, $user);
185
  wp_mail($user_email, $subject, $message, $message_headers);
@@ -265,8 +272,8 @@ function cimy_check_user_on_signups($errors, $user_name, $user_email) {
265
  $registered_at = mysql2date('U', $signup->registered);
266
  $now = current_time( 'timestamp', true );
267
  $diff = $now - $registered_at;
268
- // If registered more than two days ago, cancel registration and let this signup go through.
269
- if ( $diff > 172800 )
270
  $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_name) );
271
  else
272
  $errors->add('user_name', __('That username is currently reserved but may be available in a couple of days.'));
@@ -278,8 +285,8 @@ function cimy_check_user_on_signups($errors, $user_name, $user_email) {
278
  $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
279
  if ( $signup != null ) {
280
  $diff = current_time( 'timestamp', true ) - mysql2date('U', $signup->registered);
281
- // If registered more than two days ago, cancel registration and let this signup go through.
282
- if ( $diff > 172800 )
283
  $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
284
  else
285
  $errors->add('user_email', __('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.'));
173
  if ( !apply_filters('wpmu_signup_user_notification', $user, $user_email, $key, $meta) )
174
  return false;
175
 
176
+ $redirect_to = "";
177
+ // need to redirect?
178
+ if (!empty($_POST["redirect_to"])) {
179
+ $redirect_to = "&action=cimy_uef_redirect&redirect_to=".esc_attr($_POST["redirect_to"]);
180
+ unset($_POST["redirect_to"]);
181
+ }
182
+
183
  // Send email with activation link.
184
  $admin_email = get_site_option( 'admin_email' );
185
  if ( $admin_email == '' )
186
  $admin_email = 'support@' . $_SERVER['SERVER_NAME'];
187
  $from_name = get_site_option( 'site_name' ) == '' ? 'WordPress' : esc_html( get_site_option( 'site_name' ) );
188
  $message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
189
+ $message = sprintf( apply_filters( 'wpmu_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\n" ) ), site_url( "wp-login.php?cimy_key=$key$redirect_to" ), $key );
190
  // TODO: Don't hard code activation link.
191
  $subject = sprintf( __( apply_filters( 'wpmu_signup_user_notification_subject', '[%1$s] Activate %2$s' ) ), $from_name, $user);
192
  wp_mail($user_email, $subject, $message, $message_headers);
272
  $registered_at = mysql2date('U', $signup->registered);
273
  $now = current_time( 'timestamp', true );
274
  $diff = $now - $registered_at;
275
+ // If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
276
+ if (($diff > 172800) || ($signup->active))
277
  $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_login = %s", $user_name) );
278
  else
279
  $errors->add('user_name', __('That username is currently reserved but may be available in a couple of days.'));
285
  $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
286
  if ( $signup != null ) {
287
  $diff = current_time( 'timestamp', true ) - mysql2date('U', $signup->registered);
288
+ // If registered more than two days ago or already approved and then deleted, cancel registration and let this signup go through.
289
+ if (($diff > 172800) || ($signup->active))
290
  $wpdb->query( $wpdb->prepare("DELETE FROM ".$wpdb->prefix."signups WHERE user_email = %s", $user_email) );
291
  else
292
  $errors->add('user_email', __('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.'));
cimy_uef_options.php CHANGED
@@ -119,8 +119,11 @@ function cimy_save_options() {
119
  (isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
120
  if ($options['confirm_email'])
121
  cimy_force_signup_table_creation();
 
122
  (isset($_POST['mail_include_fields'])) ? $options['mail_include_fields'] = true : $options['mail_include_fields'] = false;
123
- (isset($_POST['recaptcha'])) ? $options['recaptcha'] = true : $options['recaptcha'] = false;
 
 
124
 
125
  if (isset($_POST['recaptcha_public_key'])) {
126
  $options['recaptcha_public_key'] = trim($_POST['recaptcha_public_key']);
@@ -351,7 +354,7 @@ function cimy_show_options_notembedded() {
351
  }
352
 
353
  function cimy_show_options($results, $embedded) {
354
- global $wpdb, $wpdb_wp_fields_table, $wpdb_fields_table, $wpdb_data_table, $max_length_fieldset_value, $cimy_uef_name, $cimy_uef_url, $cimy_project_url, $cimy_uef_version, $cimy_uef_domain, $cimy_top_menu, $max_length_extra_fields_title, $cuef_upload_path;
355
 
356
  if (!cimy_check_admin('manage_options'))
357
  return;
@@ -375,7 +378,10 @@ function cimy_show_options($results, $embedded) {
375
  $options['fieldset_title'] = esc_attr($options['fieldset_title']);
376
  $options['mail_include_fields'] ? $mail_include_fields = ' checked="checked"' : $mail_include_fields = '';
377
  $options['confirm_email'] ? $confirm_email = ' checked="checked"' : $confirm_email = '';
378
- $options['recaptcha'] ? $recaptcha = ' checked="checked"' : $recaptcha = '';
 
 
 
379
  isset($options['recaptcha_public_key']) ? $recaptcha_public_key = $options['recaptcha_public_key'] : $recaptcha_public_key = '';
380
  isset($options['recaptcha_private_key']) ? $recaptcha_private_key = $options['recaptcha_private_key'] : $recaptcha_private_key = '';
381
 
@@ -406,9 +412,12 @@ function cimy_show_options($results, $embedded) {
406
  $options['fieldset_title'] = "";
407
  $mail_include_fields= '';
408
  $confirm_email = '';
 
409
  $recaptcha = '';
410
  $recaptcha_public_key = '';
411
  $recaptcha_private_key = '';
 
 
412
 
413
  $aue_hide_username = '';
414
  $aue_hide_name = '';
@@ -565,13 +574,34 @@ function cimy_show_options($results, $embedded) {
565
  <td>
566
  <?php
567
  _e("user that registers should confirm its email address via a link click", $cimy_uef_domain);
 
 
 
 
 
 
 
 
 
 
 
 
 
568
  ?>
569
  </td>
570
  </tr>
571
  <?php } ?>
572
  <tr>
573
  <th scope="row">
574
- <input type="checkbox" name="recaptcha" value="1"<?php echo $recaptcha; ?> />
 
 
 
 
 
 
 
 
575
  <?php _e('Enable <a href="http://www.google.com/recaptcha" target="_blank">reCAPTCHA</a>', $cimy_uef_domain); ?></a>
576
  </th>
577
  <td>
@@ -585,6 +615,21 @@ function cimy_show_options($results, $embedded) {
585
  <input type="text" name="recaptcha_private_key" value="<?php echo $recaptcha_private_key; ?>" size="40" />
586
  </td>
587
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
588
  <?php if (!is_multisite()) { ?>
589
  <tr>
590
  <th scope="row"><?php _e("Change login/registration page logo", $cimy_uef_domain); ?></th>
119
  (isset($_POST['confirm_email'])) ? $options['confirm_email'] = true : $options['confirm_email'] = false;
120
  if ($options['confirm_email'])
121
  cimy_force_signup_table_creation();
122
+ (isset($_POST['redirect_to'])) ? $options['redirect_to'] = $_POST['redirect_to'] : $options['redirect_to'] = "";
123
  (isset($_POST['mail_include_fields'])) ? $options['mail_include_fields'] = true : $options['mail_include_fields'] = false;
124
+
125
+ if (isset($_POST['captcha']))
126
+ $options['captcha'] = $_POST['captcha'];
127
 
128
  if (isset($_POST['recaptcha_public_key'])) {
129
  $options['recaptcha_public_key'] = trim($_POST['recaptcha_public_key']);
354
  }
355
 
356
  function cimy_show_options($results, $embedded) {
357
+ global $wpdb, $wpdb_wp_fields_table, $wpdb_fields_table, $wpdb_data_table, $max_length_fieldset_value, $cimy_uef_name, $cimy_uef_url, $cimy_project_url, $cimy_uef_version, $cimy_uef_domain, $cimy_top_menu, $max_length_extra_fields_title, $cuef_upload_path, $cuef_plugin_dir;
358
 
359
  if (!cimy_check_admin('manage_options'))
360
  return;
378
  $options['fieldset_title'] = esc_attr($options['fieldset_title']);
379
  $options['mail_include_fields'] ? $mail_include_fields = ' checked="checked"' : $mail_include_fields = '';
380
  $options['confirm_email'] ? $confirm_email = ' checked="checked"' : $confirm_email = '';
381
+ $options['redirect_to'] == "source" ? $redirect_to_source = ' checked="checked"' : $redirect_to_source = '';
382
+ ($options['captcha'] == "recaptcha") ? $recaptcha = ' checked="checked"' : $recaptcha = '';
383
+ ($options['captcha'] == "securimage") ? $securimage = ' checked="checked"' : $securimage = '';
384
+ ($options['captcha'] == "none") ? $no_captcha = ' checked="checked"' : $no_captcha = '';
385
  isset($options['recaptcha_public_key']) ? $recaptcha_public_key = $options['recaptcha_public_key'] : $recaptcha_public_key = '';
386
  isset($options['recaptcha_private_key']) ? $recaptcha_private_key = $options['recaptcha_private_key'] : $recaptcha_private_key = '';
387
 
412
  $options['fieldset_title'] = "";
413
  $mail_include_fields= '';
414
  $confirm_email = '';
415
+ $redirect_to_source = '';
416
  $recaptcha = '';
417
  $recaptcha_public_key = '';
418
  $recaptcha_private_key = '';
419
+ $securimage = '';
420
+ $no_captcha = ' checked="checked"';
421
 
422
  $aue_hide_username = '';
423
  $aue_hide_name = '';
574
  <td>
575
  <?php
576
  _e("user that registers should confirm its email address via a link click", $cimy_uef_domain);
577
+ echo "<br />";
578
+ _e("<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar", $cimy_uef_domain);
579
+ ?>
580
+ </td>
581
+ </tr>
582
+ <tr>
583
+ <th scope="row">
584
+ <input type="checkbox" name="redirect_to" value="source"<?php echo $redirect_to_source; ?> />
585
+ <?php _e("Redirect to the source", $cimy_uef_domain); ?>
586
+ </th>
587
+ <td>
588
+ <?php
589
+ _e("after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link", $cimy_uef_domain);
590
  ?>
591
  </td>
592
  </tr>
593
  <?php } ?>
594
  <tr>
595
  <th scope="row">
596
+ <input type="radio" name="captcha" value="none"<?php echo $no_captcha; ?> />
597
+ <?php _e('No captcha', $cimy_uef_domain); ?></a>
598
+ </th>
599
+ <td>
600
+ </td>
601
+ </tr>
602
+ <tr>
603
+ <th scope="row">
604
+ <input type="radio" name="captcha" value="recaptcha"<?php echo $recaptcha; ?> />
605
  <?php _e('Enable <a href="http://www.google.com/recaptcha" target="_blank">reCAPTCHA</a>', $cimy_uef_domain); ?></a>
606
  </th>
607
  <td>
615
  <input type="text" name="recaptcha_private_key" value="<?php echo $recaptcha_private_key; ?>" size="40" />
616
  </td>
617
  </tr>
618
+ <tr>
619
+ <th scope="row">
620
+ <input type="radio" name="captcha" value="securimage"<?php echo $securimage; ?> />
621
+ <?php _e('Enable <a href="http://www.phpcaptcha.org/" target="_blank">Securimage Captcha</a>', $cimy_uef_domain); ?></a>
622
+ </th>
623
+ <td>
624
+ <?php _e('This captcha is probably weaker, but is easier for users', $cimy_uef_domain); ?>
625
+ <?php
626
+ if (!is_file($cuef_plugin_dir.'/securimage/securimage.php')) {
627
+ echo "<br />";
628
+ printf(__('<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>', $cimy_uef_domain), $cuef_plugin_dir.'/recaptcha/');
629
+ }
630
+ ?>
631
+ </td>
632
+ </tr>
633
  <?php if (!is_multisite()) { ?>
634
  <tr>
635
  <th scope="row"><?php _e("Change login/registration page logo", $cimy_uef_domain); ?></th>
cimy_uef_profile.php CHANGED
@@ -536,6 +536,7 @@ function cimy_update_ExtraFields() {
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]));
541
  else
@@ -622,7 +623,7 @@ function cimy_update_ExtraFields() {
622
  $query.= $value;
623
  }
624
  }
625
-
626
  if ($type == 'checkbox') {
627
  // if can be editable then write NO
628
  // there is no way to understand if was YES or NO previously
536
  }
537
 
538
  if ((isset($_POST[$input_name])) && (!in_array($type, $cimy_uef_file_types))) {
539
+ echo $type;
540
  if ($type == "dropdown-multi")
541
  $field_value = stripslashes(implode(",", $_POST[$input_name]));
542
  else
623
  $query.= $value;
624
  }
625
  }
626
+
627
  if ($type == 'checkbox') {
628
  // if can be editable then write NO
629
  // there is no way to understand if was YES or NO previously
cimy_uef_register.php CHANGED
@@ -138,6 +138,10 @@ function cimy_register_user_extra_fields($user_id, $password="", $meta=array())
138
  continue;
139
  }
140
 
 
 
 
 
141
  if (isset($meta[$input_name]))
142
  $data = stripslashes($meta[$input_name]);
143
  else if (isset($_POST[$input_name])) {
@@ -328,6 +332,10 @@ function cimy_registration_check($user_login, $user_email, $errors) {
328
  }
329
  }
330
 
 
 
 
 
331
  if ($_POST["from"] == "profile") {
332
  // if editing a different user (only admin)
333
  if (isset($_GET['user_id']))
@@ -511,6 +519,15 @@ function cimy_registration_check($user_login, $user_email, $errors) {
511
  }
512
  }
513
 
 
 
 
 
 
 
 
 
 
514
  if (isset($_POST["recaptcha_response_field"])) {
515
  $recaptcha_code_ok = false;
516
 
@@ -628,6 +645,10 @@ function cimy_registration_form($errors=null, $show_type=0) {
628
  }
629
  }
630
 
 
 
 
 
631
  if (isset($_POST[$post_input_name])) {
632
  if ($type == "dropdown-multi")
633
  $value = stripslashes(implode(",", $_POST[$post_input_name]));
@@ -903,7 +924,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
903
 
904
  $i++;
905
  }
906
-
907
  if ($tiny_mce_objects != "") {
908
  $mce_skin = "";
909
 
@@ -917,18 +938,32 @@ function cimy_registration_form($errors=null, $show_type=0) {
917
  require_once($cuef_plugin_dir.'/cimy_uef_init_strength_meter.php');
918
  }
919
 
920
- if (($options['recaptcha']) && (!empty($options['recaptcha_public_key'])) && (!empty($options['recaptcha_private_key']))) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
921
  require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
922
 
923
  ?>
924
  <script type='text/javascript'>
925
  var RecaptchaOptions = {
926
  lang: '<?php echo substr(get_locale(), 0, 2); ?>',
927
- tabindex : <?php echo strval($tabindex); ?>
928
  };
929
  </script>
930
  <?php
931
- $tabindex++;
932
 
933
  // no need if Tiny MCE is present already
934
  if ($tiny_mce_objects == "") {
138
  continue;
139
  }
140
 
141
+ // uploading a file is not supported when confirmation email is enabled (on MS is turned on by default yes)
142
+ if (((is_multisite()) || ($options["confirm_email"])) && (in_array($type, $cimy_uef_file_types)))
143
+ continue;
144
+
145
  if (isset($meta[$input_name]))
146
  $data = stripslashes($meta[$input_name]);
147
  else if (isset($_POST[$input_name])) {
332
  }
333
  }
334
 
335
+ // uploading a file is not supported when confirmation email is enabled (on MS is turned on by default yes)
336
+ if (((is_multisite()) || ($options["confirm_email"])) && (in_array($type, $cimy_uef_file_types)))
337
+ continue;
338
+
339
  if ($_POST["from"] == "profile") {
340
  // if editing a different user (only admin)
341
  if (isset($_GET['user_id']))
519
  }
520
  }
521
 
522
+ if (isset($_POST["securimage_response_field"])) {
523
+ global $cuef_plugin_dir;
524
+ require_once($cuef_plugin_dir.'/securimage/securimage.php');
525
+ $securimage = new Securimage();
526
+ if ($securimage->check($_POST['securimage_response_field']) == false) {
527
+ $errors->add("securimage_code", '<strong>'.__("ERROR", $cimy_uef_domain).'</strong>: '.__('Typed code is not correct.', $cimy_uef_domain));
528
+ }
529
+ }
530
+
531
  if (isset($_POST["recaptcha_response_field"])) {
532
  $recaptcha_code_ok = false;
533
 
645
  }
646
  }
647
 
648
+ // uploading a file is not supported when confirmation email is enabled (on MS is turned on by default yes)
649
+ if (((is_multisite()) || ($options["confirm_email"])) && (in_array($type, $cimy_uef_file_types)))
650
+ continue;
651
+
652
  if (isset($_POST[$post_input_name])) {
653
  if ($type == "dropdown-multi")
654
  $value = stripslashes(implode(",", $_POST[$post_input_name]));
924
 
925
  $i++;
926
  }
927
+
928
  if ($tiny_mce_objects != "") {
929
  $mce_skin = "";
930
 
938
  require_once($cuef_plugin_dir.'/cimy_uef_init_strength_meter.php');
939
  }
940
 
941
+ if ($options['captcha'] == "securimage") {
942
+ global $cuef_securimage_webpath;
943
+ ?>
944
+ <div style="width: 278px; float: left; height: 80px; vertical-align: text-top;">
945
+ <img id="captcha" align="left" style="padding-right: 5px; border: 0" src="<?php echo $cuef_securimage_webpath; ?>securimage_show_captcha.php" alt="CAPTCHA Image" />
946
+ <object type="application/x-shockwave-flash" data="<?php echo $cuef_securimage_webpath; ?>securimage_play.swf?audio=<?php echo $cuef_securimage_webpath; ?>securimage_play.php&#038;bgColor1=#fff&#038;bgColor2=#fff&#038;iconColor=#777&#038;borderWidth=1&#038;borderColor=#000" height="19" width="19"><param name="movie" value="<?php echo $cuef_securimage_webpath; ?>securimage_play.swf?audio=<?php echo $cuef_securimage_webpath; ?>securimage_play.php&#038;bgColor1=#fff&#038;bgColor2=#fff&#038;iconColor=#777&#038;borderWidth=1&#038;borderColor=#000" /></object>
947
+ <br /><br /><br /><br />
948
+ <a align="right" tabindex="<?php echo $tabindex; $tabindex++; ?>" style="border-style: none" href="#" onclick="document.getElementById('captcha').src = '<?php echo $cuef_securimage_webpath; ?>securimage_show_captcha.php?' + Math.random(); return false"><img src="<?php echo $cuef_securimage_webpath; ?>/images/refresh.gif" alt="<?php _e("Change image", $cimy_uef_domain); ?>" border="0" onclick="this.blur()" align="bottom" /></a>
949
+ </div>
950
+ <div style="width: 278px; float: left; height: 50px; vertical-align: bottom; padding: 5px;">
951
+ <?php _e("Insert the code:", $cimy_uef_domain); ?>&nbsp;<input type="text" name="securimage_response_field" size="10" maxlength="6" tabindex="<?php echo $tabindex; $tabindex++; ?>" />
952
+ </div>
953
+ <?php
954
+ }
955
+
956
+ if (($options['captcha'] == "recaptcha") && (!empty($options['recaptcha_public_key'])) && (!empty($options['recaptcha_private_key']))) {
957
  require_once($cuef_plugin_dir.'/recaptcha/recaptchalib.php');
958
 
959
  ?>
960
  <script type='text/javascript'>
961
  var RecaptchaOptions = {
962
  lang: '<?php echo substr(get_locale(), 0, 2); ?>',
963
+ tabindex : <?php echo strval($tabindex); $tabindex++; ?>
964
  };
965
  </script>
966
  <?php
 
967
 
968
  // no need if Tiny MCE is present already
969
  if ($tiny_mce_objects == "") {
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.0-beta1
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  */
@@ -147,11 +147,13 @@ if (is_multisite()) {
147
  $cuef_plugin_dir.= $cuef_plugin_path;
148
  $cuef_css_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."css/";
149
  $cuef_js_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."js/";
 
150
  }
151
  else {
152
  $cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
153
  $cuef_css_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."css/";
154
  $cuef_js_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."js/";
 
155
  }
156
 
157
  wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."upload_file.js", false, false);
@@ -167,7 +169,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
167
  require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
168
 
169
  $cimy_uef_name = "Cimy User Extra Fields";
170
- $cimy_uef_version = "2.0.0-beta1";
171
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
172
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
173
 
@@ -508,6 +510,31 @@ else {
508
 
509
  // add update engine for extra fields to user's registration
510
  add_action('user_register', 'cimy_register_user_extra_fields');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  }
512
 
513
  function cimy_change_signup_location($url) {
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.0-beta2
7
  Author: Marco Cimmino
8
  Author URI: mailto:cimmino.marco@gmail.com
9
  */
147
  $cuef_plugin_dir.= $cuef_plugin_path;
148
  $cuef_css_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."css/";
149
  $cuef_js_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."js/";
150
+ $cuef_securimage_webpath = WP_CONTENT_URL."/".$cimy_uef_plugins_dir."/".$cuef_plugin_path."securimage/";
151
  }
152
  else {
153
  $cuef_plugin_dir = WP_CONTENT_DIR."/plugins/".$cuef_plugin_path;
154
  $cuef_css_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."css/";
155
  $cuef_js_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."js/";
156
+ $cuef_securimage_webpath = WP_CONTENT_URL."/plugins/".$cuef_plugin_path."securimage/";
157
  }
158
 
159
  wp_register_script("cimy_uef_upload_file", $cuef_js_webpath."upload_file.js", false, false);
169
  require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
170
 
171
  $cimy_uef_name = "Cimy User Extra Fields";
172
+ $cimy_uef_version = "2.0.0-beta2";
173
  $cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
174
  $cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
175
 
510
 
511
  // add update engine for extra fields to user's registration
512
  add_action('user_register', 'cimy_register_user_extra_fields');
513
+
514
+ // add filter to redirect after registration
515
+ add_filter('registration_redirect', 'cimy_uef_registration_redirect');
516
+ // this is needed only in the case where both redirection and email confirmation has been enabled
517
+ add_action('login_form_cimy_uef_redirect', 'cimy_uef_redirect');
518
+ }
519
+
520
+ function cimy_uef_registration_redirect($redirect_to) {
521
+ if (empty($redirect_to)) {
522
+ $options = cimy_get_options();
523
+
524
+ if ($options["redirect_to"] == "source")
525
+ $redirect_to = esc_attr($_SERVER["HTTP_REFERER"]);
526
+ }
527
+
528
+ return $redirect_to;
529
+ }
530
+
531
+ function cimy_uef_redirect() {
532
+ if (isset($_GET["cimy_key"]))
533
+ cimy_uef_activate("");
534
+
535
+ if (!empty($_REQUEST["redirect_to"]))
536
+ wp_safe_redirect($_REQUEST["redirect_to"]);
537
+
538
  }
539
 
540
  function cimy_change_signup_location($url) {
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-08-11 00:57+0300\n"
6
- "PO-Revision-Date: 2010-08-11 00:57+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,104 +16,115 @@ 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:432
20
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:436
21
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
22
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:471
23
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:483
 
 
 
24
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
25
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
26
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
27
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
28
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
29
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:537
30
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:543
31
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
32
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:435
33
  msgid "ERROR"
34
  msgstr "ГРЕШКА"
35
 
36
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:432
37
  msgid "does not match."
38
  msgstr ""
39
 
40
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:436
41
  msgid "hasn&#8217;t a correct email syntax."
42
  msgstr "няма правилен email синтаксис."
43
 
44
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:450
45
  msgid "couldn&#8217;t be empty."
46
  msgstr "не може да е празно."
47
 
48
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:470
49
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:479
50
  msgid "isn&#8217;t correct"
51
  msgstr "не е правилно"
52
 
53
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
54
  msgid "YES"
55
  msgstr "ДА"
56
 
57
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
58
  msgid "NO"
59
  msgstr "НЕ"
60
 
61
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:481
62
  msgid "should be"
63
  msgstr "трябва да е"
64
 
65
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:490
66
  msgid "should be an image."
67
  msgstr "трябва да е снимка."
68
 
69
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:501
70
  msgid "couldn&#8217;t have size less than"
71
  msgstr "не може да е с по-малък размер от"
72
 
73
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:507
74
  msgid "couldn&#8217;t have length less than"
75
  msgstr "не може да има по-малка дължина от"
76
 
77
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:519
78
  msgid "couldn&#8217;t have size different than"
79
  msgstr "не може да има размер различен от"
80
 
81
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:525
82
  msgid "couldn&#8217;t have length different than"
83
  msgstr "не може да има дължина различна от"
84
 
85
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:537
86
  msgid "couldn&#8217;t have size more than"
87
  msgstr "не може да има размер по-голям от"
88
 
89
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:543
90
  msgid "couldn&#8217;t have length more than"
91
  msgstr "не може да има дължина по-голяма от"
92
 
93
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:567
 
94
  msgid "Typed code is not correct."
95
  msgstr ""
96
 
97
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:840
98
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:299
99
  #, fuzzy
100
  msgid "Please upload a file with one of the following extensions"
101
  msgstr "Моля качете снимка с някое от тези разширения"
102
 
103
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:846
104
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:363
105
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:305
106
  msgid "Please upload an image with one of the following extensions"
107
  msgstr "Моля качете снимка с някое от тези разширения"
108
 
109
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:926
110
  msgid "Strength indicator"
111
  msgstr ""
112
 
113
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:927
114
  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; )."
115
  msgstr ""
116
 
 
 
 
 
 
 
 
 
 
117
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:418
118
  #, fuzzy
119
  msgid "no fieldset"
@@ -151,281 +162,310 @@ msgstr "Вариантите са сменени по подразбиране"
151
  msgid "Options deleted"
152
  msgstr "Вариантите са изтрити"
153
 
154
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:339
155
  msgid "Options changed"
156
  msgstr "Вариантите са променени"
157
 
158
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:453
159
  msgid "This operation will create/update all missing tables/options, do you want to proceed?"
160
  msgstr ""
161
 
162
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:465
163
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
164
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:698
165
  msgid "Options"
166
  msgstr "Настройки"
167
 
168
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:468
169
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:427
170
  msgid "Add a new Field"
171
  msgstr "Добави друго поле"
172
 
173
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:468
174
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:819
175
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:114
176
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:241
177
  msgid "Extra Fields"
178
  msgstr "Допълнителни полета"
179
 
180
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
181
  msgid "Support the Cimy Project"
182
  msgstr ""
183
 
184
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:482
185
  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!"
186
  msgstr ""
187
 
188
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
189
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:454
190
  msgid "SUCCESSFUL"
191
  msgstr "УСПЕХ"
192
 
193
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:505
194
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:775
195
  msgid "Save Changes"
196
  msgstr "Запази промените"
197
 
198
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:506
199
  msgid "General"
200
  msgstr "Общи"
201
 
202
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:514
203
  msgid "installed is"
204
  msgstr "инсталирано е"
205
 
206
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:518
207
  msgid "OPTIONS DELETED!"
208
  msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
209
 
210
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
211
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:526
212
  msgid "Fix the problem"
213
  msgstr ""
214
 
215
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
216
  msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
217
  msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
218
 
219
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:532
220
  msgid "Picture/Avatar upload"
221
  msgstr ""
222
 
223
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:536
224
  msgid "is created and writable"
225
  msgstr ""
226
 
227
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:538
228
  msgid "is NOT created or webserver does NOT have permission to write on it"
229
  msgstr ""
230
 
231
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
232
  #, fuzzy
233
  msgid "Show all fields in the welcome email"
234
  msgstr "Покажи полето при регистрация"
235
 
236
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:549
237
  msgid "the email sent to the admin and to the user upon registration will have all fields"
238
  msgstr ""
239
 
240
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
241
  msgid "Enable email confirmation"
242
  msgstr ""
243
 
244
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
245
  msgid "user that registers should confirm its email address via a link click"
246
  msgstr ""
247
 
248
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
250
  msgstr ""
251
 
252
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
253
  msgid "Public KEY"
254
  msgstr ""
255
 
256
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
257
  msgid "Private KEY"
258
  msgstr ""
259
 
260
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:584
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Change login/registration page logo"
262
  msgstr ""
263
 
264
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
265
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
266
  #, fuzzy
267
  msgid "Delete the picture"
268
  msgstr "Изтрий поле"
269
 
270
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:592
271
  msgid "Maximum recommended logo width is 328px, but any height should work."
272
  msgstr ""
273
 
274
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
275
  msgid "Database"
276
  msgstr "База данни"
277
 
278
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:607
279
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
280
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
281
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
282
  msgid "select action"
283
  msgstr "избери действие"
284
 
285
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:608
286
  msgid "Default values"
287
  msgstr "Стойност по подразбиране"
288
 
289
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
290
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:627
291
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:646
292
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
293
  msgid "Delete"
294
  msgstr "Изтрий"
295
 
296
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
297
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
298
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
299
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:668
300
  msgid "NOT PRESENT"
301
  msgstr "НЕ СЪЩЕСТВУВА"
302
 
303
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:618
304
  msgid "WordPress Fields table"
305
  msgstr "Таблица с WordPress полета"
306
 
307
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:626
308
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:645
309
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
310
  msgid "Empty"
311
  msgstr "Празно"
312
 
313
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:638
314
  msgid "Extra Fields table"
315
  msgstr "Таблица с допълнителни полета"
316
 
317
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:655
318
  msgid "Users Data table"
319
  msgstr "Таблица с потребителски данни"
320
 
321
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
322
  msgid "all data inserted by users in all and only extra fields"
323
  msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
324
 
325
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
326
  msgid "Force tables creation"
327
  msgstr "Задължително създаване на таблица"
328
 
329
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:676
330
  msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
331
  msgstr ""
332
 
333
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
334
  msgid "User Profile"
335
  msgstr "Потребителски профил"
336
 
337
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:685
338
  #, fuzzy
339
  msgid "Extra Fields section title"
340
  msgstr "Таблица с допълнителни полета"
341
 
342
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
343
  msgid "Fieldset's titles, separates with comma"
344
  msgstr "Заглавията на колекция разделени със запетайка"
345
 
346
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:689
347
  msgid "example: title1,title2,title3"
348
  msgstr "пример: заглавие1,заглавие2,заглавие3"
349
 
350
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
351
  msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
352
  msgstr ""
353
 
354
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:695
355
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:700
356
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:709
357
  msgid "Authors &amp; Users Extended"
358
  msgstr "Автори &amp; Потребители с разширения"
359
 
360
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
361
  msgid "Hide username field"
362
  msgstr "Скрий полето за потребителско име"
363
 
364
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
365
  msgid "Hide name field"
366
  msgstr "Скрий полето за име"
367
 
368
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
369
  msgid "Hide email field"
370
  msgstr "Скрий полето за email"
371
 
372
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
373
  msgid "Hide role field"
374
  msgstr "Скрий полето за роля"
375
 
376
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:718
377
  msgid "Hide website field"
378
  msgstr "Скрий полето за интернет сайт"
379
 
380
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:722
381
  msgid "Hide n. posts field"
382
  msgstr "Скрий полето за брой постове"
383
 
384
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:727
385
  msgid "WordPress hidden fields"
386
  msgstr "Скрити полета на WordPress"
387
 
388
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:730
389
  msgid "Show password"
390
  msgstr ""
391
 
392
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
393
  msgid "Show confirmation password"
394
  msgstr ""
395
 
396
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:738
397
  msgid "Show password strength meter"
398
  msgstr ""
399
 
400
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
401
  msgid "Show first name"
402
  msgstr "Покажи първото име"
403
 
404
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:746
405
  msgid "Show last name"
406
  msgstr "Покажи второто име"
407
 
408
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
409
  msgid "Show nickname"
410
  msgstr "Покажи потребителското име"
411
 
412
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
413
  msgid "Show website"
414
  msgstr "Покажи интернет сайта"
415
 
416
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:758
417
  msgid "Show AIM"
418
  msgstr "Покажи AIM"
419
 
420
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
421
  msgid "Show Yahoo IM"
422
  msgstr "Покажи Yahoo IM"
423
 
424
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
425
  msgid "Show Jabber / Google Talk"
426
  msgstr "Покажи Jabber / Google Talk"
427
 
428
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
429
  msgid "Show Biographical Info"
430
  msgstr ""
431
 
@@ -457,8 +497,8 @@ msgid "Nickname"
457
  msgstr "Име"
458
 
459
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
460
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1479
461
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1480
462
  msgid "Website"
463
  msgstr "Интернет сайт"
464
 
@@ -480,17 +520,17 @@ msgstr "Покажи Jabber / Google Talk"
480
  msgid "Biographical Info"
481
  msgstr ""
482
 
483
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:699
484
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
485
  msgid "Fields"
486
  msgstr "Полета"
487
 
488
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:700
489
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:709
490
  msgid "A&amp;U Extended"
491
  msgstr "А&amp;П с разширения"
492
 
493
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:704
494
  #, fuzzy
495
  msgid "Users Extended"
496
  msgstr "Разширен списък с Автори &amp; Потребители"
@@ -509,44 +549,65 @@ msgstr ""
509
  msgid "File '%s' is not an image."
510
  msgstr ""
511
 
512
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
513
  #, php-format
514
  msgid "New user registration on your site %s:"
515
  msgstr ""
516
 
517
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:41
518
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:52
519
  #, fuzzy, php-format
520
  msgid "Username: %s"
521
  msgstr "Потребителско име"
522
 
523
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:42
524
  #, fuzzy, php-format
525
  msgid "E-mail: %s"
526
  msgstr "e-mail: %s"
527
 
528
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:47
529
  #, php-format
530
  msgid "[%s] New User Registration"
531
  msgstr ""
532
 
533
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:53
534
  #, php-format
535
  msgid "Password: %s"
536
  msgstr ""
537
 
538
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:59
539
  #, php-format
540
  msgid "[%s] Your username and password"
541
  msgstr ""
542
 
543
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:68
544
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:75
 
 
545
  #, php-format
546
  msgid "%s: %s"
547
  msgstr ""
548
 
549
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:92
550
  #, php-format
551
  msgid ""
552
  "To activate your user, please click the following link:\n"
@@ -557,76 +618,57 @@ msgid ""
557
  "\n"
558
  msgstr ""
559
 
560
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:107
561
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:116
562
  msgid "Your account is now active!"
563
  msgstr ""
564
 
565
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:108
566
  #, php-format
567
  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>."
568
  msgstr ""
569
 
570
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:110
571
  msgid "An error occurred during the activation"
572
  msgstr ""
573
 
574
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:116
575
  #, fuzzy
576
  msgid "Username:"
577
  msgstr "Потребителско име"
578
 
579
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:116
580
  msgid "Password:"
581
  msgstr ""
582
 
583
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:129
584
  msgid "Invalid activation key."
585
  msgstr ""
586
 
587
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:132
588
  msgid "The site is already active."
589
  msgstr ""
590
 
591
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:151
592
  msgid "Could not create user"
593
  msgstr ""
594
 
595
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:163
596
  msgid "That username is already activated."
597
  msgstr ""
598
 
599
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:182
600
  msgid "That username is currently reserved but may be available in a couple of days."
601
  msgstr ""
602
 
603
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:185
604
  msgid "username and email used"
605
  msgstr ""
606
 
607
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_validation.php:195
608
  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."
609
  msgstr ""
610
 
611
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
612
- #, fuzzy
613
- msgid "Delete the file"
614
- msgstr "Изтрий поле"
615
-
616
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
617
- #, fuzzy
618
- msgid "Update the file"
619
- msgstr "Поднови поле"
620
-
621
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
622
- #, fuzzy
623
- msgid "Update the picture"
624
- msgstr "Поднови поле"
625
-
626
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
627
- msgid "Picture URL:"
628
- msgstr ""
629
-
630
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
631
  msgid "Add field"
632
  msgstr "Добави поле"
@@ -648,17 +690,17 @@ msgid "Change order"
648
  msgstr "Смени реда"
649
 
650
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
651
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1063
652
  msgid "Min length"
653
  msgstr "Минимална дължина"
654
 
655
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
656
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1064
657
  msgid "Exact length"
658
  msgstr "Точна дължина"
659
 
660
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
661
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1065
662
  msgid "Max length"
663
  msgstr "Максимална дължина"
664
 
@@ -688,17 +730,17 @@ msgid "deleted correctly"
688
  msgstr "изтрит успешно"
689
 
690
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
691
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1055
692
  msgid "Min size"
693
  msgstr "Минимален размер"
694
 
695
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
696
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1056
697
  msgid "Exact size"
698
  msgstr "Точен размер"
699
 
700
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
701
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
702
  msgid "Max size"
703
  msgstr "Максимален размер"
704
 
@@ -773,276 +815,276 @@ msgstr "подновено успешно"
773
  msgid "Name inserted is just in the database, change to another one"
774
  msgstr "Въведеното име е в базата данни, променето го"
775
 
776
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:649
777
  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."
778
  msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
779
 
780
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:651
781
  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'"
782
  msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
783
 
784
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:652
785
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
786
  msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
787
 
788
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:653
789
  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"
790
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
791
 
792
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:654
793
  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)"
794
  msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
795
 
796
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
797
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
798
  msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
799
 
800
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:656
801
  #, fuzzy
802
  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"
803
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
804
 
805
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:657
806
  #, fuzzy
807
  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"
808
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
809
 
810
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
811
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
812
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
813
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1088
814
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1464
815
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1465
816
  msgid "Name"
817
  msgstr "Име"
818
 
819
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:664
820
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:675
821
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
822
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
823
  msgid "Value"
824
  msgstr "Стойност"
825
 
826
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:665
827
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
828
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:846
829
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1094
830
  msgid "Type"
831
  msgstr "Тип"
832
 
833
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
834
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
835
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
836
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
837
  msgid "Label"
838
  msgstr "Етикет"
839
 
 
840
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
841
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:698
842
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:847
843
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
844
  msgid "Description"
845
  msgstr "Описание"
846
 
847
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:667
848
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:848
849
  msgid "Rules"
850
  msgstr "Правила"
851
 
852
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:668
853
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:849
854
  msgid "Actions"
855
  msgstr "Действия"
856
 
857
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:692
858
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
859
  #, fuzzy
860
  msgid "Fieldset"
861
  msgstr "Полета"
862
 
863
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:710
864
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1133
865
  msgid "Can be empty"
866
  msgstr "Може да е празно"
867
 
868
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
869
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
870
  msgid "Check for E-mail syntax"
871
  msgstr "Провери за Email синтаксис"
872
 
873
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
874
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1137
875
  msgid "Can be modified"
876
  msgstr "Може да бъде променяно"
877
 
878
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:715
879
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
880
  msgid "Can be modified only if empty"
881
  msgstr "Може да бъде променяно само ако е празно"
882
 
883
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:716
884
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1139
885
  msgid "Can be modified only by admin"
886
  msgstr "Може да бъде променяно само от администратора"
887
 
888
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
889
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1140
890
  msgid "Can be modified only by admin or if empty"
891
  msgstr "Може да бъде променяно само от администратора или ако е празно"
892
 
893
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:718
894
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1141
895
  msgid "Cannot be modified"
896
  msgstr "Не може да бъде променяно"
897
 
898
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:726
899
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
900
  msgid "Should be equal TO"
901
  msgstr "Би трябвало да е равно НА"
902
 
903
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:728
904
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1148
905
  msgid "Case sensitive"
906
  msgstr "Различават се големи и малко букви"
907
 
908
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:731
909
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
910
  msgid "Regular Expression"
911
  msgstr ""
912
 
913
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:734
914
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
915
  msgid "Show the field in the registration"
916
  msgstr "Покажи полето при регистрация"
917
 
918
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:737
919
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1157
920
  msgid "Show the field in User's profile"
921
  msgstr "Покажи полето в профила на потребителя"
922
 
923
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:740
924
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1166
925
  msgid "Show the field in A&amp;U Extended menu"
926
  msgstr "Покажи полето в A&amp;П разширеното меню"
927
 
928
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:743
929
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1169
930
  #, fuzzy
931
  msgid "Show the field in the search engine"
932
  msgstr "Покажи полето при регистрация"
933
 
934
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:746
935
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1172
936
  #, fuzzy
937
  msgid "Show the field in the blog"
938
  msgstr "Покажи полето при регистрация"
939
 
940
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:749
941
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1175
942
  #, fuzzy
943
  msgid "Show the field if the role is at least:"
944
  msgstr "Покажи полето при регистрация"
945
 
946
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:751
947
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1177
948
  msgid "Anonymous"
949
  msgstr ""
950
 
951
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:762
952
  msgid "Clear"
953
  msgstr "Изчисти"
954
 
955
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:810
956
  msgid "Invert selection"
957
  msgstr "Обърни избора"
958
 
959
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:811
960
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
961
  msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
962
 
963
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:817
964
  msgid "WordPress Fields"
965
  msgstr "WordPress полета"
966
 
967
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:830
968
  msgid "None!"
969
  msgstr "Няма!"
970
 
971
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:845
972
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1076
973
  msgid "Order"
974
  msgstr "Подреди"
975
 
976
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1188
977
  msgid "Reset"
978
  msgstr "Отмени"
979
 
980
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1239
981
  #, fuzzy
982
  msgid "select"
983
  msgstr "Изтрий"
984
 
985
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1342
986
  #, php-format
987
  msgid "Users Matching \"%s\""
988
  msgstr "Потребители отговарящи на \"%s\""
989
 
990
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1346
991
  #, fuzzy
992
  msgid "Users Extended List"
993
  msgstr "Разширен списък с Автори &amp; Потребители"
994
 
995
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1348
996
  msgid "Authors &amp; Users Extended List"
997
  msgstr "Разширен списък с Автори &amp; Потребители"
998
 
999
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1387
1000
  #, php-format
1001
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
1002
  msgstr ""
1003
 
1004
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1399
1005
  msgid "Search Users"
1006
  msgstr "Търсене на потребители"
1007
 
1008
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1425
1009
  msgid "&laquo; Back to All Users"
1010
  msgstr "&laquo; Назад към Всички потребители"
1011
 
1012
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1431
1013
  #, fuzzy
1014
  msgid "Users per page"
1015
  msgstr "Таблица с потребителски данни"
1016
 
1017
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1446
1018
  msgid "Apply"
1019
  msgstr ""
1020
 
1021
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1459
1022
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1460
1023
  msgid "Username"
1024
  msgstr "Потребителско име"
1025
 
1026
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1469
1027
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1470
1028
  msgid "E-mail"
1029
  msgstr "E-mail"
1030
 
1031
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1474
1032
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
1033
  msgid "Role"
1034
  msgstr "Роля"
1035
 
1036
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1484
1037
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1485
1038
  msgid "Posts"
1039
  msgstr "Постове"
1040
 
1041
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1594
1042
  msgid "View posts by this author"
1043
  msgstr "Виж постовете на този автор"
1044
 
1045
- #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1625
1046
  #, php-format
1047
  msgid "e-mail: %s"
1048
  msgstr "e-mail: %s"
2
  msgstr ""
3
  "Project-Id-Version: Cimy User Extra Fields\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-09-21 00:22+0300\n"
6
+ "PO-Revision-Date: 2010-09-21 00:22+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: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:369
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"
162
  msgid "Options deleted"
163
  msgstr "Вариантите са изтрити"
164
 
165
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:345
166
  msgid "Options changed"
167
  msgstr "Вариантите са променени"
168
 
169
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:472
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:481
174
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
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:484
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:484
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_db.php:114
187
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:249
188
  msgid "Extra Fields"
189
  msgstr "Допълнителни полета"
190
 
191
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:490
192
  msgid "Support the Cimy Project"
193
  msgstr ""
194
 
195
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:498
196
  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!"
197
  msgstr ""
198
 
199
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:508
200
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1221
201
  msgid "SUCCESSFUL"
202
  msgstr "УСПЕХ"
203
 
204
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:521
205
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:827
206
  msgid "Save Changes"
207
  msgstr "Запази промените"
208
 
209
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:522
210
  msgid "General"
211
  msgstr "Общи"
212
 
213
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:530
214
  msgid "installed is"
215
  msgstr "инсталирано е"
216
 
217
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:534
218
  msgid "OPTIONS DELETED!"
219
  msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
220
 
221
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
222
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:542
223
  msgid "Fix the problem"
224
  msgstr ""
225
 
226
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
227
  msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
228
  msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
229
 
230
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:548
231
  msgid "Picture/Avatar upload"
232
  msgstr ""
233
 
234
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:552
235
  msgid "is created and writable"
236
  msgstr ""
237
 
238
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:554
239
  msgid "is NOT created or webserver does NOT have permission to write on it"
240
  msgstr ""
241
 
242
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:561
243
  #, fuzzy
244
  msgid "Show all fields in the welcome email"
245
  msgstr "Покажи полето при регистрация"
246
 
247
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:565
248
  msgid "the email sent to the admin and to the user upon registration will have all fields"
249
  msgstr ""
250
 
251
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:573
252
  msgid "Enable email confirmation"
253
  msgstr ""
254
 
255
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:577
256
  msgid "user that registers should confirm its email address via a link click"
257
  msgstr ""
258
 
259
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:579
260
+ msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
261
+ msgstr ""
262
+
263
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:586
264
+ msgid "Redirect to the source"
265
+ msgstr ""
266
+
267
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:590
268
+ msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
269
+ msgstr ""
270
+
271
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:598
272
+ msgid "No captcha"
273
+ msgstr ""
274
+
275
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:606
276
  msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
277
  msgstr ""
278
 
279
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:610
280
  msgid "Public KEY"
281
  msgstr ""
282
 
283
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:614
284
  msgid "Private KEY"
285
  msgstr ""
286
 
287
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:622
288
+ msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
289
+ msgstr ""
290
+
291
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
292
+ msgid "This captcha is probably weaker, but is easier for users"
293
+ msgstr ""
294
+
295
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:629
296
+ #, php-format
297
+ 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>"
298
+ msgstr ""
299
+
300
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:636
301
  msgid "Change login/registration page logo"
302
  msgstr ""
303
 
304
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:641
305
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:433
306
  #, fuzzy
307
  msgid "Delete the picture"
308
  msgstr "Изтрий поле"
309
 
310
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
311
  msgid "Maximum recommended logo width is 328px, but any height should work."
312
  msgstr ""
313
 
314
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:650
315
  msgid "Database"
316
  msgstr "База данни"
317
 
318
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:659
319
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:677
320
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:696
321
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:713
322
  msgid "select action"
323
  msgstr "избери действие"
324
 
325
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:660
326
  msgid "Default values"
327
  msgstr "Стойност по подразбиране"
328
 
329
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:661
330
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:679
331
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:698
332
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:715
333
  msgid "Delete"
334
  msgstr "Изтрий"
335
 
336
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:665
337
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:684
338
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:702
339
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
340
  msgid "NOT PRESENT"
341
  msgstr "НЕ СЪЩЕСТВУВА"
342
 
343
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:670
344
  msgid "WordPress Fields table"
345
  msgstr "Таблица с WordPress полета"
346
 
347
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:678
348
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:697
349
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:714
350
  msgid "Empty"
351
  msgstr "Празно"
352
 
353
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:690
354
  msgid "Extra Fields table"
355
  msgstr "Таблица с допълнителни полета"
356
 
357
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:707
358
  msgid "Users Data table"
359
  msgstr "Таблица с потребителски данни"
360
 
361
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
362
  msgid "all data inserted by users in all and only extra fields"
363
  msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
364
 
365
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:725
366
  msgid "Force tables creation"
367
  msgstr "Задължително създаване на таблица"
368
 
369
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
370
  msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
371
  msgstr ""
372
 
373
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:734
374
  msgid "User Profile"
375
  msgstr "Потребителски профил"
376
 
377
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
378
  #, fuzzy
379
  msgid "Extra Fields section title"
380
  msgstr "Таблица с допълнителни полета"
381
 
382
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
383
  msgid "Fieldset's titles, separates with comma"
384
  msgstr "Заглавията на колекция разделени със запетайка"
385
 
386
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:741
387
  msgid "example: title1,title2,title3"
388
  msgstr "пример: заглавие1,заглавие2,заглавие3"
389
 
390
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:742
391
  msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
392
  msgstr ""
393
 
394
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:747
395
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
396
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
397
  msgid "Authors &amp; Users Extended"
398
  msgstr "Автори &amp; Потребители с разширения"
399
 
400
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:751
401
  msgid "Hide username field"
402
  msgstr "Скрий полето за потребителско име"
403
 
404
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:757
405
  msgid "Hide name field"
406
  msgstr "Скрий полето за име"
407
 
408
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:762
409
  msgid "Hide email field"
410
  msgstr "Скрий полето за email"
411
 
412
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:766
413
  msgid "Hide role field"
414
  msgstr "Скрий полето за роля"
415
 
416
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:770
417
  msgid "Hide website field"
418
  msgstr "Скрий полето за интернет сайт"
419
 
420
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:774
421
  msgid "Hide n. posts field"
422
  msgstr "Скрий полето за брой постове"
423
 
424
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:779
425
  msgid "WordPress hidden fields"
426
  msgstr "Скрити полета на WordPress"
427
 
428
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
429
  msgid "Show password"
430
  msgstr ""
431
 
432
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:786
433
  msgid "Show confirmation password"
434
  msgstr ""
435
 
436
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:790
437
  msgid "Show password strength meter"
438
  msgstr ""
439
 
440
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:794
441
  msgid "Show first name"
442
  msgstr "Покажи първото име"
443
 
444
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:798
445
  msgid "Show last name"
446
  msgstr "Покажи второто име"
447
 
448
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:802
449
  msgid "Show nickname"
450
  msgstr "Покажи потребителското име"
451
 
452
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:806
453
  msgid "Show website"
454
  msgstr "Покажи интернет сайта"
455
 
456
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:810
457
  msgid "Show AIM"
458
  msgstr "Покажи AIM"
459
 
460
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:814
461
  msgid "Show Yahoo IM"
462
  msgstr "Покажи Yahoo IM"
463
 
464
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:818
465
  msgid "Show Jabber / Google Talk"
466
  msgstr "Покажи Jabber / Google Talk"
467
 
468
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:822
469
  msgid "Show Biographical Info"
470
  msgstr ""
471
 
497
  msgstr "Име"
498
 
499
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
500
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1490
501
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1491
502
  msgid "Website"
503
  msgstr "Интернет сайт"
504
 
520
  msgid "Biographical Info"
521
  msgstr ""
522
 
523
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:727
524
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:120
525
  msgid "Fields"
526
  msgstr "Полета"
527
 
528
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:728
529
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:737
530
  msgid "A&amp;U Extended"
531
  msgstr "А&amp;П с разширения"
532
 
533
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:732
534
  #, fuzzy
535
  msgid "Users Extended"
536
  msgstr "Разширен списък с Автори &amp; Потребители"
549
  msgid "File '%s' is not an image."
550
  msgstr ""
551
 
552
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:429
553
+ #, fuzzy
554
+ msgid "Delete the file"
555
+ msgstr "Изтрий поле"
556
+
557
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:430
558
+ #, fuzzy
559
+ msgid "Update the file"
560
+ msgstr "Поднови поле"
561
+
562
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:434
563
+ #, fuzzy
564
+ msgid "Update the picture"
565
+ msgstr "Поднови поле"
566
+
567
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:454
568
+ msgid "Picture URL:"
569
+ msgstr ""
570
+
571
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:38
572
  #, php-format
573
  msgid "New user registration on your site %s:"
574
  msgstr ""
575
 
576
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:39
577
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:50
578
  #, fuzzy, php-format
579
  msgid "Username: %s"
580
  msgstr "Потребителско име"
581
 
582
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:40
583
  #, fuzzy, php-format
584
  msgid "E-mail: %s"
585
  msgstr "e-mail: %s"
586
 
587
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
588
  #, php-format
589
  msgid "[%s] New User Registration"
590
  msgstr ""
591
 
592
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:51
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
  "\n"
619
  msgstr ""
620
 
621
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:204
622
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
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:205
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:207
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:213
636
  #, fuzzy
637
  msgid "Username:"
638
  msgstr "Потребителско име"
639
 
640
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:213
641
  msgid "Password:"
642
  msgstr ""
643
 
644
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:226
645
  msgid "Invalid activation key."
646
  msgstr ""
647
 
648
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:229
649
  msgid "The site is already active."
650
  msgstr ""
651
 
652
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:248
653
  msgid "Could not create user"
654
  msgstr ""
655
 
656
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:260
657
  msgid "That username is already activated."
658
  msgstr ""
659
 
660
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:279
661
  msgid "That username is currently reserved but may be available in a couple of days."
662
  msgstr ""
663
 
664
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:282
665
  msgid "username and email used"
666
  msgstr ""
667
 
668
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:292
669
  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."
670
  msgstr ""
671
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
673
  msgid "Add field"
674
  msgstr "Добави поле"
690
  msgstr "Смени реда"
691
 
692
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
693
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1040
694
  msgid "Min length"
695
  msgstr "Минимална дължина"
696
 
697
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
698
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1041
699
  msgid "Exact length"
700
  msgstr "Точна дължина"
701
 
702
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
703
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1042
704
  msgid "Max length"
705
  msgstr "Максимална дължина"
706
 
730
  msgstr "изтрит успешно"
731
 
732
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:226
733
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1032
734
  msgid "Min size"
735
  msgstr "Минимален размер"
736
 
737
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:227
738
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1033
739
  msgid "Exact size"
740
  msgstr "Точен размер"
741
 
742
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:228
743
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1034
744
  msgid "Max size"
745
  msgstr "Максимален размер"
746
 
815
  msgid "Name inserted is just in the database, change to another one"
816
  msgstr "Въведеното име е в базата данни, променето го"
817
 
818
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
819
  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."
820
  msgstr "За да добавите ново поле, трябва да изберете ново име, тип и етикет; стойността и описанието не са задължителни. Правилата важат по време на регистрацията на потребители."
821
 
822
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
823
  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'"
824
  msgstr "С <strong>radio</strong> и <strong>отметката</strong>: <em>Стойността</em> и <em>равно НА</em> могат да бъдат само 'Yes' или 'No', което означава 'избрано' или 'неизбрано'"
825
 
826
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
827
  msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
828
  msgstr "С <strong>drop-down</strong>: може да въведете всички варианти в етикет, например: етикет/вариант1,вариант2,вариант3"
829
 
830
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:621
831
  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"
832
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
833
 
834
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:622
835
  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)"
836
  msgstr "С <strong>picture-url</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; <em>равно НА</em> означава максимална широчина в пиксели (височината е пропорционална)"
837
 
838
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:623
839
  msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
840
  msgstr "С <strong>registration-date</strong>: <em>равно НА</em> означава формат за дата и време"
841
 
842
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:624
843
  #, fuzzy
844
  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"
845
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
846
 
847
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:625
848
  #, fuzzy
849
  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"
850
  msgstr "Със <strong>picture</strong>: вие може да заместите снимката по подразбиране в <em>Стойност</em>; 'минимален,точен и максимален размер' са в KB; <em>равно НА</em> означава размер в пискели (височина или широчина) на умалената снимка"
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:642
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:1065
856
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1475
857
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1476
858
  msgid "Name"
859
  msgstr "Име"
860
 
861
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:632
862
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:643
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:1068
865
  msgid "Value"
866
  msgstr "Стойност"
867
 
868
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:633
869
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:646
870
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
871
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1071
872
  msgid "Type"
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:665
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:1093
879
  msgid "Label"
880
  msgstr "Етикет"
881
 
882
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:634
883
  #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:666
884
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
885
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1096
 
886
  msgid "Description"
887
  msgstr "Описание"
888
 
889
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:635
890
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
891
  msgid "Rules"
892
  msgstr "Правила"
893
 
894
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:636
895
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:826
896
  msgid "Actions"
897
  msgstr "Действия"
898
 
899
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:660
900
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1087
901
  #, fuzzy
902
  msgid "Fieldset"
903
  msgstr "Полета"
904
 
905
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
906
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1110
907
  msgid "Can be empty"
908
  msgstr "Може да е празно"
909
 
910
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
911
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1111
912
  msgid "Check for E-mail syntax"
913
  msgstr "Провери за Email синтаксис"
914
 
915
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:682
916
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
917
  msgid "Can be modified"
918
  msgstr "Може да бъде променяно"
919
 
920
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:683
921
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
922
  msgid "Can be modified only if empty"
923
  msgstr "Може да бъде променяно само ако е празно"
924
 
925
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:684
926
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1116
927
  msgid "Can be modified only by admin"
928
  msgstr "Може да бъде променяно само от администратора"
929
 
930
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:685
931
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1117
932
  msgid "Can be modified only by admin or if empty"
933
  msgstr "Може да бъде променяно само от администратора или ако е празно"
934
 
935
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:686
936
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
937
  msgid "Cannot be modified"
938
  msgstr "Не може да бъде променяно"
939
 
940
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
941
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1123
942
  msgid "Should be equal TO"
943
  msgstr "Би трябвало да е равно НА"
944
 
945
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:696
946
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1125
947
  msgid "Case sensitive"
948
  msgstr "Различават се големи и малко букви"
949
 
950
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:699
951
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
952
  msgid "Regular Expression"
953
  msgstr ""
954
 
955
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:702
956
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
957
  msgid "Show the field in the registration"
958
  msgstr "Покажи полето при регистрация"
959
 
960
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:705
961
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1134
962
  msgid "Show the field in User's profile"
963
  msgstr "Покажи полето в профила на потребителя"
964
 
965
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:708
966
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1143
967
  msgid "Show the field in A&amp;U Extended menu"
968
  msgstr "Покажи полето в A&amp;П разширеното меню"
969
 
970
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:711
971
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1146
972
  #, fuzzy
973
  msgid "Show the field in the search engine"
974
  msgstr "Покажи полето при регистрация"
975
 
976
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
977
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1149
978
  #, fuzzy
979
  msgid "Show the field in the blog"
980
  msgstr "Покажи полето при регистрация"
981
 
982
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:717
983
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1152
984
  #, fuzzy
985
  msgid "Show the field if the role is at least:"
986
  msgstr "Покажи полето при регистрация"
987
 
988
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:719
989
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1154
990
  msgid "Anonymous"
991
  msgstr ""
992
 
993
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:730
994
  msgid "Clear"
995
  msgstr "Изчисти"
996
 
997
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
998
  msgid "Invert selection"
999
  msgstr "Обърни избора"
1000
 
1001
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:788
1002
  msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
1003
  msgstr "Сигурни ли сте, че искате да изтриете полето/полетата и всички данни въведени от потребителите?"
1004
 
1005
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:794
1006
  msgid "WordPress Fields"
1007
  msgstr "WordPress полета"
1008
 
1009
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:807
1010
  msgid "None!"
1011
  msgstr "Няма!"
1012
 
1013
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:822
1014
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1053
1015
  msgid "Order"
1016
  msgstr "Подреди"
1017
 
1018
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1165
1019
  msgid "Reset"
1020
  msgstr "Отмени"
1021
 
1022
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1250
1023
  #, fuzzy
1024
  msgid "select"
1025
  msgstr "Изтрий"
1026
 
1027
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1353
1028
  #, php-format
1029
  msgid "Users Matching \"%s\""
1030
  msgstr "Потребители отговарящи на \"%s\""
1031
 
1032
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1357
1033
  #, fuzzy
1034
  msgid "Users Extended List"
1035
  msgstr "Разширен списък с Автори &amp; Потребители"
1036
 
1037
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1359
1038
  msgid "Authors &amp; Users Extended List"
1039
  msgstr "Разширен списък с Автори &amp; Потребители"
1040
 
1041
+ #: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
1042
  #, php-format
1043
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
1044
  msgstr ""
1045
 
1046
+