User registration & user profile – Profile Builder - Version 2.6.1

Version Description

  • Updated translation files
  • Added a filter for already logged in message on recover password form: wppb_recover_password_already_logged_in
  • We now process only the submitted form so we can have multiple forms on the same page
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.6.1
Comparing to
See all releases

Code changes from version 2.6.0 to 2.6.1

Files changed (38) hide show
  1. admin/manage-fields.php +5 -2
  2. assets/css/style-front-end.css +2 -2
  3. front-end/class-formbuilder.php +6 -1
  4. front-end/recover.php +1 -1
  5. index.php +2 -2
  6. readme.txt +6 -1
  7. translation/profile-builder-da_DK.mo +0 -0
  8. translation/profile-builder-da_DK.po +626 -42
  9. translation/profile-builder-de_DE.mo +0 -0
  10. translation/profile-builder-de_DE.po +626 -42
  11. translation/profile-builder-es_ES.mo +0 -0
  12. translation/profile-builder-es_ES.po +626 -42
  13. translation/profile-builder-fr_FR.mo +0 -0
  14. translation/profile-builder-fr_FR.po +626 -42
  15. translation/profile-builder-hu_HU.mo +0 -0
  16. translation/profile-builder-hu_HU.po +632 -48
  17. translation/profile-builder-it_IT.mo +0 -0
  18. translation/profile-builder-it_IT.po +635 -51
  19. translation/profile-builder-ja.mo +0 -0
  20. translation/profile-builder-ja.po +626 -43
  21. translation/profile-builder-nb_NO.mo +0 -0
  22. translation/profile-builder-nb_NO.po +626 -42
  23. translation/profile-builder-nl_NL.mo +0 -0
  24. translation/profile-builder-nl_NL.po +642 -58
  25. translation/profile-builder-pl_PL.mo +0 -0
  26. translation/profile-builder-pl_PL.po +627 -42
  27. translation/profile-builder-pt_BR.mo +0 -0
  28. translation/profile-builder-pt_BR.po +626 -42
  29. translation/profile-builder-ro_RO.mo +0 -0
  30. translation/profile-builder-ro_RO.po +627 -42
  31. translation/profile-builder-ru_RU.mo +0 -0
  32. translation/profile-builder-ru_RU.po +627 -42
  33. translation/profile-builder-sl_SL.mo +0 -0
  34. translation/profile-builder-sl_SL.po +628 -42
  35. translation/profile-builder-zh_CN.mo +0 -0
  36. translation/profile-builder-zh_CN.po +1672 -1934
  37. translation/profile-builder-zh_HK.mo +0 -0
  38. translation/profile-builder-zh_HK.po +648 -783
admin/manage-fields.php CHANGED
@@ -122,7 +122,7 @@ function wppb_manage_fields_submenu(){
122
  array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ),
123
  array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ),
124
  array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", 'profile-builder' ) ),
125
- array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( 'Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy', 'profile-builder' ) ),
126
  array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href="custom_url"&gt;custom_text&lt;/a&gt;', 'profile-builder' ) ),
127
  array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ),
128
  array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
@@ -1026,7 +1026,10 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
1026
  // check for the correct the date-format
1027
  if ( $posted_values['field'] == 'Datepicker' ){
1028
  $date_format = strtolower( $posted_values['date-format'] );
1029
- if ( ( trim( $date_format ) != 'mm/dd/yy' ) && ( trim( $date_format ) != 'mm/yy/dd' ) && ( trim( $date_format ) != 'dd/yy/mm' ) && ( trim( $date_format ) != 'dd/mm/yy' ) && ( trim( $date_format ) != 'yy/dd/mm' ) && ( trim( $date_format ) != 'yy/mm/dd' ) )
 
 
 
1030
  $message .= __( "The entered value for the Datepicker is not a valid date-format\n", 'profile-builder' );
1031
 
1032
  elseif ( trim( $date_format ) == '' )
122
  array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ),
123
  array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ),
124
  array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", 'profile-builder' ) ),
125
+ array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( 'Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy', 'profile-builder' ) ),
126
  array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href="custom_url"&gt;custom_text&lt;/a&gt;', 'profile-builder' ) ),
127
  array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ),
128
  array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
1026
  // check for the correct the date-format
1027
  if ( $posted_values['field'] == 'Datepicker' ){
1028
  $date_format = strtolower( $posted_values['date-format'] );
1029
+ if ( trim( $date_format ) != 'mm/dd/yy' && trim( $date_format ) != 'mm/yy/dd' && trim( $date_format ) != 'dd/yy/mm' &&
1030
+ trim( $date_format ) != 'dd/mm/yy' && trim( $date_format ) != 'yy/dd/mm' && trim( $date_format ) != 'yy/mm/dd' &&
1031
+ trim( $date_format ) != 'yy-mm-dd' && trim( $date_format ) != 'DD, dd-M-y' && trim( $date_format ) != 'D, dd M yy' &&
1032
+ trim( $date_format ) != 'D, d M y' && trim( $date_format ) != 'D, d M yy' && trim( $date_format ) != 'mm-dd-yy' && trim( $date_format ) != '@' )
1033
  $message .= __( "The entered value for the Datepicker is not a valid date-format\n", 'profile-builder' );
1034
 
1035
  elseif ( trim( $date_format ) == '' )
assets/css/style-front-end.css CHANGED
@@ -556,12 +556,12 @@ ul.wppb-faceted-list input[type="checkbox"]{
556
  margin-right: 5px;
557
  }
558
 
559
- .wppb-userlisting-container.spinner{
560
  position:relative;
561
  opacity: 0.5
562
  }
563
 
564
- .wppb-userlisting-container.spinner:after{
565
  content: '';
566
  position: absolute;
567
  top: 50%;
556
  margin-right: 5px;
557
  }
558
 
559
+ .wppb-userlisting-container.wppb-spinner{
560
  position:relative;
561
  opacity: 0.5
562
  }
563
 
564
+ .wppb-userlisting-container.wppb-spinner:after{
565
  content: '';
566
  position: absolute;
567
  top: 50%;
front-end/class-formbuilder.php CHANGED
@@ -247,7 +247,7 @@ class Profile_Builder_Form_Creator{
247
  function wppb_form_content( $message ) {
248
  $field_check_errors = array();
249
 
250
- if( isset( $_REQUEST['action'] ) ) {
251
  $field_check_errors = $this->wppb_test_required_form_values( $_REQUEST );
252
  if( empty( $field_check_errors ) ) {
253
 
@@ -273,6 +273,11 @@ class Profile_Builder_Form_Creator{
273
  $account_name = sanitize_user( $_POST['username'] );
274
  } elseif( isset( $_POST['email'] ) && ( trim( $_POST['email'] ) != '' ) ) {
275
  $account_name = sanitize_email( $_POST['email'] );
 
 
 
 
 
276
  }
277
 
278
  if( $this->args['form_type'] == 'register' ) {
247
  function wppb_form_content( $message ) {
248
  $field_check_errors = array();
249
 
250
+ if( isset( $_REQUEST['action'] ) && $_REQUEST['form_name'] == $this->args['form_name'] ) {
251
  $field_check_errors = $this->wppb_test_required_form_values( $_REQUEST );
252
  if( empty( $field_check_errors ) ) {
253
 
273
  $account_name = sanitize_user( $_POST['username'] );
274
  } elseif( isset( $_POST['email'] ) && ( trim( $_POST['email'] ) != '' ) ) {
275
  $account_name = sanitize_email( $_POST['email'] );
276
+ }else{
277
+ /* we are in the edit form with no username or email field */
278
+ $current_user = wp_get_current_user();
279
+ if( !empty( $current_user ) )
280
+ $account_name = $current_user->user_login;
281
  }
282
 
283
  if( $this->args['form_type'] == 'register' ) {
front-end/recover.php CHANGED
@@ -148,7 +148,7 @@ function wppb_front_end_password_recovery(){
148
  global $wpdb;
149
 
150
  if( is_user_logged_in() )
151
- return __( 'You are already logged in. You can change your password on the edit profile form.', 'profile-builder' );
152
 
153
  ob_start();
154
 
148
  global $wpdb;
149
 
150
  if( is_user_logged_in() )
151
+ return apply_filters( 'wppb_recover_password_already_logged_in', __( 'You are already logged in. You can change your password on the edit profile form.', 'profile-builder' ) );
152
 
153
  ob_start();
154
 
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.6.0
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.6.0' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.6.1
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.6.1' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: user registration, user profile, user registration form, user fields, extr
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.7.3
8
- Stable tag: 2.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -150,6 +150,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
 
 
 
 
 
153
  = 2.6.0 =
154
  * Compatibility with WPML for login widget/shortcode error messages
155
  * Small change to meta name generation function that could eliminate a notice on some setups
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.7.3
8
+ Stable tag: 2.6.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
153
+ = 2.6.1 =
154
+ * Updated translation files
155
+ * Added a filter for already logged in message on recover password form: wppb_recover_password_already_logged_in
156
+ * We now process only the submitted form so we can have multiple forms on the same page
157
+
158
  = 2.6.0 =
159
  * Compatibility with WPML for login widget/shortcode error messages
160
  * Small change to meta name generation function that could eliminate a notice on some setups
translation/profile-builder-da_DK.mo CHANGED
Binary file
translation/profile-builder-da_DK.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">inst
1065
  msgid "Paid Accounts"
1066
  msgstr "Betalt konto"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "Plugin er aktiv"
@@ -1077,6 +1189,14 @@ msgstr "Plugin er aktiveret"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "Plugin er blevet deaktiveret"
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr "Individual User Redirects"
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr "Vælg brugerrolle"
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr "Rollebaseret bruger redirects"
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr "<pre>Redirect</pre><pre>URL</pre>"
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr "Select on what user roles to activate Admin Approval."
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "Din konto er oprettet!"
@@ -2587,7 +2766,7 @@ msgstr "Du skal enter site nøglen (Key)\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Du skal enter den hemmelige nøgle (Key)\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Tilføjelser"
2593
 
@@ -2776,6 +2955,22 @@ msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
2776
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2777
  msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
2778
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2779
  #: admin/manage-fields.php:122
2780
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2781
  msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
@@ -2800,7 +2995,7 @@ msgstr "Brugerroller orden"
2800
  msgid "Save the user role order from the user roles checkboxes"
2801
  msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
2802
 
2803
- #: admin/manage-fields.php:1122
2804
  msgid "Please select at least one user role\n"
2805
  msgstr "Vælg venligst mindst en brugerrolle\n"
2806
 
@@ -2820,6 +3015,10 @@ msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
2820
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2821
  msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
2822
 
 
 
 
 
2823
  #: features/email-confirmation/class-email-confirmation.php:91
2824
  msgid "show"
2825
  msgstr "vis"
@@ -2828,6 +3027,10 @@ msgstr "vis"
2828
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2829
  msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
2830
 
 
 
 
 
2831
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2832
  msgid "The password must have the minimum length of %s characters"
2833
  msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
@@ -2890,11 +3093,15 @@ msgstr "Bruger ikke fundet"
2890
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2891
  msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
2892
 
 
 
 
 
2893
  #: admin/manage-fields.php:127
2894
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2895
  msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
2896
 
2897
- #: admin/manage-fields.php:1049
2898
  msgid "The meta-name cannot be empty\n"
2899
  msgstr "'Meta-name' kan ikke være tom\n"
2900
 
@@ -2906,11 +3113,20 @@ msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere
2906
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2907
  msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
2908
 
2909
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2910
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2911
  msgid "...Choose"
2912
  msgstr "...Vælg"
2913
 
 
 
 
 
 
 
2914
  #: features/functions.php:552
2915
  msgid "Very Weak"
2916
  msgstr "Meget svag"
@@ -2943,6 +3159,10 @@ msgstr "e-mail"
2943
  msgid "Lost your password?"
2944
  msgstr "Mistet din adgangskode?"
2945
 
 
 
 
 
2946
  #: modules/email-customizer/admin-email-customizer.php:54
2947
  #: modules/email-customizer/user-email-customizer.php:54
2948
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2984,10 +3204,18 @@ msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugero
2984
  msgid "Show/Hide the Admin Bar on the Front-End"
2985
  msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
2986
 
2987
- #: admin/admin-bar.php:10
2988
  msgid "Admin Bar Settings"
2989
  msgstr "Admin menu indstillinger "
2990
 
 
 
 
 
 
 
 
 
2991
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2992
  #: modules/multiple-forms/register-forms.php:230
2993
  msgid "Default"
@@ -3001,7 +3229,9 @@ msgstr "Vis"
3001
  msgid "Hide"
3002
  msgstr "Skjul"
3003
 
3004
- #: features/functions.php:697
 
 
3005
  msgid "Save Changes"
3006
  msgstr "Gem ændringer"
3007
 
@@ -3010,22 +3240,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3010
  msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
3011
 
3012
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3013
  msgid "General Settings"
3014
  msgstr "Generelle indstillinger"
3015
 
3016
- #: admin/admin-functions.php:137
3017
  msgid "Very weak"
3018
  msgstr "Meget svag"
3019
 
3020
- #: admin/admin-functions.php:137 features/functions.php:552
 
3021
  msgid "Weak"
3022
  msgstr "Svag"
3023
 
3024
- #: admin/admin-functions.php:137 features/functions.php:552
 
3025
  msgid "Medium"
3026
  msgstr "Middel"
3027
 
3028
- #: admin/admin-functions.php:137 features/functions.php:552
 
3029
  msgid "Strong"
3030
  msgstr "Stærk"
3031
 
@@ -3034,6 +3268,7 @@ msgid "Add Field"
3034
  msgstr "Tilføj felt"
3035
 
3036
  #: admin/admin-functions.php:189
 
3037
  msgid "Save Settings"
3038
  msgstr "Gem indstillinger"
3039
 
@@ -3053,10 +3288,151 @@ msgstr "<strong>Profile Builder </strong>"
3053
  msgid "The best way to add front-end registration, edit profile and login forms."
3054
  msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3055
 
3056
- #: features/login-widget/login-widget.php:59
 
 
 
 
3057
  msgid "Login"
3058
  msgstr "Log ind"
3059
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3060
  #: modules/user-listing/userlisting.php:11
3061
  #: modules/user-listing/userlisting.php:12
3062
  #: modules/user-listing/userlisting.php:17
@@ -3064,11 +3440,45 @@ msgstr "Log ind"
3064
  msgid "User Listing"
3065
  msgstr "Brugeroversigt"
3066
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3067
  #: modules/custom-redirects/custom_redirects_admin.php:32
3068
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3069
  msgid "Custom Redirects"
3070
  msgstr "Brugertilpassede omdirigeringer ('redirects')"
3071
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3072
  #: admin/basic-info.php:187
3073
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3074
  msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
@@ -3077,6 +3487,12 @@ msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3077
  msgid "** only available in the %1$sPro version%2$s."
3078
  msgstr "** kun tilgængelig i %1$sPro version%2$s."
3079
 
 
 
 
 
 
 
3080
  #: modules/multiple-forms/edit-profile-forms.php:206
3081
  #: modules/multiple-forms/register-forms.php:229
3082
  #: modules/multiple-forms/register-forms.php:230
@@ -3088,6 +3504,11 @@ msgstr "Ja"
3088
  msgid "You can find the default file here: %1$s"
3089
  msgstr "Du kan finde default filen her: %1$s"
3090
 
 
 
 
 
 
3091
  #: modules/multiple-forms/edit-profile-forms.php:206
3092
  #: modules/multiple-forms/register-forms.php:229
3093
  #: modules/multiple-forms/register-forms.php:230
@@ -3098,15 +3519,39 @@ msgstr "Nej"
3098
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3099
  msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3101
  #: admin/general-settings.php:111
3102
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3103
  msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3104
 
 
 
 
 
3105
  #: admin/general-settings.php:152
3106
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3107
  msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
3108
 
3109
- #: admin/manage-fields.php:198
 
 
 
 
3110
  #: features/admin-approval/class-admin-approval.php:166
3111
  #: features/email-confirmation/class-email-confirmation.php:167
3112
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3119,12 +3564,29 @@ msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-m
3119
  msgid "Username"
3120
  msgstr "Brugernavn"
3121
 
3122
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3123
  #: modules/user-listing/userlisting.php:736
3124
  #: modules/user-listing/userlisting.php:2153
3125
  msgid "Email"
3126
  msgstr "E-mail"
3127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3128
  #: admin/manage-fields.php:12
3129
  msgid "Manage Fields"
3130
  msgstr "Håndter felter"
@@ -3203,10 +3665,6 @@ msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis
3203
  msgid "Date-format"
3204
  msgstr "Datoformat"
3205
 
3206
- #: admin/manage-fields.php:125
3207
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3208
- msgstr "Angiv datoformatet når du bruge datovælger ('Datepicker')<br/>Gyldige formater: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Hvis ikke angivet er default sat til mm/dd/yy"
3209
-
3210
  #: admin/manage-fields.php:126
3211
  msgid "Terms of Agreement"
3212
  msgstr "Aftalebetingelser"
@@ -3370,7 +3828,7 @@ msgstr "Gentag dit kodeord"
3370
  msgid "Type your password again. "
3371
  msgstr "Skriv dit kodeord igen."
3372
 
3373
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3374
  msgid "You must select a field\n"
3375
  msgstr "Du skal vælge et felt\n"
3376
 
@@ -3394,36 +3852,38 @@ msgstr "Det indsatte række nummer er ikke nummeret\n"
3394
  msgid "You must enter a value for the row number\n"
3395
  msgstr "Du skal indtaste en værdi for rækkenummeret\n"
3396
 
3397
- #: admin/manage-fields.php:1030
3398
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3399
  msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
3400
 
3401
- #: admin/manage-fields.php:1033
3402
  msgid "You must enter a value for the date-format\n"
3403
  msgstr "Du skal indskrive en værdi for datoformatet\n"
3404
 
3405
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3406
- #: admin/manage-fields.php:1080
3407
  msgid "That meta-name is already in use\n"
3408
  msgstr "Det meta-navn er allerede i brug\n"
3409
 
3410
- #: admin/manage-fields.php:1111
3411
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3412
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
3413
 
3414
- #: admin/manage-fields.php:1115
3415
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3416
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
3417
 
3418
- #: admin/manage-fields.php:1138
3419
  msgid "That field is already added in this form\n"
3420
  msgstr "Det felt er allerede tilføjet denne formular\n"
3421
 
3422
- #: admin/manage-fields.php:1187
3423
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3424
  msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
3425
 
3426
- #: admin/manage-fields.php:1187
 
 
3427
  #: features/admin-approval/class-admin-approval.php:108
3428
  #: features/functions.php:718 features/functions.php:725
3429
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3434,7 +3894,9 @@ msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-
3434
  msgid "Edit"
3435
  msgstr "Rediger"
3436
 
3437
- #: admin/manage-fields.php:1187
 
 
3438
  #: features/admin-approval/class-admin-approval.php:113
3439
  #: features/admin-approval/class-admin-approval.php:224
3440
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3447,6 +3909,10 @@ msgstr "Rediger"
3447
  msgid "Delete"
3448
  msgstr "Slet"
3449
 
 
 
 
 
3450
  #: admin/register-version.php:14
3451
  msgid "Register Your Version"
3452
  msgstr "Registrer din version"
@@ -3455,6 +3921,14 @@ msgstr "Registrer din version"
3455
  msgid "Register Version"
3456
  msgstr "Registrer version"
3457
 
 
 
 
 
 
 
 
 
3458
  #: admin/register-version.php:77
3459
  msgid "The serial number was successfully validated!"
3460
  msgstr "Serienummeret blev godkendt!"
@@ -3471,22 +3945,48 @@ msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
3471
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3472
  msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
3473
 
3474
- #: features/functions.php:725
 
 
 
 
3475
  msgid "Content"
3476
  msgstr "Indhold"
3477
 
 
 
 
 
 
 
 
 
 
 
 
 
3478
  #: front-end/extra-fields/upload/upload.php:122
3479
  msgid "Select File"
3480
  msgstr "Vælg en fil"
3481
 
 
3482
  #: front-end/extra-fields/upload/upload.php:112
3483
  msgid "Remove"
3484
  msgstr "Fjern"
3485
 
 
 
 
 
 
3486
  #: front-end/extra-fields/upload/upload.php:128
3487
  msgid "Upload "
3488
  msgstr "Upload"
3489
 
 
 
 
 
3490
  #: features/class-list-table.php:308
3491
  msgid "Bulk Actions"
3492
  msgstr "Mængde aktion"
@@ -3495,6 +3995,10 @@ msgstr "Mængde aktion"
3495
  msgid "Apply"
3496
  msgstr "Tilføj"
3497
 
 
 
 
 
3498
  #: features/class-list-table.php:415
3499
  msgid "%1$s %2$d"
3500
  msgstr "%1$s %2$d"
@@ -3511,6 +4015,10 @@ msgstr "Uddragsvisning"
3511
  msgid "%s pending"
3512
  msgstr "%s afventer"
3513
 
 
 
 
 
3514
  #: features/class-list-table.php:713
3515
  msgid "Select All"
3516
  msgstr "Vælg alt"
@@ -3520,9 +4028,15 @@ msgid "Strength indicator"
3520
  msgstr "Styrkeindikator"
3521
 
3522
  #: features/admin-approval/admin-approval.php:14
 
3523
  msgid "Admin Approval"
3524
  msgstr "Admin godkendelse"
3525
 
 
 
 
 
 
3526
  #: features/admin-approval/admin-approval.php:51
3527
  msgid "Your session has expired! Please refresh the page and try again"
3528
  msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
@@ -3647,6 +4161,19 @@ msgstr "Registreret"
3647
  msgid "User-status"
3648
  msgstr "Brugerstatus"
3649
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3650
  #: features/email-confirmation/class-email-confirmation.php:278
3651
  msgid "Sorry, but you don't have permission to do that!"
3652
  msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
@@ -3659,6 +4186,11 @@ msgstr "Godkendt"
3659
  msgid "Unapproved"
3660
  msgstr "Ikke godkendt"
3661
 
 
 
 
 
 
3662
  #: features/email-confirmation/class-email-confirmation.php:120
3663
  msgid "delete this user from the _signups table?"
3664
  msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
@@ -3697,6 +4229,11 @@ msgstr "De valgte brugere er blevet aktiveret"
3697
  msgid "The selected users have had their activation emails resent"
3698
  msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
3699
 
 
 
 
 
 
3700
  #: features/email-confirmation/email-confirmation.php:107
3701
  msgid "There was an error performing that action!"
3702
  msgstr "Der opstod en fejl ved udførelsen af denne handling!"
@@ -3760,10 +4297,26 @@ msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din
3760
  msgid "Profile Builder Login Widget"
3761
  msgstr "Profile Builder login widget"
3762
 
3763
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3764
  msgid "Register"
3765
  msgstr "Registrer"
3766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3767
  #: features/upgrades/upgrades-functions.php:91
3768
  #: features/upgrades/upgrades-functions.php:134
3769
  msgid "The usernames cannot be changed."
@@ -3805,35 +4358,35 @@ msgstr "her"
3805
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3806
  msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
3807
 
3808
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3809
  msgid "The account %1s has been successfully created!"
3810
  msgstr "Kontoen %1s er oprettet uden problemer!"
3811
 
3812
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3813
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3814
  msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
3815
 
3816
- #: front-end/class-formbuilder.php:299
3817
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3818
  msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
3819
 
3820
- #: front-end/class-formbuilder.php:322
3821
  msgid "Your profile has been successfully updated!"
3822
  msgstr "Din profil er blevet opdateret uden problemer!"
3823
 
3824
- #: front-end/class-formbuilder.php:333
3825
  msgid "There was an error in the submitted form"
3826
  msgstr "Der var en fejl i den sendte formular. "
3827
 
3828
- #: front-end/class-formbuilder.php:390
3829
  msgid "Add User"
3830
  msgstr "Tilføj bruger"
3831
 
3832
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3833
  msgid "Update"
3834
  msgstr "Opdater"
3835
 
3836
- #: front-end/class-formbuilder.php:456
3837
  msgid "Send these credentials via email."
3838
  msgstr "Send disse legitimationsoplysninger via e-mail."
3839
 
@@ -4047,20 +4600,47 @@ msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!
4047
  msgid "To use reCAPTCHA you must get an API public key from:"
4048
  msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4049
 
4050
- #: modules/modules.php:11
4051
  msgid "Modules"
4052
  msgstr "Moduler"
4053
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4054
  #: modules/email-customizer/admin-email-customizer.php:11
4055
  #: modules/email-customizer/admin-email-customizer.php:12
 
4056
  msgid "Admin Email Customizer"
4057
  msgstr "Opsætning af administrator e-mails"
4058
 
4059
  #: modules/email-customizer/user-email-customizer.php:11
4060
  #: modules/email-customizer/user-email-customizer.php:12
 
4061
  msgid "User Email Customizer"
4062
  msgstr "Opsætning af bruger e-mails"
4063
 
 
4064
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4065
  msgid "Save"
4066
  msgstr "Gem"
@@ -4386,6 +4966,10 @@ msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
4386
  msgid "<pre>Title (Type)</pre>"
4387
  msgstr "<pre>Titel (Type)</pre>"
4388
 
 
 
 
 
4389
  #: modules/multiple-forms/register-forms.php:11
4390
  #: modules/multiple-forms/register-forms.php:12
4391
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Anbefalede plugins"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Fri"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Accept user payments, create subscription plans and restrict content on your membership site."
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Flere detaljer"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Betalt konto"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Paid Member Subscriptions - a free WordPress plugin"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Betalt og fri tilmelding"
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Beskyt indhold"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Medlemsstyring"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "Email skabeloner"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Kontostyring"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Tilmeldingsstyring"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Betalingsstyring"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Plugin er aktiv"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Plugin er blevet deaktiveret"
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Step by Step Quick Setup"
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Individual User Redirects"
1273
 
1280
  msgstr "Vælg brugerrolle"
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Rollebaseret bruger redirects"
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Redirect</pre><pre>URL</pre>"
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr "These redirects happen after a successful action, like registration or after a successful login."
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr "Which redirect happens depends on the following priority:"
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr "Redirect Default WordPress forms and pages"
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr "Available tags for dynamic URLs"
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr "You use the following tags in your URLs to redirect users to various pages."
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr "generates a url of the current website homepage."
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr "Bruger ID "
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr "URL på sidst besøgte side"
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr "Admin godkendelse på denne brugerrolle"
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Select on what user roles to activate Admin Approval."
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Di konto skal godekendes af en administrator før du kan logge ind"
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Din konto er oprettet!"
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Du skal enter den hemmelige nøgle (Key)\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Tilføjelser"
2772
 
2955
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2956
  msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
2957
 
2958
+ #: admin/general-settings.php:163
2959
+ msgid "Username and Email"
2960
+ msgstr "Brugernavn og e-mail"
2961
+
2962
+ #: admin/general-settings.php:168
2963
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2964
+ msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
2965
+
2966
+ #: admin/general-settings.php:169
2967
+ msgid "\"Username\" - users can Log In only with Username."
2968
+ msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
2969
+
2970
+ #: admin/general-settings.php:170
2971
+ msgid "\"Email\" - users can Log In only with Email."
2972
+ msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
2973
+
2974
  #: admin/manage-fields.php:122
2975
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2976
  msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
2995
  msgid "Save the user role order from the user roles checkboxes"
2996
  msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
2997
 
2998
+ #: admin/manage-fields.php:1125
2999
  msgid "Please select at least one user role\n"
3000
  msgstr "Vælg venligst mindst en brugerrolle\n"
3001
 
3015
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3016
  msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
3017
 
3018
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3019
+ msgid "Add Entry"
3020
+ msgstr "Tilføj post"
3021
+
3022
  #: features/email-confirmation/class-email-confirmation.php:91
3023
  msgid "show"
3024
  msgstr "vis"
3027
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3028
  msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
3029
 
3030
+ #: front-end/class-formbuilder.php:643
3031
+ msgid "User to edit:"
3032
+ msgstr "Bruger der skal redigeres:"
3033
+
3034
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3035
  msgid "The password must have the minimum length of %s characters"
3036
  msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
3093
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3094
  msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
3095
 
3096
+ #: admin/admin-bar.php:48
3097
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3098
+ msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
3099
+
3100
  #: admin/manage-fields.php:127
3101
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3102
  msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
3103
 
3104
+ #: admin/manage-fields.php:1052
3105
  msgid "The meta-name cannot be empty\n"
3106
  msgstr "'Meta-name' kan ikke være tom\n"
3107
 
3113
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3114
  msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
3115
 
3116
+ #: assets/lib/wck-api/fields/country select.php:14
3117
+ #: assets/lib/wck-api/fields/cpt select.php:17
3118
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3119
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3120
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3121
  msgid "...Choose"
3122
  msgstr "...Vælg"
3123
 
3124
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3125
+ msgid "1 item"
3126
+ msgid_plural "%s items"
3127
+ msgstr[0] "1 emne"
3128
+ msgstr[1] ""
3129
+
3130
  #: features/functions.php:552
3131
  msgid "Very Weak"
3132
  msgstr "Meget svag"
3159
  msgid "Lost your password?"
3160
  msgstr "Mistet din adgangskode?"
3161
 
3162
+ #: index.php:34
3163
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3164
+ msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
3165
+
3166
  #: modules/email-customizer/admin-email-customizer.php:54
3167
  #: modules/email-customizer/user-email-customizer.php:54
3168
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3204
  msgid "Show/Hide the Admin Bar on the Front-End"
3205
  msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
3206
 
3207
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3208
  msgid "Admin Bar Settings"
3209
  msgstr "Admin menu indstillinger "
3210
 
3211
+ #: admin/admin-bar.php:57
3212
+ msgid "User-Role"
3213
+ msgstr "Brugerrolle"
3214
+
3215
+ #: admin/admin-bar.php:58
3216
+ msgid "Visibility"
3217
+ msgstr "Synlighed"
3218
+
3219
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3220
  #: modules/multiple-forms/register-forms.php:230
3221
  msgid "Default"
3229
  msgid "Hide"
3230
  msgstr "Skjul"
3231
 
3232
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3233
+ #: admin/register-version.php:95 features/functions.php:697
3234
+ #: modules/modules.php:127
3235
  msgid "Save Changes"
3236
  msgstr "Gem ændringer"
3237
 
3240
  msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
3241
 
3242
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3243
+ #: admin/general-settings.php:38
3244
  msgid "General Settings"
3245
  msgstr "Generelle indstillinger"
3246
 
3247
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3248
  msgid "Very weak"
3249
  msgstr "Meget svag"
3250
 
3251
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3252
+ #: features/functions.php:552
3253
  msgid "Weak"
3254
  msgstr "Svag"
3255
 
3256
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3257
+ #: features/functions.php:552
3258
  msgid "Medium"
3259
  msgstr "Middel"
3260
 
3261
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3262
+ #: features/functions.php:552
3263
  msgid "Strong"
3264
  msgstr "Stærk"
3265
 
3268
  msgstr "Tilføj felt"
3269
 
3270
  #: admin/admin-functions.php:189
3271
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3272
  msgid "Save Settings"
3273
  msgstr "Gem indstillinger"
3274
 
3288
  msgid "The best way to add front-end registration, edit profile and login forms."
3289
  msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3290
 
3291
+ #: admin/basic-info.php:33
3292
+ msgid "For Modern User Interaction"
3293
+ msgstr "Til 'Modern User Interaction'"
3294
+
3295
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3296
  msgid "Login"
3297
  msgstr "Log ind"
3298
 
3299
+ #: admin/basic-info.php:40
3300
+ msgid "Registration"
3301
+ msgstr "Registrering"
3302
+
3303
+ #: admin/basic-info.php:44
3304
+ msgid "Edit Profile"
3305
+ msgstr "Rediger profil"
3306
+
3307
+ #: admin/basic-info.php:51
3308
+ msgid "Extra Features"
3309
+ msgstr "Ekstra funktioner"
3310
+
3311
+ #: admin/basic-info.php:52
3312
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3313
+ msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
3314
+
3315
+ #: admin/basic-info.php:53
3316
+ msgid "Enable extra features"
3317
+ msgstr "Aktiver ekstra funktioner"
3318
+
3319
+ #: admin/basic-info.php:57
3320
+ msgid "Recover Password"
3321
+ msgstr "Genskab adgangskode"
3322
+
3323
+ #: admin/basic-info.php:61
3324
+ msgid "Admin Approval (*)"
3325
+ msgstr "Admin godkendelse (*)"
3326
+
3327
+ #: admin/basic-info.php:62
3328
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3329
+ msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
3330
+
3331
+ #: admin/basic-info.php:65
3332
+ msgid "Email Confirmation"
3333
+ msgstr "E-mail bekræftelse"
3334
+
3335
+ #: admin/basic-info.php:66
3336
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3337
+ msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
3338
+
3339
+ #: admin/basic-info.php:69
3340
+ msgid "Minimum Password Length and Strength Meter"
3341
+ msgstr "Minimum længde og styrke på adgangskode"
3342
+
3343
+ #: admin/basic-info.php:70
3344
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3345
+ msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
3346
+
3347
+ #: admin/basic-info.php:73
3348
+ msgid "Login with Email or Username"
3349
+ msgstr "Log ind med e-mail eller brugernavn"
3350
+
3351
+ #: admin/basic-info.php:74
3352
+ msgid "Allow users to log in with their email or username when accessing your site."
3353
+ msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
3354
+
3355
+ #: admin/basic-info.php:87
3356
+ msgid "Customize Your Forms The Way You Want (*)"
3357
+ msgstr "Tilpas dine formularer som du ønsker det (*)"
3358
+
3359
+ #: admin/basic-info.php:88
3360
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3361
+ msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
3362
+
3363
+ #: admin/basic-info.php:90
3364
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3365
+ msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
3366
+
3367
+ #: admin/basic-info.php:92
3368
+ msgid "Get started with extra fields"
3369
+ msgstr "Kom i gang med ekstra felter"
3370
+
3371
+ #: admin/basic-info.php:95
3372
+ msgid "Avatar Upload"
3373
+ msgstr "Avatar upload"
3374
+
3375
+ #: admin/basic-info.php:96
3376
+ msgid "Generic Uploads"
3377
+ msgstr "Generisk upload"
3378
+
3379
+ #: admin/basic-info.php:97
3380
+ msgid "Agree To Terms Checkbox"
3381
+ msgstr "Accept af betingelser tjekboks"
3382
+
3383
+ #: admin/basic-info.php:98
3384
+ msgid "Datepicker"
3385
+ msgstr "Datovælger"
3386
+
3387
+ #: admin/basic-info.php:101
3388
+ msgid "reCAPTCHA"
3389
+ msgstr "reCAPTCHA"
3390
+
3391
+ #: admin/basic-info.php:102
3392
+ msgid "Country Select"
3393
+ msgstr "Landevalg"
3394
+
3395
+ #: admin/basic-info.php:104
3396
+ msgid "Timezone Select"
3397
+ msgstr "Tidszone valg"
3398
+
3399
+ #: admin/basic-info.php:108
3400
+ msgid "Input / Hidden Input"
3401
+ msgstr "Input / Skjult input"
3402
+
3403
+ #: admin/basic-info.php:110
3404
+ msgid "Checkbox"
3405
+ msgstr "Tjekboks"
3406
+
3407
+ #: admin/basic-info.php:111
3408
+ msgid "Select"
3409
+ msgstr "Vælg"
3410
+
3411
+ #: admin/basic-info.php:112
3412
+ msgid "Radio Buttons"
3413
+ msgstr "'Radio' knapper"
3414
+
3415
+ #: admin/basic-info.php:113
3416
+ msgid "Textarea"
3417
+ msgstr "Tekstområde"
3418
+
3419
+ #: admin/basic-info.php:125
3420
+ msgid "Powerful Modules (**)"
3421
+ msgstr "Stærke moduler (**)"
3422
+
3423
+ #: admin/basic-info.php:126
3424
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3425
+ msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
3426
+
3427
+ #: admin/basic-info.php:128
3428
+ msgid "Enable your modules"
3429
+ msgstr "Aktiver dine moduler"
3430
+
3431
+ #: admin/basic-info.php:131
3432
+ msgid "Find out more about PRO Modules"
3433
+ msgstr "Fin ud af mere om PRO Moduler"
3434
+
3435
+ #: admin/basic-info.php:136 modules/modules.php:89
3436
  #: modules/user-listing/userlisting.php:11
3437
  #: modules/user-listing/userlisting.php:12
3438
  #: modules/user-listing/userlisting.php:17
3440
  msgid "User Listing"
3441
  msgstr "Brugeroversigt"
3442
 
3443
+ #: admin/basic-info.php:138
3444
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3445
+ msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
3446
+
3447
+ #: admin/basic-info.php:144
3448
+ msgid "Email Customizer"
3449
+ msgstr "E-mail opsætning"
3450
+
3451
+ #: admin/basic-info.php:145
3452
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3453
+ msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
3454
+
3455
+ #: admin/basic-info.php:148
3456
  #: modules/custom-redirects/custom_redirects_admin.php:32
3457
  #: modules/custom-redirects/custom_redirects_admin.php:33
3458
+ #: modules/modules.php:110
3459
  msgid "Custom Redirects"
3460
  msgstr "Brugertilpassede omdirigeringer ('redirects')"
3461
 
3462
+ #: admin/basic-info.php:149
3463
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3464
+ msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
3465
+
3466
+ #: admin/basic-info.php:154 modules/modules.php:75
3467
+ msgid "Multiple Registration Forms"
3468
+ msgstr "Forskellige registreringsformularer"
3469
+
3470
+ #: admin/basic-info.php:155
3471
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3472
+ msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
3473
+
3474
+ #: admin/basic-info.php:158 modules/modules.php:82
3475
+ msgid "Multiple Edit-profile Forms"
3476
+ msgstr "Forskellige profil redigerings formularer"
3477
+
3478
+ #: admin/basic-info.php:159
3479
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3480
+ msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
3481
+
3482
  #: admin/basic-info.php:187
3483
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3484
  msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3487
  msgid "** only available in the %1$sPro version%2$s."
3488
  msgstr "** kun tilgængelig i %1$sPro version%2$s."
3489
 
3490
+ #: admin/general-settings.php:42
3491
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3492
+ msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
3493
+
3494
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3495
+ #: admin/general-settings.php:107
3496
  #: modules/multiple-forms/edit-profile-forms.php:206
3497
  #: modules/multiple-forms/register-forms.php:229
3498
  #: modules/multiple-forms/register-forms.php:230
3504
  msgid "You can find the default file here: %1$s"
3505
  msgstr "Du kan finde default filen her: %1$s"
3506
 
3507
+ #: admin/general-settings.php:54
3508
+ msgid "\"Email Confirmation\" Activated:"
3509
+ msgstr "\"E-mail bekræftelse\" aktiveret:"
3510
+
3511
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3512
  #: modules/multiple-forms/edit-profile-forms.php:206
3513
  #: modules/multiple-forms/register-forms.php:229
3514
  #: modules/multiple-forms/register-forms.php:230
3519
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3520
  msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3521
 
3522
+ #: admin/general-settings.php:72
3523
+ msgid "\"Email Confirmation\" Landing Page:"
3524
+ msgstr "\"E-mail bekræftelse\" landings side:"
3525
+
3526
+ #: admin/general-settings.php:77
3527
+ msgid "Existing Pages"
3528
+ msgstr "Eksisterende sider"
3529
+
3530
+ #: admin/general-settings.php:92
3531
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3532
+ msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
3533
+
3534
+ #: admin/general-settings.php:103
3535
+ msgid "\"Admin Approval\" Activated:"
3536
+ msgstr "\"Administrator godkendelse\" aktiveret:"
3537
+
3538
  #: admin/general-settings.php:111
3539
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3540
  msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3541
 
3542
+ #: admin/general-settings.php:149
3543
+ msgid "\"Admin Approval\" Feature:"
3544
+ msgstr "\"Administrator godkendelse\" funktion:"
3545
+
3546
  #: admin/general-settings.php:152
3547
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3548
  msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
3549
 
3550
+ #: admin/general-settings.php:159
3551
+ msgid "Allow Users to Log in With:"
3552
+ msgstr "Tillad brugere at logge ind med:"
3553
+
3554
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3555
  #: features/admin-approval/class-admin-approval.php:166
3556
  #: features/email-confirmation/class-email-confirmation.php:167
3557
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3564
  msgid "Username"
3565
  msgstr "Brugernavn"
3566
 
3567
+ #: admin/general-settings.php:165 front-end/login.php:215
3568
+ #: modules/email-customizer/email-customizer.php:29
3569
  #: modules/user-listing/userlisting.php:736
3570
  #: modules/user-listing/userlisting.php:2153
3571
  msgid "Email"
3572
  msgstr "E-mail"
3573
 
3574
+ #: admin/general-settings.php:177
3575
+ msgid "Minimum Password Length:"
3576
+ msgstr "Min. længde på adgangskode:"
3577
+
3578
+ #: admin/general-settings.php:182
3579
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3580
+ msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
3581
+
3582
+ #: admin/general-settings.php:189
3583
+ msgid "Minimum Password Strength:"
3584
+ msgstr "Minimum styrke på adgangskode:"
3585
+
3586
+ #: admin/general-settings.php:193
3587
+ msgid "Disabled"
3588
+ msgstr "Deaktiver"
3589
+
3590
  #: admin/manage-fields.php:12
3591
  msgid "Manage Fields"
3592
  msgstr "Håndter felter"
3665
  msgid "Date-format"
3666
  msgstr "Datoformat"
3667
 
 
 
 
 
3668
  #: admin/manage-fields.php:126
3669
  msgid "Terms of Agreement"
3670
  msgstr "Aftalebetingelser"
3828
  msgid "Type your password again. "
3829
  msgstr "Skriv dit kodeord igen."
3830
 
3831
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3832
  msgid "You must select a field\n"
3833
  msgstr "Du skal vælge et felt\n"
3834
 
3852
  msgid "You must enter a value for the row number\n"
3853
  msgstr "Du skal indtaste en værdi for rækkenummeret\n"
3854
 
3855
+ #: admin/manage-fields.php:1033
3856
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3857
  msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
3858
 
3859
+ #: admin/manage-fields.php:1036
3860
  msgid "You must enter a value for the date-format\n"
3861
  msgstr "Du skal indskrive en værdi for datoformatet\n"
3862
 
3863
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3864
+ #: admin/manage-fields.php:1083
3865
  msgid "That meta-name is already in use\n"
3866
  msgstr "Det meta-navn er allerede i brug\n"
3867
 
3868
+ #: admin/manage-fields.php:1114
3869
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3870
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
3871
 
3872
+ #: admin/manage-fields.php:1118
3873
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3874
  msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
3875
 
3876
+ #: admin/manage-fields.php:1141
3877
  msgid "That field is already added in this form\n"
3878
  msgstr "Det felt er allerede tilføjet denne formular\n"
3879
 
3880
+ #: admin/manage-fields.php:1190
3881
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3882
  msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
3883
 
3884
+ #: admin/manage-fields.php:1190
3885
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3886
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3887
  #: features/admin-approval/class-admin-approval.php:108
3888
  #: features/functions.php:718 features/functions.php:725
3889
  #: modules/custom-redirects/custom_redirects_admin.php:179
3894
  msgid "Edit"
3895
  msgstr "Rediger"
3896
 
3897
+ #: admin/manage-fields.php:1190
3898
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3899
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3900
  #: features/admin-approval/class-admin-approval.php:113
3901
  #: features/admin-approval/class-admin-approval.php:224
3902
  #: features/email-confirmation/class-email-confirmation.php:120
3909
  msgid "Delete"
3910
  msgstr "Slet"
3911
 
3912
+ #: admin/manage-fields.php:1205
3913
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3914
+ msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
3915
+
3916
  #: admin/register-version.php:14
3917
  msgid "Register Your Version"
3918
  msgstr "Registrer din version"
3921
  msgid "Register Version"
3922
  msgstr "Registrer version"
3923
 
3924
+ #: admin/register-version.php:70
3925
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3926
+ msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
3927
+
3928
+ #: admin/register-version.php:72
3929
+ msgid " Serial Number:"
3930
+ msgstr "Serie Nummer:"
3931
+
3932
  #: admin/register-version.php:77
3933
  msgid "The serial number was successfully validated!"
3934
  msgstr "Serienummeret blev godkendt!"
3945
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3946
  msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
3947
 
3948
+ #: admin/register-version.php:87
3949
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3950
+ msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3951
+
3952
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3953
  msgid "Content"
3954
  msgstr "Indhold"
3955
 
3956
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3957
+ msgid "Edit this item"
3958
+ msgstr "Rediger denne"
3959
+
3960
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3961
+ msgid "Delete this item"
3962
+ msgstr "Slet denne"
3963
+
3964
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3965
+ msgid "Please enter a value for the required field "
3966
+ msgstr "Venligst indsæt en værdi for feltet"
3967
+
3968
  #: front-end/extra-fields/upload/upload.php:122
3969
  msgid "Select File"
3970
  msgstr "Vælg en fil"
3971
 
3972
+ #: assets/lib/wck-api/fields/upload.php:43
3973
  #: front-end/extra-fields/upload/upload.php:112
3974
  msgid "Remove"
3975
  msgstr "Fjern"
3976
 
3977
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3978
+ msgid "You can add the information for the %s after you add a entry"
3979
+ msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
3980
+
3981
+ #: assets/lib/wck-api/fields/upload.php:75
3982
  #: front-end/extra-fields/upload/upload.php:128
3983
  msgid "Upload "
3984
  msgstr "Upload"
3985
 
3986
+ #: features/class-list-table.php:184
3987
+ msgid "No items found."
3988
+ msgstr "Intet fundet."
3989
+
3990
  #: features/class-list-table.php:308
3991
  msgid "Bulk Actions"
3992
  msgstr "Mængde aktion"
3995
  msgid "Apply"
3996
  msgstr "Tilføj"
3997
 
3998
+ #: features/class-list-table.php:402
3999
+ msgid "Show all dates"
4000
+ msgstr "Vis alle datoer"
4001
+
4002
  #: features/class-list-table.php:415
4003
  msgid "%1$s %2$d"
4004
  msgstr "%1$s %2$d"
4015
  msgid "%s pending"
4016
  msgstr "%s afventer"
4017
 
4018
+ #: features/class-list-table.php:566
4019
+ msgid "%1$s of %2$s"
4020
+ msgstr "%1$s of %2$s"
4021
+
4022
  #: features/class-list-table.php:713
4023
  msgid "Select All"
4024
  msgstr "Vælg alt"
4028
  msgstr "Styrkeindikator"
4029
 
4030
  #: features/admin-approval/admin-approval.php:14
4031
+ #: features/admin-approval/class-admin-approval.php:453
4032
  msgid "Admin Approval"
4033
  msgstr "Admin godkendelse"
4034
 
4035
+ #: features/admin-approval/admin-approval.php:28
4036
+ #: features/email-confirmation/email-confirmation.php:58
4037
+ msgid "Do you want to"
4038
+ msgstr "Vil du"
4039
+
4040
  #: features/admin-approval/admin-approval.php:51
4041
  msgid "Your session has expired! Please refresh the page and try again"
4042
  msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
4161
  msgid "User-status"
4162
  msgstr "Brugerstatus"
4163
 
4164
+ #: features/admin-approval/class-admin-approval.php:252
4165
+ msgid "Do you want to bulk approve the selected users?"
4166
+ msgstr "Ønsker du at godkende de valgte brugere på én gang?"
4167
+
4168
+ #: features/admin-approval/class-admin-approval.php:260
4169
+ msgid "Do you want to bulk unapprove the selected users?"
4170
+ msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
4171
+
4172
+ #: features/admin-approval/class-admin-approval.php:266
4173
+ msgid "Do you want to bulk delete the selected users?"
4174
+ msgstr "Ønsker du at slette de valgte brugere på én gang?"
4175
+
4176
+ #: features/admin-approval/class-admin-approval.php:274
4177
  #: features/email-confirmation/class-email-confirmation.php:278
4178
  msgid "Sorry, but you don't have permission to do that!"
4179
  msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
4186
  msgid "Unapproved"
4187
  msgstr "Ikke godkendt"
4188
 
4189
+ #: features/admin-approval/class-admin-approval.php:456
4190
+ #: features/email-confirmation/class-email-confirmation.php:454
4191
+ msgid "All Users"
4192
+ msgstr "Alle brugere"
4193
+
4194
  #: features/email-confirmation/class-email-confirmation.php:120
4195
  msgid "delete this user from the _signups table?"
4196
  msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
4229
  msgid "The selected users have had their activation emails resent"
4230
  msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
4231
 
4232
+ #: features/email-confirmation/class-email-confirmation.php:451
4233
+ #: features/email-confirmation/email-confirmation.php:47
4234
+ msgid "Users with Unconfirmed Email Address"
4235
+ msgstr "Brugere med ubekræftede e-mail adresser"
4236
+
4237
  #: features/email-confirmation/email-confirmation.php:107
4238
  msgid "There was an error performing that action!"
4239
  msgstr "Der opstod en fejl ved udførelsen af denne handling!"
4297
  msgid "Profile Builder Login Widget"
4298
  msgstr "Profile Builder login widget"
4299
 
4300
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4301
  msgid "Register"
4302
  msgstr "Registrer"
4303
 
4304
+ #: features/login-widget/login-widget.php:63
4305
+ msgid "Title:"
4306
+ msgstr "Titel:"
4307
+
4308
+ #: features/login-widget/login-widget.php:68
4309
+ msgid "After login redirect URL (optional):"
4310
+ msgstr "Efter login URL omdirigering (valgfri):"
4311
+
4312
+ #: features/login-widget/login-widget.php:73
4313
+ msgid "Register page URL (optional):"
4314
+ msgstr "Registrerings side URL (valgfri):"
4315
+
4316
+ #: features/login-widget/login-widget.php:78
4317
+ msgid "Password Recovery page URL (optional):"
4318
+ msgstr "Adgangskode genskabnings side URL (valgfri)"
4319
+
4320
  #: features/upgrades/upgrades-functions.php:91
4321
  #: features/upgrades/upgrades-functions.php:134
4322
  msgid "The usernames cannot be changed."
4358
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4359
  msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
4360
 
4361
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4362
  msgid "The account %1s has been successfully created!"
4363
  msgstr "Kontoen %1s er oprettet uden problemer!"
4364
 
4365
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4366
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4367
  msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
4368
 
4369
+ #: front-end/class-formbuilder.php:308
4370
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4371
  msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
4372
 
4373
+ #: front-end/class-formbuilder.php:331
4374
  msgid "Your profile has been successfully updated!"
4375
  msgstr "Din profil er blevet opdateret uden problemer!"
4376
 
4377
+ #: front-end/class-formbuilder.php:342
4378
  msgid "There was an error in the submitted form"
4379
  msgstr "Der var en fejl i den sendte formular. "
4380
 
4381
+ #: front-end/class-formbuilder.php:399
4382
  msgid "Add User"
4383
  msgstr "Tilføj bruger"
4384
 
4385
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4386
  msgid "Update"
4387
  msgstr "Opdater"
4388
 
4389
+ #: front-end/class-formbuilder.php:465
4390
  msgid "Send these credentials via email."
4391
  msgstr "Send disse legitimationsoplysninger via e-mail."
4392
 
4600
  msgid "To use reCAPTCHA you must get an API public key from:"
4601
  msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4602
 
4603
+ #: modules/modules.php:11 modules/modules.php:58
4604
  msgid "Modules"
4605
  msgstr "Moduler"
4606
 
4607
+ #: modules/modules.php:59
4608
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4609
+ msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
4610
+
4611
+ #: modules/modules.php:69
4612
+ msgid "Name/Description"
4613
+ msgstr "Navn/Beskrivelse"
4614
+
4615
+ #: modules/modules.php:70
4616
+ msgid "Status"
4617
+ msgstr "Status"
4618
+
4619
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4620
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4621
+ #: modules/modules.php:119
4622
+ msgid "Active"
4623
+ msgstr "Aktiv"
4624
+
4625
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4626
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4627
+ #: modules/modules.php:120
4628
+ msgid "Inactive"
4629
+ msgstr "Inaktiv"
4630
+
4631
  #: modules/email-customizer/admin-email-customizer.php:11
4632
  #: modules/email-customizer/admin-email-customizer.php:12
4633
+ #: modules/modules.php:96
4634
  msgid "Admin Email Customizer"
4635
  msgstr "Opsætning af administrator e-mails"
4636
 
4637
  #: modules/email-customizer/user-email-customizer.php:11
4638
  #: modules/email-customizer/user-email-customizer.php:12
4639
+ #: modules/modules.php:103
4640
  msgid "User Email Customizer"
4641
  msgstr "Opsætning af bruger e-mails"
4642
 
4643
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4644
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4645
  msgid "Save"
4646
  msgstr "Gem"
4966
  msgid "<pre>Title (Type)</pre>"
4967
  msgstr "<pre>Titel (Type)</pre>"
4968
 
4969
+ #: modules/multiple-forms/multiple-forms.php:222
4970
+ msgid "You need to specify the title of the form before creating it"
4971
+ msgstr "Du skal specificere formularens titel før du opretter den"
4972
+
4973
  #: modules/multiple-forms/register-forms.php:11
4974
  #: modules/multiple-forms/register-forms.php:12
4975
  msgid "Registration Form"
translation/profile-builder-de_DE.mo CHANGED
Binary file
translation/profile-builder-de_DE.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr "In allen Versionen verfügbar"
87
  msgid "Learn More"
88
  msgstr "Weitere Informationen"
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch e
1065
  msgid "Paid Accounts"
1066
  msgstr "Paid Accounts"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "Erweiterung aktiv"
@@ -1077,6 +1189,14 @@ msgstr "Die Erweiterung wurde aktiviert."
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "Die Erweiterung wurde deaktiviert."
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr "Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:<br><br>%s%s%s<br><br>Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten."
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr "Individuelle Benutzer-Weiterleitungen"
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr "Wähle eine Benutzerrolle aus."
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr "Benutzerrollen basierte Weiterleitungen"
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr "Globale Weiterleitungen"
1168
 
@@ -1203,6 +1326,50 @@ msgstr "<pre>Benutzer-Rolle</pre><pre>Weiterleitung</pre><pre>URL</pre>"
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr "<pre>Umleitung</pre><pre>URL</pre>"
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr "Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen."
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!"
@@ -2587,7 +2766,7 @@ msgstr "Sie müssen den Seiten Schlüssel eingeben\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Sie müssen den geheimen Schlüssel eingeben\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Add-Ons"
2593
 
@@ -2767,6 +2946,22 @@ msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang se
2767
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2768
  msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
2769
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2770
  #: admin/manage-fields.php:122
2771
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2772
  msgstr ""
@@ -2793,7 +2988,7 @@ msgstr "Benutzerrollen Sortierung"
2793
  msgid "Save the user role order from the user roles checkboxes"
2794
  msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
2795
 
2796
- #: admin/manage-fields.php:1122
2797
  msgid "Please select at least one user role\n"
2798
  msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
2799
 
@@ -2813,6 +3008,10 @@ msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$
2813
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2814
  msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
2815
 
 
 
 
 
2816
  #: features/email-confirmation/class-email-confirmation.php:91
2817
  msgid "show"
2818
  msgstr "anzeigen"
@@ -2821,6 +3020,10 @@ msgstr "anzeigen"
2821
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2822
  msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu nach %1$sEinstellungen -> Allgemein%2$s und stelle unter unter Mitgliedschaft sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
2823
 
 
 
 
 
2824
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2825
  msgid "The password must have the minimum length of %s characters"
2826
  msgstr "Das Passwort muss mindestes %s Zeichen haben"
@@ -2883,11 +3086,15 @@ msgstr "Der Benutzer wurde nicht gefunden."
2883
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2884
  msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
2885
 
 
 
 
 
2886
  #: admin/manage-fields.php:127
2887
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2888
  msgstr "Gib eine kommagetrennte Liste von Werten ein<br/> Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten"
2889
 
2890
- #: admin/manage-fields.php:1049
2891
  msgid "The meta-name cannot be empty\n"
2892
  msgstr "Der Meta-Name darf nicht leer sein\n"
2893
 
@@ -2899,11 +3106,20 @@ msgstr "Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um
2899
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2900
  msgstr "<p> Deine <strong>Profil Builder</strong> Seriennummer ist ungültig oder fehlt.<br/> Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s </p>"
2901
 
2902
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2903
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2904
  msgid "...Choose"
2905
  msgstr "...wähle"
2906
 
 
 
 
 
 
 
2907
  #: features/functions.php:552
2908
  msgid "Very Weak"
2909
  msgstr "sehr schwach"
@@ -2938,6 +3154,10 @@ msgstr "E-Mail-Adresse"
2938
  msgid "Lost your password?"
2939
  msgstr "Passwort vergessen?"
2940
 
 
 
 
 
2941
  #: modules/email-customizer/admin-email-customizer.php:54
2942
  #: modules/email-customizer/user-email-customizer.php:54
2943
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2979,10 +3199,18 @@ msgstr "Bestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste an
2979
  msgid "Show/Hide the Admin Bar on the Front-End"
2980
  msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
2981
 
2982
- #: admin/admin-bar.php:10
2983
  msgid "Admin Bar Settings"
2984
  msgstr "Admin Bar Einstellungen"
2985
 
 
 
 
 
 
 
 
 
2986
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2987
  #: modules/multiple-forms/register-forms.php:230
2988
  msgid "Default"
@@ -2996,7 +3224,9 @@ msgstr "Anzeigen"
2996
  msgid "Hide"
2997
  msgstr "Verbergen"
2998
 
2999
- #: features/functions.php:697
 
 
3000
  msgid "Save Changes"
3001
  msgstr "Änderungen speichern"
3002
 
@@ -3005,22 +3235,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3005
  msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte \"%s\" ändern)"
3006
 
3007
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3008
  msgid "General Settings"
3009
  msgstr "Allgemeine Einstellungen"
3010
 
3011
- #: admin/admin-functions.php:137
3012
  msgid "Very weak"
3013
  msgstr "sehr unsicher"
3014
 
3015
- #: admin/admin-functions.php:137 features/functions.php:552
 
3016
  msgid "Weak"
3017
  msgstr "unsicher"
3018
 
3019
- #: admin/admin-functions.php:137 features/functions.php:552
 
3020
  msgid "Medium"
3021
  msgstr "geht so"
3022
 
3023
- #: admin/admin-functions.php:137 features/functions.php:552
 
3024
  msgid "Strong"
3025
  msgstr "sicher"
3026
 
@@ -3029,6 +3263,7 @@ msgid "Add Field"
3029
  msgstr "Feld hinzufügen"
3030
 
3031
  #: admin/admin-functions.php:189
 
3032
  msgid "Save Settings"
3033
  msgstr "Einstellungen speichern"
3034
 
@@ -3048,10 +3283,151 @@ msgstr "<strong>Profil Builder</strong>"
3048
  msgid "The best way to add front-end registration, edit profile and login forms."
3049
  msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen ist die Profil und Login-Formulare zu bearbeiten."
3050
 
3051
- #: features/login-widget/login-widget.php:59
 
 
 
 
3052
  msgid "Login"
3053
  msgstr "Login"
3054
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3055
  #: modules/user-listing/userlisting.php:11
3056
  #: modules/user-listing/userlisting.php:12
3057
  #: modules/user-listing/userlisting.php:17
@@ -3059,11 +3435,45 @@ msgstr "Login"
3059
  msgid "User Listing"
3060
  msgstr "Benutzer-Liste"
3061
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3062
  #: modules/custom-redirects/custom_redirects_admin.php:32
3063
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3064
  msgid "Custom Redirects"
3065
  msgstr "Benutzerdefinierte Umleitungen"
3066
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3067
  #: admin/basic-info.php:187
3068
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3069
  msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
@@ -3072,6 +3482,12 @@ msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
3072
  msgid "** only available in the %1$sPro version%2$s."
3073
  msgstr "** nur in der %1$sPro Version%2$s verfügbar."
3074
 
 
 
 
 
 
 
3075
  #: modules/multiple-forms/edit-profile-forms.php:206
3076
  #: modules/multiple-forms/register-forms.php:229
3077
  #: modules/multiple-forms/register-forms.php:230
@@ -3083,6 +3499,11 @@ msgstr "Ja"
3083
  msgid "You can find the default file here: %1$s"
3084
  msgstr "Sie finden die Standard-Datei hier:%1$s"
3085
 
 
 
 
 
 
3086
  #: modules/multiple-forms/edit-profile-forms.php:206
3087
  #: modules/multiple-forms/register-forms.php:229
3088
  #: modules/multiple-forms/register-forms.php:230
@@ -3093,15 +3514,39 @@ msgstr "Nein"
3093
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3094
  msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
3095
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3096
  #: admin/general-settings.php:111
3097
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3098
  msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
3099
 
 
 
 
 
3100
  #: admin/general-settings.php:152
3101
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3102
  msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s."
3103
 
3104
- #: admin/manage-fields.php:198
 
 
 
 
3105
  #: features/admin-approval/class-admin-approval.php:166
3106
  #: features/email-confirmation/class-email-confirmation.php:167
3107
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3114,12 +3559,29 @@ msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird.
3114
  msgid "Username"
3115
  msgstr "Benutzername"
3116
 
3117
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3118
  #: modules/user-listing/userlisting.php:736
3119
  #: modules/user-listing/userlisting.php:2153
3120
  msgid "Email"
3121
  msgstr "E-Mail"
3122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3123
  #: admin/manage-fields.php:12
3124
  msgid "Manage Fields"
3125
  msgstr "Felder verwalten"
@@ -3198,10 +3660,6 @@ msgstr "Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilb
3198
  msgid "Date-format"
3199
  msgstr "Datum-Format"
3200
 
3201
- #: admin/manage-fields.php:125
3202
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3203
- msgstr "Geben Sie das Format des Datums beim Verwenden vom der Datumsauswahl ein.<br/> Gültige Formate: MoMo/TT/JJ, MoMo/JJ/TT, TT/JJ/MoMo, TT/MoMo/JJ, JJ/TT/MoMo, JJ/MoMo/TT <br/> Wenn nicht angegeben, wird es standardmäßig auf MoMo/TT/JJ gesetzt. "
3204
-
3205
  #: admin/manage-fields.php:126
3206
  msgid "Terms of Agreement"
3207
  msgstr "Nutzungsbedingungen"
@@ -3365,7 +3823,7 @@ msgstr "Kennwort wiederholen"
3365
  msgid "Type your password again. "
3366
  msgstr "Bitte geben Sie Ihr Kennwort erneut ein."
3367
 
3368
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3369
  msgid "You must select a field\n"
3370
  msgstr "Sie müssen ein Feld auswählen.\n"
3371
 
@@ -3389,36 +3847,38 @@ msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
3389
  msgid "You must enter a value for the row number\n"
3390
  msgstr "Sie müssen die Zeilennummer angeben.\n"
3391
 
3392
- #: admin/manage-fields.php:1030
3393
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3394
  msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
3395
 
3396
- #: admin/manage-fields.php:1033
3397
  msgid "You must enter a value for the date-format\n"
3398
  msgstr "Sie müssen das Datumsformat angeben.\n"
3399
 
3400
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3401
- #: admin/manage-fields.php:1080
3402
  msgid "That meta-name is already in use\n"
3403
  msgstr "Dieser Meta-Name wird bereits verwendet\n"
3404
 
3405
- #: admin/manage-fields.php:1111
3406
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3407
  msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
3408
 
3409
- #: admin/manage-fields.php:1115
3410
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3411
  msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
3412
 
3413
- #: admin/manage-fields.php:1138
3414
  msgid "That field is already added in this form\n"
3415
  msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
3416
 
3417
- #: admin/manage-fields.php:1187
3418
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3419
  msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
3420
 
3421
- #: admin/manage-fields.php:1187
 
 
3422
  #: features/admin-approval/class-admin-approval.php:108
3423
  #: features/functions.php:718 features/functions.php:725
3424
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3429,7 +3889,9 @@ msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-h
3429
  msgid "Edit"
3430
  msgstr "Bearbeiten"
3431
 
3432
- #: admin/manage-fields.php:1187
 
 
3433
  #: features/admin-approval/class-admin-approval.php:113
3434
  #: features/admin-approval/class-admin-approval.php:224
3435
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3442,6 +3904,10 @@ msgstr "Bearbeiten"
3442
  msgid "Delete"
3443
  msgstr "Löschen"
3444
 
 
 
 
 
3445
  #: admin/register-version.php:14
3446
  msgid "Register Your Version"
3447
  msgstr "Registrieren Sie Ihre Version"
@@ -3450,6 +3916,14 @@ msgstr "Registrieren Sie Ihre Version"
3450
  msgid "Register Version"
3451
  msgstr "Version registrieren"
3452
 
 
 
 
 
 
 
 
 
3453
  #: admin/register-version.php:77
3454
  msgid "The serial number was successfully validated!"
3455
  msgstr "Die Seriennummer wurde erfolgreich überprüft!"
@@ -3466,22 +3940,48 @@ msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen is
3466
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3467
  msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!"
3468
 
3469
- #: features/functions.php:725
 
 
 
 
3470
  msgid "Content"
3471
  msgstr "Inhalt"
3472
 
 
 
 
 
 
 
 
 
 
 
 
 
3473
  #: front-end/extra-fields/upload/upload.php:122
3474
  msgid "Select File"
3475
  msgstr "Datei auswählen"
3476
 
 
3477
  #: front-end/extra-fields/upload/upload.php:112
3478
  msgid "Remove"
3479
  msgstr "Löschen"
3480
 
 
 
 
 
 
3481
  #: front-end/extra-fields/upload/upload.php:128
3482
  msgid "Upload "
3483
  msgstr "Hochladen"
3484
 
 
 
 
 
3485
  #: features/class-list-table.php:308
3486
  msgid "Bulk Actions"
3487
  msgstr "Bulk.Aktionen"
@@ -3490,6 +3990,10 @@ msgstr "Bulk.Aktionen"
3490
  msgid "Apply"
3491
  msgstr "Anwenden"
3492
 
 
 
 
 
3493
  #: features/class-list-table.php:415
3494
  msgid "%1$s %2$d"
3495
  msgstr "%1$s %2$d "
@@ -3506,6 +4010,10 @@ msgstr "Excerpt-Anzeige"
3506
  msgid "%s pending"
3507
  msgstr "%s ausstehend"
3508
 
 
 
 
 
3509
  #: features/class-list-table.php:713
3510
  msgid "Select All"
3511
  msgstr "Alle auswählen"
@@ -3515,9 +4023,15 @@ msgid "Strength indicator"
3515
  msgstr "Stärkeanzeige"
3516
 
3517
  #: features/admin-approval/admin-approval.php:14
 
3518
  msgid "Admin Approval"
3519
  msgstr "Admin-Bestätigung"
3520
 
 
 
 
 
 
3521
  #: features/admin-approval/admin-approval.php:51
3522
  msgid "Your session has expired! Please refresh the page and try again"
3523
  msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
@@ -3642,6 +4156,19 @@ msgstr "Angemeldet"
3642
  msgid "User-status"
3643
  msgstr "Benutzer-Status"
3644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3645
  #: features/email-confirmation/class-email-confirmation.php:278
3646
  msgid "Sorry, but you don't have permission to do that!"
3647
  msgstr "Tut uns leid aber du hast keine Berechtigung dazu!"
@@ -3654,6 +4181,11 @@ msgstr "Genehmigt"
3654
  msgid "Unapproved"
3655
  msgstr "Verwehrt"
3656
 
 
 
 
 
 
3657
  #: features/email-confirmation/class-email-confirmation.php:120
3658
  msgid "delete this user from the _signups table?"
3659
  msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?"
@@ -3692,6 +4224,11 @@ msgstr "Die ausgewählten Benutzer wurden aktiviert"
3692
  msgid "The selected users have had their activation emails resent"
3693
  msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
3694
 
 
 
 
 
 
3695
  #: features/email-confirmation/email-confirmation.php:107
3696
  msgid "There was an error performing that action!"
3697
  msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
@@ -3755,10 +4292,26 @@ msgstr "Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hin
3755
  msgid "Profile Builder Login Widget"
3756
  msgstr "Profile Builder Login Widget"
3757
 
3758
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3759
  msgid "Register"
3760
  msgstr "Registrieren"
3761
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3762
  #: features/upgrades/upgrades-functions.php:91
3763
  #: features/upgrades/upgrades-functions.php:134
3764
  msgid "The usernames cannot be changed."
@@ -3800,35 +4353,35 @@ msgstr "hier"
3800
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3801
  msgstr "Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
3802
 
3803
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3804
  msgid "The account %1s has been successfully created!"
3805
  msgstr "Das Konto %1s wurde erfolgreich erstellt!"
3806
 
3807
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3808
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3809
  msgstr "Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink."
3810
 
3811
- #: front-end/class-formbuilder.php:299
3812
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3813
  msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt."
3814
 
3815
- #: front-end/class-formbuilder.php:322
3816
  msgid "Your profile has been successfully updated!"
3817
  msgstr "Ihr Profil wurde aktualisiert!"
3818
 
3819
- #: front-end/class-formbuilder.php:333
3820
  msgid "There was an error in the submitted form"
3821
  msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!"
3822
 
3823
- #: front-end/class-formbuilder.php:390
3824
  msgid "Add User"
3825
  msgstr "Benutzer hinzufügen"
3826
 
3827
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3828
  msgid "Update"
3829
  msgstr "Aktualisieren"
3830
 
3831
- #: front-end/class-formbuilder.php:456
3832
  msgid "Send these credentials via email."
3833
  msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail."
3834
 
@@ -4042,20 +4595,47 @@ msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA
4042
  msgid "To use reCAPTCHA you must get an API public key from:"
4043
  msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:"
4044
 
4045
- #: modules/modules.php:11
4046
  msgid "Modules"
4047
  msgstr "Module"
4048
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4049
  #: modules/email-customizer/admin-email-customizer.php:11
4050
  #: modules/email-customizer/admin-email-customizer.php:12
 
4051
  msgid "Admin Email Customizer"
4052
  msgstr "Anpassen der Admin-E-Mails"
4053
 
4054
  #: modules/email-customizer/user-email-customizer.php:11
4055
  #: modules/email-customizer/user-email-customizer.php:12
 
4056
  msgid "User Email Customizer"
4057
  msgstr "Anpassen der Benutzer-E-Mails"
4058
 
 
4059
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4060
  msgid "Save"
4061
  msgstr "Speichern"
@@ -4379,6 +4959,10 @@ msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a hr
4379
  msgid "<pre>Title (Type)</pre>"
4380
  msgstr "<pre>Titel (Type)</pre>"
4381
 
 
 
 
 
4382
  #: modules/multiple-forms/register-forms.php:11
4383
  #: modules/multiple-forms/register-forms.php:12
4384
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr "Weitere Informationen"
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Empfohlene Erweiterungen"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Kostenlos"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Bezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite."
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Weitere Details"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Paid Accounts"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Paid Member Subscriptions - eine kostenloses WordPress Erweiterung"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Paid & Free Subscriptions"
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Restrict Content"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Member Management"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "Emailvorlagen"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Account Management"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Subscription Management"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Payment Management"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Erweiterung aktiv"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Die Erweiterung wurde deaktiviert."
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Schnelle Schritt für Schritt Einrichtung"
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr "Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:<br><br>%s%s%s<br><br>Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten."
1267
  msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Individuelle Benutzer-Weiterleitungen"
1273
 
1280
  msgstr "Wähle eine Benutzerrolle aus."
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Benutzerrollen basierte Weiterleitungen"
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr "Globale Weiterleitungen"
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Umleitung</pre><pre>URL</pre>"
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr "Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login."
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr "Welche Weiterleitung greift kommt auf die folgende Priorität an:"
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr "Standard WordPress Formulare und Seiten umleiten"
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr "Damit können Sie verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten."
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr "Verfügbare Tags für dynamische URLs"
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr "Sie nutzen folgende Tags in Ihren Umleitungs-URLs."
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr "Generiert eine URL der Startseite."
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr "in WordPress kann die <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>Seiten URL</a> von der Startseiten URL abweichen."
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr "die ID des Benutzers"
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr "Die saubere URL version des Benutzernamens, der Benutzer \"nicename\" kann in URLs sicher verwendet werden, da er keine Spezialzeichen oder Leerschläge beinhalten kann."
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr "die URL der vorherigen besuchten Seite"
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr "\"Genehmigung durch Admin\" auf Benutzer-Rolle:"
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen."
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr "Mit Profile Builder Pro v2 können Sie verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutzen Sie dazu das Modul Multiple Registration & Edit Profile Forms."
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können."
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!"
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Sie müssen den geheimen Schlüssel eingeben\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Add-Ons"
2772
 
2946
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2947
  msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
2948
 
2949
+ #: admin/general-settings.php:163
2950
+ msgid "Username and Email"
2951
+ msgstr "Benutzername und E-Mail"
2952
+
2953
+ #: admin/general-settings.php:168
2954
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2955
+ msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
2956
+
2957
+ #: admin/general-settings.php:169
2958
+ msgid "\"Username\" - users can Log In only with Username."
2959
+ msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
2960
+
2961
+ #: admin/general-settings.php:170
2962
+ msgid "\"Email\" - users can Log In only with Email."
2963
+ msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
2964
+
2965
  #: admin/manage-fields.php:122
2966
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2967
  msgstr ""
2988
  msgid "Save the user role order from the user roles checkboxes"
2989
  msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
2990
 
2991
+ #: admin/manage-fields.php:1125
2992
  msgid "Please select at least one user role\n"
2993
  msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
2994
 
3008
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3009
  msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
3010
 
3011
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3012
+ msgid "Add Entry"
3013
+ msgstr "Eintrag hinzufügen"
3014
+
3015
  #: features/email-confirmation/class-email-confirmation.php:91
3016
  msgid "show"
3017
  msgstr "anzeigen"
3020
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3021
  msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu nach %1$sEinstellungen -> Allgemein%2$s und stelle unter unter Mitgliedschaft sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
3022
 
3023
+ #: front-end/class-formbuilder.php:643
3024
+ msgid "User to edit:"
3025
+ msgstr "Benutzer editieren"
3026
+
3027
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3028
  msgid "The password must have the minimum length of %s characters"
3029
  msgstr "Das Passwort muss mindestes %s Zeichen haben"
3086
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3087
  msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
3088
 
3089
+ #: admin/admin-bar.php:48
3090
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3091
+ msgstr "Wähle, welche Benutzerrollen du in der Admin Bar im Front-End der Website sehen möchtest."
3092
+
3093
  #: admin/manage-fields.php:127
3094
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3095
  msgstr "Gib eine kommagetrennte Liste von Werten ein<br/> Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten"
3096
 
3097
+ #: admin/manage-fields.php:1052
3098
  msgid "The meta-name cannot be empty\n"
3099
  msgstr "Der Meta-Name darf nicht leer sein\n"
3100
 
3106
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3107
  msgstr "<p> Deine <strong>Profil Builder</strong> Seriennummer ist ungültig oder fehlt.<br/> Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s </p>"
3108
 
3109
+ #: assets/lib/wck-api/fields/country select.php:14
3110
+ #: assets/lib/wck-api/fields/cpt select.php:17
3111
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3112
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3113
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3114
  msgid "...Choose"
3115
  msgstr "...wähle"
3116
 
3117
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3118
+ msgid "1 item"
3119
+ msgid_plural "%s items"
3120
+ msgstr[0] "1 Artikel"
3121
+ msgstr[1] ""
3122
+
3123
  #: features/functions.php:552
3124
  msgid "Very Weak"
3125
  msgstr "sehr schwach"
3154
  msgid "Lost your password?"
3155
  msgstr "Passwort vergessen?"
3156
 
3157
+ #: index.php:34
3158
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3159
+ msgstr "ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren."
3160
+
3161
  #: modules/email-customizer/admin-email-customizer.php:54
3162
  #: modules/email-customizer/user-email-customizer.php:54
3163
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3199
  msgid "Show/Hide the Admin Bar on the Front-End"
3200
  msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
3201
 
3202
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3203
  msgid "Admin Bar Settings"
3204
  msgstr "Admin Bar Einstellungen"
3205
 
3206
+ #: admin/admin-bar.php:57
3207
+ msgid "User-Role"
3208
+ msgstr "Benutzerrolle"
3209
+
3210
+ #: admin/admin-bar.php:58
3211
+ msgid "Visibility"
3212
+ msgstr "Sichtbarkeit"
3213
+
3214
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3215
  #: modules/multiple-forms/register-forms.php:230
3216
  msgid "Default"
3224
  msgid "Hide"
3225
  msgstr "Verbergen"
3226
 
3227
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3228
+ #: admin/register-version.php:95 features/functions.php:697
3229
+ #: modules/modules.php:127
3230
  msgid "Save Changes"
3231
  msgstr "Änderungen speichern"
3232
 
3235
  msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte \"%s\" ändern)"
3236
 
3237
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3238
+ #: admin/general-settings.php:38
3239
  msgid "General Settings"
3240
  msgstr "Allgemeine Einstellungen"
3241
 
3242
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3243
  msgid "Very weak"
3244
  msgstr "sehr unsicher"
3245
 
3246
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3247
+ #: features/functions.php:552
3248
  msgid "Weak"
3249
  msgstr "unsicher"
3250
 
3251
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3252
+ #: features/functions.php:552
3253
  msgid "Medium"
3254
  msgstr "geht so"
3255
 
3256
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3257
+ #: features/functions.php:552
3258
  msgid "Strong"
3259
  msgstr "sicher"
3260
 
3263
  msgstr "Feld hinzufügen"
3264
 
3265
  #: admin/admin-functions.php:189
3266
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3267
  msgid "Save Settings"
3268
  msgstr "Einstellungen speichern"
3269
 
3283
  msgid "The best way to add front-end registration, edit profile and login forms."
3284
  msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen ist die Profil und Login-Formulare zu bearbeiten."
3285
 
3286
+ #: admin/basic-info.php:33
3287
+ msgid "For Modern User Interaction"
3288
+ msgstr "Für die moderne Benutzerinteraktion"
3289
+
3290
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3291
  msgid "Login"
3292
  msgstr "Login"
3293
 
3294
+ #: admin/basic-info.php:40
3295
+ msgid "Registration"
3296
+ msgstr "Registrierung"
3297
+
3298
+ #: admin/basic-info.php:44
3299
+ msgid "Edit Profile"
3300
+ msgstr "Profil bearbeiten"
3301
+
3302
+ #: admin/basic-info.php:51
3303
+ msgid "Extra Features"
3304
+ msgstr "Extra-Features"
3305
+
3306
+ #: admin/basic-info.php:52
3307
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3308
+ msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
3309
+
3310
+ #: admin/basic-info.php:53
3311
+ msgid "Enable extra features"
3312
+ msgstr "Zusätzliche Features aktivieren"
3313
+
3314
+ #: admin/basic-info.php:57
3315
+ msgid "Recover Password"
3316
+ msgstr "Passwort wiederherstellen"
3317
+
3318
+ #: admin/basic-info.php:61
3319
+ msgid "Admin Approval (*)"
3320
+ msgstr "Admin-Zulassung (*)"
3321
+
3322
+ #: admin/basic-info.php:62
3323
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3324
+ msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen."
3325
+
3326
+ #: admin/basic-info.php:65
3327
+ msgid "Email Confirmation"
3328
+ msgstr "E-Mail-Bestätigung"
3329
+
3330
+ #: admin/basic-info.php:66
3331
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3332
+ msgstr "Stelle sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen."
3333
+
3334
+ #: admin/basic-info.php:69
3335
+ msgid "Minimum Password Length and Strength Meter"
3336
+ msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
3337
+
3338
+ #: admin/basic-info.php:70
3339
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3340
+ msgstr "Beseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst."
3341
+
3342
+ #: admin/basic-info.php:73
3343
+ msgid "Login with Email or Username"
3344
+ msgstr "Login mit E-Mail oder Benutzername"
3345
+
3346
+ #: admin/basic-info.php:74
3347
+ msgid "Allow users to log in with their email or username when accessing your site."
3348
+ msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. "
3349
+
3350
+ #: admin/basic-info.php:87
3351
+ msgid "Customize Your Forms The Way You Want (*)"
3352
+ msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
3353
+
3354
+ #: admin/basic-info.php:88
3355
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3356
+ msgstr "Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt."
3357
+
3358
+ #: admin/basic-info.php:90
3359
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3360
+ msgstr "Zusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. "
3361
+
3362
+ #: admin/basic-info.php:92
3363
+ msgid "Get started with extra fields"
3364
+ msgstr "Erste Schritte mit extra Felder"
3365
+
3366
+ #: admin/basic-info.php:95
3367
+ msgid "Avatar Upload"
3368
+ msgstr "Profilbild hochladen"
3369
+
3370
+ #: admin/basic-info.php:96
3371
+ msgid "Generic Uploads"
3372
+ msgstr "Generische Uploads"
3373
+
3374
+ #: admin/basic-info.php:97
3375
+ msgid "Agree To Terms Checkbox"
3376
+ msgstr "AGB-Checkbox"
3377
+
3378
+ #: admin/basic-info.php:98
3379
+ msgid "Datepicker"
3380
+ msgstr "Datepicker"
3381
+
3382
+ #: admin/basic-info.php:101
3383
+ msgid "reCAPTCHA"
3384
+ msgstr "reCAPTCHA"
3385
+
3386
+ #: admin/basic-info.php:102
3387
+ msgid "Country Select"
3388
+ msgstr "Land auswählen"
3389
+
3390
+ #: admin/basic-info.php:104
3391
+ msgid "Timezone Select"
3392
+ msgstr "Zeitzone auswählen"
3393
+
3394
+ #: admin/basic-info.php:108
3395
+ msgid "Input / Hidden Input"
3396
+ msgstr "Eingabe / versteckte Eingabe"
3397
+
3398
+ #: admin/basic-info.php:110
3399
+ msgid "Checkbox"
3400
+ msgstr "Checkbox"
3401
+
3402
+ #: admin/basic-info.php:111
3403
+ msgid "Select"
3404
+ msgstr "Auswahl"
3405
+
3406
+ #: admin/basic-info.php:112
3407
+ msgid "Radio Buttons"
3408
+ msgstr "Optionsfelder"
3409
+
3410
+ #: admin/basic-info.php:113
3411
+ msgid "Textarea"
3412
+ msgstr "Text-bereich"
3413
+
3414
+ #: admin/basic-info.php:125
3415
+ msgid "Powerful Modules (**)"
3416
+ msgstr "Leistungsstarke Module (*)"
3417
+
3418
+ #: admin/basic-info.php:126
3419
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3420
+ msgstr "Alles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
3421
+
3422
+ #: admin/basic-info.php:128
3423
+ msgid "Enable your modules"
3424
+ msgstr "Aktiviere deine Module"
3425
+
3426
+ #: admin/basic-info.php:131
3427
+ msgid "Find out more about PRO Modules"
3428
+ msgstr "Erfahre mehr über die PRO-Module"
3429
+
3430
+ #: admin/basic-info.php:136 modules/modules.php:89
3431
  #: modules/user-listing/userlisting.php:11
3432
  #: modules/user-listing/userlisting.php:12
3433
  #: modules/user-listing/userlisting.php:17
3435
  msgid "User Listing"
3436
  msgstr "Benutzer-Liste"
3437
 
3438
+ #: admin/basic-info.php:138
3439
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3440
+ msgstr "Einfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen."
3441
+
3442
+ #: admin/basic-info.php:144
3443
+ msgid "Email Customizer"
3444
+ msgstr "E-Mail Anpassungen"
3445
+
3446
+ #: admin/basic-info.php:145
3447
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3448
+ msgstr "Personalisiere alle E-Mails die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
3449
+
3450
+ #: admin/basic-info.php:148
3451
  #: modules/custom-redirects/custom_redirects_admin.php:32
3452
  #: modules/custom-redirects/custom_redirects_admin.php:33
3453
+ #: modules/modules.php:110
3454
  msgid "Custom Redirects"
3455
  msgstr "Benutzerdefinierte Umleitungen"
3456
 
3457
+ #: admin/basic-info.php:149
3458
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3459
+ msgstr "Sperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter."
3460
+
3461
+ #: admin/basic-info.php:154 modules/modules.php:75
3462
+ msgid "Multiple Registration Forms"
3463
+ msgstr "Mehrere Anmeldeformulare"
3464
+
3465
+ #: admin/basic-info.php:155
3466
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3467
+ msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
3468
+
3469
+ #: admin/basic-info.php:158 modules/modules.php:82
3470
+ msgid "Multiple Edit-profile Forms"
3471
+ msgstr "Mehrere Profilbearbeitungs-Formulare"
3472
+
3473
+ #: admin/basic-info.php:159
3474
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3475
+ msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
3476
+
3477
  #: admin/basic-info.php:187
3478
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3479
  msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
3482
  msgid "** only available in the %1$sPro version%2$s."
3483
  msgstr "** nur in der %1$sPro Version%2$s verfügbar."
3484
 
3485
+ #: admin/general-settings.php:42
3486
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3487
+ msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
3488
+
3489
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3490
+ #: admin/general-settings.php:107
3491
  #: modules/multiple-forms/edit-profile-forms.php:206
3492
  #: modules/multiple-forms/register-forms.php:229
3493
  #: modules/multiple-forms/register-forms.php:230
3499
  msgid "You can find the default file here: %1$s"
3500
  msgstr "Sie finden die Standard-Datei hier:%1$s"
3501
 
3502
+ #: admin/general-settings.php:54
3503
+ msgid "\"Email Confirmation\" Activated:"
3504
+ msgstr "\"E-Mail-Bestätigung\" aktiviert:"
3505
+
3506
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3507
  #: modules/multiple-forms/edit-profile-forms.php:206
3508
  #: modules/multiple-forms/register-forms.php:229
3509
  #: modules/multiple-forms/register-forms.php:230
3514
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3515
  msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
3516
 
3517
+ #: admin/general-settings.php:72
3518
+ msgid "\"Email Confirmation\" Landing Page:"
3519
+ msgstr "\"E-Mail-Bestätigung\" Landeseite:"
3520
+
3521
+ #: admin/general-settings.php:77
3522
+ msgid "Existing Pages"
3523
+ msgstr "Vorhandene Seiten"
3524
+
3525
+ #: admin/general-settings.php:92
3526
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3527
+ msgstr "Geben Sie die Seite ein, wo der Benutzer umgeleitet werden sollte, wenn er sein E-Mail-Konto bestätigt. Diese Seite kann von der Registerungs- Seite(n) unterschiedlich sein und kann jederzeit geändert werden. Wenn nichts ausgewähltw wird, wird eine einfache Bestätigungsseite für den Benutzer angezeigt."
3528
+
3529
+ #: admin/general-settings.php:103
3530
+ msgid "\"Admin Approval\" Activated:"
3531
+ msgstr "\"Admin Genehmigung\" aktiviert:"
3532
+
3533
  #: admin/general-settings.php:111
3534
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3535
  msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
3536
 
3537
+ #: admin/general-settings.php:149
3538
+ msgid "\"Admin Approval\" Feature:"
3539
+ msgstr "\"Admin Genehmigung\" Feature:"
3540
+
3541
  #: admin/general-settings.php:152
3542
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3543
  msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s."
3544
 
3545
+ #: admin/general-settings.php:159
3546
+ msgid "Allow Users to Log in With:"
3547
+ msgstr "Benutzerberechtigungen zum Einloggen mit:"
3548
+
3549
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3550
  #: features/admin-approval/class-admin-approval.php:166
3551
  #: features/email-confirmation/class-email-confirmation.php:167
3552
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3559
  msgid "Username"
3560
  msgstr "Benutzername"
3561
 
3562
+ #: admin/general-settings.php:165 front-end/login.php:215
3563
+ #: modules/email-customizer/email-customizer.php:29
3564
  #: modules/user-listing/userlisting.php:736
3565
  #: modules/user-listing/userlisting.php:2153
3566
  msgid "Email"
3567
  msgstr "E-Mail"
3568
 
3569
+ #: admin/general-settings.php:177
3570
+ msgid "Minimum Password Length:"
3571
+ msgstr "Minimale Kennwortlänge:"
3572
+
3573
+ #: admin/general-settings.php:182
3574
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3575
+ msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
3576
+
3577
+ #: admin/general-settings.php:189
3578
+ msgid "Minimum Password Strength:"
3579
+ msgstr "Minimale Passwortstärke:"
3580
+
3581
+ #: admin/general-settings.php:193
3582
+ msgid "Disabled"
3583
+ msgstr "Deaktiviert"
3584
+
3585
  #: admin/manage-fields.php:12
3586
  msgid "Manage Fields"
3587
  msgstr "Felder verwalten"
3660
  msgid "Date-format"
3661
  msgstr "Datum-Format"
3662
 
 
 
 
 
3663
  #: admin/manage-fields.php:126
3664
  msgid "Terms of Agreement"
3665
  msgstr "Nutzungsbedingungen"
3823
  msgid "Type your password again. "
3824
  msgstr "Bitte geben Sie Ihr Kennwort erneut ein."
3825
 
3826
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3827
  msgid "You must select a field\n"
3828
  msgstr "Sie müssen ein Feld auswählen.\n"
3829
 
3847
  msgid "You must enter a value for the row number\n"
3848
  msgstr "Sie müssen die Zeilennummer angeben.\n"
3849
 
3850
+ #: admin/manage-fields.php:1033
3851
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3852
  msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
3853
 
3854
+ #: admin/manage-fields.php:1036
3855
  msgid "You must enter a value for the date-format\n"
3856
  msgstr "Sie müssen das Datumsformat angeben.\n"
3857
 
3858
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3859
+ #: admin/manage-fields.php:1083
3860
  msgid "That meta-name is already in use\n"
3861
  msgstr "Dieser Meta-Name wird bereits verwendet\n"
3862
 
3863
+ #: admin/manage-fields.php:1114
3864
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3865
  msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
3866
 
3867
+ #: admin/manage-fields.php:1118
3868
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3869
  msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
3870
 
3871
+ #: admin/manage-fields.php:1141
3872
  msgid "That field is already added in this form\n"
3873
  msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
3874
 
3875
+ #: admin/manage-fields.php:1190
3876
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3877
  msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
3878
 
3879
+ #: admin/manage-fields.php:1190
3880
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3881
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3882
  #: features/admin-approval/class-admin-approval.php:108
3883
  #: features/functions.php:718 features/functions.php:725
3884
  #: modules/custom-redirects/custom_redirects_admin.php:179
3889
  msgid "Edit"
3890
  msgstr "Bearbeiten"
3891
 
3892
+ #: admin/manage-fields.php:1190
3893
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3894
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3895
  #: features/admin-approval/class-admin-approval.php:113
3896
  #: features/admin-approval/class-admin-approval.php:224
3897
  #: features/email-confirmation/class-email-confirmation.php:120
3904
  msgid "Delete"
3905
  msgstr "Löschen"
3906
 
3907
+ #: admin/manage-fields.php:1205
3908
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3909
+ msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:"
3910
+
3911
  #: admin/register-version.php:14
3912
  msgid "Register Your Version"
3913
  msgstr "Registrieren Sie Ihre Version"
3916
  msgid "Register Version"
3917
  msgstr "Version registrieren"
3918
 
3919
+ #: admin/register-version.php:70
3920
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3921
+ msgstr "Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
3922
+
3923
+ #: admin/register-version.php:72
3924
+ msgid " Serial Number:"
3925
+ msgstr "Seriennummer:"
3926
+
3927
  #: admin/register-version.php:77
3928
  msgid "The serial number was successfully validated!"
3929
  msgstr "Die Seriennummer wurde erfolgreich überprüft!"
3940
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3941
  msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!"
3942
 
3943
+ #: admin/register-version.php:87
3944
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3945
+ msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
3946
+
3947
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3948
  msgid "Content"
3949
  msgstr "Inhalt"
3950
 
3951
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3952
+ msgid "Edit this item"
3953
+ msgstr "Dieses Element bearbeiten"
3954
+
3955
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3956
+ msgid "Delete this item"
3957
+ msgstr "Dieses Element löschen"
3958
+
3959
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3960
+ msgid "Please enter a value for the required field "
3961
+ msgstr "Bitte gib einen Wert für das erforderliche Feld ein"
3962
+
3963
  #: front-end/extra-fields/upload/upload.php:122
3964
  msgid "Select File"
3965
  msgstr "Datei auswählen"
3966
 
3967
+ #: assets/lib/wck-api/fields/upload.php:43
3968
  #: front-end/extra-fields/upload/upload.php:112
3969
  msgid "Remove"
3970
  msgstr "Löschen"
3971
 
3972
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3973
+ msgid "You can add the information for the %s after you add a entry"
3974
+ msgstr "Du kannst die Informationen für \"%s\" hinzufügen, nachdem du einen Eintrag hinzugefügt hast"
3975
+
3976
+ #: assets/lib/wck-api/fields/upload.php:75
3977
  #: front-end/extra-fields/upload/upload.php:128
3978
  msgid "Upload "
3979
  msgstr "Hochladen"
3980
 
3981
+ #: features/class-list-table.php:184
3982
+ msgid "No items found."
3983
+ msgstr "Keine Einträge wurden gefunden."
3984
+
3985
  #: features/class-list-table.php:308
3986
  msgid "Bulk Actions"
3987
  msgstr "Bulk.Aktionen"
3990
  msgid "Apply"
3991
  msgstr "Anwenden"
3992
 
3993
+ #: features/class-list-table.php:402
3994
+ msgid "Show all dates"
3995
+ msgstr "Alle Termine anzeigen"
3996
+
3997
  #: features/class-list-table.php:415
3998
  msgid "%1$s %2$d"
3999
  msgstr "%1$s %2$d "
4010
  msgid "%s pending"
4011
  msgstr "%s ausstehend"
4012
 
4013
+ #: features/class-list-table.php:566
4014
+ msgid "%1$s of %2$s"
4015
+ msgstr "%1$s von %2$s"
4016
+
4017
  #: features/class-list-table.php:713
4018
  msgid "Select All"
4019
  msgstr "Alle auswählen"
4023
  msgstr "Stärkeanzeige"
4024
 
4025
  #: features/admin-approval/admin-approval.php:14
4026
+ #: features/admin-approval/class-admin-approval.php:453
4027
  msgid "Admin Approval"
4028
  msgstr "Admin-Bestätigung"
4029
 
4030
+ #: features/admin-approval/admin-approval.php:28
4031
+ #: features/email-confirmation/email-confirmation.php:58
4032
+ msgid "Do you want to"
4033
+ msgstr "Möchtest du"
4034
+
4035
  #: features/admin-approval/admin-approval.php:51
4036
  msgid "Your session has expired! Please refresh the page and try again"
4037
  msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4156
  msgid "User-status"
4157
  msgstr "Benutzer-Status"
4158
 
4159
+ #: features/admin-approval/class-admin-approval.php:252
4160
+ msgid "Do you want to bulk approve the selected users?"
4161
+ msgstr "Möchtest du alle ausgewählten Benutzer genehmigen?"
4162
+
4163
+ #: features/admin-approval/class-admin-approval.php:260
4164
+ msgid "Do you want to bulk unapprove the selected users?"
4165
+ msgstr "Möchtest du alle ausgewählten Benutzer verwehren?"
4166
+
4167
+ #: features/admin-approval/class-admin-approval.php:266
4168
+ msgid "Do you want to bulk delete the selected users?"
4169
+ msgstr "Möchtest du alle ausgewählten Benutzer löschen?"
4170
+
4171
+ #: features/admin-approval/class-admin-approval.php:274
4172
  #: features/email-confirmation/class-email-confirmation.php:278
4173
  msgid "Sorry, but you don't have permission to do that!"
4174
  msgstr "Tut uns leid aber du hast keine Berechtigung dazu!"
4181
  msgid "Unapproved"
4182
  msgstr "Verwehrt"
4183
 
4184
+ #: features/admin-approval/class-admin-approval.php:456
4185
+ #: features/email-confirmation/class-email-confirmation.php:454
4186
+ msgid "All Users"
4187
+ msgstr "Alle Benutzer"
4188
+
4189
  #: features/email-confirmation/class-email-confirmation.php:120
4190
  msgid "delete this user from the _signups table?"
4191
  msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?"
4224
  msgid "The selected users have had their activation emails resent"
4225
  msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
4226
 
4227
+ #: features/email-confirmation/class-email-confirmation.php:451
4228
+ #: features/email-confirmation/email-confirmation.php:47
4229
+ msgid "Users with Unconfirmed Email Address"
4230
+ msgstr "Benutzer mit unbestätigter E-Mail-Adresse"
4231
+
4232
  #: features/email-confirmation/email-confirmation.php:107
4233
  msgid "There was an error performing that action!"
4234
  msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
4292
  msgid "Profile Builder Login Widget"
4293
  msgstr "Profile Builder Login Widget"
4294
 
4295
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4296
  msgid "Register"
4297
  msgstr "Registrieren"
4298
 
4299
+ #: features/login-widget/login-widget.php:63
4300
+ msgid "Title:"
4301
+ msgstr "Titel:"
4302
+
4303
+ #: features/login-widget/login-widget.php:68
4304
+ msgid "After login redirect URL (optional):"
4305
+ msgstr "Weiterleitungs-URL nach dem Login (optional):"
4306
+
4307
+ #: features/login-widget/login-widget.php:73
4308
+ msgid "Register page URL (optional):"
4309
+ msgstr "Registrierunggseite-URL (optional):"
4310
+
4311
+ #: features/login-widget/login-widget.php:78
4312
+ msgid "Password Recovery page URL (optional):"
4313
+ msgstr "Kennwort Wiederherstellungs-URL (optional):"
4314
+
4315
  #: features/upgrades/upgrades-functions.php:91
4316
  #: features/upgrades/upgrades-functions.php:134
4317
  msgid "The usernames cannot be changed."
4353
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4354
  msgstr "Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
4355
 
4356
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4357
  msgid "The account %1s has been successfully created!"
4358
  msgstr "Das Konto %1s wurde erfolgreich erstellt!"
4359
 
4360
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4361
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4362
  msgstr "Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink."
4363
 
4364
+ #: front-end/class-formbuilder.php:308
4365
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4366
  msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt."
4367
 
4368
+ #: front-end/class-formbuilder.php:331
4369
  msgid "Your profile has been successfully updated!"
4370
  msgstr "Ihr Profil wurde aktualisiert!"
4371
 
4372
+ #: front-end/class-formbuilder.php:342
4373
  msgid "There was an error in the submitted form"
4374
  msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!"
4375
 
4376
+ #: front-end/class-formbuilder.php:399
4377
  msgid "Add User"
4378
  msgstr "Benutzer hinzufügen"
4379
 
4380
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4381
  msgid "Update"
4382
  msgstr "Aktualisieren"
4383
 
4384
+ #: front-end/class-formbuilder.php:465
4385
  msgid "Send these credentials via email."
4386
  msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail."
4387
 
4595
  msgid "To use reCAPTCHA you must get an API public key from:"
4596
  msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:"
4597
 
4598
+ #: modules/modules.php:11 modules/modules.php:58
4599
  msgid "Modules"
4600
  msgstr "Module"
4601
 
4602
+ #: modules/modules.php:59
4603
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4604
+ msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
4605
+
4606
+ #: modules/modules.php:69
4607
+ msgid "Name/Description"
4608
+ msgstr "Name/Beschreibung"
4609
+
4610
+ #: modules/modules.php:70
4611
+ msgid "Status"
4612
+ msgstr "Status"
4613
+
4614
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4615
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4616
+ #: modules/modules.php:119
4617
+ msgid "Active"
4618
+ msgstr "Aktiv"
4619
+
4620
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4621
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4622
+ #: modules/modules.php:120
4623
+ msgid "Inactive"
4624
+ msgstr "inaktiv"
4625
+
4626
  #: modules/email-customizer/admin-email-customizer.php:11
4627
  #: modules/email-customizer/admin-email-customizer.php:12
4628
+ #: modules/modules.php:96
4629
  msgid "Admin Email Customizer"
4630
  msgstr "Anpassen der Admin-E-Mails"
4631
 
4632
  #: modules/email-customizer/user-email-customizer.php:11
4633
  #: modules/email-customizer/user-email-customizer.php:12
4634
+ #: modules/modules.php:103
4635
  msgid "User Email Customizer"
4636
  msgstr "Anpassen der Benutzer-E-Mails"
4637
 
4638
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4639
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4640
  msgid "Save"
4641
  msgstr "Speichern"
4959
  msgid "<pre>Title (Type)</pre>"
4960
  msgstr "<pre>Titel (Type)</pre>"
4961
 
4962
+ #: modules/multiple-forms/multiple-forms.php:222
4963
+ msgid "You need to specify the title of the form before creating it"
4964
+ msgstr "Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können."
4965
+
4966
  #: modules/multiple-forms/register-forms.php:11
4967
  #: modules/multiple-forms/register-forms.php:12
4968
  msgid "Registration Form"
translation/profile-builder-es_ES.mo CHANGED
Binary file
translation/profile-builder-es_ES.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blan
1065
  msgid "Paid Accounts"
1066
  msgstr "Cuentas de Pago"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "El plugin está activado"
@@ -1077,6 +1189,14 @@ msgstr "El plugin ha sido activado"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "El plugin ha sido desactivado"
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "¡Tu cuenta ha sido creada exitosamente!"
@@ -2587,7 +2766,7 @@ msgstr "Debes ingresar la clave del sitio\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr ""
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Add-Ons"
2593
 
@@ -2764,6 +2943,22 @@ msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínim
2764
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2765
  msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
2766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2767
  #: admin/manage-fields.php:122
2768
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2769
  msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
@@ -2788,7 +2983,7 @@ msgstr "Orden de Roles de Usuario"
2788
  msgid "Save the user role order from the user roles checkboxes"
2789
  msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
2790
 
2791
- #: admin/manage-fields.php:1122
2792
  msgid "Please select at least one user role\n"
2793
  msgstr "Por favor seleccione al menos un rol de usuario\n"
2794
 
@@ -2808,6 +3003,10 @@ msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su
2808
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2809
  msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
2810
 
 
 
 
 
2811
  #: features/email-confirmation/class-email-confirmation.php:91
2812
  msgid "show"
2813
  msgstr "mostrar"
@@ -2816,6 +3015,10 @@ msgstr "mostrar"
2816
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2817
  msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
2818
 
 
 
 
 
2819
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2820
  msgid "The password must have the minimum length of %s characters"
2821
  msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
@@ -2878,11 +3081,15 @@ msgstr "Usuario no encontrado"
2878
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2879
  msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
2880
 
 
 
 
 
2881
  #: admin/manage-fields.php:127
2882
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2883
  msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
2884
 
2885
- #: admin/manage-fields.php:1049
2886
  msgid "The meta-name cannot be empty\n"
2887
  msgstr "El meta-nombre no puede ser vacío\n"
2888
 
@@ -2894,11 +3101,20 @@ msgstr "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo
2894
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2895
  msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
2896
 
2897
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2898
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2899
  msgid "...Choose"
2900
  msgstr "...Escoger"
2901
 
 
 
 
 
 
 
2902
  #: features/functions.php:552
2903
  msgid "Very Weak"
2904
  msgstr "Muy Débil"
@@ -2931,6 +3147,10 @@ msgstr "email"
2931
  msgid "Lost your password?"
2932
  msgstr "¿Perdió su contraseña?"
2933
 
 
 
 
 
2934
  #: modules/email-customizer/admin-email-customizer.php:54
2935
  #: modules/email-customizer/user-email-customizer.php:54
2936
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2972,10 +3192,18 @@ msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del
2972
  msgid "Show/Hide the Admin Bar on the Front-End"
2973
  msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
2974
 
2975
- #: admin/admin-bar.php:10
2976
  msgid "Admin Bar Settings"
2977
  msgstr "Ajustes de Admin Bar"
2978
 
 
 
 
 
 
 
 
 
2979
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2980
  #: modules/multiple-forms/register-forms.php:230
2981
  msgid "Default"
@@ -2989,7 +3217,9 @@ msgstr "Mostrar"
2989
  msgid "Hide"
2990
  msgstr "Ocultar"
2991
 
2992
- #: features/functions.php:697
 
 
2993
  msgid "Save Changes"
2994
  msgstr "Salvar Cambios"
2995
 
@@ -2998,22 +3228,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
2998
  msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
2999
 
3000
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3001
  msgid "General Settings"
3002
  msgstr "Ajustes Generales"
3003
 
3004
- #: admin/admin-functions.php:137
3005
  msgid "Very weak"
3006
  msgstr "Muy débil"
3007
 
3008
- #: admin/admin-functions.php:137 features/functions.php:552
 
3009
  msgid "Weak"
3010
  msgstr "Débil"
3011
 
3012
- #: admin/admin-functions.php:137 features/functions.php:552
 
3013
  msgid "Medium"
3014
  msgstr "Media"
3015
 
3016
- #: admin/admin-functions.php:137 features/functions.php:552
 
3017
  msgid "Strong"
3018
  msgstr "Fuerte"
3019
 
@@ -3022,6 +3256,7 @@ msgid "Add Field"
3022
  msgstr "Adicionar Campo"
3023
 
3024
  #: admin/admin-functions.php:189
 
3025
  msgid "Save Settings"
3026
  msgstr "Salvar Ajustes"
3027
 
@@ -3041,10 +3276,151 @@ msgstr "<strong>Profile Builder </strong>"
3041
  msgid "The best way to add front-end registration, edit profile and login forms."
3042
  msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
3043
 
3044
- #: features/login-widget/login-widget.php:59
 
 
 
 
3045
  msgid "Login"
3046
  msgstr "Autenticación"
3047
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3048
  #: modules/user-listing/userlisting.php:11
3049
  #: modules/user-listing/userlisting.php:12
3050
  #: modules/user-listing/userlisting.php:17
@@ -3052,11 +3428,45 @@ msgstr "Autenticación"
3052
  msgid "User Listing"
3053
  msgstr "Listado de Usuario"
3054
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3055
  #: modules/custom-redirects/custom_redirects_admin.php:32
3056
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3057
  msgid "Custom Redirects"
3058
  msgstr "Redirecciones Personalizadas"
3059
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3060
  #: admin/basic-info.php:187
3061
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3062
  msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
@@ -3065,6 +3475,12 @@ msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
3065
  msgid "** only available in the %1$sPro version%2$s."
3066
  msgstr "* solamente disponible en la %1$sversión Pro%2$s."
3067
 
 
 
 
 
 
 
3068
  #: modules/multiple-forms/edit-profile-forms.php:206
3069
  #: modules/multiple-forms/register-forms.php:229
3070
  #: modules/multiple-forms/register-forms.php:230
@@ -3076,6 +3492,11 @@ msgstr "Si"
3076
  msgid "You can find the default file here: %1$s"
3077
  msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
3078
 
 
 
 
 
 
3079
  #: modules/multiple-forms/edit-profile-forms.php:206
3080
  #: modules/multiple-forms/register-forms.php:229
3081
  #: modules/multiple-forms/register-forms.php:230
@@ -3086,15 +3507,39 @@ msgstr "No"
3086
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3087
  msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
3088
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3089
  #: admin/general-settings.php:111
3090
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3091
  msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
3092
 
 
 
 
 
3093
  #: admin/general-settings.php:152
3094
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3095
  msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
3096
 
3097
- #: admin/manage-fields.php:198
 
 
 
 
3098
  #: features/admin-approval/class-admin-approval.php:166
3099
  #: features/email-confirmation/class-email-confirmation.php:167
3100
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3107,12 +3552,29 @@ msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones
3107
  msgid "Username"
3108
  msgstr "Nombre de Usuario"
3109
 
3110
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3111
  #: modules/user-listing/userlisting.php:736
3112
  #: modules/user-listing/userlisting.php:2153
3113
  msgid "Email"
3114
  msgstr "Email"
3115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3116
  #: admin/manage-fields.php:12
3117
  msgid "Manage Fields"
3118
  msgstr "Gestionar Campos"
@@ -3191,10 +3653,6 @@ msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no
3191
  msgid "Date-format"
3192
  msgstr "Formato de fecha"
3193
 
3194
- #: admin/manage-fields.php:125
3195
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3196
- msgstr "Especificar el formato de la fecha cuando se usa el Datepicker<br/>Opciones válidas:mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Si no se especifica, deja por defecto mm/dd/yy"
3197
-
3198
  #: admin/manage-fields.php:126
3199
  msgid "Terms of Agreement"
3200
  msgstr "Términos del Acuerdo"
@@ -3358,7 +3816,7 @@ msgstr "Repetir contraseña"
3358
  msgid "Type your password again. "
3359
  msgstr "Escriba su contraseña nuevamente."
3360
 
3361
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3362
  msgid "You must select a field\n"
3363
  msgstr "Tiene que seleccionar un campo\n"
3364
 
@@ -3382,36 +3840,38 @@ msgstr "El número de la fila entrado no es numérico\n"
3382
  msgid "You must enter a value for the row number\n"
3383
  msgstr "Usted tiene que entrar un valor para el número de la fila\n"
3384
 
3385
- #: admin/manage-fields.php:1030
3386
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3387
  msgstr "El valor entrado para el Datepicker no es un formato de fecha válido\n"
3388
 
3389
- #: admin/manage-fields.php:1033
3390
  msgid "You must enter a value for the date-format\n"
3391
  msgstr "Usted tiene que entrar un valor para el formato de fecha\n"
3392
 
3393
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3394
- #: admin/manage-fields.php:1080
3395
  msgid "That meta-name is already in use\n"
3396
  msgstr "Ese meta nombre ya está en uso\n"
3397
 
3398
- #: admin/manage-fields.php:1111
3399
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3400
  msgstr "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s\n"
3401
 
3402
- #: admin/manage-fields.php:1115
3403
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3404
  msgstr "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
3405
 
3406
- #: admin/manage-fields.php:1138
3407
  msgid "That field is already added in this form\n"
3408
  msgstr "Ese campo ya está añadido en esta forma\n"
3409
 
3410
- #: admin/manage-fields.php:1187
3411
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3412
  msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-head-required\">Requerido</pre>"
3413
 
3414
- #: admin/manage-fields.php:1187
 
 
3415
  #: features/admin-approval/class-admin-approval.php:108
3416
  #: features/functions.php:718 features/functions.php:725
3417
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3422,7 +3882,9 @@ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb
3422
  msgid "Edit"
3423
  msgstr "Editar"
3424
 
3425
- #: admin/manage-fields.php:1187
 
 
3426
  #: features/admin-approval/class-admin-approval.php:113
3427
  #: features/admin-approval/class-admin-approval.php:224
3428
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3435,6 +3897,10 @@ msgstr "Editar"
3435
  msgid "Delete"
3436
  msgstr "Editar"
3437
 
 
 
 
 
3438
  #: admin/register-version.php:14
3439
  msgid "Register Your Version"
3440
  msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
@@ -3443,6 +3909,14 @@ msgstr "Si está interesado en mostrar diferentes campos en las formas de edici
3443
  msgid "Register Version"
3444
  msgstr "Registre la Versión"
3445
 
 
 
 
 
 
 
 
 
3446
  #: admin/register-version.php:77
3447
  msgid "The serial number was successfully validated!"
3448
  msgstr "¡El número de serie fue validado satisfactoriamente!"
@@ -3459,22 +3933,48 @@ msgstr "¡El número de serie no ha podido ser validado porque expiró!"
3459
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3460
  msgstr "El número de serie no ha podido ser validado porque el proceso sobrepasó el tiempo de espera. Esto es posible debido a que el server está caido.¡ Por favor intente luego! "
3461
 
3462
- #: features/functions.php:725
 
 
 
 
3463
  msgid "Content"
3464
  msgstr "Contenido"
3465
 
 
 
 
 
 
 
 
 
 
 
 
 
3466
  #: front-end/extra-fields/upload/upload.php:122
3467
  msgid "Select File"
3468
  msgstr "Seleccionar archivo"
3469
 
 
3470
  #: front-end/extra-fields/upload/upload.php:112
3471
  msgid "Remove"
3472
  msgstr "Eliminar"
3473
 
 
 
 
 
 
3474
  #: front-end/extra-fields/upload/upload.php:128
3475
  msgid "Upload "
3476
  msgstr "Subir"
3477
 
 
 
 
 
3478
  #: features/class-list-table.php:308
3479
  msgid "Bulk Actions"
3480
  msgstr "Acciones en Bloque"
@@ -3483,6 +3983,10 @@ msgstr "Acciones en Bloque"
3483
  msgid "Apply"
3484
  msgstr "Aplicar"
3485
 
 
 
 
 
3486
  #: features/class-list-table.php:415
3487
  msgid "%1$s %2$d"
3488
  msgstr "%1$s %2$d"
@@ -3499,6 +4003,10 @@ msgstr "Vista de Extracto"
3499
  msgid "%s pending"
3500
  msgstr "%s pendiente"
3501
 
 
 
 
 
3502
  #: features/class-list-table.php:713
3503
  msgid "Select All"
3504
  msgstr "Seleccionar Todo"
@@ -3508,9 +4016,15 @@ msgid "Strength indicator"
3508
  msgstr "Indicador de Fortaleza"
3509
 
3510
  #: features/admin-approval/admin-approval.php:14
 
3511
  msgid "Admin Approval"
3512
  msgstr "Aprobación del Admin"
3513
 
 
 
 
 
 
3514
  #: features/admin-approval/admin-approval.php:51
3515
  msgid "Your session has expired! Please refresh the page and try again"
3516
  msgstr "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
@@ -3635,6 +4149,19 @@ msgstr "Registrado"
3635
  msgid "User-status"
3636
  msgstr "Estado del usuario"
3637
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3638
  #: features/email-confirmation/class-email-confirmation.php:278
3639
  msgid "Sorry, but you don't have permission to do that!"
3640
  msgstr "Disculpe, ¡pero no tiene permisos para hacer eso!"
@@ -3647,6 +4174,11 @@ msgstr "Aprobado"
3647
  msgid "Unapproved"
3648
  msgstr "Desaprobado"
3649
 
 
 
 
 
 
3650
  #: features/email-confirmation/class-email-confirmation.php:120
3651
  msgid "delete this user from the _signups table?"
3652
  msgstr "¿eliminar este usuario de la tabla _signups?"
@@ -3685,6 +4217,11 @@ msgstr "Los usuarios seleccionados han sido activados"
3685
  msgid "The selected users have had their activation emails resent"
3686
  msgstr "Los usuarios seleccionados han tenido sus email de activación reenviados"
3687
 
 
 
 
 
 
3688
  #: features/email-confirmation/email-confirmation.php:107
3689
  msgid "There was an error performing that action!"
3690
  msgstr "¡Hubo un error ejecutando esa acción!"
@@ -3748,10 +4285,26 @@ msgstr "El widget de autenticación le permite añadir una forma de autenticaci
3748
  msgid "Profile Builder Login Widget"
3749
  msgstr "Widget de Autenticación de Profile Builder"
3750
 
3751
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3752
  msgid "Register"
3753
  msgstr "Registrar"
3754
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3755
  #: features/upgrades/upgrades-functions.php:91
3756
  #: features/upgrades/upgrades-functions.php:134
3757
  msgid "The usernames cannot be changed."
@@ -3793,35 +4346,35 @@ msgstr "aquí"
3793
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3794
  msgstr "Usted pronto será redirigido automáticamente. Si ve esta página por más de %1$d segundos, por favor haga clic en %2$s.%3$s"
3795
 
3796
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3797
  msgid "The account %1s has been successfully created!"
3798
  msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!"
3799
 
3800
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3801
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3802
  msgstr "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección de email. Por favor chequee su bandeja de entrada y haga clic en el enlace de activación."
3803
 
3804
- #: front-end/class-formbuilder.php:299
3805
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3806
  msgstr "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email."
3807
 
3808
- #: front-end/class-formbuilder.php:322
3809
  msgid "Your profile has been successfully updated!"
3810
  msgstr "¡Su perfil ha sido actualizado satisfactoriamente!"
3811
 
3812
- #: front-end/class-formbuilder.php:333
3813
  msgid "There was an error in the submitted form"
3814
  msgstr "Hubo un error en la forma enviada"
3815
 
3816
- #: front-end/class-formbuilder.php:390
3817
  msgid "Add User"
3818
  msgstr "Adicionar Usuario"
3819
 
3820
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3821
  msgid "Update"
3822
  msgstr "Actualizar"
3823
 
3824
- #: front-end/class-formbuilder.php:456
3825
  msgid "Send these credentials via email."
3826
  msgstr "Enviar estas credenciales via email."
3827
 
@@ -4035,20 +4588,47 @@ msgstr "¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCH
4035
  msgid "To use reCAPTCHA you must get an API public key from:"
4036
  msgstr "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:"
4037
 
4038
- #: modules/modules.php:11
4039
  msgid "Modules"
4040
  msgstr "Módulos"
4041
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4042
  #: modules/email-customizer/admin-email-customizer.php:11
4043
  #: modules/email-customizer/admin-email-customizer.php:12
 
4044
  msgid "Admin Email Customizer"
4045
  msgstr "Personalizador de Email de Admin"
4046
 
4047
  #: modules/email-customizer/user-email-customizer.php:11
4048
  #: modules/email-customizer/user-email-customizer.php:12
 
4049
  msgid "User Email Customizer"
4050
  msgstr "Personalizador de Email de Usuario"
4051
 
 
4052
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4053
  msgid "Save"
4054
  msgstr "Salvar"
@@ -4373,6 +4953,10 @@ msgstr "Escoger uno de los campos soportados que usted gestiona <a href=\""
4373
  msgid "<pre>Title (Type)</pre>"
4374
  msgstr "<pre>Título (Tipo)</pre>"
4375
 
 
 
 
 
4376
  #: modules/multiple-forms/register-forms.php:11
4377
  #: modules/multiple-forms/register-forms.php:12
4378
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Plugins recomendados"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Gratis"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el contenido en tu sitio de afiliación"
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Mas detalles"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Cuentas de Pago"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de registro le permitirán a tus usuario registrarse en cuentas de paga."
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Suscripciones Gratuitas y de Pago."
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Contenido restringido"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Gestion de Miembros"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "Plantillas de Correo Electronico"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Administrar cuenta"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Administrar suscripción"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Administrar pago"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "El plugin está activado"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "El plugin ha sido desactivado"
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el contenido de su página web."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Configuración Rapida Paso a Paso"
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Tu cuenta debe ser confirmada por un administrador antes de que puedas loggearte."
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "¡Tu cuenta ha sido creada exitosamente!"
2766
  msgid "You must enter the secret key\n"
2767
  msgstr ""
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Add-Ons"
2772
 
2943
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2944
  msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
2945
 
2946
+ #: admin/general-settings.php:163
2947
+ msgid "Username and Email"
2948
+ msgstr "Usuario o Email"
2949
+
2950
+ #: admin/general-settings.php:168
2951
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2952
+ msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
2953
+
2954
+ #: admin/general-settings.php:169
2955
+ msgid "\"Username\" - users can Log In only with Username."
2956
+ msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
2957
+
2958
+ #: admin/general-settings.php:170
2959
+ msgid "\"Email\" - users can Log In only with Email."
2960
+ msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
2961
+
2962
  #: admin/manage-fields.php:122
2963
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2964
  msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
2983
  msgid "Save the user role order from the user roles checkboxes"
2984
  msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
2985
 
2986
+ #: admin/manage-fields.php:1125
2987
  msgid "Please select at least one user role\n"
2988
  msgstr "Por favor seleccione al menos un rol de usuario\n"
2989
 
3003
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3004
  msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
3005
 
3006
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3007
+ msgid "Add Entry"
3008
+ msgstr "Adicionar Entrada"
3009
+
3010
  #: features/email-confirmation/class-email-confirmation.php:91
3011
  msgid "show"
3012
  msgstr "mostrar"
3015
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3016
  msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
3017
 
3018
+ #: front-end/class-formbuilder.php:643
3019
+ msgid "User to edit:"
3020
+ msgstr "Usuarios a editar:"
3021
+
3022
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3023
  msgid "The password must have the minimum length of %s characters"
3024
  msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3081
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3082
  msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3083
 
3084
+ #: admin/admin-bar.php:48
3085
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3086
+ msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
3087
+
3088
  #: admin/manage-fields.php:127
3089
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3090
  msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
3091
 
3092
+ #: admin/manage-fields.php:1052
3093
  msgid "The meta-name cannot be empty\n"
3094
  msgstr "El meta-nombre no puede ser vacío\n"
3095
 
3101
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3102
  msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
3103
 
3104
+ #: assets/lib/wck-api/fields/country select.php:14
3105
+ #: assets/lib/wck-api/fields/cpt select.php:17
3106
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3107
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3108
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3109
  msgid "...Choose"
3110
  msgstr "...Escoger"
3111
 
3112
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3113
+ msgid "1 item"
3114
+ msgid_plural "%s items"
3115
+ msgstr[0] "1 elemento"
3116
+ msgstr[1] ""
3117
+
3118
  #: features/functions.php:552
3119
  msgid "Very Weak"
3120
  msgstr "Muy Débil"
3147
  msgid "Lost your password?"
3148
  msgstr "¿Perdió su contraseña?"
3149
 
3150
+ #: index.php:34
3151
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3152
+ msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
3153
+
3154
  #: modules/email-customizer/admin-email-customizer.php:54
3155
  #: modules/email-customizer/user-email-customizer.php:54
3156
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3192
  msgid "Show/Hide the Admin Bar on the Front-End"
3193
  msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
3194
 
3195
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3196
  msgid "Admin Bar Settings"
3197
  msgstr "Ajustes de Admin Bar"
3198
 
3199
+ #: admin/admin-bar.php:57
3200
+ msgid "User-Role"
3201
+ msgstr "Usuario-Rol"
3202
+
3203
+ #: admin/admin-bar.php:58
3204
+ msgid "Visibility"
3205
+ msgstr "Visibilidad"
3206
+
3207
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3208
  #: modules/multiple-forms/register-forms.php:230
3209
  msgid "Default"
3217
  msgid "Hide"
3218
  msgstr "Ocultar"
3219
 
3220
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3221
+ #: admin/register-version.php:95 features/functions.php:697
3222
+ #: modules/modules.php:127
3223
  msgid "Save Changes"
3224
  msgstr "Salvar Cambios"
3225
 
3228
  msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
3229
 
3230
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3231
+ #: admin/general-settings.php:38
3232
  msgid "General Settings"
3233
  msgstr "Ajustes Generales"
3234
 
3235
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3236
  msgid "Very weak"
3237
  msgstr "Muy débil"
3238
 
3239
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3240
+ #: features/functions.php:552
3241
  msgid "Weak"
3242
  msgstr "Débil"
3243
 
3244
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3245
+ #: features/functions.php:552
3246
  msgid "Medium"
3247
  msgstr "Media"
3248
 
3249
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3250
+ #: features/functions.php:552
3251
  msgid "Strong"
3252
  msgstr "Fuerte"
3253
 
3256
  msgstr "Adicionar Campo"
3257
 
3258
  #: admin/admin-functions.php:189
3259
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3260
  msgid "Save Settings"
3261
  msgstr "Salvar Ajustes"
3262
 
3276
  msgid "The best way to add front-end registration, edit profile and login forms."
3277
  msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
3278
 
3279
+ #: admin/basic-info.php:33
3280
+ msgid "For Modern User Interaction"
3281
+ msgstr "Para la Interacción del Usuario Moderno"
3282
+
3283
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3284
  msgid "Login"
3285
  msgstr "Autenticación"
3286
 
3287
+ #: admin/basic-info.php:40
3288
+ msgid "Registration"
3289
+ msgstr "Registro"
3290
+
3291
+ #: admin/basic-info.php:44
3292
+ msgid "Edit Profile"
3293
+ msgstr "Editar Perfil"
3294
+
3295
+ #: admin/basic-info.php:51
3296
+ msgid "Extra Features"
3297
+ msgstr "Características extras."
3298
+
3299
+ #: admin/basic-info.php:52
3300
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3301
+ msgstr "Características que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios."
3302
+
3303
+ #: admin/basic-info.php:53
3304
+ msgid "Enable extra features"
3305
+ msgstr "Habilitar características extras"
3306
+
3307
+ #: admin/basic-info.php:57
3308
+ msgid "Recover Password"
3309
+ msgstr "Recuperar contraseña"
3310
+
3311
+ #: admin/basic-info.php:61
3312
+ msgid "Admin Approval (*)"
3313
+ msgstr "Aprobación del Admin (*)"
3314
+
3315
+ #: admin/basic-info.php:62
3316
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3317
+ msgstr "Usted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress."
3318
+
3319
+ #: admin/basic-info.php:65
3320
+ msgid "Email Confirmation"
3321
+ msgstr "Confirmación de Email"
3322
+
3323
+ #: admin/basic-info.php:66
3324
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3325
+ msgstr "Esté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email."
3326
+
3327
+ #: admin/basic-info.php:69
3328
+ msgid "Minimum Password Length and Strength Meter"
3329
+ msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
3330
+
3331
+ #: admin/basic-info.php:70
3332
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3333
+ msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
3334
+
3335
+ #: admin/basic-info.php:73
3336
+ msgid "Login with Email or Username"
3337
+ msgstr "Autenticación con Email o Nombre de Usuario"
3338
+
3339
+ #: admin/basic-info.php:74
3340
+ msgid "Allow users to log in with their email or username when accessing your site."
3341
+ msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
3342
+
3343
+ #: admin/basic-info.php:87
3344
+ msgid "Customize Your Forms The Way You Want (*)"
3345
+ msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
3346
+
3347
+ #: admin/basic-info.php:88
3348
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3349
+ msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
3350
+
3351
+ #: admin/basic-info.php:90
3352
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3353
+ msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
3354
+
3355
+ #: admin/basic-info.php:92
3356
+ msgid "Get started with extra fields"
3357
+ msgstr "Comience con los campos extras"
3358
+
3359
+ #: admin/basic-info.php:95
3360
+ msgid "Avatar Upload"
3361
+ msgstr "Subida de Avatar"
3362
+
3363
+ #: admin/basic-info.php:96
3364
+ msgid "Generic Uploads"
3365
+ msgstr "Subidas Genéricas"
3366
+
3367
+ #: admin/basic-info.php:97
3368
+ msgid "Agree To Terms Checkbox"
3369
+ msgstr "Casilla de Aceptar los Términos"
3370
+
3371
+ #: admin/basic-info.php:98
3372
+ msgid "Datepicker"
3373
+ msgstr "Selector de Fecha"
3374
+
3375
+ #: admin/basic-info.php:101
3376
+ msgid "reCAPTCHA"
3377
+ msgstr "reCAPTCHA"
3378
+
3379
+ #: admin/basic-info.php:102
3380
+ msgid "Country Select"
3381
+ msgstr "Selector de País"
3382
+
3383
+ #: admin/basic-info.php:104
3384
+ msgid "Timezone Select"
3385
+ msgstr "Selector de Zona Horaria"
3386
+
3387
+ #: admin/basic-info.php:108
3388
+ msgid "Input / Hidden Input"
3389
+ msgstr "Input / Input Oculto"
3390
+
3391
+ #: admin/basic-info.php:110
3392
+ msgid "Checkbox"
3393
+ msgstr "Casilla"
3394
+
3395
+ #: admin/basic-info.php:111
3396
+ msgid "Select"
3397
+ msgstr "Selector"
3398
+
3399
+ #: admin/basic-info.php:112
3400
+ msgid "Radio Buttons"
3401
+ msgstr "Botones Redondos"
3402
+
3403
+ #: admin/basic-info.php:113
3404
+ msgid "Textarea"
3405
+ msgstr "Área de Texto"
3406
+
3407
+ #: admin/basic-info.php:125
3408
+ msgid "Powerful Modules (**)"
3409
+ msgstr "Módulos Potentes (**)"
3410
+
3411
+ #: admin/basic-info.php:126
3412
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3413
+ msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
3414
+
3415
+ #: admin/basic-info.php:128
3416
+ msgid "Enable your modules"
3417
+ msgstr "Habilitar sus módulos"
3418
+
3419
+ #: admin/basic-info.php:131
3420
+ msgid "Find out more about PRO Modules"
3421
+ msgstr "Descubra más acerca de PRO Modules"
3422
+
3423
+ #: admin/basic-info.php:136 modules/modules.php:89
3424
  #: modules/user-listing/userlisting.php:11
3425
  #: modules/user-listing/userlisting.php:12
3426
  #: modules/user-listing/userlisting.php:17
3428
  msgid "User Listing"
3429
  msgstr "Listado de Usuario"
3430
 
3431
+ #: admin/basic-info.php:138
3432
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3433
+ msgstr "Plantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados."
3434
+
3435
+ #: admin/basic-info.php:144
3436
+ msgid "Email Customizer"
3437
+ msgstr "Personalizador de Email"
3438
+
3439
+ #: admin/basic-info.php:145
3440
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3441
+ msgstr "Personalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin."
3442
+
3443
+ #: admin/basic-info.php:148
3444
  #: modules/custom-redirects/custom_redirects_admin.php:32
3445
  #: modules/custom-redirects/custom_redirects_admin.php:33
3446
+ #: modules/modules.php:110
3447
  msgid "Custom Redirects"
3448
  msgstr "Redirecciones Personalizadas"
3449
 
3450
+ #: admin/basic-info.php:149
3451
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3452
+ msgstr "Mantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics."
3453
+
3454
+ #: admin/basic-info.php:154 modules/modules.php:75
3455
+ msgid "Multiple Registration Forms"
3456
+ msgstr "Formas de Registro Múltiple"
3457
+
3458
+ #: admin/basic-info.php:155
3459
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3460
+ msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
3461
+
3462
+ #: admin/basic-info.php:158 modules/modules.php:82
3463
+ msgid "Multiple Edit-profile Forms"
3464
+ msgstr "Formas de Edición de Múltiples Perfiles"
3465
+
3466
+ #: admin/basic-info.php:159
3467
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3468
+ msgstr "Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario."
3469
+
3470
  #: admin/basic-info.php:187
3471
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3472
  msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
3475
  msgid "** only available in the %1$sPro version%2$s."
3476
  msgstr "* solamente disponible en la %1$sversión Pro%2$s."
3477
 
3478
+ #: admin/general-settings.php:42
3479
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3480
+ msgstr "El propio CSS de Load Profile Builder en la vista pública:"
3481
+
3482
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3483
+ #: admin/general-settings.php:107
3484
  #: modules/multiple-forms/edit-profile-forms.php:206
3485
  #: modules/multiple-forms/register-forms.php:229
3486
  #: modules/multiple-forms/register-forms.php:230
3492
  msgid "You can find the default file here: %1$s"
3493
  msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
3494
 
3495
+ #: admin/general-settings.php:54
3496
+ msgid "\"Email Confirmation\" Activated:"
3497
+ msgstr "\"Confirmación de Email\" Activada:"
3498
+
3499
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3500
  #: modules/multiple-forms/edit-profile-forms.php:206
3501
  #: modules/multiple-forms/register-forms.php:229
3502
  #: modules/multiple-forms/register-forms.php:230
3507
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3508
  msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
3509
 
3510
+ #: admin/general-settings.php:72
3511
+ msgid "\"Email Confirmation\" Landing Page:"
3512
+ msgstr "Página de llegada de \"Confirmación de Email\":"
3513
+
3514
+ #: admin/general-settings.php:77
3515
+ msgid "Existing Pages"
3516
+ msgstr "Páginas Existentes"
3517
+
3518
+ #: admin/general-settings.php:92
3519
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3520
+ msgstr "Especificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento."
3521
+
3522
+ #: admin/general-settings.php:103
3523
+ msgid "\"Admin Approval\" Activated:"
3524
+ msgstr "\"Aprobación del Admin\" Activada:"
3525
+
3526
  #: admin/general-settings.php:111
3527
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3528
  msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
3529
 
3530
+ #: admin/general-settings.php:149
3531
+ msgid "\"Admin Approval\" Feature:"
3532
+ msgstr "Característica \"Aprobación del Admin\":"
3533
+
3534
  #: admin/general-settings.php:152
3535
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3536
  msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
3537
 
3538
+ #: admin/general-settings.php:159
3539
+ msgid "Allow Users to Log in With:"
3540
+ msgstr "Permitir a los Usuaios Autenticarse Con:"
3541
+
3542
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3543
  #: features/admin-approval/class-admin-approval.php:166
3544
  #: features/email-confirmation/class-email-confirmation.php:167
3545
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3552
  msgid "Username"
3553
  msgstr "Nombre de Usuario"
3554
 
3555
+ #: admin/general-settings.php:165 front-end/login.php:215
3556
+ #: modules/email-customizer/email-customizer.php:29
3557
  #: modules/user-listing/userlisting.php:736
3558
  #: modules/user-listing/userlisting.php:2153
3559
  msgid "Email"
3560
  msgstr "Email"
3561
 
3562
+ #: admin/general-settings.php:177
3563
+ msgid "Minimum Password Length:"
3564
+ msgstr "Tamaño Mínimo de Contraseña:"
3565
+
3566
+ #: admin/general-settings.php:182
3567
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3568
+ msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
3569
+
3570
+ #: admin/general-settings.php:189
3571
+ msgid "Minimum Password Strength:"
3572
+ msgstr "Fortaleza Mínima de Contraseña:"
3573
+
3574
+ #: admin/general-settings.php:193
3575
+ msgid "Disabled"
3576
+ msgstr "Deshabilitado"
3577
+
3578
  #: admin/manage-fields.php:12
3579
  msgid "Manage Fields"
3580
  msgstr "Gestionar Campos"
3653
  msgid "Date-format"
3654
  msgstr "Formato de fecha"
3655
 
 
 
 
 
3656
  #: admin/manage-fields.php:126
3657
  msgid "Terms of Agreement"
3658
  msgstr "Términos del Acuerdo"
3816
  msgid "Type your password again. "
3817
  msgstr "Escriba su contraseña nuevamente."
3818
 
3819
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3820
  msgid "You must select a field\n"
3821
  msgstr "Tiene que seleccionar un campo\n"
3822
 
3840
  msgid "You must enter a value for the row number\n"
3841
  msgstr "Usted tiene que entrar un valor para el número de la fila\n"
3842
 
3843
+ #: admin/manage-fields.php:1033
3844
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3845
  msgstr "El valor entrado para el Datepicker no es un formato de fecha válido\n"
3846
 
3847
+ #: admin/manage-fields.php:1036
3848
  msgid "You must enter a value for the date-format\n"
3849
  msgstr "Usted tiene que entrar un valor para el formato de fecha\n"
3850
 
3851
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3852
+ #: admin/manage-fields.php:1083
3853
  msgid "That meta-name is already in use\n"
3854
  msgstr "Ese meta nombre ya está en uso\n"
3855
 
3856
+ #: admin/manage-fields.php:1114
3857
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3858
  msgstr "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s\n"
3859
 
3860
+ #: admin/manage-fields.php:1118
3861
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3862
  msgstr "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
3863
 
3864
+ #: admin/manage-fields.php:1141
3865
  msgid "That field is already added in this form\n"
3866
  msgstr "Ese campo ya está añadido en esta forma\n"
3867
 
3868
+ #: admin/manage-fields.php:1190
3869
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3870
  msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-head-required\">Requerido</pre>"
3871
 
3872
+ #: admin/manage-fields.php:1190
3873
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3874
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3875
  #: features/admin-approval/class-admin-approval.php:108
3876
  #: features/functions.php:718 features/functions.php:725
3877
  #: modules/custom-redirects/custom_redirects_admin.php:179
3882
  msgid "Edit"
3883
  msgstr "Editar"
3884
 
3885
+ #: admin/manage-fields.php:1190
3886
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3887
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3888
  #: features/admin-approval/class-admin-approval.php:113
3889
  #: features/admin-approval/class-admin-approval.php:224
3890
  #: features/email-confirmation/class-email-confirmation.php:120
3897
  msgid "Delete"
3898
  msgstr "Editar"
3899
 
3900
+ #: admin/manage-fields.php:1205
3901
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3902
+ msgstr "Usar estos códigos cortos en las páginas en las que quiere que las formas se muestren:"
3903
+
3904
  #: admin/register-version.php:14
3905
  msgid "Register Your Version"
3906
  msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
3909
  msgid "Register Version"
3910
  msgstr "Registre la Versión"
3911
 
3912
+ #: admin/register-version.php:70
3913
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3914
+ msgstr "Si usted registra esta versión de Profile Builder, recibirá información referente a actualizaciones, parches, y soporte técnico."
3915
+
3916
+ #: admin/register-version.php:72
3917
+ msgid " Serial Number:"
3918
+ msgstr "Número de Serie:"
3919
+
3920
  #: admin/register-version.php:77
3921
  msgid "The serial number was successfully validated!"
3922
  msgstr "¡El número de serie fue validado satisfactoriamente!"
3933
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3934
  msgstr "El número de serie no ha podido ser validado porque el proceso sobrepasó el tiempo de espera. Esto es posible debido a que el server está caido.¡ Por favor intente luego! "
3935
 
3936
+ #: admin/register-version.php:87
3937
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3938
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3939
+
3940
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3941
  msgid "Content"
3942
  msgstr "Contenido"
3943
 
3944
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3945
+ msgid "Edit this item"
3946
+ msgstr "Editar este elemento"
3947
+
3948
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3949
+ msgid "Delete this item"
3950
+ msgstr "Borrar este elemento"
3951
+
3952
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3953
+ msgid "Please enter a value for the required field "
3954
+ msgstr "Por favor entre un valor para el campo requerido"
3955
+
3956
  #: front-end/extra-fields/upload/upload.php:122
3957
  msgid "Select File"
3958
  msgstr "Seleccionar archivo"
3959
 
3960
+ #: assets/lib/wck-api/fields/upload.php:43
3961
  #: front-end/extra-fields/upload/upload.php:112
3962
  msgid "Remove"
3963
  msgstr "Eliminar"
3964
 
3965
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3966
+ msgid "You can add the information for the %s after you add a entry"
3967
+ msgstr "Usted puede adicionar la información para el %s luego de que adicione una entrada"
3968
+
3969
+ #: assets/lib/wck-api/fields/upload.php:75
3970
  #: front-end/extra-fields/upload/upload.php:128
3971
  msgid "Upload "
3972
  msgstr "Subir"
3973
 
3974
+ #: features/class-list-table.php:184
3975
+ msgid "No items found."
3976
+ msgstr "No se encontraron elementos."
3977
+
3978
  #: features/class-list-table.php:308
3979
  msgid "Bulk Actions"
3980
  msgstr "Acciones en Bloque"
3983
  msgid "Apply"
3984
  msgstr "Aplicar"
3985
 
3986
+ #: features/class-list-table.php:402
3987
+ msgid "Show all dates"
3988
+ msgstr "Mostrar todas las fechas"
3989
+
3990
  #: features/class-list-table.php:415
3991
  msgid "%1$s %2$d"
3992
  msgstr "%1$s %2$d"
4003
  msgid "%s pending"
4004
  msgstr "%s pendiente"
4005
 
4006
+ #: features/class-list-table.php:566
4007
+ msgid "%1$s of %2$s"
4008
+ msgstr "%1$s de %2$s"
4009
+
4010
  #: features/class-list-table.php:713
4011
  msgid "Select All"
4012
  msgstr "Seleccionar Todo"
4016
  msgstr "Indicador de Fortaleza"
4017
 
4018
  #: features/admin-approval/admin-approval.php:14
4019
+ #: features/admin-approval/class-admin-approval.php:453
4020
  msgid "Admin Approval"
4021
  msgstr "Aprobación del Admin"
4022
 
4023
+ #: features/admin-approval/admin-approval.php:28
4024
+ #: features/email-confirmation/email-confirmation.php:58
4025
+ msgid "Do you want to"
4026
+ msgstr "¿Usted desea"
4027
+
4028
  #: features/admin-approval/admin-approval.php:51
4029
  msgid "Your session has expired! Please refresh the page and try again"
4030
  msgstr "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
4149
  msgid "User-status"
4150
  msgstr "Estado del usuario"
4151
 
4152
+ #: features/admin-approval/class-admin-approval.php:252
4153
+ msgid "Do you want to bulk approve the selected users?"
4154
+ msgstr "¿Desea aprobar en bloque los usuarios seleccionados?"
4155
+
4156
+ #: features/admin-approval/class-admin-approval.php:260
4157
+ msgid "Do you want to bulk unapprove the selected users?"
4158
+ msgstr "¿Desea desaprobar en bloque los usuarios seleccionados?"
4159
+
4160
+ #: features/admin-approval/class-admin-approval.php:266
4161
+ msgid "Do you want to bulk delete the selected users?"
4162
+ msgstr "¿Desea eliminar en bloque los usuarios seleccionados?"
4163
+
4164
+ #: features/admin-approval/class-admin-approval.php:274
4165
  #: features/email-confirmation/class-email-confirmation.php:278
4166
  msgid "Sorry, but you don't have permission to do that!"
4167
  msgstr "Disculpe, ¡pero no tiene permisos para hacer eso!"
4174
  msgid "Unapproved"
4175
  msgstr "Desaprobado"
4176
 
4177
+ #: features/admin-approval/class-admin-approval.php:456
4178
+ #: features/email-confirmation/class-email-confirmation.php:454
4179
+ msgid "All Users"
4180
+ msgstr "Todos los Usuarios"
4181
+
4182
  #: features/email-confirmation/class-email-confirmation.php:120
4183
  msgid "delete this user from the _signups table?"
4184
  msgstr "¿eliminar este usuario de la tabla _signups?"
4217
  msgid "The selected users have had their activation emails resent"
4218
  msgstr "Los usuarios seleccionados han tenido sus email de activación reenviados"
4219
 
4220
+ #: features/email-confirmation/class-email-confirmation.php:451
4221
+ #: features/email-confirmation/email-confirmation.php:47
4222
+ msgid "Users with Unconfirmed Email Address"
4223
+ msgstr "Usuarios con Direcciones de Email Sin Confirmar"
4224
+
4225
  #: features/email-confirmation/email-confirmation.php:107
4226
  msgid "There was an error performing that action!"
4227
  msgstr "¡Hubo un error ejecutando esa acción!"
4285
  msgid "Profile Builder Login Widget"
4286
  msgstr "Widget de Autenticación de Profile Builder"
4287
 
4288
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4289
  msgid "Register"
4290
  msgstr "Registrar"
4291
 
4292
+ #: features/login-widget/login-widget.php:63
4293
+ msgid "Title:"
4294
+ msgstr "Título:"
4295
+
4296
+ #: features/login-widget/login-widget.php:68
4297
+ msgid "After login redirect URL (optional):"
4298
+ msgstr "URL de redirección luego de autenticarse (opcional):"
4299
+
4300
+ #: features/login-widget/login-widget.php:73
4301
+ msgid "Register page URL (optional):"
4302
+ msgstr "URL de página de registro (opcional):"
4303
+
4304
+ #: features/login-widget/login-widget.php:78
4305
+ msgid "Password Recovery page URL (optional):"
4306
+ msgstr "URL de página de Recuperar Contraseña (opcional):"
4307
+
4308
  #: features/upgrades/upgrades-functions.php:91
4309
  #: features/upgrades/upgrades-functions.php:134
4310
  msgid "The usernames cannot be changed."
4346
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4347
  msgstr "Usted pronto será redirigido automáticamente. Si ve esta página por más de %1$d segundos, por favor haga clic en %2$s.%3$s"
4348
 
4349
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4350
  msgid "The account %1s has been successfully created!"
4351
  msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!"
4352
 
4353
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4354
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4355
  msgstr "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección de email. Por favor chequee su bandeja de entrada y haga clic en el enlace de activación."
4356
 
4357
+ #: front-end/class-formbuilder.php:308
4358
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4359
  msgstr "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email."
4360
 
4361
+ #: front-end/class-formbuilder.php:331
4362
  msgid "Your profile has been successfully updated!"
4363
  msgstr "¡Su perfil ha sido actualizado satisfactoriamente!"
4364
 
4365
+ #: front-end/class-formbuilder.php:342
4366
  msgid "There was an error in the submitted form"
4367
  msgstr "Hubo un error en la forma enviada"
4368
 
4369
+ #: front-end/class-formbuilder.php:399
4370
  msgid "Add User"
4371
  msgstr "Adicionar Usuario"
4372
 
4373
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4374
  msgid "Update"
4375
  msgstr "Actualizar"
4376
 
4377
+ #: front-end/class-formbuilder.php:465
4378
  msgid "Send these credentials via email."
4379
  msgstr "Enviar estas credenciales via email."
4380
 
4588
  msgid "To use reCAPTCHA you must get an API public key from:"
4589
  msgstr "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:"
4590
 
4591
+ #: modules/modules.php:11 modules/modules.php:58
4592
  msgid "Modules"
4593
  msgstr "Módulos"
4594
 
4595
+ #: modules/modules.php:59
4596
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4597
+ msgstr "Aquí usted puede activar/desactivar los módulos disponibles para Profile Builder."
4598
+
4599
+ #: modules/modules.php:69
4600
+ msgid "Name/Description"
4601
+ msgstr "Nombre/Descripción"
4602
+
4603
+ #: modules/modules.php:70
4604
+ msgid "Status"
4605
+ msgstr "Estado"
4606
+
4607
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4608
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4609
+ #: modules/modules.php:119
4610
+ msgid "Active"
4611
+ msgstr "Activo"
4612
+
4613
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4614
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4615
+ #: modules/modules.php:120
4616
+ msgid "Inactive"
4617
+ msgstr "Inactivo"
4618
+
4619
  #: modules/email-customizer/admin-email-customizer.php:11
4620
  #: modules/email-customizer/admin-email-customizer.php:12
4621
+ #: modules/modules.php:96
4622
  msgid "Admin Email Customizer"
4623
  msgstr "Personalizador de Email de Admin"
4624
 
4625
  #: modules/email-customizer/user-email-customizer.php:11
4626
  #: modules/email-customizer/user-email-customizer.php:12
4627
+ #: modules/modules.php:103
4628
  msgid "User Email Customizer"
4629
  msgstr "Personalizador de Email de Usuario"
4630
 
4631
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4632
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4633
  msgid "Save"
4634
  msgstr "Salvar"
4953
  msgid "<pre>Title (Type)</pre>"
4954
  msgstr "<pre>Título (Tipo)</pre>"
4955
 
4956
+ #: modules/multiple-forms/multiple-forms.php:222
4957
+ msgid "You need to specify the title of the form before creating it"
4958
+ msgstr "Usted necesita especificar el título de la forma antes de crearla"
4959
+
4960
  #: modules/multiple-forms/register-forms.php:11
4961
  #: modules/multiple-forms/register-forms.php:12
4962
  msgid "Registration Form"
translation/profile-builder-fr_FR.mo CHANGED
Binary file
translation/profile-builder-fr_FR.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "Ne peut installer le plugin. Essayer à nouveau ou <a href=\"%s\" target
1065
  msgid "Paid Accounts"
1066
  msgstr "Payé ces comptes"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "Le plugin est activé"
@@ -1077,6 +1189,14 @@ msgstr "Le plugin a été activé"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "Le plugin a été désactivé"
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr "Pour activer votre inscription, cliquez s'il vous plaît, sur le lien suivant :<br><br>%s%s%s<br><br>Après l'avoir activée, vous allez recevoir * un autre courriel * avec votre procédure de connexion."
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr "Peut contenir les balises dynamiques suivantes:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr "Redirections d'utilisateurs individuels"
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr "sélectionner un rôle d'utilisateur"
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr "Redirection basée sur le rôle de l'utilisateur"
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr "Redirection globale"
1168
 
@@ -1203,6 +1326,50 @@ msgstr "<pre>Rôle de l'utilisateur</pre><pre>Redirection</pre><pre>URL</pre>"
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr "<pre>Redirection</pre><pre>URL</pre>"
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr "Permet aux utilisateurs de récupérer leur mot de passe dans le front-e
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr "Pour créer une page contenant les utilisateurs enregistrés à ce site/blog, insérer le shortcode suivant dans une page de votre choix: %s."
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr "Sélectionnez les rôles utilisateur pour activer l'approbation de l'administrateur."
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "Votre compte à été créé avec succès!"
@@ -2587,7 +2766,7 @@ msgstr "Vous devez saisir la clé du site.\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Vous devez entrer la clé secrète\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Add-ons"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir au minimum %s caract
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une force minimum de %s"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Spécifiez l'extension(s) que vous souhaitez limiter en téléchargement<br/>Example: .ext1,.ext2,.ext3<br/>Si non spécifié, par défaut les extensions suivantes: .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Ordre des Rôles utilisateur "
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Enregistrer l'ordre des rôles d'utilisateurs à partir des cases à cocher"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "S'il vous plaît sélectionner au moins un rôle utilisateur \n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Votre numéro de série est sur le point d'expirer, s'il vous plaît %1$
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "Votre numéro de série est expiré, s'il vous plaît %1$s Renouvelez votre licence %2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "Montrer"
@@ -2825,6 +3024,10 @@ msgstr "Montrer"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Pour permettre aux utilisateurs de s'enregistrer sur votre site via Profile Builder, vous devez d'abord activer l'enregistrement des utilisateurs. Aller à %1$s Paramètres Network %2$s, et sous Paramètres d'enregistrement assurez-vous de vérifier \"Les comptes utilisateur peuvent être enregistrés». %3$s Renvoyer %4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "Le mot de passe doit avoir une longueur minimale de %s caractères"
@@ -2887,11 +3090,15 @@ msgstr "Utilisateur introuvable."
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "Tags valides {{reply_to}} et {{site_name}}"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "Entrez une liste de valeurs séparées par une virgule.<br/>Cela peut être n'importe quoi, puisque c'est masqué pour l'utilisateur, mais ça ne devrait pas contenir de caractères spéciaux ni d'apostrophes."
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "Le méta-nom ne peut pas être vide\n"
2897
 
@@ -2903,11 +3110,20 @@ msgstr "Maintenant que vous possédez une copie de %s, vous devriez prendre le t
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Votre numéro de série de <strong>Profile Builder</strong> est invalide ou manquant. <br/>Merci d' %1$s enregistrer votre copie%2$s pour recevoir automatiquement mises à jour et supports. Besoin d'une licence ? %3$sAchetez la maintenant%4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Choisir"
2910
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Très faible"
@@ -2940,6 +3156,10 @@ msgstr "email"
2940
  msgid "Lost your password?"
2941
  msgstr "Mot de passe perdu?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3201,18 @@ msgstr "Préciser le nombre d'utilisateurs à afficher sur chaque page de la lis
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Afficher/masquer la barre Administration sur l'interface client"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Paramètres de la barre Administration"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3226,9 @@ msgstr "Afficher"
2998
  msgid "Hide"
2999
  msgstr "Masquer"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Enregistrer les modifications"
3004
 
@@ -3007,22 +3237,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface client ! ( vous pouvez changer ces paramètres dans l'onglet \"%s\" )"
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Paramètres Généraux"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Très faible"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Faible"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Moyen"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Fort"
3028
 
@@ -3031,6 +3265,7 @@ msgid "Add Field"
3031
  msgstr "Ajouter un Champ"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Enregistrer les Paramètres"
3036
 
@@ -3050,10 +3285,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "Le meilleur moyen d'ajouter une inscription via l'interface client, de modifier un profil et des formulaires de connexion."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Identification"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3437,45 @@ msgstr "Identification"
3061
  msgid "User Listing"
3062
  msgstr "Listing d'utilisateurs"
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Redirections personnalisées"
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
@@ -3074,6 +3484,12 @@ msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** disponible uniquement dans la version %1$sPro %2$s."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3501,11 @@ msgstr "Oui"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3516,39 @@ msgstr "Non"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "Vous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s."
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "Vous décidez qui est utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s."
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3561,29 @@ msgstr "Vous décidez qui est utilisateur sur votre site. Soyez informé par e-m
3116
  msgid "Username"
3117
  msgstr "Nom d'utilisateur"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "Adresse de messagerie"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Gérez les Champs"
@@ -3200,10 +3662,6 @@ msgstr "Entrez une valeur (entre 20 et 200) pour la taille de l'Avatar<br/>Si au
3200
  msgid "Date-format"
3201
  msgstr "Format de la date"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Spécifiez le format de la date lorsque vous utilisez l'outil de sélection de dates<br/>Options valides: mm/jj/aa, mm/aa/jj, jj/aa/mm, jj/mm/aa, aa/jj/mm, aa/mm/jj<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera mm/jj/aa"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Conditions Générales"
@@ -3367,7 +3825,7 @@ msgstr "Répétez votre mot de passe"
3367
  msgid "Type your password again. "
3368
  msgstr "Re-tapez votre mot de passe."
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Vous devez sélectionner un champ\n"
3373
 
@@ -3391,36 +3849,38 @@ msgstr "Le numéro entré pour la ligne n'est pas numérique\n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "Vous devez entrer une valeur pour le numéro de la ligne\n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "Vous devez entrer une valeur de formattage de date\n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "Le meta-nom est déjà utilisé\n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options : %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3891,9 @@ msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-h
3431
  msgid "Edit"
3432
  msgstr "Editer"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3906,10 @@ msgstr "Editer"
3444
  msgid "Delete"
3445
  msgstr "Supprimer"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "Enregistrez Votre Version"
@@ -3452,6 +3918,14 @@ msgstr "Enregistrez Votre Version"
3452
  msgid "Register Version"
3453
  msgstr "Enregistrez la Version"
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "Le numéro de série a bien été validé !"
@@ -3468,22 +3942,48 @@ msgstr "Le numéro de série n'a pas pu être validé car il a expiré !"
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard !"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Contenu"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr "Sélectionner un fichier"
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Supprimer"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Télécharger"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "Actions Groupées"
@@ -3492,6 +3992,10 @@ msgstr "Actions Groupées"
3492
  msgid "Apply"
3493
  msgstr "Appliquer"
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d"
@@ -3508,6 +4012,10 @@ msgstr "Vue par extrait"
3508
  msgid "%s pending"
3509
  msgstr "%s en attente"
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Tout Sélectionner"
@@ -3517,9 +4025,15 @@ msgid "Strength indicator"
3517
  msgstr "Indicateur de sûreté"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "Approbation par l'Admin"
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer"
@@ -3644,6 +4158,19 @@ msgstr "Inscrit"
3644
  msgid "User-status"
3645
  msgstr "Statut de l'utilisateur"
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Désolé, mais vous n'avez pas la permission de faire cela !"
@@ -3656,6 +4183,11 @@ msgstr "Approuvé"
3656
  msgid "Unapproved"
3657
  msgstr "Refusé"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "supprimer cet utilisateur de la table _signups ?"
@@ -3694,6 +4226,11 @@ msgstr "L'utilisateur sélectionné a bien été activé"
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "Il y a eu une erreur lors de la réalisation de cette action !"
@@ -3757,10 +4294,26 @@ msgstr "Cette widget d'identification vous permet d'ajouter un formulaire d'iden
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Profile Builder Login Widget"
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "S'inscrire"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4355,35 @@ msgstr "ici"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus d'%1$d secondes, merci de cliquer sur %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "Votre compte %1s a bien été créé !"
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation."
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un E-mail vous sera envoyé."
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "Votre profil a bien été mis à jour !"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "Il y avait une erreur dans le formulaire soumis"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Ajouter un Utilisateur"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Mettre à jour"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Envoyer ces identifiants par E-mail."
3836
 
@@ -4044,20 +4597,47 @@ msgstr "Pour des raisons de sécurité, vous devez donner l'adresse ip distante
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de :"
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Modules"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "E-mails personnalisés à l'Admin"
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr "E-mails personnalisés à l'utilisateur"
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Enregistrer"
@@ -4382,6 +4962,10 @@ msgstr "Choisissez l'un des champs supportés que vous gérez <a href=\""
4382
  msgid "<pre>Title (Type)</pre>"
4383
  msgstr "<pre>Titre (Type)</pre>"
4384
 
 
 
 
 
4385
  #: modules/multiple-forms/register-forms.php:11
4386
  #: modules/multiple-forms/register-forms.php:12
4387
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Plugins recommandés"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Gratuit"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Accepter les paiements des utilisateurs, créer des plans de souscription et restreindre le contenu sur votre site d'adhésion."
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Plus de détails"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Payé ces comptes"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Payer les abonnements membres - un plugin WordPress gratuit"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr "Avec le nouveau champ abonnements dans Profile Builder, vos formulaires d'inscription permettront à vos utilisateurs de s'inscrire pour les comptes payés."
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Abonnements payants et gratuits"
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Restreindre le contenu"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Gestion des membres"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "Modèles d'Emails"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Gestion des comptes"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Gestion des inscriptions"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Gestion des paiements"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Le plugin est activé"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Le plugin a été désactivé"
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Accepter les paiements des utilisateurs, créer des plans de souscription et restreindre le contenu sur votre site."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Configuration rapide étape par étape "
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr "Pour activer votre inscription, cliquez s'il vous plaît, sur le lien suivant :<br><br>%s%s%s<br><br>Après l'avoir activée, vous allez recevoir * un autre courriel * avec votre procédure de connexion."
1267
  msgstr "Peut contenir les balises dynamiques suivantes:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Redirections d'utilisateurs individuels"
1273
 
1280
  msgstr "sélectionner un rôle d'utilisateur"
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Redirection basée sur le rôle de l'utilisateur"
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr "Redirection globale"
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Redirection</pre><pre>URL</pre>"
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr "Ces redirections se produisent après une action réussie, comme l'enregistrement ou après une connexion réussie."
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr "Cette redirection dépend de la priorité suivante:"
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr "Redirection par défaut des formes et pages WordPress"
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr "Avec ceux-ci, vous pouvez rediriger différentes formes et pages WordPress vers des pages créées avec profil builder."
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr "Balises disponibles pour les URL dynamiques"
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr "Vous utilisez les balises suivantes dans vos URL pour rediriger les utilisateurs vers différentes pages."
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr "génère une URL de la page d'accueil du site actuel."
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr "dans WordPress l'<a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>URL du site</a> peut être différente de l'url principale"
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr "l'identifiant de l'utilisateur"
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr "l'URL version aseptisée du nom d'utilisateur, le véritable nom utilisateur peut être utilisé en toute sécurité dans les URL, car il ne peut pas contenir des caractères spéciaux ou des espaces."
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr "l'URL de la page visitée précédemment"
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr "Pour créer une page contenant les utilisateurs enregistrés à ce site/blog, insérer le shortcode suivant dans une page de votre choix: %s."
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr "\"Approbation Administrateur\" sur le rôle de l'utilisateur:"
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Sélectionnez les rôles utilisateur pour activer l'approbation de l'administrateur."
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr "Avec Profile Builder Pro v2, vous pouvez afficher différents champs dans les formulaires d'inscription et modifier les profils, en utilisant l'enregistrement multiple et Modifier le module Profil Forms."
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Votre compte doit être confirmé par un administrateur avant de pouvoir vous connecter."
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Votre compte à été créé avec succès!"
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Vous devez entrer la clé secrète\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Add-ons"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une force minimum de %s"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Nom utilisateur et Email"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "«Nom d'utilisateur et E-mail\" - les utilisateurs peuvent s'identifier à la fois avec le Nom d'utilisateur et l'E-mail."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Nom utilisateur\" - les utilisateurs peuvent se connecter uniquement avec leur Nom d'utilisateur."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"E-mail\" - les utilisateurs peuvent se connecter uniquement avec leur E-mail."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Spécifiez l'extension(s) que vous souhaitez limiter en téléchargement<br/>Example: .ext1,.ext2,.ext3<br/>Si non spécifié, par défaut les extensions suivantes: .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Enregistrer l'ordre des rôles d'utilisateurs à partir des cases à cocher"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "S'il vous plaît sélectionner au moins un rôle utilisateur \n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "Votre numéro de série est expiré, s'il vous plaît %1$s Renouvelez votre licence %2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Ajouter une entrée"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "Montrer"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Pour permettre aux utilisateurs de s'enregistrer sur votre site via Profile Builder, vous devez d'abord activer l'enregistrement des utilisateurs. Aller à %1$s Paramètres Network %2$s, et sous Paramètres d'enregistrement assurez-vous de vérifier \"Les comptes utilisateur peuvent être enregistrés». %3$s Renvoyer %4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Pour modification utilisateur :"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "Le mot de passe doit avoir une longueur minimale de %s caractères"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "Tags valides {{reply_to}} et {{site_name}}"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Choisir quels rôles-utilisateurs peuvent voir la barre administration sur l'interface client du site web."
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "Entrez une liste de valeurs séparées par une virgule.<br/>Cela peut être n'importe quoi, puisque c'est masqué pour l'utilisateur, mais ça ne devrait pas contenir de caractères spéciaux ni d'apostrophes."
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "Le méta-nom ne peut pas être vide\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Votre numéro de série de <strong>Profile Builder</strong> est invalide ou manquant. <br/>Merci d' %1$s enregistrer votre copie%2$s pour recevoir automatiquement mises à jour et supports. Besoin d'une licence ? %3$sAchetez la maintenant%4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Choisir"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 élément"
3125
+ msgstr[1] ""
3126
+
3127
  #: features/functions.php:552
3128
  msgid "Very Weak"
3129
  msgstr "Très faible"
3156
  msgid "Lost your password?"
3157
  msgstr "Mot de passe perdu?"
3158
 
3159
+ #: index.php:34
3160
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3161
+ msgstr "est aussi activé. Vous devez le désactiver avec d'activer cette version de l'extension."
3162
+
3163
  #: modules/email-customizer/admin-email-customizer.php:54
3164
  #: modules/email-customizer/user-email-customizer.php:54
3165
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3201
  msgid "Show/Hide the Admin Bar on the Front-End"
3202
  msgstr "Afficher/masquer la barre Administration sur l'interface client"
3203
 
3204
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3205
  msgid "Admin Bar Settings"
3206
  msgstr "Paramètres de la barre Administration"
3207
 
3208
+ #: admin/admin-bar.php:57
3209
+ msgid "User-Role"
3210
+ msgstr "Rôle-Utilisateur"
3211
+
3212
+ #: admin/admin-bar.php:58
3213
+ msgid "Visibility"
3214
+ msgstr "Visibilité"
3215
+
3216
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3217
  #: modules/multiple-forms/register-forms.php:230
3218
  msgid "Default"
3226
  msgid "Hide"
3227
  msgstr "Masquer"
3228
 
3229
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3230
+ #: admin/register-version.php:95 features/functions.php:697
3231
+ #: modules/modules.php:127
3232
  msgid "Save Changes"
3233
  msgstr "Enregistrer les modifications"
3234
 
3237
  msgstr "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface client ! ( vous pouvez changer ces paramètres dans l'onglet \"%s\" )"
3238
 
3239
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3240
+ #: admin/general-settings.php:38
3241
  msgid "General Settings"
3242
  msgstr "Paramètres Généraux"
3243
 
3244
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3245
  msgid "Very weak"
3246
  msgstr "Très faible"
3247
 
3248
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3249
+ #: features/functions.php:552
3250
  msgid "Weak"
3251
  msgstr "Faible"
3252
 
3253
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3254
+ #: features/functions.php:552
3255
  msgid "Medium"
3256
  msgstr "Moyen"
3257
 
3258
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3259
+ #: features/functions.php:552
3260
  msgid "Strong"
3261
  msgstr "Fort"
3262
 
3265
  msgstr "Ajouter un Champ"
3266
 
3267
  #: admin/admin-functions.php:189
3268
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3269
  msgid "Save Settings"
3270
  msgstr "Enregistrer les Paramètres"
3271
 
3285
  msgid "The best way to add front-end registration, edit profile and login forms."
3286
  msgstr "Le meilleur moyen d'ajouter une inscription via l'interface client, de modifier un profil et des formulaires de connexion."
3287
 
3288
+ #: admin/basic-info.php:33
3289
+ msgid "For Modern User Interaction"
3290
+ msgstr "Pour une Interaction Utilisateur Moderne"
3291
+
3292
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3293
  msgid "Login"
3294
  msgstr "Identification"
3295
 
3296
+ #: admin/basic-info.php:40
3297
+ msgid "Registration"
3298
+ msgstr "Inscription"
3299
+
3300
+ #: admin/basic-info.php:44
3301
+ msgid "Edit Profile"
3302
+ msgstr "Modifier le Profil"
3303
+
3304
+ #: admin/basic-info.php:51
3305
+ msgid "Extra Features"
3306
+ msgstr "Fonctionnalités supplémentaires"
3307
+
3308
+ #: admin/basic-info.php:52
3309
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3310
+ msgstr "Des fonctionnalités qui vous donnent plus de contrôle sur vos utilisateurs, une sécurité renforcée et qui vous aident à lutter contre le spam d'inscription d'utilisateurs."
3311
+
3312
+ #: admin/basic-info.php:53
3313
+ msgid "Enable extra features"
3314
+ msgstr "Activer les fonctionnalités supplémentaires"
3315
+
3316
+ #: admin/basic-info.php:57
3317
+ msgid "Recover Password"
3318
+ msgstr "Récupérer le Mot De Passe"
3319
+
3320
+ #: admin/basic-info.php:61
3321
+ msgid "Admin Approval (*)"
3322
+ msgstr "Approbation par l'Administrateur"
3323
+
3324
+ #: admin/basic-info.php:62
3325
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3326
+ msgstr "Vous décidez qui est un utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress."
3327
+
3328
+ #: admin/basic-info.php:65
3329
+ msgid "Email Confirmation"
3330
+ msgstr "Confirmation de l'adresse de messagerie"
3331
+
3332
+ #: admin/basic-info.php:66
3333
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3334
+ msgstr "S'assurer que les utilisateurs s'incrivent avec des adresses de messagerie authentiques. Lors de l'inscription, un e-mail sera envoyé aux utilisateurs afin de confirmer leur adresse de messagerie."
3335
+
3336
+ #: admin/basic-info.php:69
3337
+ msgid "Minimum Password Length and Strength Meter"
3338
+ msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté"
3339
+
3340
+ #: admin/basic-info.php:70
3341
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3342
+ msgstr "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum."
3343
+
3344
+ #: admin/basic-info.php:73
3345
+ msgid "Login with Email or Username"
3346
+ msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur"
3347
+
3348
+ #: admin/basic-info.php:74
3349
+ msgid "Allow users to log in with their email or username when accessing your site."
3350
+ msgstr "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site."
3351
+
3352
+ #: admin/basic-info.php:87
3353
+ msgid "Customize Your Forms The Way You Want (*)"
3354
+ msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)"
3355
+
3356
+ #: admin/basic-info.php:88
3357
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3358
+ msgstr "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin."
3359
+
3360
+ #: admin/basic-info.php:90
3361
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3362
+ msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO."
3363
+
3364
+ #: admin/basic-info.php:92
3365
+ msgid "Get started with extra fields"
3366
+ msgstr "Bien commencer avec les champs supplémentaires"
3367
+
3368
+ #: admin/basic-info.php:95
3369
+ msgid "Avatar Upload"
3370
+ msgstr "Téléchargement d'avatar"
3371
+
3372
+ #: admin/basic-info.php:96
3373
+ msgid "Generic Uploads"
3374
+ msgstr "Téléchargements Génériques"
3375
+
3376
+ #: admin/basic-info.php:97
3377
+ msgid "Agree To Terms Checkbox"
3378
+ msgstr "Accepter les conditions par une case à cocher"
3379
+
3380
+ #: admin/basic-info.php:98
3381
+ msgid "Datepicker"
3382
+ msgstr "Outil de sélection de date"
3383
+
3384
+ #: admin/basic-info.php:101
3385
+ msgid "reCAPTCHA"
3386
+ msgstr "reCAPTCHA"
3387
+
3388
+ #: admin/basic-info.php:102
3389
+ msgid "Country Select"
3390
+ msgstr "Sélection du Pays"
3391
+
3392
+ #: admin/basic-info.php:104
3393
+ msgid "Timezone Select"
3394
+ msgstr "Sélection du Fuseau Horaire"
3395
+
3396
+ #: admin/basic-info.php:108
3397
+ msgid "Input / Hidden Input"
3398
+ msgstr "Entrée visible / Entrée cachée"
3399
+
3400
+ #: admin/basic-info.php:110
3401
+ msgid "Checkbox"
3402
+ msgstr "Case à cocher"
3403
+
3404
+ #: admin/basic-info.php:111
3405
+ msgid "Select"
3406
+ msgstr "Liste déroulante"
3407
+
3408
+ #: admin/basic-info.php:112
3409
+ msgid "Radio Buttons"
3410
+ msgstr "Boutons Radio"
3411
+
3412
+ #: admin/basic-info.php:113
3413
+ msgid "Textarea"
3414
+ msgstr "Zone de Texte"
3415
+
3416
+ #: admin/basic-info.php:125
3417
+ msgid "Powerful Modules (**)"
3418
+ msgstr "Des Modules Puissants (**)"
3419
+
3420
+ #: admin/basic-info.php:126
3421
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3422
+ msgstr "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro."
3423
+
3424
+ #: admin/basic-info.php:128
3425
+ msgid "Enable your modules"
3426
+ msgstr "Activer vos modules"
3427
+
3428
+ #: admin/basic-info.php:131
3429
+ msgid "Find out more about PRO Modules"
3430
+ msgstr "Découvrez les Modules PRO"
3431
+
3432
+ #: admin/basic-info.php:136 modules/modules.php:89
3433
  #: modules/user-listing/userlisting.php:11
3434
  #: modules/user-listing/userlisting.php:12
3435
  #: modules/user-listing/userlisting.php:17
3437
  msgid "User Listing"
3438
  msgstr "Listing d'utilisateurs"
3439
 
3440
+ #: admin/basic-info.php:138
3441
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3442
+ msgstr "Facile pour modifier les modèles permettant de lister les utilisateurs de votre site web tout comme créer des formulaires pour un seul utilisateur. Basé sur des shortcodes, offrant de nombreuses options pour personnaliser vos listings."
3443
+
3444
+ #: admin/basic-info.php:144
3445
+ msgid "Email Customizer"
3446
+ msgstr "Outil de personnalisation d'e-mails"
3447
+
3448
+ #: admin/basic-info.php:145
3449
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3450
+ msgstr "Personnalisez tous les e-mails envoyés à vos utilisateurs ou administrateurs. Au moment de l'inscription, de la confirmation de l'adresse de messagerie, de l'approbation / rejet par les administrateurs."
3451
+
3452
+ #: admin/basic-info.php:148
3453
  #: modules/custom-redirects/custom_redirects_admin.php:32
3454
  #: modules/custom-redirects/custom_redirects_admin.php:33
3455
+ #: modules/modules.php:110
3456
  msgid "Custom Redirects"
3457
  msgstr "Redirections personnalisées"
3458
 
3459
+ #: admin/basic-info.php:149
3460
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3461
+ msgstr "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'accueil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques clics."
3462
+
3463
+ #: admin/basic-info.php:154 modules/modules.php:75
3464
+ msgid "Multiple Registration Forms"
3465
+ msgstr "Formulaires Multiples d'Inscription"
3466
+
3467
+ #: admin/basic-info.php:155
3468
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3469
+ msgstr "Mettez en place des formulaires multiples d'inscription avec différents champs suivant les rôles utilisateur. Capturez des informations variées à partir de divers types d'utilisateurs."
3470
+
3471
+ #: admin/basic-info.php:158 modules/modules.php:82
3472
+ msgid "Multiple Edit-profile Forms"
3473
+ msgstr "Formulaires Multiples de Modification de Profil"
3474
+
3475
+ #: admin/basic-info.php:159
3476
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3477
+ msgstr "Autorisez différents rôles-utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des formulaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs."
3478
+
3479
  #: admin/basic-info.php:187
3480
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3481
  msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
3484
  msgid "** only available in the %1$sPro version%2$s."
3485
  msgstr "** disponible uniquement dans la version %1$sPro %2$s."
3486
 
3487
+ #: admin/general-settings.php:42
3488
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3489
+ msgstr "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
3490
+
3491
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3492
+ #: admin/general-settings.php:107
3493
  #: modules/multiple-forms/edit-profile-forms.php:206
3494
  #: modules/multiple-forms/register-forms.php:229
3495
  #: modules/multiple-forms/register-forms.php:230
3501
  msgid "You can find the default file here: %1$s"
3502
  msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
3503
 
3504
+ #: admin/general-settings.php:54
3505
+ msgid "\"Email Confirmation\" Activated:"
3506
+ msgstr "\"Confirmation par e-mail\" Activée:"
3507
+
3508
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3509
  #: modules/multiple-forms/edit-profile-forms.php:206
3510
  #: modules/multiple-forms/register-forms.php:229
3511
  #: modules/multiple-forms/register-forms.php:230
3516
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3517
  msgstr "Vous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s."
3518
 
3519
+ #: admin/general-settings.php:72
3520
+ msgid "\"Email Confirmation\" Landing Page:"
3521
+ msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":"
3522
+
3523
+ #: admin/general-settings.php:77
3524
+ msgid "Existing Pages"
3525
+ msgstr "Pages existantes"
3526
+
3527
+ #: admin/general-settings.php:92
3528
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3529
+ msgstr "Spécifie la page vers laquelle les utilisateurs seront redirigés après avoir confirmé leur adresse de messagerie. Cette page peut être différente suivant la ou les page(s) d'inscription et peut être changée à n'importe quel moment. Si aucune n'est sélectionnée, une page de confirmation simple sera affichée à l'utilisateur."
3530
+
3531
+ #: admin/general-settings.php:103
3532
+ msgid "\"Admin Approval\" Activated:"
3533
+ msgstr "\"Approbation par l'Admin\" Activée:"
3534
+
3535
  #: admin/general-settings.php:111
3536
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3537
  msgstr "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
3538
 
3539
+ #: admin/general-settings.php:149
3540
+ msgid "\"Admin Approval\" Feature:"
3541
+ msgstr "Fonctionnalité \"Approbation par l'Admin\":"
3542
+
3543
  #: admin/general-settings.php:152
3544
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3545
  msgstr "Vous décidez qui est utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s."
3546
 
3547
+ #: admin/general-settings.php:159
3548
+ msgid "Allow Users to Log in With:"
3549
+ msgstr "Permet aux utilisateurs à se connecter avec :"
3550
+
3551
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3552
  #: features/admin-approval/class-admin-approval.php:166
3553
  #: features/email-confirmation/class-email-confirmation.php:167
3554
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3561
  msgid "Username"
3562
  msgstr "Nom d'utilisateur"
3563
 
3564
+ #: admin/general-settings.php:165 front-end/login.php:215
3565
+ #: modules/email-customizer/email-customizer.php:29
3566
  #: modules/user-listing/userlisting.php:736
3567
  #: modules/user-listing/userlisting.php:2153
3568
  msgid "Email"
3569
  msgstr "Adresse de messagerie"
3570
 
3571
+ #: admin/general-settings.php:177
3572
+ msgid "Minimum Password Length:"
3573
+ msgstr "Longueur minimale du Mot de Passe :"
3574
+
3575
+ #: admin/general-settings.php:182
3576
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3577
+ msgstr "Entrez le nombre minimum de caractères que le mot de passe doit avoir. Laissez ce champ vide si vous ne voulez aucune limite minimale"
3578
+
3579
+ #: admin/general-settings.php:189
3580
+ msgid "Minimum Password Strength:"
3581
+ msgstr "Sûreté minimale du Mot de Passe:"
3582
+
3583
+ #: admin/general-settings.php:193
3584
+ msgid "Disabled"
3585
+ msgstr "Désactivé"
3586
+
3587
  #: admin/manage-fields.php:12
3588
  msgid "Manage Fields"
3589
  msgstr "Gérez les Champs"
3662
  msgid "Date-format"
3663
  msgstr "Format de la date"
3664
 
 
 
 
 
3665
  #: admin/manage-fields.php:126
3666
  msgid "Terms of Agreement"
3667
  msgstr "Conditions Générales"
3825
  msgid "Type your password again. "
3826
  msgstr "Re-tapez votre mot de passe."
3827
 
3828
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3829
  msgid "You must select a field\n"
3830
  msgstr "Vous devez sélectionner un champ\n"
3831
 
3849
  msgid "You must enter a value for the row number\n"
3850
  msgstr "Vous devez entrer une valeur pour le numéro de la ligne\n"
3851
 
3852
+ #: admin/manage-fields.php:1033
3853
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3854
  msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
3855
 
3856
+ #: admin/manage-fields.php:1036
3857
  msgid "You must enter a value for the date-format\n"
3858
  msgstr "Vous devez entrer une valeur de formattage de date\n"
3859
 
3860
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3861
+ #: admin/manage-fields.php:1083
3862
  msgid "That meta-name is already in use\n"
3863
  msgstr "Le meta-nom est déjà utilisé\n"
3864
 
3865
+ #: admin/manage-fields.php:1114
3866
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3867
  msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options : %s\n"
3868
 
3869
+ #: admin/manage-fields.php:1118
3870
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3871
  msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
3872
 
3873
+ #: admin/manage-fields.php:1141
3874
  msgid "That field is already added in this form\n"
3875
  msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
3876
 
3877
+ #: admin/manage-fields.php:1190
3878
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3879
  msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
3880
 
3881
+ #: admin/manage-fields.php:1190
3882
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3884
  #: features/admin-approval/class-admin-approval.php:108
3885
  #: features/functions.php:718 features/functions.php:725
3886
  #: modules/custom-redirects/custom_redirects_admin.php:179
3891
  msgid "Edit"
3892
  msgstr "Editer"
3893
 
3894
+ #: admin/manage-fields.php:1190
3895
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3896
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3897
  #: features/admin-approval/class-admin-approval.php:113
3898
  #: features/admin-approval/class-admin-approval.php:224
3899
  #: features/email-confirmation/class-email-confirmation.php:120
3906
  msgid "Delete"
3907
  msgstr "Supprimer"
3908
 
3909
+ #: admin/manage-fields.php:1205
3910
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3911
+ msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent :"
3912
+
3913
  #: admin/register-version.php:14
3914
  msgid "Register Your Version"
3915
  msgstr "Enregistrez Votre Version"
3918
  msgid "Register Version"
3919
  msgstr "Enregistrez la Version"
3920
 
3921
+ #: admin/register-version.php:70
3922
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3923
+ msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant les mises à jours, les correctifs et le support technique."
3924
+
3925
+ #: admin/register-version.php:72
3926
+ msgid " Serial Number:"
3927
+ msgstr "Numéro de Série :"
3928
+
3929
  #: admin/register-version.php:77
3930
  msgid "The serial number was successfully validated!"
3931
  msgstr "Le numéro de série a bien été validé !"
3942
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3943
  msgstr "Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard !"
3944
 
3945
+ #: admin/register-version.php:87
3946
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3947
+ msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3948
+
3949
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3950
  msgid "Content"
3951
  msgstr "Contenu"
3952
 
3953
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3954
+ msgid "Edit this item"
3955
+ msgstr "Modifier cet élément"
3956
+
3957
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3958
+ msgid "Delete this item"
3959
+ msgstr "Supprimer cet élément"
3960
+
3961
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3962
+ msgid "Please enter a value for the required field "
3963
+ msgstr "Merci d'entrer une valeur pour le champ obligatoire"
3964
+
3965
  #: front-end/extra-fields/upload/upload.php:122
3966
  msgid "Select File"
3967
  msgstr "Sélectionner un fichier"
3968
 
3969
+ #: assets/lib/wck-api/fields/upload.php:43
3970
  #: front-end/extra-fields/upload/upload.php:112
3971
  msgid "Remove"
3972
  msgstr "Supprimer"
3973
 
3974
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3975
+ msgid "You can add the information for the %s after you add a entry"
3976
+ msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée"
3977
+
3978
+ #: assets/lib/wck-api/fields/upload.php:75
3979
  #: front-end/extra-fields/upload/upload.php:128
3980
  msgid "Upload "
3981
  msgstr "Télécharger"
3982
 
3983
+ #: features/class-list-table.php:184
3984
+ msgid "No items found."
3985
+ msgstr "Aucun élément trouvé."
3986
+
3987
  #: features/class-list-table.php:308
3988
  msgid "Bulk Actions"
3989
  msgstr "Actions Groupées"
3992
  msgid "Apply"
3993
  msgstr "Appliquer"
3994
 
3995
+ #: features/class-list-table.php:402
3996
+ msgid "Show all dates"
3997
+ msgstr "Afficher toutes les dates"
3998
+
3999
  #: features/class-list-table.php:415
4000
  msgid "%1$s %2$d"
4001
  msgstr "%1$s %2$d"
4012
  msgid "%s pending"
4013
  msgstr "%s en attente"
4014
 
4015
+ #: features/class-list-table.php:566
4016
+ msgid "%1$s of %2$s"
4017
+ msgstr "%1$s de %2$s"
4018
+
4019
  #: features/class-list-table.php:713
4020
  msgid "Select All"
4021
  msgstr "Tout Sélectionner"
4025
  msgstr "Indicateur de sûreté"
4026
 
4027
  #: features/admin-approval/admin-approval.php:14
4028
+ #: features/admin-approval/class-admin-approval.php:453
4029
  msgid "Admin Approval"
4030
  msgstr "Approbation par l'Admin"
4031
 
4032
+ #: features/admin-approval/admin-approval.php:28
4033
+ #: features/email-confirmation/email-confirmation.php:58
4034
+ msgid "Do you want to"
4035
+ msgstr "Voulez-vous"
4036
+
4037
  #: features/admin-approval/admin-approval.php:51
4038
  msgid "Your session has expired! Please refresh the page and try again"
4039
  msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer"
4158
  msgid "User-status"
4159
  msgstr "Statut de l'utilisateur"
4160
 
4161
+ #: features/admin-approval/class-admin-approval.php:252
4162
+ msgid "Do you want to bulk approve the selected users?"
4163
+ msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés ?"
4164
+
4165
+ #: features/admin-approval/class-admin-approval.php:260
4166
+ msgid "Do you want to bulk unapprove the selected users?"
4167
+ msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés ?"
4168
+
4169
+ #: features/admin-approval/class-admin-approval.php:266
4170
+ msgid "Do you want to bulk delete the selected users?"
4171
+ msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés ?"
4172
+
4173
+ #: features/admin-approval/class-admin-approval.php:274
4174
  #: features/email-confirmation/class-email-confirmation.php:278
4175
  msgid "Sorry, but you don't have permission to do that!"
4176
  msgstr "Désolé, mais vous n'avez pas la permission de faire cela !"
4183
  msgid "Unapproved"
4184
  msgstr "Refusé"
4185
 
4186
+ #: features/admin-approval/class-admin-approval.php:456
4187
+ #: features/email-confirmation/class-email-confirmation.php:454
4188
+ msgid "All Users"
4189
+ msgstr "Tous les Utilisateurs"
4190
+
4191
  #: features/email-confirmation/class-email-confirmation.php:120
4192
  msgid "delete this user from the _signups table?"
4193
  msgstr "supprimer cet utilisateur de la table _signups ?"
4226
  msgid "The selected users have had their activation emails resent"
4227
  msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
4228
 
4229
+ #: features/email-confirmation/class-email-confirmation.php:451
4230
+ #: features/email-confirmation/email-confirmation.php:47
4231
+ msgid "Users with Unconfirmed Email Address"
4232
+ msgstr "Utilisateurs avec une adresse de messagerie non-confirmée"
4233
+
4234
  #: features/email-confirmation/email-confirmation.php:107
4235
  msgid "There was an error performing that action!"
4236
  msgstr "Il y a eu une erreur lors de la réalisation de cette action !"
4294
  msgid "Profile Builder Login Widget"
4295
  msgstr "Profile Builder Login Widget"
4296
 
4297
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4298
  msgid "Register"
4299
  msgstr "S'inscrire"
4300
 
4301
+ #: features/login-widget/login-widget.php:63
4302
+ msgid "Title:"
4303
+ msgstr "Titre :"
4304
+
4305
+ #: features/login-widget/login-widget.php:68
4306
+ msgid "After login redirect URL (optional):"
4307
+ msgstr "URL de redirection après connexion (optionnel) :"
4308
+
4309
+ #: features/login-widget/login-widget.php:73
4310
+ msgid "Register page URL (optional):"
4311
+ msgstr "URL de la page d'inscription (optionnel) :"
4312
+
4313
+ #: features/login-widget/login-widget.php:78
4314
+ msgid "Password Recovery page URL (optional):"
4315
+ msgstr "URL de la page de ré-initialisation du mot de passe (optionnel) :"
4316
+
4317
  #: features/upgrades/upgrades-functions.php:91
4318
  #: features/upgrades/upgrades-functions.php:134
4319
  msgid "The usernames cannot be changed."
4355
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4356
  msgstr "Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus d'%1$d secondes, merci de cliquer sur %2$s.%3$s"
4357
 
4358
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4359
  msgid "The account %1s has been successfully created!"
4360
  msgstr "Votre compte %1s a bien été créé !"
4361
 
4362
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4363
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4364
  msgstr "Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation."
4365
 
4366
+ #: front-end/class-formbuilder.php:308
4367
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4368
  msgstr "Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un E-mail vous sera envoyé."
4369
 
4370
+ #: front-end/class-formbuilder.php:331
4371
  msgid "Your profile has been successfully updated!"
4372
  msgstr "Votre profil a bien été mis à jour !"
4373
 
4374
+ #: front-end/class-formbuilder.php:342
4375
  msgid "There was an error in the submitted form"
4376
  msgstr "Il y avait une erreur dans le formulaire soumis"
4377
 
4378
+ #: front-end/class-formbuilder.php:399
4379
  msgid "Add User"
4380
  msgstr "Ajouter un Utilisateur"
4381
 
4382
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4383
  msgid "Update"
4384
  msgstr "Mettre à jour"
4385
 
4386
+ #: front-end/class-formbuilder.php:465
4387
  msgid "Send these credentials via email."
4388
  msgstr "Envoyer ces identifiants par E-mail."
4389
 
4597
  msgid "To use reCAPTCHA you must get an API public key from:"
4598
  msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de :"
4599
 
4600
+ #: modules/modules.php:11 modules/modules.php:58
4601
  msgid "Modules"
4602
  msgstr "Modules"
4603
 
4604
+ #: modules/modules.php:59
4605
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4606
+ msgstr "Ici vous pouvez activer / désactiver les modules disponibles pour Profile Builder."
4607
+
4608
+ #: modules/modules.php:69
4609
+ msgid "Name/Description"
4610
+ msgstr "Nom/Description"
4611
+
4612
+ #: modules/modules.php:70
4613
+ msgid "Status"
4614
+ msgstr "Statut"
4615
+
4616
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4617
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4618
+ #: modules/modules.php:119
4619
+ msgid "Active"
4620
+ msgstr "Active"
4621
+
4622
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4623
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4624
+ #: modules/modules.php:120
4625
+ msgid "Inactive"
4626
+ msgstr "Inactive"
4627
+
4628
  #: modules/email-customizer/admin-email-customizer.php:11
4629
  #: modules/email-customizer/admin-email-customizer.php:12
4630
+ #: modules/modules.php:96
4631
  msgid "Admin Email Customizer"
4632
  msgstr "E-mails personnalisés à l'Admin"
4633
 
4634
  #: modules/email-customizer/user-email-customizer.php:11
4635
  #: modules/email-customizer/user-email-customizer.php:12
4636
+ #: modules/modules.php:103
4637
  msgid "User Email Customizer"
4638
  msgstr "E-mails personnalisés à l'utilisateur"
4639
 
4640
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4641
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4642
  msgid "Save"
4643
  msgstr "Enregistrer"
4962
  msgid "<pre>Title (Type)</pre>"
4963
  msgstr "<pre>Titre (Type)</pre>"
4964
 
4965
+ #: modules/multiple-forms/multiple-forms.php:222
4966
+ msgid "You need to specify the title of the form before creating it"
4967
+ msgstr "Vous devez spécifier le titre du formulaire avant de le créer"
4968
+
4969
  #: modules/multiple-forms/register-forms.php:11
4970
  #: modules/multiple-forms/register-forms.php:12
4971
  msgid "Registration Form"
translation/profile-builder-hu_HU.mo CHANGED
Binary file
translation/profile-builder-hu_HU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-11-21 12:12:07+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -69,11 +85,11 @@ msgstr ""
69
 
70
  #: features/email-confirmation/email-confirmation.php:578
71
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
72
- msgstr ""
73
 
74
  #: modules/user-listing/userlisting.php:1303
75
  msgid "View Map"
76
- msgstr ""
77
 
78
  #: admin/add-ons.php:103
79
  msgid "Available in Hobbyist and Pro Versions"
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -117,7 +173,7 @@ msgstr ""
117
 
118
  #: admin/manage-fields.php:144
119
  msgid "Error Message"
120
- msgstr ""
121
 
122
  #: admin/manage-fields.php:144
123
  msgid "Set a custom error message that will be displayed to the user."
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "Bővítmény telepítése sikertelen. Próbálja újra vagy <a href=\"%s
1065
  msgid "Paid Accounts"
1066
  msgstr "Fizetős Fiókok"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "A Plugin Aktív"
@@ -1077,6 +1189,14 @@ msgstr "Plugin aktiválva"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "A bővítményt kikapcsolták."
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1107,7 +1227,7 @@ msgstr "Sikeres új jelszó beállítása után"
1107
 
1108
  #: modules/custom-redirects/custom_redirects_admin.php:51
1109
  msgid "Dashboard (redirect users from accessing the dashboard)"
1110
- msgstr ""
1111
 
1112
  #: modules/custom-redirects/custom_redirects_admin.php:55
1113
  msgid "User ID"
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "Fiókja sikeresen létrehozva!"
@@ -2587,7 +2766,7 @@ msgstr ""
2587
  msgid "You must enter the secret key\n"
2588
  msgstr ""
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Bővítmények"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>HIBA</strong>: A jelszónak minimum %s karakteresnek kell lennie
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>HIBA</strong>: A jelszónak minimum %s erősnek kell lennie"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Határozza meg a fájlkiterjesztés(eke)t, amiket a felhasználó feltöltéskor használhat<br/>Például: .ext1,.ext2,.ext3<br/>alapbeállítás (beállítás nélkül): .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Felhasználói engedélyek rendezése"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr ""
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Legalább egy engedélyt választani kell \n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Sorozatszáma hamarosan lejár, kérem %1$s Újítsa meg Licenszét%2$s.
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "Sorozatszáma lejárt, kérem %1$s Újítsa meg Licenszét%2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "Megmutat"
@@ -2825,6 +3024,10 @@ msgstr "Megmutat"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr ""
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "A jelszónak minimum %s karakter hosszúnak kell lennie"
@@ -2887,11 +3090,15 @@ msgstr "Felhasználó nem található"
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr ""
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr ""
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr ""
2897
 
@@ -2903,11 +3110,20 @@ msgstr ""
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr ""
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "... Válassz"
2910
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Nagyon Gyenge"
@@ -2940,6 +3156,10 @@ msgstr "email"
2940
  msgid "Lost your password?"
2941
  msgstr "Elfelejtette a jelszavát?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3201,18 @@ msgstr "Válaszd ki az egy oldalon megjeleníthető felhasználók számát"
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Mutat/elrejt az Admin Bar a Front-end-en"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Admin Bar beállítások"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3226,9 @@ msgstr "Mutat"
2998
  msgid "Hide"
2999
  msgstr "Elrejt"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Változások mentése"
3004
 
@@ -3007,22 +3237,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr ""
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Általános beállítások"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Nagyon gyenge"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Gyenge"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Közepes"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Erős"
3028
 
@@ -3031,6 +3265,7 @@ msgid "Add Field"
3031
  msgstr "Mező hozzáadása"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Beállítások mentése"
3036
 
@@ -3050,10 +3285,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr ""
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Bejelentkezés"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3437,45 @@ msgstr "Bejelentkezés"
3061
  msgid "User Listing"
3062
  msgstr ""
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr ""
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr "* csak a %1$sHobbyist és Pro verziókban%2$s elérhető."
@@ -3074,6 +3484,12 @@ msgstr "* csak a %1$sHobbyist és Pro verziókban%2$s elérhető."
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** Csak a %1$sPro version%2$s tartalmazza."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3501,11 @@ msgstr "Igen"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr ""
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3516,39 @@ msgstr "Nem"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr ""
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr ""
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr ""
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3561,29 @@ msgstr ""
3116
  msgid "Username"
3117
  msgstr "Felhasználónév"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "E-mail"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Mezők kezelése"
@@ -3200,10 +3662,6 @@ msgstr ""
3200
  msgid "Date-format"
3201
  msgstr "Dátum formátum"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr ""
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr ""
@@ -3367,7 +3825,7 @@ msgstr "Jelszó újra"
3367
  msgid "Type your password again. "
3368
  msgstr "Kérjük, írd be a jelszavadat újra."
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Választanod kell egy mezőt"
3373
 
@@ -3391,36 +3849,38 @@ msgstr ""
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr ""
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr ""
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr ""
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr ""
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "A következő lehetőség(ek) nem egyezik a lista egyik elemével sem: %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr ""
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr ""
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr ""
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3891,9 @@ msgstr ""
3431
  msgid "Edit"
3432
  msgstr "Szerkeszt"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3906,10 @@ msgstr "Szerkeszt"
3444
  msgid "Delete"
3445
  msgstr "Töröl"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr ""
@@ -3452,6 +3918,14 @@ msgstr ""
3452
  msgid "Register Version"
3453
  msgstr ""
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "A sorozatszám sikeresen aktiválva!"
@@ -3468,22 +3942,48 @@ msgstr "A beírt sorozatszám nem aktiválható, mert már lejárt."
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr ""
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Tartalom"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr "Fájl kiválasztása"
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Törlés"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Feltöltés"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr ""
@@ -3492,6 +3992,10 @@ msgstr ""
3492
  msgid "Apply"
3493
  msgstr ""
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr ""
@@ -3508,6 +4012,10 @@ msgstr ""
3508
  msgid "%s pending"
3509
  msgstr ""
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Minden kijelölése"
@@ -3517,9 +4025,15 @@ msgid "Strength indicator"
3517
  msgstr "Erősség jelző"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr ""
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr ""
@@ -3644,6 +4158,19 @@ msgstr "Regisztrált"
3644
  msgid "User-status"
3645
  msgstr ""
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Elnézést, erre nincs engedélyed."
@@ -3656,6 +4183,11 @@ msgstr "Elfogadva"
3656
  msgid "Unapproved"
3657
  msgstr "Elutasítva"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr ""
@@ -3694,6 +4226,11 @@ msgstr ""
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr ""
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr ""
@@ -3757,10 +4294,26 @@ msgstr ""
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr ""
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "Regisztrálok!"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4355,35 @@ msgstr "itt"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "Hamarosan automatikusan át leszel irányítva. Ha több mint %1$d másodpercig látod ezt az ablakot, kérlek kattints %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "A %1s fiók sikeresen létrehozva."
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "Ahhoz, hogy be tudj lépni a %1s fiókodba, előbb meg kell erősítened az e-mail címedet. Kérjük ellenőrizd a beérkező leveleidet és kattints az aktiváló linkre."
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Ahhoz, hogy hozzáférj a %1s fiókodhoz, előbb el kell fogadnunk a regisztrációdat. A jóváhagyásról majd e-mailben értesítünk."
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "A profilod sikeresen frissítve!"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "Valami hiba van az elküldött űrlapon"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Felhasználó hozzáadása"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Frissítés"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Adatok küldése saját részre e-mailben."
3836
 
@@ -3850,7 +4403,7 @@ msgstr "Elfelejtett jelszó."
3850
 
3851
  #: front-end/login.php:138 front-end/login.php:145
3852
  msgid "Lost your password"
3853
- msgstr "Elfelejtett jelszó."
3854
 
3855
  #: front-end/login.php:158
3856
  msgid "Both fields are empty."
@@ -4044,20 +4597,47 @@ msgstr ""
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr ""
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Modulok"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr ""
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr ""
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Mentés"
@@ -4382,6 +4962,10 @@ msgstr ""
4382
  msgid "<pre>Title (Type)</pre>"
4383
  msgstr "<pre>Cím (típus)</pre>"
4384
 
 
 
 
 
4385
  #: modules/multiple-forms/register-forms.php:11
4386
  #: modules/multiple-forms/register-forms.php:12
4387
  msgid "Registration Form"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-04-12 05:30:46+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
85
 
86
  #: features/email-confirmation/email-confirmation.php:578
87
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
88
+ msgstr "Üdvözlünk a(z) %1$s oldalon!<br/><br/><br/>A felhasználóneved:%2$s"
89
 
90
  #: modules/user-listing/userlisting.php:1303
91
  msgid "View Map"
92
+ msgstr "Térkép megtekintése"
93
 
94
  #: admin/add-ons.php:103
95
  msgid "Available in Hobbyist and Pro Versions"
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
173
 
174
  #: admin/manage-fields.php:144
175
  msgid "Error Message"
176
+ msgstr "Hibaüzenet"
177
 
178
  #: admin/manage-fields.php:144
179
  msgid "Set a custom error message that will be displayed to the user."
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Ajánlott Bővítmények"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Ingyenes"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Felhasználói fizetés, feliratkozási tervek és tartalom korlátozása a tagsági oldalán."
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "További Részletek"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Fizetős Fiókok"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Előfizetéses Tagság - ingyenes WordPress bővítmény"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr "Az új Előfizetések mezővel a Profile Builder-ben, a regisztrációs formokon lehetőség nyílik a felhasználók számára a fizetős fiókra történő előfizetésre."
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Fizetős és ingyenes előfizetések"
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Korlátozott hozzáférésű tartalom"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Tag menedzsment"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "Email Sablonok"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Fiók Menedzsment"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Előfizetés Menedzsment"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Fizetés Menedzsment"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "A Plugin Aktív"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "A bővítményt kikapcsolták."
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Felhasználói fizetések elfogadása, előfizetési tervek készítése és korlátozott hozzáférésű tartalom az oldaladon."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Lépésről lépésre Gyorsbeállító"
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1227
 
1228
  #: modules/custom-redirects/custom_redirects_admin.php:51
1229
  msgid "Dashboard (redirect users from accessing the dashboard)"
1230
+ msgstr "Vezérlőpult"
1231
 
1232
  #: modules/custom-redirects/custom_redirects_admin.php:55
1233
  msgid "User ID"
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr "Elérhető címkék dinamikus URL-ekhez"
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr "A következő címkéket használod az URL-eidben a felhasználók átirányításához a különböző oldalakhoz."
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Az Ön fiókját egy jóvá kell hagynia adminisztrátornak, mielőtt beléphet."
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Fiókja sikeresen létrehozva!"
2766
  msgid "You must enter the secret key\n"
2767
  msgstr ""
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Bővítmények"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>HIBA</strong>: A jelszónak minimum %s erősnek kell lennie"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Felhasználónév és Email"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Felhasználónév és Email\". a belépéshez a felhasználónevét és email címét is használhatja."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Felhasználónév\" . csak a felhasználónevet használhatja belépéshez."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"Email\" . csak az email címét használhatja belépéshez."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Határozza meg a fájlkiterjesztés(eke)t, amiket a felhasználó feltöltéskor használhat<br/>Például: .ext1,.ext2,.ext3<br/>alapbeállítás (beállítás nélkül): .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr ""
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Legalább egy engedélyt választani kell \n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "Sorozatszáma lejárt, kérem %1$s Újítsa meg Licenszét%2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Bejegyzés hozzáadása"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "Megmutat"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr ""
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Szerkesztendő felhasználó:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "A jelszónak minimum %s karakter hosszúnak kell lennie"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr ""
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Válaszd ki melyik felhasználói szerepkörök láthatják az admin bar-t a weboldalon front-end."
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr ""
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr ""
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr ""
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "... Válassz"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 elem"
3125
+ msgstr[1] ""
3126
+
3127
  #: features/functions.php:552
3128
  msgid "Very Weak"
3129
  msgstr "Nagyon Gyenge"
3156
  msgid "Lost your password?"
3157
  msgstr "Elfelejtette a jelszavát?"
3158
 
3159
+ #: index.php:34
3160
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3161
+ msgstr "már aktiválva. Deaktiváld mielőtt aktiválod a plugin ezen verzióját."
3162
+
3163
  #: modules/email-customizer/admin-email-customizer.php:54
3164
  #: modules/email-customizer/user-email-customizer.php:54
3165
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3201
  msgid "Show/Hide the Admin Bar on the Front-End"
3202
  msgstr "Mutat/elrejt az Admin Bar a Front-end-en"
3203
 
3204
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3205
  msgid "Admin Bar Settings"
3206
  msgstr "Admin Bar beállítások"
3207
 
3208
+ #: admin/admin-bar.php:57
3209
+ msgid "User-Role"
3210
+ msgstr "Felhasználói-szerepek"
3211
+
3212
+ #: admin/admin-bar.php:58
3213
+ msgid "Visibility"
3214
+ msgstr "Láthatóság"
3215
+
3216
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3217
  #: modules/multiple-forms/register-forms.php:230
3218
  msgid "Default"
3226
  msgid "Hide"
3227
  msgstr "Elrejt"
3228
 
3229
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3230
+ #: admin/register-version.php:95 features/functions.php:697
3231
+ #: modules/modules.php:127
3232
  msgid "Save Changes"
3233
  msgstr "Változások mentése"
3234
 
3237
  msgstr ""
3238
 
3239
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3240
+ #: admin/general-settings.php:38
3241
  msgid "General Settings"
3242
  msgstr "Általános beállítások"
3243
 
3244
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3245
  msgid "Very weak"
3246
  msgstr "Nagyon gyenge"
3247
 
3248
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3249
+ #: features/functions.php:552
3250
  msgid "Weak"
3251
  msgstr "Gyenge"
3252
 
3253
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3254
+ #: features/functions.php:552
3255
  msgid "Medium"
3256
  msgstr "Közepes"
3257
 
3258
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3259
+ #: features/functions.php:552
3260
  msgid "Strong"
3261
  msgstr "Erős"
3262
 
3265
  msgstr "Mező hozzáadása"
3266
 
3267
  #: admin/admin-functions.php:189
3268
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3269
  msgid "Save Settings"
3270
  msgstr "Beállítások mentése"
3271
 
3285
  msgid "The best way to add front-end registration, edit profile and login forms."
3286
  msgstr ""
3287
 
3288
+ #: admin/basic-info.php:33
3289
+ msgid "For Modern User Interaction"
3290
+ msgstr ""
3291
+
3292
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3293
  msgid "Login"
3294
  msgstr "Bejelentkezés"
3295
 
3296
+ #: admin/basic-info.php:40
3297
+ msgid "Registration"
3298
+ msgstr "Regisztráció"
3299
+
3300
+ #: admin/basic-info.php:44
3301
+ msgid "Edit Profile"
3302
+ msgstr "Profil szerkesztése"
3303
+
3304
+ #: admin/basic-info.php:51
3305
+ msgid "Extra Features"
3306
+ msgstr "Extra funkciók"
3307
+
3308
+ #: admin/basic-info.php:52
3309
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3310
+ msgstr ""
3311
+
3312
+ #: admin/basic-info.php:53
3313
+ msgid "Enable extra features"
3314
+ msgstr ""
3315
+
3316
+ #: admin/basic-info.php:57
3317
+ msgid "Recover Password"
3318
+ msgstr "Jelszó helyreállítása"
3319
+
3320
+ #: admin/basic-info.php:61
3321
+ msgid "Admin Approval (*)"
3322
+ msgstr ""
3323
+
3324
+ #: admin/basic-info.php:62
3325
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3326
+ msgstr ""
3327
+
3328
+ #: admin/basic-info.php:65
3329
+ msgid "Email Confirmation"
3330
+ msgstr "E-mail megerősítés"
3331
+
3332
+ #: admin/basic-info.php:66
3333
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3334
+ msgstr ""
3335
+
3336
+ #: admin/basic-info.php:69
3337
+ msgid "Minimum Password Length and Strength Meter"
3338
+ msgstr "Jelszó minimális hosszának és erősségének mérése"
3339
+
3340
+ #: admin/basic-info.php:70
3341
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3342
+ msgstr ""
3343
+
3344
+ #: admin/basic-info.php:73
3345
+ msgid "Login with Email or Username"
3346
+ msgstr "Bejelentkezés e-mail címmel vagy felhasználónévvel"
3347
+
3348
+ #: admin/basic-info.php:74
3349
+ msgid "Allow users to log in with their email or username when accessing your site."
3350
+ msgstr ""
3351
+
3352
+ #: admin/basic-info.php:87
3353
+ msgid "Customize Your Forms The Way You Want (*)"
3354
+ msgstr ""
3355
+
3356
+ #: admin/basic-info.php:88
3357
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3358
+ msgstr ""
3359
+
3360
+ #: admin/basic-info.php:90
3361
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3362
+ msgstr ""
3363
+
3364
+ #: admin/basic-info.php:92
3365
+ msgid "Get started with extra fields"
3366
+ msgstr ""
3367
+
3368
+ #: admin/basic-info.php:95
3369
+ msgid "Avatar Upload"
3370
+ msgstr "Avatar feltöltése"
3371
+
3372
+ #: admin/basic-info.php:96
3373
+ msgid "Generic Uploads"
3374
+ msgstr ""
3375
+
3376
+ #: admin/basic-info.php:97
3377
+ msgid "Agree To Terms Checkbox"
3378
+ msgstr "Szabályzat elfogadása checkdoboz"
3379
+
3380
+ #: admin/basic-info.php:98
3381
+ msgid "Datepicker"
3382
+ msgstr ""
3383
+
3384
+ #: admin/basic-info.php:101
3385
+ msgid "reCAPTCHA"
3386
+ msgstr ""
3387
+
3388
+ #: admin/basic-info.php:102
3389
+ msgid "Country Select"
3390
+ msgstr "Ország kiválasztása"
3391
+
3392
+ #: admin/basic-info.php:104
3393
+ msgid "Timezone Select"
3394
+ msgstr "Időzóna kiválasztása"
3395
+
3396
+ #: admin/basic-info.php:108
3397
+ msgid "Input / Hidden Input"
3398
+ msgstr ""
3399
+
3400
+ #: admin/basic-info.php:110
3401
+ msgid "Checkbox"
3402
+ msgstr ""
3403
+
3404
+ #: admin/basic-info.php:111
3405
+ msgid "Select"
3406
+ msgstr "Választ"
3407
+
3408
+ #: admin/basic-info.php:112
3409
+ msgid "Radio Buttons"
3410
+ msgstr ""
3411
+
3412
+ #: admin/basic-info.php:113
3413
+ msgid "Textarea"
3414
+ msgstr ""
3415
+
3416
+ #: admin/basic-info.php:125
3417
+ msgid "Powerful Modules (**)"
3418
+ msgstr ""
3419
+
3420
+ #: admin/basic-info.php:126
3421
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3422
+ msgstr ""
3423
+
3424
+ #: admin/basic-info.php:128
3425
+ msgid "Enable your modules"
3426
+ msgstr ""
3427
+
3428
+ #: admin/basic-info.php:131
3429
+ msgid "Find out more about PRO Modules"
3430
+ msgstr ""
3431
+
3432
+ #: admin/basic-info.php:136 modules/modules.php:89
3433
  #: modules/user-listing/userlisting.php:11
3434
  #: modules/user-listing/userlisting.php:12
3435
  #: modules/user-listing/userlisting.php:17
3437
  msgid "User Listing"
3438
  msgstr ""
3439
 
3440
+ #: admin/basic-info.php:138
3441
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3442
+ msgstr ""
3443
+
3444
+ #: admin/basic-info.php:144
3445
+ msgid "Email Customizer"
3446
+ msgstr "E-mail testreszabás"
3447
+
3448
+ #: admin/basic-info.php:145
3449
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3450
+ msgstr ""
3451
+
3452
+ #: admin/basic-info.php:148
3453
  #: modules/custom-redirects/custom_redirects_admin.php:32
3454
  #: modules/custom-redirects/custom_redirects_admin.php:33
3455
+ #: modules/modules.php:110
3456
  msgid "Custom Redirects"
3457
  msgstr ""
3458
 
3459
+ #: admin/basic-info.php:149
3460
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3461
+ msgstr ""
3462
+
3463
+ #: admin/basic-info.php:154 modules/modules.php:75
3464
+ msgid "Multiple Registration Forms"
3465
+ msgstr ""
3466
+
3467
+ #: admin/basic-info.php:155
3468
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3469
+ msgstr ""
3470
+
3471
+ #: admin/basic-info.php:158 modules/modules.php:82
3472
+ msgid "Multiple Edit-profile Forms"
3473
+ msgstr ""
3474
+
3475
+ #: admin/basic-info.php:159
3476
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3477
+ msgstr ""
3478
+
3479
  #: admin/basic-info.php:187
3480
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3481
  msgstr "* csak a %1$sHobbyist és Pro verziókban%2$s elérhető."
3484
  msgid "** only available in the %1$sPro version%2$s."
3485
  msgstr "** Csak a %1$sPro version%2$s tartalmazza."
3486
 
3487
+ #: admin/general-settings.php:42
3488
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3489
+ msgstr ""
3490
+
3491
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3492
+ #: admin/general-settings.php:107
3493
  #: modules/multiple-forms/edit-profile-forms.php:206
3494
  #: modules/multiple-forms/register-forms.php:229
3495
  #: modules/multiple-forms/register-forms.php:230
3501
  msgid "You can find the default file here: %1$s"
3502
  msgstr ""
3503
 
3504
+ #: admin/general-settings.php:54
3505
+ msgid "\"Email Confirmation\" Activated:"
3506
+ msgstr ""
3507
+
3508
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3509
  #: modules/multiple-forms/edit-profile-forms.php:206
3510
  #: modules/multiple-forms/register-forms.php:229
3511
  #: modules/multiple-forms/register-forms.php:230
3516
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3517
  msgstr ""
3518
 
3519
+ #: admin/general-settings.php:72
3520
+ msgid "\"Email Confirmation\" Landing Page:"
3521
+ msgstr ""
3522
+
3523
+ #: admin/general-settings.php:77
3524
+ msgid "Existing Pages"
3525
+ msgstr "Létező oldalak"
3526
+
3527
+ #: admin/general-settings.php:92
3528
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3529
+ msgstr ""
3530
+
3531
+ #: admin/general-settings.php:103
3532
+ msgid "\"Admin Approval\" Activated:"
3533
+ msgstr "\"Adminisztrátori Jóváhagyás\" aktiválva:"
3534
+
3535
  #: admin/general-settings.php:111
3536
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3537
  msgstr ""
3538
 
3539
+ #: admin/general-settings.php:149
3540
+ msgid "\"Admin Approval\" Feature:"
3541
+ msgstr ""
3542
+
3543
  #: admin/general-settings.php:152
3544
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3545
  msgstr ""
3546
 
3547
+ #: admin/general-settings.php:159
3548
+ msgid "Allow Users to Log in With:"
3549
+ msgstr ""
3550
+
3551
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3552
  #: features/admin-approval/class-admin-approval.php:166
3553
  #: features/email-confirmation/class-email-confirmation.php:167
3554
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3561
  msgid "Username"
3562
  msgstr "Felhasználónév"
3563
 
3564
+ #: admin/general-settings.php:165 front-end/login.php:215
3565
+ #: modules/email-customizer/email-customizer.php:29
3566
  #: modules/user-listing/userlisting.php:736
3567
  #: modules/user-listing/userlisting.php:2153
3568
  msgid "Email"
3569
  msgstr "E-mail"
3570
 
3571
+ #: admin/general-settings.php:177
3572
+ msgid "Minimum Password Length:"
3573
+ msgstr "Minimális jelszó hosszúság:"
3574
+
3575
+ #: admin/general-settings.php:182
3576
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3577
+ msgstr "Add meg, hogy minimum hány karakteresnek kell lennie a jelszónak. Hagyd üresen, ha nem akarsz limitet meghatározni."
3578
+
3579
+ #: admin/general-settings.php:189
3580
+ msgid "Minimum Password Strength:"
3581
+ msgstr "Minimális jelszóerősség:"
3582
+
3583
+ #: admin/general-settings.php:193
3584
+ msgid "Disabled"
3585
+ msgstr "Kikapcsolva"
3586
+
3587
  #: admin/manage-fields.php:12
3588
  msgid "Manage Fields"
3589
  msgstr "Mezők kezelése"
3662
  msgid "Date-format"
3663
  msgstr "Dátum formátum"
3664
 
 
 
 
 
3665
  #: admin/manage-fields.php:126
3666
  msgid "Terms of Agreement"
3667
  msgstr ""
3825
  msgid "Type your password again. "
3826
  msgstr "Kérjük, írd be a jelszavadat újra."
3827
 
3828
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3829
  msgid "You must select a field\n"
3830
  msgstr "Választanod kell egy mezőt"
3831
 
3849
  msgid "You must enter a value for the row number\n"
3850
  msgstr ""
3851
 
3852
+ #: admin/manage-fields.php:1033
3853
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3854
  msgstr ""
3855
 
3856
+ #: admin/manage-fields.php:1036
3857
  msgid "You must enter a value for the date-format\n"
3858
  msgstr ""
3859
 
3860
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3861
+ #: admin/manage-fields.php:1083
3862
  msgid "That meta-name is already in use\n"
3863
  msgstr ""
3864
 
3865
+ #: admin/manage-fields.php:1114
3866
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3867
  msgstr "A következő lehetőség(ek) nem egyezik a lista egyik elemével sem: %s\n"
3868
 
3869
+ #: admin/manage-fields.php:1118
3870
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3871
  msgstr ""
3872
 
3873
+ #: admin/manage-fields.php:1141
3874
  msgid "That field is already added in this form\n"
3875
  msgstr ""
3876
 
3877
+ #: admin/manage-fields.php:1190
3878
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3879
  msgstr ""
3880
 
3881
+ #: admin/manage-fields.php:1190
3882
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3884
  #: features/admin-approval/class-admin-approval.php:108
3885
  #: features/functions.php:718 features/functions.php:725
3886
  #: modules/custom-redirects/custom_redirects_admin.php:179
3891
  msgid "Edit"
3892
  msgstr "Szerkeszt"
3893
 
3894
+ #: admin/manage-fields.php:1190
3895
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3896
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3897
  #: features/admin-approval/class-admin-approval.php:113
3898
  #: features/admin-approval/class-admin-approval.php:224
3899
  #: features/email-confirmation/class-email-confirmation.php:120
3906
  msgid "Delete"
3907
  msgstr "Töröl"
3908
 
3909
+ #: admin/manage-fields.php:1205
3910
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3911
+ msgstr ""
3912
+
3913
  #: admin/register-version.php:14
3914
  msgid "Register Your Version"
3915
  msgstr ""
3918
  msgid "Register Version"
3919
  msgstr ""
3920
 
3921
+ #: admin/register-version.php:70
3922
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3923
+ msgstr ""
3924
+
3925
+ #: admin/register-version.php:72
3926
+ msgid " Serial Number:"
3927
+ msgstr "Sorozatszám:"
3928
+
3929
  #: admin/register-version.php:77
3930
  msgid "The serial number was successfully validated!"
3931
  msgstr "A sorozatszám sikeresen aktiválva!"
3942
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3943
  msgstr ""
3944
 
3945
+ #: admin/register-version.php:87
3946
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3947
+ msgstr ""
3948
+
3949
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3950
  msgid "Content"
3951
  msgstr "Tartalom"
3952
 
3953
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3954
+ msgid "Edit this item"
3955
+ msgstr "Elem szerkesztése"
3956
+
3957
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3958
+ msgid "Delete this item"
3959
+ msgstr "Elem törlése"
3960
+
3961
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3962
+ msgid "Please enter a value for the required field "
3963
+ msgstr ""
3964
+
3965
  #: front-end/extra-fields/upload/upload.php:122
3966
  msgid "Select File"
3967
  msgstr "Fájl kiválasztása"
3968
 
3969
+ #: assets/lib/wck-api/fields/upload.php:43
3970
  #: front-end/extra-fields/upload/upload.php:112
3971
  msgid "Remove"
3972
  msgstr "Törlés"
3973
 
3974
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3975
+ msgid "You can add the information for the %s after you add a entry"
3976
+ msgstr ""
3977
+
3978
+ #: assets/lib/wck-api/fields/upload.php:75
3979
  #: front-end/extra-fields/upload/upload.php:128
3980
  msgid "Upload "
3981
  msgstr "Feltöltés"
3982
 
3983
+ #: features/class-list-table.php:184
3984
+ msgid "No items found."
3985
+ msgstr "Nem találhatóak elemek."
3986
+
3987
  #: features/class-list-table.php:308
3988
  msgid "Bulk Actions"
3989
  msgstr ""
3992
  msgid "Apply"
3993
  msgstr ""
3994
 
3995
+ #: features/class-list-table.php:402
3996
+ msgid "Show all dates"
3997
+ msgstr ""
3998
+
3999
  #: features/class-list-table.php:415
4000
  msgid "%1$s %2$d"
4001
  msgstr ""
4012
  msgid "%s pending"
4013
  msgstr ""
4014
 
4015
+ #: features/class-list-table.php:566
4016
+ msgid "%1$s of %2$s"
4017
+ msgstr ""
4018
+
4019
  #: features/class-list-table.php:713
4020
  msgid "Select All"
4021
  msgstr "Minden kijelölése"
4025
  msgstr "Erősség jelző"
4026
 
4027
  #: features/admin-approval/admin-approval.php:14
4028
+ #: features/admin-approval/class-admin-approval.php:453
4029
  msgid "Admin Approval"
4030
  msgstr ""
4031
 
4032
+ #: features/admin-approval/admin-approval.php:28
4033
+ #: features/email-confirmation/email-confirmation.php:58
4034
+ msgid "Do you want to"
4035
+ msgstr ""
4036
+
4037
  #: features/admin-approval/admin-approval.php:51
4038
  msgid "Your session has expired! Please refresh the page and try again"
4039
  msgstr ""
4158
  msgid "User-status"
4159
  msgstr ""
4160
 
4161
+ #: features/admin-approval/class-admin-approval.php:252
4162
+ msgid "Do you want to bulk approve the selected users?"
4163
+ msgstr "Szeretnéd csoportosan elfogadni a kiválasztott felhasználókat?"
4164
+
4165
+ #: features/admin-approval/class-admin-approval.php:260
4166
+ msgid "Do you want to bulk unapprove the selected users?"
4167
+ msgstr "Szeretnéd csoportosan elutasítani a kiválasztott felhasználókat?"
4168
+
4169
+ #: features/admin-approval/class-admin-approval.php:266
4170
+ msgid "Do you want to bulk delete the selected users?"
4171
+ msgstr "Szeretnéd csoportosan törölni a kiválasztott felhasználókat?"
4172
+
4173
+ #: features/admin-approval/class-admin-approval.php:274
4174
  #: features/email-confirmation/class-email-confirmation.php:278
4175
  msgid "Sorry, but you don't have permission to do that!"
4176
  msgstr "Elnézést, erre nincs engedélyed."
4183
  msgid "Unapproved"
4184
  msgstr "Elutasítva"
4185
 
4186
+ #: features/admin-approval/class-admin-approval.php:456
4187
+ #: features/email-confirmation/class-email-confirmation.php:454
4188
+ msgid "All Users"
4189
+ msgstr "Összes felhasználó"
4190
+
4191
  #: features/email-confirmation/class-email-confirmation.php:120
4192
  msgid "delete this user from the _signups table?"
4193
  msgstr ""
4226
  msgid "The selected users have had their activation emails resent"
4227
  msgstr ""
4228
 
4229
+ #: features/email-confirmation/class-email-confirmation.php:451
4230
+ #: features/email-confirmation/email-confirmation.php:47
4231
+ msgid "Users with Unconfirmed Email Address"
4232
+ msgstr ""
4233
+
4234
  #: features/email-confirmation/email-confirmation.php:107
4235
  msgid "There was an error performing that action!"
4236
  msgstr ""
4294
  msgid "Profile Builder Login Widget"
4295
  msgstr ""
4296
 
4297
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4298
  msgid "Register"
4299
  msgstr "Regisztrálok!"
4300
 
4301
+ #: features/login-widget/login-widget.php:63
4302
+ msgid "Title:"
4303
+ msgstr "Cím:"
4304
+
4305
+ #: features/login-widget/login-widget.php:68
4306
+ msgid "After login redirect URL (optional):"
4307
+ msgstr ""
4308
+
4309
+ #: features/login-widget/login-widget.php:73
4310
+ msgid "Register page URL (optional):"
4311
+ msgstr ""
4312
+
4313
+ #: features/login-widget/login-widget.php:78
4314
+ msgid "Password Recovery page URL (optional):"
4315
+ msgstr ""
4316
+
4317
  #: features/upgrades/upgrades-functions.php:91
4318
  #: features/upgrades/upgrades-functions.php:134
4319
  msgid "The usernames cannot be changed."
4355
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4356
  msgstr "Hamarosan automatikusan át leszel irányítva. Ha több mint %1$d másodpercig látod ezt az ablakot, kérlek kattints %2$s.%3$s"
4357
 
4358
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4359
  msgid "The account %1s has been successfully created!"
4360
  msgstr "A %1s fiók sikeresen létrehozva."
4361
 
4362
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4363
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4364
  msgstr "Ahhoz, hogy be tudj lépni a %1s fiókodba, előbb meg kell erősítened az e-mail címedet. Kérjük ellenőrizd a beérkező leveleidet és kattints az aktiváló linkre."
4365
 
4366
+ #: front-end/class-formbuilder.php:308
4367
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4368
  msgstr "Ahhoz, hogy hozzáférj a %1s fiókodhoz, előbb el kell fogadnunk a regisztrációdat. A jóváhagyásról majd e-mailben értesítünk."
4369
 
4370
+ #: front-end/class-formbuilder.php:331
4371
  msgid "Your profile has been successfully updated!"
4372
  msgstr "A profilod sikeresen frissítve!"
4373
 
4374
+ #: front-end/class-formbuilder.php:342
4375
  msgid "There was an error in the submitted form"
4376
  msgstr "Valami hiba van az elküldött űrlapon"
4377
 
4378
+ #: front-end/class-formbuilder.php:399
4379
  msgid "Add User"
4380
  msgstr "Felhasználó hozzáadása"
4381
 
4382
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4383
  msgid "Update"
4384
  msgstr "Frissítés"
4385
 
4386
+ #: front-end/class-formbuilder.php:465
4387
  msgid "Send these credentials via email."
4388
  msgstr "Adatok küldése saját részre e-mailben."
4389
 
4403
 
4404
  #: front-end/login.php:138 front-end/login.php:145
4405
  msgid "Lost your password"
4406
+ msgstr "Elfelejtette jelszavát"
4407
 
4408
  #: front-end/login.php:158
4409
  msgid "Both fields are empty."
4597
  msgid "To use reCAPTCHA you must get an API public key from:"
4598
  msgstr ""
4599
 
4600
+ #: modules/modules.php:11 modules/modules.php:58
4601
  msgid "Modules"
4602
  msgstr "Modulok"
4603
 
4604
+ #: modules/modules.php:59
4605
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4606
+ msgstr ""
4607
+
4608
+ #: modules/modules.php:69
4609
+ msgid "Name/Description"
4610
+ msgstr "Név/Leírás"
4611
+
4612
+ #: modules/modules.php:70
4613
+ msgid "Status"
4614
+ msgstr "Állapot"
4615
+
4616
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4617
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4618
+ #: modules/modules.php:119
4619
+ msgid "Active"
4620
+ msgstr "Aktív"
4621
+
4622
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4623
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4624
+ #: modules/modules.php:120
4625
+ msgid "Inactive"
4626
+ msgstr "Inaktív"
4627
+
4628
  #: modules/email-customizer/admin-email-customizer.php:11
4629
  #: modules/email-customizer/admin-email-customizer.php:12
4630
+ #: modules/modules.php:96
4631
  msgid "Admin Email Customizer"
4632
  msgstr ""
4633
 
4634
  #: modules/email-customizer/user-email-customizer.php:11
4635
  #: modules/email-customizer/user-email-customizer.php:12
4636
+ #: modules/modules.php:103
4637
  msgid "User Email Customizer"
4638
  msgstr ""
4639
 
4640
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4641
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4642
  msgid "Save"
4643
  msgstr "Mentés"
4962
  msgid "<pre>Title (Type)</pre>"
4963
  msgstr "<pre>Cím (típus)</pre>"
4964
 
4965
+ #: modules/multiple-forms/multiple-forms.php:222
4966
+ msgid "You need to specify the title of the form before creating it"
4967
+ msgstr ""
4968
+
4969
  #: modules/multiple-forms/register-forms.php:11
4970
  #: modules/multiple-forms/register-forms.php:12
4971
  msgid "Registration Form"
translation/profile-builder-it_IT.mo CHANGED
Binary file
translation/profile-builder-it_IT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-04-04 12:27:44+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -20,19 +36,19 @@ msgstr ""
20
 
21
  #: front-end/recover.php:151
22
  msgid "You are already logged in. You can change your password on the edit profile form."
23
- msgstr ""
24
 
25
  #: front-end/default-fields/blog-details/blog-details.php:70
26
  msgid "Your site url will look like this:<br>"
27
- msgstr ""
28
 
29
  #: features/functions.php:909
30
  msgid "<br><br>You can visit your site at "
31
- msgstr ""
32
 
33
  #: features/functions.php:896
34
  msgid "<br><br>Also, you will be able to visit your site at "
35
- msgstr ""
36
 
37
  #: front-end/default-fields/blog-details/blog-details.php:138
38
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
@@ -40,7 +56,7 @@ msgstr ""
40
 
41
  #: front-end/default-fields/blog-details/blog-details.php:116
42
  msgid "Site Title"
43
- msgstr ""
44
 
45
  #: front-end/default-fields/blog-details/blog-details.php:93
46
  msgid "Site URL slug"
@@ -48,12 +64,12 @@ msgstr ""
48
 
49
  #: front-end/default-fields/blog-details/blog-details.php:63
50
  msgid "Yes, I'd like to create a new site"
51
- msgstr ""
52
 
53
  #: modules/email-customizer/email-customizer.php:36
54
  #: modules/user-listing/userlisting.php:118
55
  msgid "Blog URL"
56
- msgstr ""
57
 
58
  #: admin/admin-functions.php:44
59
  msgid "Blog Details - only appears on the Registration page!"
@@ -61,7 +77,7 @@ msgstr ""
61
 
62
  #: admin/manage-fields.php:219
63
  msgid "Blog Details"
64
- msgstr ""
65
 
66
  #: admin/pms-cross-promotion.php:239
67
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
@@ -87,6 +103,46 @@ msgstr "Disponibile in tutte le versioni"
87
  msgid "Learn More"
88
  msgstr "Scopri di più"
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr ""
1077
  msgid "Plugin has been deactivated."
1078
  msgstr ""
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr "Per attivare il tuo utente, clicca il seguente link: <br><br>%s%s%s<br><br>Dopo l'attivazione riceverai un'altra email con i dati di accesso."
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "Deve inserire la chiave del sito\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Deve inserire la chiave segreta\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Funzione aggiuntiva"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>ERROR</strong>: La password deve avere la lunghezza minima di %s
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>ERROR</strong>: La password deve avere la lunghezza minima di %s"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Specificare le estensioni che si vogliono limitare in fase di carico dei file <br/>Ad esempio: .ext1,.ext2,.ext3<br/>Se non specificate, i valori di default sono: .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Ordine delle regole utente"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Salva la regola utente dalle checkboxes delle regole dell'utente"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Per favore selezionare almeno una regola utente\n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Il suo numero di serie sta per scadere, per favore%1$s rinnova la vostra
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "La vostra licenza è scaduta, per favore %1$s rinnovate la vostra licenza%2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "mostra"
@@ -2825,6 +3024,10 @@ msgstr "mostra"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Per permettere agli utenti di registrarsi tramite Profile Builder, devi prima abilitare la registrazione degli utenti. Vai a %1$sNetwork Settings%2$s, e sotto Registration Settings devi abilitare \"Lo user account può essere registrato\". %3$sAbbandona%4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "La password deve avere la lunghezza minima di %s caratteri"
@@ -2887,11 +3090,15 @@ msgstr "Utente non trovato "
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "I tag validi sono {{reply_to}} e {{site_name}} "
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "inserisci una lista di valori separata da virgole <br/>Può contenere qualsiasi cosa, in quanto è nascosta agli utenti, ma non può contenere caratteri speciali o apostrofo"
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "Il meta-name non può essere vuoto\\n\n"
2897
 
@@ -2903,11 +3110,20 @@ msgstr "Adesso che hai acquistato una copia di %s, spendi un istante e registral
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Il tuo numero seriale di <strong>Profile Builder</strong> è sbagliato o manca. <br/>Per cortesia %1$registra la tua copia%2$s così da ricevere accesso agli aggiornamenti automatici e al supporto. Hai bisogno di un numero di licenza? %3$sAcquistane uno adesso%4$s</p> "
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Scegli "
2910
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Molto debole "
@@ -2940,6 +3156,10 @@ msgstr "email "
2940
  msgid "Lost your password?"
2941
  msgstr "Hai dimenticato la tua password? "
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3201,18 @@ msgstr "Imposta il numero di utenti da visualizzare su ogni pagina della lista d
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Mostra/Nascondi la Barra admin agli utenti sul Front-End "
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Impostazioni Barra Admin "
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3226,9 @@ msgstr "Mostra "
2998
  msgid "Hide"
2999
  msgstr "Nascondi "
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Salva i cambiamenti"
3004
 
@@ -3007,22 +3237,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "Il login sarà fatto attraverso E-mail. Questo campo NON apparirà nel front-end! (puoi cambiare questa impostazione nel tab \\\"%s\\\") "
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Impostazioni generali "
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Molto debole "
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Debole "
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Media "
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Forte "
3028
 
@@ -3031,6 +3265,7 @@ msgid "Add Field"
3031
  msgstr "Aggiungi Campo "
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Salva le impostazioni "
3036
 
@@ -3050,10 +3285,151 @@ msgstr "<strong>Profile Builder </strong> "
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "La migliore via per aggiungere registrazione front-end, modificare profilo e moduli login."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Login "
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3437,45 @@ msgstr "Login "
3061
  msgid "User Listing"
3062
  msgstr "Lista degli utenti "
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Reindirizzamenti personalizzabili "
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr "* disponibile solo nella versione %1$sHobbyist e Pro%2$s."
@@ -3074,6 +3484,12 @@ msgstr "* disponibile solo nella versione %1$sHobbyist e Pro%2$s."
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "* disponibile solo nella versione %1$sPro%2$s. "
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3501,11 @@ msgstr "Si"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "Puoi trovare il file di default qui: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3516,39 @@ msgstr "No "
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "Puoi trovare una lista degli indirizzi email non confermati qui %1$sUtenti > Tutti gli Utenti > Email di conferma%2$s"
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "Puoi trovare una lista degli utenti al %1$sUtenti > Tutti gli Utenti > Approvazione dell'Admin%2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress. Abilita Approvazione dell'Admin con l'upgrade ai versioni %1$sHobbyist o PRO%2$s. "
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3561,29 @@ msgstr "Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica
3116
  msgid "Username"
3117
  msgstr "Nome utente "
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "Email "
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Gestire i campi "
@@ -3200,10 +3662,6 @@ msgstr "Inserire un valore (tra 20 e 200) per la dimensione dell'Avatar'<br/>Se
3200
  msgid "Date-format"
3201
  msgstr "Formato data "
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Specifica il formato della data quando si utilizza il Datepicker<br/>Opzioni valide: mm/gg/aa, mm/aa/gg, gg/aa/mm, gg/mm/aa, aa/gg/mm, aa/mm/gg<br/>Se non specificato sarà impostato per default a mm/gg/aa"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Termini dell'accordo "
@@ -3367,7 +3825,7 @@ msgstr "Ripeti la Password "
3367
  msgid "Type your password again. "
3368
  msgstr "Inserisci di nuovo la tua password. "
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Devi selezionare un campo\\n\n"
3373
 
@@ -3391,36 +3849,38 @@ msgstr "Il numero di riga inserito non è numerico\\n\n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "È necessario inserire un numero di riga\\n\n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "Il valore inserito del Datepicker non è un formato di data valido\n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "Devi inserire un valore per il formato della data\\n\n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "Quel meta-name è già in uso\\n\n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "Le seguenti opzioni non corrispondono a quelle nella lista delle opzioni: %s\\n\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "La seguente opzione non corrisponde a quelle nella lista delle opzioni: %s\\n\n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "Quel campo è già stato aggiunto in questo modulo\\n\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3891,9 @@ msgstr "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-
3431
  msgid "Edit"
3432
  msgstr "Modifica "
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3906,10 @@ msgstr "Modifica "
3444
  msgid "Delete"
3445
  msgstr "Cancella "
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "Registra la tua versione "
@@ -3452,6 +3918,14 @@ msgstr "Registra la tua versione "
3452
  msgid "Register Version"
3453
  msgstr "Registra versione "
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "Il numero di serie è stato validato con successo! "
@@ -3468,22 +3942,48 @@ msgstr "Il numero di serie non è stato validato perchè è scaduto! "
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "Il numero di serie non è stato validato perchè il processo sta impiegando troppo tempo. Questo può essere dovuto al server non attivo. Per favore, riprovare più tardi!"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Contenuto "
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr "Selezionare il file "
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Rimuovere "
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Caricare "
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "Azione di blocco"
@@ -3492,6 +3992,10 @@ msgstr "Azione di blocco"
3492
  msgid "Apply"
3493
  msgstr "Applica "
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d "
@@ -3508,6 +4012,10 @@ msgstr "Vista in estratto "
3508
  msgid "%s pending"
3509
  msgstr "%s in attesa "
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Seleziona tutto "
@@ -3517,9 +4025,15 @@ msgid "Strength indicator"
3517
  msgstr "Indicatore intensità "
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "Approvazione dell' Admin "
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "La sessione è scaduta! Per favore ricarica la pagina e prova nuovamente "
@@ -3644,6 +4158,19 @@ msgstr "Registrato "
3644
  msgid "User-status"
3645
  msgstr "Stato utente "
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Ci dispiace, ma non sei autorizzato a fare questo! "
@@ -3656,6 +4183,11 @@ msgstr "Approvato "
3656
  msgid "Unapproved"
3657
  msgstr "Non approvato "
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "eliminare questo utente dalla tabella _signups? "
@@ -3694,6 +4226,11 @@ msgstr "Gli utenti selezionati sono stati attivati "
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "Email di attivazione sono stati inviati di nuovo agli utenti selezionati "
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "C'è stato un errore nel compiere quell'azione! "
@@ -3757,10 +4294,26 @@ msgstr "Questo login widget ti lascia aggiungere un modulo login nella barra lat
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Profile Builder Login Widget "
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "Registrati "
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4355,35 @@ msgstr "qui "
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "Sarai reindirizzato in modo automatico in poco tempo. Se vedi questa pagina per più di %1$d secondi, clicca %2$s.%3$s "
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "Il profilo %1s è stato creato con successo! "
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "Prima di poter accedere al tuo profilo %1s, devi confermare il tuo indirizzo email. Verifica il tuo inbox e clicca sul link di attivazione. "
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Prima di poter accedere il tuo conto %1s, un amministratore deve approvarlo. Sarai notificato via email. "
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "Il tuo profilo è stato aggiornato con successo! "
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "C'è stato un errore nel modulo inviato "
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Aggiungi Utente "
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Aggiorna"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Invia queste credenziali via email. "
3836
 
@@ -4044,20 +4597,47 @@ msgstr "Per ragioni di sicurezza, devi cambiare l'ip a distanza su reCAPTCHA! "
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "Per usare reCAPTCHA devi ottenere una chiave API pubblica da: "
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Moduli "
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "Configuratore Email Admin "
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr "Configuratore Email Utente "
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Salva "
@@ -4381,6 +4961,10 @@ msgstr "Sceglie uno dei campi sopportati che ne hai in gestione <a href=\\\" "
4381
  msgid "<pre>Title (Type)</pre>"
4382
  msgstr "<pre>Titolo (Type)</pre> "
4383
 
 
 
 
 
4384
  #: modules/multiple-forms/register-forms.php:11
4385
  #: modules/multiple-forms/register-forms.php:12
4386
  msgid "Registration Form"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-04-12 05:22:45+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
36
 
37
  #: front-end/recover.php:151
38
  msgid "You are already logged in. You can change your password on the edit profile form."
39
+ msgstr "Sei già loggato. Puoi cambiare la tua password editando il form del tuo profilo."
40
 
41
  #: front-end/default-fields/blog-details/blog-details.php:70
42
  msgid "Your site url will look like this:<br>"
43
+ msgstr "L'url del tuo sito assomiglia a questo:<br>"
44
 
45
  #: features/functions.php:909
46
  msgid "<br><br>You can visit your site at "
47
+ msgstr "<br><br>Puoi visitare il tuo sito da"
48
 
49
  #: features/functions.php:896
50
  msgid "<br><br>Also, you will be able to visit your site at "
51
+ msgstr "<br><br>Inoltre, potrai visitare il tuo sito da qui"
52
 
53
  #: front-end/default-fields/blog-details/blog-details.php:138
54
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
56
 
57
  #: front-end/default-fields/blog-details/blog-details.php:116
58
  msgid "Site Title"
59
+ msgstr "Titolo del sito"
60
 
61
  #: front-end/default-fields/blog-details/blog-details.php:93
62
  msgid "Site URL slug"
64
 
65
  #: front-end/default-fields/blog-details/blog-details.php:63
66
  msgid "Yes, I'd like to create a new site"
67
+ msgstr "Sì, vorrei creare un nuovo sito."
68
 
69
  #: modules/email-customizer/email-customizer.php:36
70
  #: modules/user-listing/userlisting.php:118
71
  msgid "Blog URL"
72
+ msgstr "URL del blog"
73
 
74
  #: admin/admin-functions.php:44
75
  msgid "Blog Details - only appears on the Registration page!"
77
 
78
  #: admin/manage-fields.php:219
79
  msgid "Blog Details"
80
+ msgstr "Dettagli del blog"
81
 
82
  #: admin/pms-cross-promotion.php:239
83
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
103
  msgid "Learn More"
104
  msgstr "Scopri di più"
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr ""
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr "Per attivare il tuo utente, clicca il seguente link: <br><br>%s%s%s<br><br>Dopo l'attivazione riceverai un'altra email con i dati di accesso."
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Deve inserire la chiave segreta\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Funzione aggiuntiva"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>ERROR</strong>: La password deve avere la lunghezza minima di %s"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Nome utente ed indirizzo Email"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Nome utente ed Email\" - gli utenti possono fare il login sia con nome il utente che con l'email"
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Nome utente\" - l'utente può fare il login solo con il suo nome utente"
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"Email\" - utente può fare il log in solo con email"
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Specificare le estensioni che si vogliono limitare in fase di carico dei file <br/>Ad esempio: .ext1,.ext2,.ext3<br/>Se non specificate, i valori di default sono: .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Salva la regola utente dalle checkboxes delle regole dell'utente"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Per favore selezionare almeno una regola utente\n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "La vostra licenza è scaduta, per favore %1$s rinnovate la vostra licenza%2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Aggiungi voce"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "mostra"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Per permettere agli utenti di registrarsi tramite Profile Builder, devi prima abilitare la registrazione degli utenti. Vai a %1$sNetwork Settings%2$s, e sotto Registration Settings devi abilitare \"Lo user account può essere registrato\". %3$sAbbandona%4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Utente da modificare:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "La password deve avere la lunghezza minima di %s caratteri"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "I tag validi sono {{reply_to}} e {{site_name}} "
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Scegli quali ruoli utente visualizzano la barra admin sul front-end del sito web. "
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "inserisci una lista di valori separata da virgole <br/>Può contenere qualsiasi cosa, in quanto è nascosta agli utenti, ma non può contenere caratteri speciali o apostrofo"
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "Il meta-name non può essere vuoto\\n\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Il tuo numero seriale di <strong>Profile Builder</strong> è sbagliato o manca. <br/>Per cortesia %1$registra la tua copia%2$s così da ricevere accesso agli aggiornamenti automatici e al supporto. Hai bisogno di un numero di licenza? %3$sAcquistane uno adesso%4$s</p> "
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Scegli "
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 voce "
3125
+ msgstr[1] ""
3126
+
3127
  #: features/functions.php:552
3128
  msgid "Very Weak"
3129
  msgstr "Molto debole "
3156
  msgid "Lost your password?"
3157
  msgstr "Hai dimenticato la tua password? "
3158
 
3159
+ #: index.php:34
3160
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3161
+ msgstr "è anche attivata. Devi deattivarla prima di attivare questa versione del plugin. "
3162
+
3163
  #: modules/email-customizer/admin-email-customizer.php:54
3164
  #: modules/email-customizer/user-email-customizer.php:54
3165
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3201
  msgid "Show/Hide the Admin Bar on the Front-End"
3202
  msgstr "Mostra/Nascondi la Barra admin agli utenti sul Front-End "
3203
 
3204
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3205
  msgid "Admin Bar Settings"
3206
  msgstr "Impostazioni Barra Admin "
3207
 
3208
+ #: admin/admin-bar.php:57
3209
+ msgid "User-Role"
3210
+ msgstr "Utente-Ruolo "
3211
+
3212
+ #: admin/admin-bar.php:58
3213
+ msgid "Visibility"
3214
+ msgstr "Visibilità "
3215
+
3216
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3217
  #: modules/multiple-forms/register-forms.php:230
3218
  msgid "Default"
3226
  msgid "Hide"
3227
  msgstr "Nascondi "
3228
 
3229
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3230
+ #: admin/register-version.php:95 features/functions.php:697
3231
+ #: modules/modules.php:127
3232
  msgid "Save Changes"
3233
  msgstr "Salva i cambiamenti"
3234
 
3237
  msgstr "Il login sarà fatto attraverso E-mail. Questo campo NON apparirà nel front-end! (puoi cambiare questa impostazione nel tab \\\"%s\\\") "
3238
 
3239
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3240
+ #: admin/general-settings.php:38
3241
  msgid "General Settings"
3242
  msgstr "Impostazioni generali "
3243
 
3244
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3245
  msgid "Very weak"
3246
  msgstr "Molto debole "
3247
 
3248
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3249
+ #: features/functions.php:552
3250
  msgid "Weak"
3251
  msgstr "Debole "
3252
 
3253
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3254
+ #: features/functions.php:552
3255
  msgid "Medium"
3256
  msgstr "Media "
3257
 
3258
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3259
+ #: features/functions.php:552
3260
  msgid "Strong"
3261
  msgstr "Forte "
3262
 
3265
  msgstr "Aggiungi Campo "
3266
 
3267
  #: admin/admin-functions.php:189
3268
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3269
  msgid "Save Settings"
3270
  msgstr "Salva le impostazioni "
3271
 
3285
  msgid "The best way to add front-end registration, edit profile and login forms."
3286
  msgstr "La migliore via per aggiungere registrazione front-end, modificare profilo e moduli login."
3287
 
3288
+ #: admin/basic-info.php:33
3289
+ msgid "For Modern User Interaction"
3290
+ msgstr "Per interazione moderna con gli utenti "
3291
+
3292
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3293
  msgid "Login"
3294
  msgstr "Login "
3295
 
3296
+ #: admin/basic-info.php:40
3297
+ msgid "Registration"
3298
+ msgstr "Registrazione "
3299
+
3300
+ #: admin/basic-info.php:44
3301
+ msgid "Edit Profile"
3302
+ msgstr "Modifica profilo "
3303
+
3304
+ #: admin/basic-info.php:51
3305
+ msgid "Extra Features"
3306
+ msgstr "Caratteristiche aggiuntive "
3307
+
3308
+ #: admin/basic-info.php:52
3309
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3310
+ msgstr "Caratteristiche che assicurano un maggior controllo sugli utenti, un maggior sicurezza ed aiuta a combattere le registrazioni spam."
3311
+
3312
+ #: admin/basic-info.php:53
3313
+ msgid "Enable extra features"
3314
+ msgstr "Abilita le caratteristiche aggiuntive "
3315
+
3316
+ #: admin/basic-info.php:57
3317
+ msgid "Recover Password"
3318
+ msgstr "Recupera Password "
3319
+
3320
+ #: admin/basic-info.php:61
3321
+ msgid "Admin Approval (*)"
3322
+ msgstr "Autorizzazione di Admin (*)"
3323
+
3324
+ #: admin/basic-info.php:62
3325
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3326
+ msgstr "Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress."
3327
+
3328
+ #: admin/basic-info.php:65
3329
+ msgid "Email Confirmation"
3330
+ msgstr "Conferma Email "
3331
+
3332
+ #: admin/basic-info.php:66
3333
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3334
+ msgstr "Assicurarsi che gli utenti si registrino con email validi. Alla registrazione gli utenti riceveranno una notifica di conferma dell'indirizzo email."
3335
+
3336
+ #: admin/basic-info.php:69
3337
+ msgid "Minimum Password Length and Strength Meter"
3338
+ msgstr "Lunghezza Minima Password e Misuratore Intensità"
3339
+
3340
+ #: admin/basic-info.php:70
3341
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3342
+ msgstr "Elimina le password deboli impostando una lunghezza minima delle password e applicando una determinata intensità della password."
3343
+
3344
+ #: admin/basic-info.php:73
3345
+ msgid "Login with Email or Username"
3346
+ msgstr "Login con Email o Nome Utente "
3347
+
3348
+ #: admin/basic-info.php:74
3349
+ msgid "Allow users to log in with their email or username when accessing your site."
3350
+ msgstr "Permetti agli utenti di fare il login con la loro email o username quando accedono al tuo sito. "
3351
+
3352
+ #: admin/basic-info.php:87
3353
+ msgid "Customize Your Forms The Way You Want (*)"
3354
+ msgstr "Personalizza i tuoi moduli come desideri (*)"
3355
+
3356
+ #: admin/basic-info.php:88
3357
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3358
+ msgstr "Con i campi extra del profilo puoi creare esattamente il modulo di registrazione di cui ha bisogno il tuo progetto."
3359
+
3360
+ #: admin/basic-info.php:90
3361
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3362
+ msgstr "I campi extra del profilo sono disponibili nelle versioni Hobbyist o PRO "
3363
+
3364
+ #: admin/basic-info.php:92
3365
+ msgid "Get started with extra fields"
3366
+ msgstr "Inizia con i campi extra "
3367
+
3368
+ #: admin/basic-info.php:95
3369
+ msgid "Avatar Upload"
3370
+ msgstr "Caricamento Avatar "
3371
+
3372
+ #: admin/basic-info.php:96
3373
+ msgid "Generic Uploads"
3374
+ msgstr "Caricamento generico "
3375
+
3376
+ #: admin/basic-info.php:97
3377
+ msgid "Agree To Terms Checkbox"
3378
+ msgstr "Casella Accetta i Termini di Utilizzo "
3379
+
3380
+ #: admin/basic-info.php:98
3381
+ msgid "Datepicker"
3382
+ msgstr "Datepicker "
3383
+
3384
+ #: admin/basic-info.php:101
3385
+ msgid "reCAPTCHA"
3386
+ msgstr "reCAPTCHA"
3387
+
3388
+ #: admin/basic-info.php:102
3389
+ msgid "Country Select"
3390
+ msgstr "Seleziona Paese "
3391
+
3392
+ #: admin/basic-info.php:104
3393
+ msgid "Timezone Select"
3394
+ msgstr "Seleziona Fuso Orario "
3395
+
3396
+ #: admin/basic-info.php:108
3397
+ msgid "Input / Hidden Input"
3398
+ msgstr "Inserimento / Inserimento nascosto "
3399
+
3400
+ #: admin/basic-info.php:110
3401
+ msgid "Checkbox"
3402
+ msgstr "Casella "
3403
+
3404
+ #: admin/basic-info.php:111
3405
+ msgid "Select"
3406
+ msgstr "Seleziona "
3407
+
3408
+ #: admin/basic-info.php:112
3409
+ msgid "Radio Buttons"
3410
+ msgstr "Tasti Radio "
3411
+
3412
+ #: admin/basic-info.php:113
3413
+ msgid "Textarea"
3414
+ msgstr "Area di testo "
3415
+
3416
+ #: admin/basic-info.php:125
3417
+ msgid "Powerful Modules (**)"
3418
+ msgstr " Moduli potenti (**) "
3419
+
3420
+ #: admin/basic-info.php:126
3421
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3422
+ msgstr "Tutto il necessario per gestire gli utenti è probabilmente già disponibile con i Moduli Pro. "
3423
+
3424
+ #: admin/basic-info.php:128
3425
+ msgid "Enable your modules"
3426
+ msgstr "Abilita i tuoi moduli"
3427
+
3428
+ #: admin/basic-info.php:131
3429
+ msgid "Find out more about PRO Modules"
3430
+ msgstr "Scopri di più dei moduli PRO "
3431
+
3432
+ #: admin/basic-info.php:136 modules/modules.php:89
3433
  #: modules/user-listing/userlisting.php:11
3434
  #: modules/user-listing/userlisting.php:12
3435
  #: modules/user-listing/userlisting.php:17
3437
  msgid "User Listing"
3438
  msgstr "Lista degli utenti "
3439
 
3440
+ #: admin/basic-info.php:138
3441
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3442
+ msgstr "Modelli facili da modificare per elencare gli utenti del tuo sito web, così come creare pagine per singoli utenti. Basato su shortcode, offre molte opzioni per personalizzare le tue liste. "
3443
+
3444
+ #: admin/basic-info.php:144
3445
+ msgid "Email Customizer"
3446
+ msgstr "Configuratore Email "
3447
+
3448
+ #: admin/basic-info.php:145
3449
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3450
+ msgstr "Personalizza tutte le email inviate ai tuoi utenti o amministratori. Alla registrazione, conferma della email, approvazione o non approvazione dell'amministratore."
3451
+
3452
+ #: admin/basic-info.php:148
3453
  #: modules/custom-redirects/custom_redirects_admin.php:32
3454
  #: modules/custom-redirects/custom_redirects_admin.php:33
3455
+ #: modules/modules.php:110
3456
  msgid "Custom Redirects"
3457
  msgstr "Reindirizzamenti personalizzabili "
3458
 
3459
+ #: admin/basic-info.php:149
3460
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3461
+ msgstr "Tieni lontano i tuoi utenti dalla dashboard di WordPress, reindirizzali alla pagina iniziale dopo il loro login o la loro registrazione, il tutto con pochi clicks."
3462
+
3463
+ #: admin/basic-info.php:154 modules/modules.php:75
3464
+ msgid "Multiple Registration Forms"
3465
+ msgstr "Moduli per registrazioni multiple"
3466
+
3467
+ #: admin/basic-info.php:155
3468
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3469
+ msgstr "Predisponi moduli per registrazioni multiple con differenti campi per particolari ruoli degli utenti. Raccogli diversi informazioni da diversi tipi d'utenti."
3470
+
3471
+ #: admin/basic-info.php:158 modules/modules.php:82
3472
+ msgid "Multiple Edit-profile Forms"
3473
+ msgstr "Moduli multipli per la modifica del profilo"
3474
+
3475
+ #: admin/basic-info.php:159
3476
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3477
+ msgstr "Permetti ai diversi ruoli degli utenti di modificare le loro specifiche informazioni. Predisponi moduli multipli per la modifica del profilo con differenti campi per particolari ruoli degli utenti."
3478
+
3479
  #: admin/basic-info.php:187
3480
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3481
  msgstr "* disponibile solo nella versione %1$sHobbyist e Pro%2$s."
3484
  msgid "** only available in the %1$sPro version%2$s."
3485
  msgstr "* disponibile solo nella versione %1$sPro%2$s. "
3486
 
3487
+ #: admin/general-settings.php:42
3488
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3489
+ msgstr "Carica il proprio file CSS del Profile Builder nel front-end: "
3490
+
3491
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3492
+ #: admin/general-settings.php:107
3493
  #: modules/multiple-forms/edit-profile-forms.php:206
3494
  #: modules/multiple-forms/register-forms.php:229
3495
  #: modules/multiple-forms/register-forms.php:230
3501
  msgid "You can find the default file here: %1$s"
3502
  msgstr "Puoi trovare il file di default qui: %1$s"
3503
 
3504
+ #: admin/general-settings.php:54
3505
+ msgid "\"Email Confirmation\" Activated:"
3506
+ msgstr "\\\"Email di conferma\\\" Attivata: "
3507
+
3508
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3509
  #: modules/multiple-forms/edit-profile-forms.php:206
3510
  #: modules/multiple-forms/register-forms.php:229
3511
  #: modules/multiple-forms/register-forms.php:230
3516
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3517
  msgstr "Puoi trovare una lista degli indirizzi email non confermati qui %1$sUtenti > Tutti gli Utenti > Email di conferma%2$s"
3518
 
3519
+ #: admin/general-settings.php:72
3520
+ msgid "\"Email Confirmation\" Landing Page:"
3521
+ msgstr "\\\"Email di conferma\\\" pagina principale "
3522
+
3523
+ #: admin/general-settings.php:77
3524
+ msgid "Existing Pages"
3525
+ msgstr "Pagine esistenti"
3526
+
3527
+ #: admin/general-settings.php:92
3528
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3529
+ msgstr "Specifica la pagina dove gli utenti saranno reindirizzati alla conferma del conto email. Questa pagina può essere diversa dalla pagina(e) di registrazione e può essere cambiata in ogni momento. Se non è stata selezionata, una semplice pagina di conferma sarà visualizzata dall'utente."
3530
+
3531
+ #: admin/general-settings.php:103
3532
+ msgid "\"Admin Approval\" Activated:"
3533
+ msgstr "\\\"Approvazione dell'Admin\\\" attivata: "
3534
+
3535
  #: admin/general-settings.php:111
3536
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3537
  msgstr "Puoi trovare una lista degli utenti al %1$sUtenti > Tutti gli Utenti > Approvazione dell'Admin%2$s."
3538
 
3539
+ #: admin/general-settings.php:149
3540
+ msgid "\"Admin Approval\" Feature:"
3541
+ msgstr "Caratteristiche dell' \\\"Approvazione dell'Admin\\\": "
3542
+
3543
  #: admin/general-settings.php:152
3544
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3545
  msgstr "Sei tu a decidere chi è un utente sul tuo sito web. Ricevi una notifica via e-mail o approva più utenti contemporaneamente dall'interfaccia utente WordPress. Abilita Approvazione dell'Admin con l'upgrade ai versioni %1$sHobbyist o PRO%2$s. "
3546
 
3547
+ #: admin/general-settings.php:159
3548
+ msgid "Allow Users to Log in With:"
3549
+ msgstr "Permetti agli utenti di fare il login con: "
3550
+
3551
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3552
  #: features/admin-approval/class-admin-approval.php:166
3553
  #: features/email-confirmation/class-email-confirmation.php:167
3554
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3561
  msgid "Username"
3562
  msgstr "Nome utente "
3563
 
3564
+ #: admin/general-settings.php:165 front-end/login.php:215
3565
+ #: modules/email-customizer/email-customizer.php:29
3566
  #: modules/user-listing/userlisting.php:736
3567
  #: modules/user-listing/userlisting.php:2153
3568
  msgid "Email"
3569
  msgstr "Email "
3570
 
3571
+ #: admin/general-settings.php:177
3572
+ msgid "Minimum Password Length:"
3573
+ msgstr "Lunghezza Minima Password: "
3574
+
3575
+ #: admin/general-settings.php:182
3576
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3577
+ msgstr "Inserisci il numero minimo di caratteri che la password deve avere. Lascia vuoto per non avere un limite minimo"
3578
+
3579
+ #: admin/general-settings.php:189
3580
+ msgid "Minimum Password Strength:"
3581
+ msgstr "Intensità Minima Password: "
3582
+
3583
+ #: admin/general-settings.php:193
3584
+ msgid "Disabled"
3585
+ msgstr "Disabilitato "
3586
+
3587
  #: admin/manage-fields.php:12
3588
  msgid "Manage Fields"
3589
  msgstr "Gestire i campi "
3662
  msgid "Date-format"
3663
  msgstr "Formato data "
3664
 
 
 
 
 
3665
  #: admin/manage-fields.php:126
3666
  msgid "Terms of Agreement"
3667
  msgstr "Termini dell'accordo "
3825
  msgid "Type your password again. "
3826
  msgstr "Inserisci di nuovo la tua password. "
3827
 
3828
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3829
  msgid "You must select a field\n"
3830
  msgstr "Devi selezionare un campo\\n\n"
3831
 
3849
  msgid "You must enter a value for the row number\n"
3850
  msgstr "È necessario inserire un numero di riga\\n\n"
3851
 
3852
+ #: admin/manage-fields.php:1033
3853
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3854
  msgstr "Il valore inserito del Datepicker non è un formato di data valido\n"
3855
 
3856
+ #: admin/manage-fields.php:1036
3857
  msgid "You must enter a value for the date-format\n"
3858
  msgstr "Devi inserire un valore per il formato della data\\n\n"
3859
 
3860
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3861
+ #: admin/manage-fields.php:1083
3862
  msgid "That meta-name is already in use\n"
3863
  msgstr "Quel meta-name è già in uso\\n\n"
3864
 
3865
+ #: admin/manage-fields.php:1114
3866
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3867
  msgstr "Le seguenti opzioni non corrispondono a quelle nella lista delle opzioni: %s\\n\n"
3868
 
3869
+ #: admin/manage-fields.php:1118
3870
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3871
  msgstr "La seguente opzione non corrisponde a quelle nella lista delle opzioni: %s\\n\n"
3872
 
3873
+ #: admin/manage-fields.php:1141
3874
  msgid "That field is already added in this form\n"
3875
  msgstr "Quel campo è già stato aggiunto in questo modulo\\n\n"
3876
 
3877
+ #: admin/manage-fields.php:1190
3878
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3879
  msgstr "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3880
 
3881
+ #: admin/manage-fields.php:1190
3882
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3884
  #: features/admin-approval/class-admin-approval.php:108
3885
  #: features/functions.php:718 features/functions.php:725
3886
  #: modules/custom-redirects/custom_redirects_admin.php:179
3891
  msgid "Edit"
3892
  msgstr "Modifica "
3893
 
3894
+ #: admin/manage-fields.php:1190
3895
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3896
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3897
  #: features/admin-approval/class-admin-approval.php:113
3898
  #: features/admin-approval/class-admin-approval.php:224
3899
  #: features/email-confirmation/class-email-confirmation.php:120
3906
  msgid "Delete"
3907
  msgstr "Cancella "
3908
 
3909
+ #: admin/manage-fields.php:1205
3910
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3911
+ msgstr "Usa questi shortcodes sui pagini dove vuoi visualizzare i moduli:"
3912
+
3913
  #: admin/register-version.php:14
3914
  msgid "Register Your Version"
3915
  msgstr "Registra la tua versione "
3918
  msgid "Register Version"
3919
  msgstr "Registra versione "
3920
 
3921
+ #: admin/register-version.php:70
3922
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3923
+ msgstr "Se registri questa versione di Profile Builder, riceverai informazioni riguardo aggiornamenti, patches ed assistenza tecnica."
3924
+
3925
+ #: admin/register-version.php:72
3926
+ msgid " Serial Number:"
3927
+ msgstr "Numero di serie: "
3928
+
3929
  #: admin/register-version.php:77
3930
  msgid "The serial number was successfully validated!"
3931
  msgstr "Il numero di serie è stato validato con successo! "
3942
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3943
  msgstr "Il numero di serie non è stato validato perchè il processo sta impiegando troppo tempo. Questo può essere dovuto al server non attivo. Per favore, riprovare più tardi!"
3944
 
3945
+ #: admin/register-version.php:87
3946
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3947
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3948
+
3949
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3950
  msgid "Content"
3951
  msgstr "Contenuto "
3952
 
3953
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3954
+ msgid "Edit this item"
3955
+ msgstr "Modificare questa voce"
3956
+
3957
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3958
+ msgid "Delete this item"
3959
+ msgstr "Eliminare questa voce "
3960
+
3961
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3962
+ msgid "Please enter a value for the required field "
3963
+ msgstr "Per favore inserire un valore per il campo richiesto"
3964
+
3965
  #: front-end/extra-fields/upload/upload.php:122
3966
  msgid "Select File"
3967
  msgstr "Selezionare il file "
3968
 
3969
+ #: assets/lib/wck-api/fields/upload.php:43
3970
  #: front-end/extra-fields/upload/upload.php:112
3971
  msgid "Remove"
3972
  msgstr "Rimuovere "
3973
 
3974
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3975
+ msgid "You can add the information for the %s after you add a entry"
3976
+ msgstr "Si può aggiungere l'informazione per il %s dopo aver aggiunto una voce"
3977
+
3978
+ #: assets/lib/wck-api/fields/upload.php:75
3979
  #: front-end/extra-fields/upload/upload.php:128
3980
  msgid "Upload "
3981
  msgstr "Caricare "
3982
 
3983
+ #: features/class-list-table.php:184
3984
+ msgid "No items found."
3985
+ msgstr "Nessuna voce trovata. "
3986
+
3987
  #: features/class-list-table.php:308
3988
  msgid "Bulk Actions"
3989
  msgstr "Azione di blocco"
3992
  msgid "Apply"
3993
  msgstr "Applica "
3994
 
3995
+ #: features/class-list-table.php:402
3996
+ msgid "Show all dates"
3997
+ msgstr "Mostra tutte le date "
3998
+
3999
  #: features/class-list-table.php:415
4000
  msgid "%1$s %2$d"
4001
  msgstr "%1$s %2$d "
4012
  msgid "%s pending"
4013
  msgstr "%s in attesa "
4014
 
4015
+ #: features/class-list-table.php:566
4016
+ msgid "%1$s of %2$s"
4017
+ msgstr "%1$s di %2$s "
4018
+
4019
  #: features/class-list-table.php:713
4020
  msgid "Select All"
4021
  msgstr "Seleziona tutto "
4025
  msgstr "Indicatore intensità "
4026
 
4027
  #: features/admin-approval/admin-approval.php:14
4028
+ #: features/admin-approval/class-admin-approval.php:453
4029
  msgid "Admin Approval"
4030
  msgstr "Approvazione dell' Admin "
4031
 
4032
+ #: features/admin-approval/admin-approval.php:28
4033
+ #: features/email-confirmation/email-confirmation.php:58
4034
+ msgid "Do you want to"
4035
+ msgstr "Vuoi "
4036
+
4037
  #: features/admin-approval/admin-approval.php:51
4038
  msgid "Your session has expired! Please refresh the page and try again"
4039
  msgstr "La sessione è scaduta! Per favore ricarica la pagina e prova nuovamente "
4158
  msgid "User-status"
4159
  msgstr "Stato utente "
4160
 
4161
+ #: features/admin-approval/class-admin-approval.php:252
4162
+ msgid "Do you want to bulk approve the selected users?"
4163
+ msgstr "Vuoi approvare in blocco gli utenti selezionati? "
4164
+
4165
+ #: features/admin-approval/class-admin-approval.php:260
4166
+ msgid "Do you want to bulk unapprove the selected users?"
4167
+ msgstr "Vuoi non approvare in blocco gli utenti selezionati? "
4168
+
4169
+ #: features/admin-approval/class-admin-approval.php:266
4170
+ msgid "Do you want to bulk delete the selected users?"
4171
+ msgstr "Vuoi eliminare in blocco gli utenti selezionati? "
4172
+
4173
+ #: features/admin-approval/class-admin-approval.php:274
4174
  #: features/email-confirmation/class-email-confirmation.php:278
4175
  msgid "Sorry, but you don't have permission to do that!"
4176
  msgstr "Ci dispiace, ma non sei autorizzato a fare questo! "
4183
  msgid "Unapproved"
4184
  msgstr "Non approvato "
4185
 
4186
+ #: features/admin-approval/class-admin-approval.php:456
4187
+ #: features/email-confirmation/class-email-confirmation.php:454
4188
+ msgid "All Users"
4189
+ msgstr "Tutti gli Utenti "
4190
+
4191
  #: features/email-confirmation/class-email-confirmation.php:120
4192
  msgid "delete this user from the _signups table?"
4193
  msgstr "eliminare questo utente dalla tabella _signups? "
4226
  msgid "The selected users have had their activation emails resent"
4227
  msgstr "Email di attivazione sono stati inviati di nuovo agli utenti selezionati "
4228
 
4229
+ #: features/email-confirmation/class-email-confirmation.php:451
4230
+ #: features/email-confirmation/email-confirmation.php:47
4231
+ msgid "Users with Unconfirmed Email Address"
4232
+ msgstr "Utenti con Indirizzo Email non confermato "
4233
+
4234
  #: features/email-confirmation/email-confirmation.php:107
4235
  msgid "There was an error performing that action!"
4236
  msgstr "C'è stato un errore nel compiere quell'azione! "
4294
  msgid "Profile Builder Login Widget"
4295
  msgstr "Profile Builder Login Widget "
4296
 
4297
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4298
  msgid "Register"
4299
  msgstr "Registrati "
4300
 
4301
+ #: features/login-widget/login-widget.php:63
4302
+ msgid "Title:"
4303
+ msgstr "Titolo: "
4304
+
4305
+ #: features/login-widget/login-widget.php:68
4306
+ msgid "After login redirect URL (optional):"
4307
+ msgstr "Dopo il login reindirizzare URL (opzionale): "
4308
+
4309
+ #: features/login-widget/login-widget.php:73
4310
+ msgid "Register page URL (optional):"
4311
+ msgstr "Registra pagina URL (opzionale): "
4312
+
4313
+ #: features/login-widget/login-widget.php:78
4314
+ msgid "Password Recovery page URL (optional):"
4315
+ msgstr "URL della pagina Recupero Password (opzionale): "
4316
+
4317
  #: features/upgrades/upgrades-functions.php:91
4318
  #: features/upgrades/upgrades-functions.php:134
4319
  msgid "The usernames cannot be changed."
4355
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4356
  msgstr "Sarai reindirizzato in modo automatico in poco tempo. Se vedi questa pagina per più di %1$d secondi, clicca %2$s.%3$s "
4357
 
4358
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4359
  msgid "The account %1s has been successfully created!"
4360
  msgstr "Il profilo %1s è stato creato con successo! "
4361
 
4362
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4363
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4364
  msgstr "Prima di poter accedere al tuo profilo %1s, devi confermare il tuo indirizzo email. Verifica il tuo inbox e clicca sul link di attivazione. "
4365
 
4366
+ #: front-end/class-formbuilder.php:308
4367
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4368
  msgstr "Prima di poter accedere il tuo conto %1s, un amministratore deve approvarlo. Sarai notificato via email. "
4369
 
4370
+ #: front-end/class-formbuilder.php:331
4371
  msgid "Your profile has been successfully updated!"
4372
  msgstr "Il tuo profilo è stato aggiornato con successo! "
4373
 
4374
+ #: front-end/class-formbuilder.php:342
4375
  msgid "There was an error in the submitted form"
4376
  msgstr "C'è stato un errore nel modulo inviato "
4377
 
4378
+ #: front-end/class-formbuilder.php:399
4379
  msgid "Add User"
4380
  msgstr "Aggiungi Utente "
4381
 
4382
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4383
  msgid "Update"
4384
  msgstr "Aggiorna"
4385
 
4386
+ #: front-end/class-formbuilder.php:465
4387
  msgid "Send these credentials via email."
4388
  msgstr "Invia queste credenziali via email. "
4389
 
4597
  msgid "To use reCAPTCHA you must get an API public key from:"
4598
  msgstr "Per usare reCAPTCHA devi ottenere una chiave API pubblica da: "
4599
 
4600
+ #: modules/modules.php:11 modules/modules.php:58
4601
  msgid "Modules"
4602
  msgstr "Moduli "
4603
 
4604
+ #: modules/modules.php:59
4605
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4606
+ msgstr "Qui puoi abilitare / disabilitare i moduli disponibili per Profile Builder. "
4607
+
4608
+ #: modules/modules.php:69
4609
+ msgid "Name/Description"
4610
+ msgstr "Nome/Descrizione "
4611
+
4612
+ #: modules/modules.php:70
4613
+ msgid "Status"
4614
+ msgstr "Stato "
4615
+
4616
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4617
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4618
+ #: modules/modules.php:119
4619
+ msgid "Active"
4620
+ msgstr "Attivo "
4621
+
4622
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4623
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4624
+ #: modules/modules.php:120
4625
+ msgid "Inactive"
4626
+ msgstr "Inattivo "
4627
+
4628
  #: modules/email-customizer/admin-email-customizer.php:11
4629
  #: modules/email-customizer/admin-email-customizer.php:12
4630
+ #: modules/modules.php:96
4631
  msgid "Admin Email Customizer"
4632
  msgstr "Configuratore Email Admin "
4633
 
4634
  #: modules/email-customizer/user-email-customizer.php:11
4635
  #: modules/email-customizer/user-email-customizer.php:12
4636
+ #: modules/modules.php:103
4637
  msgid "User Email Customizer"
4638
  msgstr "Configuratore Email Utente "
4639
 
4640
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4641
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4642
  msgid "Save"
4643
  msgstr "Salva "
4961
  msgid "<pre>Title (Type)</pre>"
4962
  msgstr "<pre>Titolo (Type)</pre> "
4963
 
4964
+ #: modules/multiple-forms/multiple-forms.php:222
4965
+ msgid "You need to specify the title of the form before creating it"
4966
+ msgstr "Devi specificare il titolo del modulo prima di crearlo "
4967
+
4968
  #: modules/multiple-forms/register-forms.php:11
4969
  #: modules/multiple-forms/register-forms.php:12
4970
  msgid "Registration Form"
translation/profile-builder-ja.mo CHANGED
Binary file
translation/profile-builder-ja.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-09-29 11:57:58+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr ""
1077
  msgid "Plugin has been deactivated."
1078
  msgstr ""
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "サイトキーを入力してください\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "秘密キー(Secret Key)を入力してください\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "アドオン"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>エラー</strong>: パスワードは最低%s文字必要です
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>エラー</strong>: パスワードは最低%s文字必要です。"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "アップロード可能にしたいファイル拡張子を指定してください。<br/>例: .ext1,.ext2,.ext3<br/>指定しない場合は.jpg,.jpeg,.gif,.png (.*)となります。"
@@ -2797,7 +2992,7 @@ msgstr "ユーザ権限順"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr ""
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "最低1つのユーザ権限を選択してください\n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "あなたのシリアル番号はもうすぐ期限切れとなります
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "シリアル番号の有効期限が切れました。%1$s ライセンス更新%2$sを行ってください。."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "表示"
@@ -2825,6 +3024,10 @@ msgstr "表示"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$sネットワークの設定%2$sを開き、「登録の設定」の下の「ユーザーアカウントの新規登録を許可する。」をチェックしてください。 %3$s非表示%4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "パスワードは最低%s文字必要です。"
@@ -2887,11 +3090,15 @@ msgstr "ユーザーが見つかりませんでした"
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "使用可能なタグは {{reply_to}} と {{site_name}} です。"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "選択肢に対応する値をカンマで区切って入力してください。<br/>この値はhiddenフォームで使われ、ユーザに見えないのでどんなもの構いませんが、特殊文字とアポストロフィは含めない方が良いでしょう。"
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "メタネームは空欄にはできません\n"
2897
 
@@ -2903,11 +3110,19 @@ msgstr "%sをご購入いただきましたら、こちらでお受け取りに
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p><strong>Profile Builder</strong>のシリアルナンバーが未登録か誤っています。<br/>%1$sライセンス登録%2$s から登録し、自動アップデートやサポートをお受け取りください。まだライセンスキーをお持ちでない場合はこちらで購入できます。%3$s今すぐ購入%4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...選択してください"
2910
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "とても弱い"
@@ -2940,6 +3155,10 @@ msgstr "メール"
2940
  msgid "Lost your password?"
2941
  msgstr "パスワードをお忘れですか?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3200,18 @@ msgstr "全てのユーザ一覧のページネーション毎のユーザ表示
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "公開ページでの管理バーの表示/非表示"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "管理バー設定"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3225,9 @@ msgstr "表示"
2998
  msgid "Hide"
2999
  msgstr "非表示"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "変更を保存"
3004
 
@@ -3007,22 +3236,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "ログインはメールアドレスを用いるよう設定されました. この欄は公開部分には表示されません! ( この設定は \"%s\" タブで変更できます )"
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "一般設定"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "とても弱い"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "弱い"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "中程度"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "強固"
3028
 
@@ -3031,6 +3264,7 @@ msgid "Add Field"
3031
  msgstr "欄を追加"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "設定を保存"
3036
 
@@ -3050,10 +3284,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "登録、プロフィール編集、ログインフォームをサイトに追加する最高の選択肢です。"
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "ログイン"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3436,45 @@ msgstr "ログイン"
3061
  msgid "User Listing"
3062
  msgstr "ユーザー一覧表示"
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "カスタム・リダイレクト"
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr " *印の項目は%1$sHobbyistとProバージョン%2$sでのみ利用可能です。"
@@ -3074,6 +3483,12 @@ msgstr " *印の項目は%1$sHobbyistとProバージョン%2$sでのみ利用可
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "**印の項目は%1$sProバージョン%2$sでのみ利用可能です。"
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3500,11 @@ msgstr "はい"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "初期ファイルはこちら: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3515,39 @@ msgstr "いいえ"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "未確認のメールアドレス一覧は、%1$sユーザー > ユーザー一覧 > アドレス未確認ユーザー%2$s で確認できます。"
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "ユーザーの一覧は %1$sユーザー > ユーザー一覧 > 監視者承認%2$sで見ることができます。"
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。この機能は%1$sHobbyist または PRO バージョン%2$sで有効化できます。"
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3560,29 @@ msgstr "誰がこのサイトを利用できるか管理者が選別します。
3116
  msgid "Username"
3117
  msgstr "ユーザー名"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "メールアドレス"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "記入欄設定"
@@ -3200,10 +3661,6 @@ msgstr "アバター画像サイズの値を入力してください(20から2
3200
  msgid "Date-format"
3201
  msgstr "日付様式"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "デートピッカーを利用する場合の日付書式を指定してください。<br/>利用可能な選択肢: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>指定しないのデフォルトはmm/dd/yyです。"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "利用許諾"
@@ -3367,7 +3824,7 @@ msgstr "パスワード(確認)"
3367
  msgid "Type your password again. "
3368
  msgstr "パスワードを再入力してください。"
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "記入欄を選択してください\n"
3373
 
@@ -3391,36 +3848,38 @@ msgstr "入力された行数が数値ではありませんl\n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "数字で入力してください。\n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "日付欄に指定された値が正しい日付書式ではありません\n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "正しい書式で日付を入力してください。\n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "そのメタネームは既に存在します。\n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "この記入欄はこのフォームに追加済みです\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>ラベル</pre><pre>タイプ</pre><pre>メタネーム</pre><pre class=\"wppb-mb-head-required\">必須指定</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3890,9 @@ msgstr "<pre>ラベル</pre><pre>タイプ</pre><pre>メタネーム</pre><pre c
3431
  msgid "Edit"
3432
  msgstr "編集"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3905,10 @@ msgstr "編集"
3444
  msgid "Delete"
3445
  msgstr "削除"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "ライセンスの登録"
@@ -3452,6 +3917,14 @@ msgstr "ライセンスの登録"
3452
  msgid "Register Version"
3453
  msgstr "ライセンス登録"
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "シリアル番号は正常に承認されました!"
@@ -3468,22 +3941,48 @@ msgstr "シリアルナンバーが期限切れで承認されませんでした
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "シリアル番号の承認がタイムアウトしました。おそらくサーバーの不具合によるものです。後ほど再度お試しください。"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "内容"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr ""
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "削除"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "アップロード"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "一括操作"
@@ -3492,6 +3991,10 @@ msgstr "一括操作"
3492
  msgid "Apply"
3493
  msgstr "適用"
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d"
@@ -3508,6 +4011,10 @@ msgstr "抜粋ビュー"
3508
  msgid "%s pending"
3509
  msgstr "%s保留中"
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "全て選択"
@@ -3517,9 +4024,15 @@ msgid "Strength indicator"
3517
  msgstr "強度インジゲーター"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "管理者承認"
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "セッションの有効期限が切れました!ページをリロードして再度お試しください。"
@@ -3644,6 +4157,19 @@ msgstr "登録日時"
3644
  msgid "User-status"
3645
  msgstr "ユーザ状態"
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "申し訳ありません、それはあなたの権限では行えません!"
@@ -3656,6 +4182,11 @@ msgstr "承認"
3656
  msgid "Unapproved"
3657
  msgstr "不承認"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "_signupsテーブルからこのユーザを削除しますか?"
@@ -3694,6 +4225,11 @@ msgstr "選択したユーザは有効化されました。"
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "選択したユーザに有効化メールが再送信されました。"
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "その処理を実行する際にエラーが起きました!"
@@ -3757,10 +4293,26 @@ msgstr "このログインウィジェットはサイドバーにログインフ
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Profile Buiderログインウィジェット"
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "新規登録"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4354,35 @@ msgstr "ここ"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "ページは自動遷移します。このページが %1$d 秒以上見えている時は、以下をクリックしてください %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "アカウント %1s が作成されました!"
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "ご登録いただいたアカウント%1sのご利用には、メールアドレスの確認が必要です。メールボックスに届いたメールに記載されたアクティベーション用のリンクをクリックしてください。"
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "ご登録いただいたアカウント%1sのご利用には、管理者の承認が必要です。eメールにて通知が届きます。"
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "プロファイルは正常に更新されました!"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "入力内容にエラーがあります。"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "ユーザー追加"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "更新"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "承認情報をメールで送信"
3836
 
@@ -4044,20 +4596,47 @@ msgstr "セキュリティ保護のため、リモートIPをreCAPTCHAに渡す
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "reCAPTCHAの利用には、以下よりAPI公開キー(public key)の取得が必要です"
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "モジュール"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "メール文面編集(管理者宛)"
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr "メール文面編集(ユーザ宛)"
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "保存"
@@ -4383,6 +4962,10 @@ msgstr "編集したい記入欄を選んでください <a href=\""
4383
  msgid "<pre>Title (Type)</pre>"
4384
  msgstr "<pre>タイトル (タイプ)</pre>"
4385
 
 
 
 
 
4386
  #: modules/multiple-forms/register-forms.php:11
4387
  #: modules/multiple-forms/register-forms.php:12
4388
  msgid "Registration Form"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-04-12 05:23:16+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr ""
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "秘密キー(Secret Key)を入力してください\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "アドオン"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>エラー</strong>: パスワードは最低%s文字必要です。"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "ユーザー名とメールアドレス"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"ユーザ名とメールアドレス\" - ユーザーはユーザー名とメールアドレスのどちらでもログインできます。"
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"ユーザー名\" - ユーザーはユーザー名でのみログインできます。"
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"メールアドレス\" - ユーザはメールアドレスでのみログインできます。"
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "アップロード可能にしたいファイル拡張子を指定してください。<br/>例: .ext1,.ext2,.ext3<br/>指定しない場合は.jpg,.jpeg,.gif,.png (.*)となります。"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr ""
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "最低1つのユーザ権限を選択してください\n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "シリアル番号の有効期限が切れました。%1$s ライセンス更新%2$sを行ってください。."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "エントリを追加"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "表示"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "ユーザがProfile Builderを通じてあなたのウェブサイトに登録できるようにするには、ユーザ登録を有効化する必要があります。%1$sネットワークの設定%2$sを開き、「登録の設定」の下の「ユーザーアカウントの新規登録を許可する。」をチェックしてください。 %3$s非表示%4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "編集するユーザ:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "パスワードは最低%s文字必要です。"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "使用可能なタグは {{reply_to}} と {{site_name}} です。"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "どの権限のユーザのサイト閲覧時に管理バーが表示されるか選択してください。"
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "選択肢に対応する値をカンマで区切って入力してください。<br/>この値はhiddenフォームで使われ、ユーザに見えないのでどんなもの構いませんが、特殊文字とアポストロフィは含めない方が良いでしょう。"
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "メタネームは空欄にはできません\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p><strong>Profile Builder</strong>のシリアルナンバーが未登録か誤っています。<br/>%1$sライセンス登録%2$s から登録し、自動アップデートやサポートをお受け取りください。まだライセンスキーをお持ちでない場合はこちらで購入できます。%3$s今すぐ購入%4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...選択してください"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1アイテム"
3125
+
3126
  #: features/functions.php:552
3127
  msgid "Very Weak"
3128
  msgstr "とても弱い"
3155
  msgid "Lost your password?"
3156
  msgstr "パスワードをお忘れですか?"
3157
 
3158
+ #: index.php:34
3159
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3160
+ msgstr "が有効になっています。このバージョンのプラグインを有効にするには、それを無効化する必要があります。"
3161
+
3162
  #: modules/email-customizer/admin-email-customizer.php:54
3163
  #: modules/email-customizer/user-email-customizer.php:54
3164
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3200
  msgid "Show/Hide the Admin Bar on the Front-End"
3201
  msgstr "公開ページでの管理バーの表示/非表示"
3202
 
3203
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3204
  msgid "Admin Bar Settings"
3205
  msgstr "管理バー設定"
3206
 
3207
+ #: admin/admin-bar.php:57
3208
+ msgid "User-Role"
3209
+ msgstr "ユーザー権限"
3210
+
3211
+ #: admin/admin-bar.php:58
3212
+ msgid "Visibility"
3213
+ msgstr "表示"
3214
+
3215
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3216
  #: modules/multiple-forms/register-forms.php:230
3217
  msgid "Default"
3225
  msgid "Hide"
3226
  msgstr "非表示"
3227
 
3228
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3229
+ #: admin/register-version.php:95 features/functions.php:697
3230
+ #: modules/modules.php:127
3231
  msgid "Save Changes"
3232
  msgstr "変更を保存"
3233
 
3236
  msgstr "ログインはメールアドレスを用いるよう設定されました. この欄は公開部分には表示されません! ( この設定は \"%s\" タブで変更できます )"
3237
 
3238
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3239
+ #: admin/general-settings.php:38
3240
  msgid "General Settings"
3241
  msgstr "一般設定"
3242
 
3243
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3244
  msgid "Very weak"
3245
  msgstr "とても弱い"
3246
 
3247
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3248
+ #: features/functions.php:552
3249
  msgid "Weak"
3250
  msgstr "弱い"
3251
 
3252
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3253
+ #: features/functions.php:552
3254
  msgid "Medium"
3255
  msgstr "中程度"
3256
 
3257
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3258
+ #: features/functions.php:552
3259
  msgid "Strong"
3260
  msgstr "強固"
3261
 
3264
  msgstr "欄を追加"
3265
 
3266
  #: admin/admin-functions.php:189
3267
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3268
  msgid "Save Settings"
3269
  msgstr "設定を保存"
3270
 
3284
  msgid "The best way to add front-end registration, edit profile and login forms."
3285
  msgstr "登録、プロフィール編集、ログインフォームをサイトに追加する最高の選択肢です。"
3286
 
3287
+ #: admin/basic-info.php:33
3288
+ msgid "For Modern User Interaction"
3289
+ msgstr "現代的なユーザインタラクション"
3290
+
3291
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3292
  msgid "Login"
3293
  msgstr "ログイン"
3294
 
3295
+ #: admin/basic-info.php:40
3296
+ msgid "Registration"
3297
+ msgstr "利用登録"
3298
+
3299
+ #: admin/basic-info.php:44
3300
+ msgid "Edit Profile"
3301
+ msgstr "プロフィール編集"
3302
+
3303
+ #: admin/basic-info.php:51
3304
+ msgid "Extra Features"
3305
+ msgstr "追加機能"
3306
+
3307
+ #: admin/basic-info.php:52
3308
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3309
+ msgstr "サイトユーザに関する操作権をあなたに与え、セキュリティを強化し、登録スパムと戦うお手伝いをする追加機能を備えています。"
3310
+
3311
+ #: admin/basic-info.php:53
3312
+ msgid "Enable extra features"
3313
+ msgstr "追加機能を設定"
3314
+
3315
+ #: admin/basic-info.php:57
3316
+ msgid "Recover Password"
3317
+ msgstr "パスワード忘れ対応"
3318
+
3319
+ #: admin/basic-info.php:61
3320
+ msgid "Admin Approval (*)"
3321
+ msgstr "管理者承認 (*)"
3322
+
3323
+ #: admin/basic-info.php:62
3324
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3325
+ msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。"
3326
+
3327
+ #: admin/basic-info.php:65
3328
+ msgid "Email Confirmation"
3329
+ msgstr "メールアドレス確認"
3330
+
3331
+ #: admin/basic-info.php:66
3332
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3333
+ msgstr "本物のメールアドレスによる登録を確実にします。登録時、ユーザはメールアドレス確認の通知メールを受け取ります。"
3334
+
3335
+ #: admin/basic-info.php:69
3336
+ msgid "Minimum Password Length and Strength Meter"
3337
+ msgstr "最低パスワード長と強度メーター"
3338
+
3339
+ #: admin/basic-info.php:70
3340
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3341
+ msgstr "最低パスワード文字数とパスワード強度を設定することで、単純すぎるパスワードの使用を防止できます。"
3342
+
3343
+ #: admin/basic-info.php:73
3344
+ msgid "Login with Email or Username"
3345
+ msgstr "メールアドレスまたはユーザー名でログイン"
3346
+
3347
+ #: admin/basic-info.php:74
3348
+ msgid "Allow users to log in with their email or username when accessing your site."
3349
+ msgstr "あなたのサイトにユーザがアクセスする際、メールアドレスまたはユーザ名でログインできます。"
3350
+
3351
+ #: admin/basic-info.php:87
3352
+ msgid "Customize Your Forms The Way You Want (*)"
3353
+ msgstr "フォームも自由自在にカスタマイズ (*)"
3354
+
3355
+ #: admin/basic-info.php:88
3356
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3357
+ msgstr "プロフィール項目追加機能で、登録フォームに必要な欄を追加することができます。"
3358
+
3359
+ #: admin/basic-info.php:90
3360
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3361
+ msgstr "プロフィールの項目追加はHobbyistとPROバージョンでのみ利用可能です"
3362
+
3363
+ #: admin/basic-info.php:92
3364
+ msgid "Get started with extra fields"
3365
+ msgstr "追加記入欄を使用"
3366
+
3367
+ #: admin/basic-info.php:95
3368
+ msgid "Avatar Upload"
3369
+ msgstr "アバター画像アップロード"
3370
+
3371
+ #: admin/basic-info.php:96
3372
+ msgid "Generic Uploads"
3373
+ msgstr "ファイルアップロード"
3374
+
3375
+ #: admin/basic-info.php:97
3376
+ msgid "Agree To Terms Checkbox"
3377
+ msgstr "利用許諾チェックボックス"
3378
+
3379
+ #: admin/basic-info.php:98
3380
+ msgid "Datepicker"
3381
+ msgstr "日付ピッカー"
3382
+
3383
+ #: admin/basic-info.php:101
3384
+ msgid "reCAPTCHA"
3385
+ msgstr "reCAPTCHA"
3386
+
3387
+ #: admin/basic-info.php:102
3388
+ msgid "Country Select"
3389
+ msgstr "国選択"
3390
+
3391
+ #: admin/basic-info.php:104
3392
+ msgid "Timezone Select"
3393
+ msgstr "タイムゾーン選択"
3394
+
3395
+ #: admin/basic-info.php:108
3396
+ msgid "Input / Hidden Input"
3397
+ msgstr "テキスト(一行)/不可視"
3398
+
3399
+ #: admin/basic-info.php:110
3400
+ msgid "Checkbox"
3401
+ msgstr "チェックボックス"
3402
+
3403
+ #: admin/basic-info.php:111
3404
+ msgid "Select"
3405
+ msgstr "プルダウンメニュー"
3406
+
3407
+ #: admin/basic-info.php:112
3408
+ msgid "Radio Buttons"
3409
+ msgstr "ラジオボタン"
3410
+
3411
+ #: admin/basic-info.php:113
3412
+ msgid "Textarea"
3413
+ msgstr "テキスト(複数行)"
3414
+
3415
+ #: admin/basic-info.php:125
3416
+ msgid "Powerful Modules (**)"
3417
+ msgstr "強力な追加モジュール (**)"
3418
+
3419
+ #: admin/basic-info.php:126
3420
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3421
+ msgstr "あなたのユーザを管理するのに必要なものが、PROバージョンには既に用意されているでしょう。"
3422
+
3423
+ #: admin/basic-info.php:128
3424
+ msgid "Enable your modules"
3425
+ msgstr "モジュール設定"
3426
+
3427
+ #: admin/basic-info.php:131
3428
+ msgid "Find out more about PRO Modules"
3429
+ msgstr "PROバージョンについて詳しく見る"
3430
+
3431
+ #: admin/basic-info.php:136 modules/modules.php:89
3432
  #: modules/user-listing/userlisting.php:11
3433
  #: modules/user-listing/userlisting.php:12
3434
  #: modules/user-listing/userlisting.php:17
3436
  msgid "User Listing"
3437
  msgstr "ユーザー一覧表示"
3438
 
3439
+ #: admin/basic-info.php:138
3440
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3441
+ msgstr ""
3442
+
3443
+ #: admin/basic-info.php:144
3444
+ msgid "Email Customizer"
3445
+ msgstr "メール文面編集"
3446
+
3447
+ #: admin/basic-info.php:145
3448
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3449
+ msgstr "新規登録、Eメール確認時、管理者承認/不承認などユーザや管理者宛に送信される全てのメール文面をカスタマイズできます。"
3450
+
3451
+ #: admin/basic-info.php:148
3452
  #: modules/custom-redirects/custom_redirects_admin.php:32
3453
  #: modules/custom-redirects/custom_redirects_admin.php:33
3454
+ #: modules/modules.php:110
3455
  msgid "Custom Redirects"
3456
  msgstr "カスタム・リダイレクト"
3457
 
3458
+ #: admin/basic-info.php:149
3459
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3460
+ msgstr "一般ユーザにWordPressダッシュボードを見せなくし、ログイン後、登録後などに任意の公開ページに簡単にリダイレクトできます。"
3461
+
3462
+ #: admin/basic-info.php:154 modules/modules.php:75
3463
+ msgid "Multiple Registration Forms"
3464
+ msgstr "複数の登録フォーム"
3465
+
3466
+ #: admin/basic-info.php:155
3467
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3468
+ msgstr "ユーザの権限毎に異なる記入欄を備えた個別の登録フォームを用意することができます。様々なユーザタイプ毎に異なる情報を取得することが可能です。"
3469
+
3470
+ #: admin/basic-info.php:158 modules/modules.php:82
3471
+ msgid "Multiple Edit-profile Forms"
3472
+ msgstr "複数のプロフィール編集フォーム"
3473
+
3474
+ #: admin/basic-info.php:159
3475
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3476
+ msgstr "ユーザの権限毎に異なる記入欄を備えた個別のプロフィール編集フォームを用意することができます。様々なユーザタイプ毎に異なる情報を記入させることが可能です。"
3477
+
3478
  #: admin/basic-info.php:187
3479
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3480
  msgstr " *印の項目は%1$sHobbyistとProバージョン%2$sでのみ利用可能です。"
3483
  msgid "** only available in the %1$sPro version%2$s."
3484
  msgstr "**印の項目は%1$sProバージョン%2$sでのみ利用可能です。"
3485
 
3486
+ #: admin/general-settings.php:42
3487
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3488
+ msgstr "Profile Builder固有のCSSを公開ページで読み込む:"
3489
+
3490
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3491
+ #: admin/general-settings.php:107
3492
  #: modules/multiple-forms/edit-profile-forms.php:206
3493
  #: modules/multiple-forms/register-forms.php:229
3494
  #: modules/multiple-forms/register-forms.php:230
3500
  msgid "You can find the default file here: %1$s"
3501
  msgstr "初期ファイルはこちら: %1$s"
3502
 
3503
+ #: admin/general-settings.php:54
3504
+ msgid "\"Email Confirmation\" Activated:"
3505
+ msgstr "\"Eメール確認\"機能 有効化:"
3506
+
3507
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3508
  #: modules/multiple-forms/edit-profile-forms.php:206
3509
  #: modules/multiple-forms/register-forms.php:229
3510
  #: modules/multiple-forms/register-forms.php:230
3515
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3516
  msgstr "未確認のメールアドレス一覧は、%1$sユーザー > ユーザー一覧 > アドレス未確認ユーザー%2$s で確認できます。"
3517
 
3518
+ #: admin/general-settings.php:72
3519
+ msgid "\"Email Confirmation\" Landing Page:"
3520
+ msgstr "\"Eメール確認\"機能 ランディングページ:"
3521
+
3522
+ #: admin/general-settings.php:77
3523
+ msgid "Existing Pages"
3524
+ msgstr "存在するページ"
3525
+
3526
+ #: admin/general-settings.php:92
3527
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3528
+ msgstr "Eメール確認後にリダイレクトされるページを指定してください。これは登録ページと違っていてもよく、またいつでも変更できます。なにも指定していない場合、シンプルは確認ページが表示されます。"
3529
+
3530
+ #: admin/general-settings.php:103
3531
+ msgid "\"Admin Approval\" Activated:"
3532
+ msgstr "\"管理者承認\" 機能 有効化:"
3533
+
3534
  #: admin/general-settings.php:111
3535
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3536
  msgstr "ユーザーの一覧は %1$sユーザー > ユーザー一覧 > 監視者承認%2$sで見ることができます。"
3537
 
3538
+ #: admin/general-settings.php:149
3539
+ msgid "\"Admin Approval\" Feature:"
3540
+ msgstr "\"管理者承認\" 機能:"
3541
+
3542
  #: admin/general-settings.php:152
3543
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3544
  msgstr "誰がこのサイトを利用できるか管理者が選別します。メールでの通知を受け取るか、WordPress UI上でまとめて承認することができます。この機能は%1$sHobbyist または PRO バージョン%2$sで有効化できます。"
3545
 
3546
+ #: admin/general-settings.php:159
3547
+ msgid "Allow Users to Log in With:"
3548
+ msgstr "ユーザーログイン方法:"
3549
+
3550
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3551
  #: features/admin-approval/class-admin-approval.php:166
3552
  #: features/email-confirmation/class-email-confirmation.php:167
3553
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3560
  msgid "Username"
3561
  msgstr "ユーザー名"
3562
 
3563
+ #: admin/general-settings.php:165 front-end/login.php:215
3564
+ #: modules/email-customizer/email-customizer.php:29
3565
  #: modules/user-listing/userlisting.php:736
3566
  #: modules/user-listing/userlisting.php:2153
3567
  msgid "Email"
3568
  msgstr "メールアドレス"
3569
 
3570
+ #: admin/general-settings.php:177
3571
+ msgid "Minimum Password Length:"
3572
+ msgstr "最低パスワード長:"
3573
+
3574
+ #: admin/general-settings.php:182
3575
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3576
+ msgstr "パスワードの最低文字数を入力。指定しない場合は空欄。"
3577
+
3578
+ #: admin/general-settings.php:189
3579
+ msgid "Minimum Password Strength:"
3580
+ msgstr "パスワードの最低強度:"
3581
+
3582
+ #: admin/general-settings.php:193
3583
+ msgid "Disabled"
3584
+ msgstr "無効"
3585
+
3586
  #: admin/manage-fields.php:12
3587
  msgid "Manage Fields"
3588
  msgstr "記入欄設定"
3661
  msgid "Date-format"
3662
  msgstr "日付様式"
3663
 
 
 
 
 
3664
  #: admin/manage-fields.php:126
3665
  msgid "Terms of Agreement"
3666
  msgstr "利用許諾"
3824
  msgid "Type your password again. "
3825
  msgstr "パスワードを再入力してください。"
3826
 
3827
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3828
  msgid "You must select a field\n"
3829
  msgstr "記入欄を選択してください\n"
3830
 
3848
  msgid "You must enter a value for the row number\n"
3849
  msgstr "数字で入力してください。\n"
3850
 
3851
+ #: admin/manage-fields.php:1033
3852
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3853
  msgstr "日付欄に指定された値が正しい日付書式ではありません\n"
3854
 
3855
+ #: admin/manage-fields.php:1036
3856
  msgid "You must enter a value for the date-format\n"
3857
  msgstr "正しい書式で日付を入力してください。\n"
3858
 
3859
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3860
+ #: admin/manage-fields.php:1083
3861
  msgid "That meta-name is already in use\n"
3862
  msgstr "そのメタネームは既に存在します。\n"
3863
 
3864
+ #: admin/manage-fields.php:1114
3865
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3866
  msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n"
3867
 
3868
+ #: admin/manage-fields.php:1118
3869
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3870
  msgstr "以下の選択肢が一覧のにあるものと一致しません: %s\n"
3871
 
3872
+ #: admin/manage-fields.php:1141
3873
  msgid "That field is already added in this form\n"
3874
  msgstr "この記入欄はこのフォームに追加済みです\n"
3875
 
3876
+ #: admin/manage-fields.php:1190
3877
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3878
  msgstr "<pre>ラベル</pre><pre>タイプ</pre><pre>メタネーム</pre><pre class=\"wppb-mb-head-required\">必須指定</pre>"
3879
 
3880
+ #: admin/manage-fields.php:1190
3881
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3882
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3883
  #: features/admin-approval/class-admin-approval.php:108
3884
  #: features/functions.php:718 features/functions.php:725
3885
  #: modules/custom-redirects/custom_redirects_admin.php:179
3890
  msgid "Edit"
3891
  msgstr "編集"
3892
 
3893
+ #: admin/manage-fields.php:1190
3894
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3895
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3896
  #: features/admin-approval/class-admin-approval.php:113
3897
  #: features/admin-approval/class-admin-approval.php:224
3898
  #: features/email-confirmation/class-email-confirmation.php:120
3905
  msgid "Delete"
3906
  msgstr "削除"
3907
 
3908
+ #: admin/manage-fields.php:1205
3909
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3910
+ msgstr "フォームを表示したいページに以下のショートコードを貼り付けてください:"
3911
+
3912
  #: admin/register-version.php:14
3913
  msgid "Register Your Version"
3914
  msgstr "ライセンスの登録"
3917
  msgid "Register Version"
3918
  msgstr "ライセンス登録"
3919
 
3920
+ #: admin/register-version.php:70
3921
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3922
+ msgstr "登録すると、アップグレードの案内、修正プログラム、テクニカルサポートが受けられます。"
3923
+
3924
+ #: admin/register-version.php:72
3925
+ msgid " Serial Number:"
3926
+ msgstr "シリアルナンバー:"
3927
+
3928
  #: admin/register-version.php:77
3929
  msgid "The serial number was successfully validated!"
3930
  msgstr "シリアル番号は正常に承認されました!"
3941
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3942
  msgstr "シリアル番号の承認がタイムアウトしました。おそらくサーバーの不具合によるものです。後ほど再度お試しください。"
3943
 
3944
+ #: admin/register-version.php:87
3945
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3946
+ msgstr "(例. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3947
+
3948
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3949
  msgid "Content"
3950
  msgstr "内容"
3951
 
3952
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3953
+ msgid "Edit this item"
3954
+ msgstr "この項目を編集"
3955
+
3956
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3957
+ msgid "Delete this item"
3958
+ msgstr "この項目を削除"
3959
+
3960
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3961
+ msgid "Please enter a value for the required field "
3962
+ msgstr "必須欄に入力してください。"
3963
+
3964
  #: front-end/extra-fields/upload/upload.php:122
3965
  msgid "Select File"
3966
  msgstr ""
3967
 
3968
+ #: assets/lib/wck-api/fields/upload.php:43
3969
  #: front-end/extra-fields/upload/upload.php:112
3970
  msgid "Remove"
3971
  msgstr "削除"
3972
 
3973
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3974
+ msgid "You can add the information for the %s after you add a entry"
3975
+ msgstr "エントリの追加後、%sの情報を追加することができます"
3976
+
3977
+ #: assets/lib/wck-api/fields/upload.php:75
3978
  #: front-end/extra-fields/upload/upload.php:128
3979
  msgid "Upload "
3980
  msgstr "アップロード"
3981
 
3982
+ #: features/class-list-table.php:184
3983
+ msgid "No items found."
3984
+ msgstr "項目が見つかりません"
3985
+
3986
  #: features/class-list-table.php:308
3987
  msgid "Bulk Actions"
3988
  msgstr "一括操作"
3991
  msgid "Apply"
3992
  msgstr "適用"
3993
 
3994
+ #: features/class-list-table.php:402
3995
+ msgid "Show all dates"
3996
+ msgstr "全てのの日付を用事"
3997
+
3998
  #: features/class-list-table.php:415
3999
  msgid "%1$s %2$d"
4000
  msgstr "%1$s %2$d"
4011
  msgid "%s pending"
4012
  msgstr "%s保留中"
4013
 
4014
+ #: features/class-list-table.php:566
4015
+ msgid "%1$s of %2$s"
4016
+ msgstr "%1$s of %2$s"
4017
+
4018
  #: features/class-list-table.php:713
4019
  msgid "Select All"
4020
  msgstr "全て選択"
4024
  msgstr "強度インジゲーター"
4025
 
4026
  #: features/admin-approval/admin-approval.php:14
4027
+ #: features/admin-approval/class-admin-approval.php:453
4028
  msgid "Admin Approval"
4029
  msgstr "管理者承認"
4030
 
4031
+ #: features/admin-approval/admin-approval.php:28
4032
+ #: features/email-confirmation/email-confirmation.php:58
4033
+ msgid "Do you want to"
4034
+ msgstr ""
4035
+
4036
  #: features/admin-approval/admin-approval.php:51
4037
  msgid "Your session has expired! Please refresh the page and try again"
4038
  msgstr "セッションの有効期限が切れました!ページをリロードして再度お試しください。"
4157
  msgid "User-status"
4158
  msgstr "ユーザ状態"
4159
 
4160
+ #: features/admin-approval/class-admin-approval.php:252
4161
+ msgid "Do you want to bulk approve the selected users?"
4162
+ msgstr "選択したユーザを一括で承認しますか?"
4163
+
4164
+ #: features/admin-approval/class-admin-approval.php:260
4165
+ msgid "Do you want to bulk unapprove the selected users?"
4166
+ msgstr "選択したユーザを一括で不承認にしますか?"
4167
+
4168
+ #: features/admin-approval/class-admin-approval.php:266
4169
+ msgid "Do you want to bulk delete the selected users?"
4170
+ msgstr "選択したユーザを一括で削除しますか?"
4171
+
4172
+ #: features/admin-approval/class-admin-approval.php:274
4173
  #: features/email-confirmation/class-email-confirmation.php:278
4174
  msgid "Sorry, but you don't have permission to do that!"
4175
  msgstr "申し訳ありません、それはあなたの権限では行えません!"
4182
  msgid "Unapproved"
4183
  msgstr "不承認"
4184
 
4185
+ #: features/admin-approval/class-admin-approval.php:456
4186
+ #: features/email-confirmation/class-email-confirmation.php:454
4187
+ msgid "All Users"
4188
+ msgstr "全ユーザ"
4189
+
4190
  #: features/email-confirmation/class-email-confirmation.php:120
4191
  msgid "delete this user from the _signups table?"
4192
  msgstr "_signupsテーブルからこのユーザを削除しますか?"
4225
  msgid "The selected users have had their activation emails resent"
4226
  msgstr "選択したユーザに有効化メールが再送信されました。"
4227
 
4228
+ #: features/email-confirmation/class-email-confirmation.php:451
4229
+ #: features/email-confirmation/email-confirmation.php:47
4230
+ msgid "Users with Unconfirmed Email Address"
4231
+ msgstr "アドレス未確認ユーザー"
4232
+
4233
  #: features/email-confirmation/email-confirmation.php:107
4234
  msgid "There was an error performing that action!"
4235
  msgstr "その処理を実行する際にエラーが起きました!"
4293
  msgid "Profile Builder Login Widget"
4294
  msgstr "Profile Buiderログインウィジェット"
4295
 
4296
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4297
  msgid "Register"
4298
  msgstr "新規登録"
4299
 
4300
+ #: features/login-widget/login-widget.php:63
4301
+ msgid "Title:"
4302
+ msgstr "タイトル:"
4303
+
4304
+ #: features/login-widget/login-widget.php:68
4305
+ msgid "After login redirect URL (optional):"
4306
+ msgstr "ログイン後リダイレクト先URL(オプション):"
4307
+
4308
+ #: features/login-widget/login-widget.php:73
4309
+ msgid "Register page URL (optional):"
4310
+ msgstr "登録ページURL(オプション):"
4311
+
4312
+ #: features/login-widget/login-widget.php:78
4313
+ msgid "Password Recovery page URL (optional):"
4314
+ msgstr "パスワード復旧ページURL (オプション):"
4315
+
4316
  #: features/upgrades/upgrades-functions.php:91
4317
  #: features/upgrades/upgrades-functions.php:134
4318
  msgid "The usernames cannot be changed."
4354
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4355
  msgstr "ページは自動遷移します。このページが %1$d 秒以上見えている時は、以下をクリックしてください %2$s.%3$s"
4356
 
4357
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4358
  msgid "The account %1s has been successfully created!"
4359
  msgstr "アカウント %1s が作成されました!"
4360
 
4361
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4362
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4363
  msgstr "ご登録いただいたアカウント%1sのご利用には、メールアドレスの確認が必要です。メールボックスに届いたメールに記載されたアクティベーション用のリンクをクリックしてください。"
4364
 
4365
+ #: front-end/class-formbuilder.php:308
4366
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4367
  msgstr "ご登録いただいたアカウント%1sのご利用には、管理者の承認が必要です。eメールにて通知が届きます。"
4368
 
4369
+ #: front-end/class-formbuilder.php:331
4370
  msgid "Your profile has been successfully updated!"
4371
  msgstr "プロファイルは正常に更新されました!"
4372
 
4373
+ #: front-end/class-formbuilder.php:342
4374
  msgid "There was an error in the submitted form"
4375
  msgstr "入力内容にエラーがあります。"
4376
 
4377
+ #: front-end/class-formbuilder.php:399
4378
  msgid "Add User"
4379
  msgstr "ユーザー追加"
4380
 
4381
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4382
  msgid "Update"
4383
  msgstr "更新"
4384
 
4385
+ #: front-end/class-formbuilder.php:465
4386
  msgid "Send these credentials via email."
4387
  msgstr "承認情報をメールで送信"
4388
 
4596
  msgid "To use reCAPTCHA you must get an API public key from:"
4597
  msgstr "reCAPTCHAの利用には、以下よりAPI公開キー(public key)の取得が必要です"
4598
 
4599
+ #: modules/modules.php:11 modules/modules.php:58
4600
  msgid "Modules"
4601
  msgstr "モジュール"
4602
 
4603
+ #: modules/modules.php:59
4604
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4605
+ msgstr "こちらでProfule Builderモジュールの有効化/無効化ができます。"
4606
+
4607
+ #: modules/modules.php:69
4608
+ msgid "Name/Description"
4609
+ msgstr "名前/説明"
4610
+
4611
+ #: modules/modules.php:70
4612
+ msgid "Status"
4613
+ msgstr "ステータス"
4614
+
4615
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4616
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4617
+ #: modules/modules.php:119
4618
+ msgid "Active"
4619
+ msgstr "有効"
4620
+
4621
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4622
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4623
+ #: modules/modules.php:120
4624
+ msgid "Inactive"
4625
+ msgstr "無効"
4626
+
4627
  #: modules/email-customizer/admin-email-customizer.php:11
4628
  #: modules/email-customizer/admin-email-customizer.php:12
4629
+ #: modules/modules.php:96
4630
  msgid "Admin Email Customizer"
4631
  msgstr "メール文面編集(管理者宛)"
4632
 
4633
  #: modules/email-customizer/user-email-customizer.php:11
4634
  #: modules/email-customizer/user-email-customizer.php:12
4635
+ #: modules/modules.php:103
4636
  msgid "User Email Customizer"
4637
  msgstr "メール文面編集(ユーザ宛)"
4638
 
4639
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4640
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4641
  msgid "Save"
4642
  msgstr "保存"
4962
  msgid "<pre>Title (Type)</pre>"
4963
  msgstr "<pre>タイトル (タイプ)</pre>"
4964
 
4965
+ #: modules/multiple-forms/multiple-forms.php:222
4966
+ msgid "You need to specify the title of the form before creating it"
4967
+ msgstr "フォーム作成前にタイトルを指定する必要があります"
4968
+
4969
  #: modules/multiple-forms/register-forms.php:11
4970
  #: modules/multiple-forms/register-forms.php:12
4971
  msgid "Registration Form"
translation/profile-builder-nb_NO.mo CHANGED
Binary file
translation/profile-builder-nb_NO.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr ""
1077
  msgid "Plugin has been deactivated."
1078
  msgstr ""
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "Du må legge inn \"site key\"\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Du må legge inn \"Secret Key\"\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Tillegg"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>FEIL</strong>: Passordet må minimum inneholde %s tegn."
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>FEIL</strong>: Passordet må minimum ha en styrke på %s"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr ""
@@ -2797,7 +2992,7 @@ msgstr "Bruker rolle rekkefølge"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Lagre bruker rolle rekkefølgen fra bruker rolle valgene"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr ""
2803
  "Vennligst velg minst en bruker rolle\n"
@@ -2819,6 +3014,10 @@ msgstr " Ditt serie nummer vil snart utløpe, vennligst %1$s forny din lisens%2$
2819
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2820
  msgstr " Ditt serie nummer er utgått, vennligst %1$s forny din lisens%2$s."
2821
 
 
 
 
 
2822
  #: features/email-confirmation/class-email-confirmation.php:91
2823
  msgid "show"
2824
  msgstr "Vis"
@@ -2827,6 +3026,10 @@ msgstr "Vis"
2827
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2828
  msgstr "For å gi brukere mulighet til å registrere seg til ditt websted via Profile Builder, må du først aktivere bruker registering. Gå til %1$sNettverk Instillinger%2$s, og under Registrerings Instillinger sjekk “Bruker konto kan registreres”. %3$sAvvis%4$s"
2829
 
 
 
 
 
2830
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2831
  msgid "The password must have the minimum length of %s characters"
2832
  msgstr "Passordet må minimum ha en lengde på %s tegn"
@@ -2889,11 +3092,15 @@ msgstr "Bruker ikke funnet"
2889
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2890
  msgstr "Gyldige tagger {{reply_to}} og {{site_name}}"
2891
 
 
 
 
 
2892
  #: admin/manage-fields.php:127
2893
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2894
  msgstr ""
2895
 
2896
- #: admin/manage-fields.php:1049
2897
  msgid "The meta-name cannot be empty\n"
2898
  msgstr "Meta-Navnet kan ikke være tomt \n"
2899
 
@@ -2905,11 +3112,20 @@ msgstr ""
2905
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2906
  msgstr ""
2907
 
2908
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2909
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2910
  msgid "...Choose"
2911
  msgstr "...velg"
2912
 
 
 
 
 
 
 
2913
  #: features/functions.php:552
2914
  msgid "Very Weak"
2915
  msgstr "Veldig svakt"
@@ -2942,6 +3158,10 @@ msgstr "e-post"
2942
  msgid "Lost your password?"
2943
  msgstr "Mistet ditt passord?"
2944
 
 
 
 
 
2945
  #: modules/email-customizer/admin-email-customizer.php:54
2946
  #: modules/email-customizer/user-email-customizer.php:54
2947
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2983,10 +3203,18 @@ msgstr ""
2983
  msgid "Show/Hide the Admin Bar on the Front-End"
2984
  msgstr "Vis/Skjul admin bar"
2985
 
2986
- #: admin/admin-bar.php:10
2987
  msgid "Admin Bar Settings"
2988
  msgstr "Admin bar instillinger"
2989
 
 
 
 
 
 
 
 
 
2990
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2991
  #: modules/multiple-forms/register-forms.php:230
2992
  msgid "Default"
@@ -3000,7 +3228,9 @@ msgstr "Vis"
3000
  msgid "Hide"
3001
  msgstr "Skjul"
3002
 
3003
- #: features/functions.php:697
 
 
3004
  msgid "Save Changes"
3005
  msgstr "Langre endringer"
3006
 
@@ -3009,22 +3239,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3009
  msgstr "Pålogging er satt til å gjøres ved hjelp av e - post . Dette feltet vil ikke vises i front-end ! (Du kan endre disse innstillingene under \"%s\" tab )"
3010
 
3011
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3012
  msgid "General Settings"
3013
  msgstr "Generelle innstillinger"
3014
 
3015
- #: admin/admin-functions.php:137
3016
  msgid "Very weak"
3017
  msgstr "Veldig Svakt"
3018
 
3019
- #: admin/admin-functions.php:137 features/functions.php:552
 
3020
  msgid "Weak"
3021
  msgstr "Svakt"
3022
 
3023
- #: admin/admin-functions.php:137 features/functions.php:552
 
3024
  msgid "Medium"
3025
  msgstr "Medium"
3026
 
3027
- #: admin/admin-functions.php:137 features/functions.php:552
 
3028
  msgid "Strong"
3029
  msgstr "Sterk"
3030
 
@@ -3033,6 +3267,7 @@ msgid "Add Field"
3033
  msgstr "Legg til felt"
3034
 
3035
  #: admin/admin-functions.php:189
 
3036
  msgid "Save Settings"
3037
  msgstr "Lagre innstillinger"
3038
 
@@ -3052,10 +3287,151 @@ msgstr "<strong>Profile Builder </strong>"
3052
  msgid "The best way to add front-end registration, edit profile and login forms."
3053
  msgstr "Den beste måten å legge til front-end registrering , redigere profil og login skjemaer."
3054
 
3055
- #: features/login-widget/login-widget.php:59
 
 
 
 
3056
  msgid "Login"
3057
  msgstr "innlogging"
3058
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3059
  #: modules/user-listing/userlisting.php:11
3060
  #: modules/user-listing/userlisting.php:12
3061
  #: modules/user-listing/userlisting.php:17
@@ -3063,11 +3439,45 @@ msgstr "innlogging"
3063
  msgid "User Listing"
3064
  msgstr "Brukerliste"
3065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3066
  #: modules/custom-redirects/custom_redirects_admin.php:32
3067
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3068
  msgid "Custom Redirects"
3069
  msgstr "Tilpassede Omdirigeringer"
3070
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3071
  #: admin/basic-info.php:187
3072
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3073
  msgstr "* Bare tilgjengelig i %1$sHobbyist og Pro versjoner%2$s."
@@ -3076,6 +3486,12 @@ msgstr "* Bare tilgjengelig i %1$sHobbyist og Pro versjoner%2$s."
3076
  msgid "** only available in the %1$sPro version%2$s."
3077
  msgstr "** Kun tilgjengelig i %1$spro versjon%2$s."
3078
 
 
 
 
 
 
 
3079
  #: modules/multiple-forms/edit-profile-forms.php:206
3080
  #: modules/multiple-forms/register-forms.php:229
3081
  #: modules/multiple-forms/register-forms.php:230
@@ -3087,6 +3503,11 @@ msgstr "Ja"
3087
  msgid "You can find the default file here: %1$s"
3088
  msgstr "Du kan finne standard fil her: %1$s"
3089
 
 
 
 
 
 
3090
  #: modules/multiple-forms/edit-profile-forms.php:206
3091
  #: modules/multiple-forms/register-forms.php:229
3092
  #: modules/multiple-forms/register-forms.php:230
@@ -3097,15 +3518,39 @@ msgstr "Nei"
3097
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3098
  msgstr "Du kan finne en liste over brukere på %1$sUsers > All Users > Email Confirmation%2$s."
3099
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  #: admin/general-settings.php:111
3101
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3102
  msgstr "Du kan finne en liste med brukere i %1$sUsers > All Users > Admin Approval%2$s."
3103
 
 
 
 
 
3104
  #: admin/general-settings.php:152
3105
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3106
  msgstr "Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på én gang via WordPress UI. Aktiver administratorgodkjenning ved å oppgradere til %1$sHobbyist or PRO versions%2$s."
3107
 
3108
- #: admin/manage-fields.php:198
 
 
 
 
3109
  #: features/admin-approval/class-admin-approval.php:166
3110
  #: features/email-confirmation/class-email-confirmation.php:167
3111
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3118,12 +3563,29 @@ msgstr "Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet v
3118
  msgid "Username"
3119
  msgstr "Brukernavn"
3120
 
3121
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3122
  #: modules/user-listing/userlisting.php:736
3123
  #: modules/user-listing/userlisting.php:2153
3124
  msgid "Email"
3125
  msgstr "Epost"
3126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3127
  #: admin/manage-fields.php:12
3128
  msgid "Manage Fields"
3129
  msgstr "Administrer felt"
@@ -3202,10 +3664,6 @@ msgstr "Skriv inn en verdi (mellom 20 og 200) for størrelsen på 'Avatar'<br/>H
3202
  msgid "Date-format"
3203
  msgstr "Dato-format"
3204
 
3205
- #: admin/manage-fields.php:125
3206
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3207
- msgstr "Angi datoformat ved bruk av Datepicker<br/>Gyldige alternativer: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Hvis det ikke er spesifisert noe, standard satt til mm/dd/yy"
3208
-
3209
  #: admin/manage-fields.php:126
3210
  msgid "Terms of Agreement"
3211
  msgstr "Avtalebetingelser"
@@ -3369,7 +3827,7 @@ msgstr "Gjenta Passord"
3369
  msgid "Type your password again. "
3370
  msgstr "Skriv inn passordet på nytt"
3371
 
3372
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3373
  msgid "You must select a field\n"
3374
  msgstr "Du må velge et felt\n"
3375
 
@@ -3393,36 +3851,38 @@ msgstr "The entered row number is not numerical\n"
3393
  msgid "You must enter a value for the row number\n"
3394
  msgstr "You must enter a value for the row number\n"
3395
 
3396
- #: admin/manage-fields.php:1030
3397
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3398
  msgstr "The entered value for the Datepicker is not a valid date-format\n"
3399
 
3400
- #: admin/manage-fields.php:1033
3401
  msgid "You must enter a value for the date-format\n"
3402
  msgstr "You must enter a value for the date-format\n"
3403
 
3404
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3405
- #: admin/manage-fields.php:1080
3406
  msgid "That meta-name is already in use\n"
3407
  msgstr "That meta-name is already in use\n"
3408
 
3409
- #: admin/manage-fields.php:1111
3410
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3411
  msgstr "The following option(s) did not coincide with the ones in the options list: %s\n"
3412
 
3413
- #: admin/manage-fields.php:1115
3414
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3415
  msgstr "The following option did not coincide with the ones in the options list: %s\n"
3416
 
3417
- #: admin/manage-fields.php:1138
3418
  msgid "That field is already added in this form\n"
3419
  msgstr "That field is already added in this form\n"
3420
 
3421
- #: admin/manage-fields.php:1187
3422
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3423
  msgstr "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3424
 
3425
- #: admin/manage-fields.php:1187
 
 
3426
  #: features/admin-approval/class-admin-approval.php:108
3427
  #: features/functions.php:718 features/functions.php:725
3428
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3433,7 +3893,9 @@ msgstr "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-
3433
  msgid "Edit"
3434
  msgstr "Rediger"
3435
 
3436
- #: admin/manage-fields.php:1187
 
 
3437
  #: features/admin-approval/class-admin-approval.php:113
3438
  #: features/admin-approval/class-admin-approval.php:224
3439
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3446,6 +3908,10 @@ msgstr "Rediger"
3446
  msgid "Delete"
3447
  msgstr "Slett"
3448
 
 
 
 
 
3449
  #: admin/register-version.php:14
3450
  msgid "Register Your Version"
3451
  msgstr "Registrer Deg"
@@ -3454,6 +3920,14 @@ msgstr "Registrer Deg"
3454
  msgid "Register Version"
3455
  msgstr "Registrer versjon"
3456
 
 
 
 
 
 
 
 
 
3457
  #: admin/register-version.php:77
3458
  msgid "The serial number was successfully validated!"
3459
  msgstr "Serienummeret ble validert!"
@@ -3470,22 +3944,48 @@ msgstr "Serienummeret kunne ikke valideres fordi den opphøre!"
3470
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3471
  msgstr "Serienummeret kunne ikke valideres fordi prosessen ble tidsavbrutt. Dette er mulig fordi serveren er nede. Prøv igjen senere!"
3472
 
3473
- #: features/functions.php:725
 
 
 
 
3474
  msgid "Content"
3475
  msgstr "Innhold"
3476
 
 
 
 
 
 
 
 
 
 
 
 
 
3477
  #: front-end/extra-fields/upload/upload.php:122
3478
  msgid "Select File"
3479
  msgstr ""
3480
 
 
3481
  #: front-end/extra-fields/upload/upload.php:112
3482
  msgid "Remove"
3483
  msgstr "Fjern"
3484
 
 
 
 
 
 
3485
  #: front-end/extra-fields/upload/upload.php:128
3486
  msgid "Upload "
3487
  msgstr "Last opp"
3488
 
 
 
 
 
3489
  #: features/class-list-table.php:308
3490
  msgid "Bulk Actions"
3491
  msgstr "Massehandlinger"
@@ -3494,6 +3994,10 @@ msgstr "Massehandlinger"
3494
  msgid "Apply"
3495
  msgstr "Bruk"
3496
 
 
 
 
 
3497
  #: features/class-list-table.php:415
3498
  msgid "%1$s %2$d"
3499
  msgstr "%1$s %2$d"
@@ -3510,6 +4014,10 @@ msgstr "Utdrag"
3510
  msgid "%s pending"
3511
  msgstr "%s venter"
3512
 
 
 
 
 
3513
  #: features/class-list-table.php:713
3514
  msgid "Select All"
3515
  msgstr "Merk alle"
@@ -3519,9 +4027,15 @@ msgid "Strength indicator"
3519
  msgstr "Styrke indikator"
3520
 
3521
  #: features/admin-approval/admin-approval.php:14
 
3522
  msgid "Admin Approval"
3523
  msgstr "Admin Approval (*)"
3524
 
 
 
 
 
 
3525
  #: features/admin-approval/admin-approval.php:51
3526
  msgid "Your session has expired! Please refresh the page and try again"
3527
  msgstr "Økten er utløpt! Oppdater siden og prøv igjen"
@@ -3646,6 +4160,19 @@ msgstr "Registrert"
3646
  msgid "User-status"
3647
  msgstr "Bruker-status"
3648
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3649
  #: features/email-confirmation/class-email-confirmation.php:278
3650
  msgid "Sorry, but you don't have permission to do that!"
3651
  msgstr "Beklager, men du har ikke tillatelse til å gjøre det!"
@@ -3658,6 +4185,11 @@ msgstr "Godkjent"
3658
  msgid "Unapproved"
3659
  msgstr "Ikke godkjent"
3660
 
 
 
 
 
 
3661
  #: features/email-confirmation/class-email-confirmation.php:120
3662
  msgid "delete this user from the _signups table?"
3663
  msgstr "slette denne brukeren fra tabellen _signups?"
@@ -3696,6 +4228,11 @@ msgstr "Valgte brukere er aktivert"
3696
  msgid "The selected users have had their activation emails resent"
3697
  msgstr "Valgte brukere har fått aktiveringsepost på nytt"
3698
 
 
 
 
 
 
3699
  #: features/email-confirmation/email-confirmation.php:107
3700
  msgid "There was an error performing that action!"
3701
  msgstr "Det oppsto en feil da denne handlingen ble utført!"
@@ -3759,10 +4296,26 @@ msgstr "Denne loginn widgeten lar deg legge til en påloggingsskjema i sidepanel
3759
  msgid "Profile Builder Login Widget"
3760
  msgstr "Logg inn-widget"
3761
 
3762
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3763
  msgid "Register"
3764
  msgstr "Registrer"
3765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3766
  #: features/upgrades/upgrades-functions.php:91
3767
  #: features/upgrades/upgrades-functions.php:134
3768
  msgid "The usernames cannot be changed."
@@ -3804,35 +4357,35 @@ msgstr "her"
3804
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3805
  msgstr "Du vil snart bli omdirigert automatisk. Hvis du ser denne siden for mer enn %1$ d sekunder, vennligst klikk %2$s.%3$s"
3806
 
3807
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3808
  msgid "The account %1s has been successfully created!"
3809
  msgstr "Kontoen %1s ble opprettet!"
3810
 
3811
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3812
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3813
  msgstr "Før du kan få tilgang til dine konto% 1s, må du bekrefte din e-postadresse. Vennligst sjekk innboksen din og klikk på koblingen aktivering."
3814
 
3815
- #: front-end/class-formbuilder.php:299
3816
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3817
  msgstr "Før du kan få tilgang til dine konto% 1s, må en administrator godkjenne den. Du vil bli varslet via e-post."
3818
 
3819
- #: front-end/class-formbuilder.php:322
3820
  msgid "Your profile has been successfully updated!"
3821
  msgstr "Profilen din ble oppdatert!"
3822
 
3823
- #: front-end/class-formbuilder.php:333
3824
  msgid "There was an error in the submitted form"
3825
  msgstr "Det er en feil i skjemaet som ble sendt"
3826
 
3827
- #: front-end/class-formbuilder.php:390
3828
  msgid "Add User"
3829
  msgstr "Legg til bruker"
3830
 
3831
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3832
  msgid "Update"
3833
  msgstr "Oppdater"
3834
 
3835
- #: front-end/class-formbuilder.php:456
3836
  msgid "Send these credentials via email."
3837
  msgstr "Send denne informasjonen på e-post."
3838
 
@@ -4046,20 +4599,47 @@ msgstr "Av sikkerhetsgrunner må du passere eksterne ip til reCAPTCHA!"
4046
  msgid "To use reCAPTCHA you must get an API public key from:"
4047
  msgstr "Du må få en API fellesnøkkel fra å bruke reCAPTCHA:"
4048
 
4049
- #: modules/modules.php:11
4050
  msgid "Modules"
4051
  msgstr "Moduler"
4052
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4053
  #: modules/email-customizer/admin-email-customizer.php:11
4054
  #: modules/email-customizer/admin-email-customizer.php:12
 
4055
  msgid "Admin Email Customizer"
4056
  msgstr "Admin Epost tilpasser"
4057
 
4058
  #: modules/email-customizer/user-email-customizer.php:11
4059
  #: modules/email-customizer/user-email-customizer.php:12
 
4060
  msgid "User Email Customizer"
4061
  msgstr "Bruker Epost tilpasser"
4062
 
 
4063
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4064
  msgid "Save"
4065
  msgstr "Lagre"
@@ -4385,6 +4965,10 @@ msgstr "Velg ett av feltene du administrere <a href=\""
4385
  msgid "<pre>Title (Type)</pre>"
4386
  msgstr "<pre>Tittel (Type)</pre>"
4387
 
 
 
 
 
4388
  #: modules/multiple-forms/register-forms.php:11
4389
  #: modules/multiple-forms/register-forms.php:12
4390
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr ""
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Du må legge inn \"Secret Key\"\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Tillegg"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>FEIL</strong>: Passordet må minimum ha en styrke på %s"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Brukernavn og Epost"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Brukernavn og E-post\" - brukere kan logge inn med både brukernavn og e-post."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Brukernavn\" - brukere kan kun logge inn med brukernavn"
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"E-post\" - brukere kan kun logge inn med e-post."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr ""
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Lagre bruker rolle rekkefølgen fra bruker rolle valgene"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr ""
2998
  "Vennligst velg minst en bruker rolle\n"
3014
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3015
  msgstr " Ditt serie nummer er utgått, vennligst %1$s forny din lisens%2$s."
3016
 
3017
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3018
+ msgid "Add Entry"
3019
+ msgstr "Legg til"
3020
+
3021
  #: features/email-confirmation/class-email-confirmation.php:91
3022
  msgid "show"
3023
  msgstr "Vis"
3026
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3027
  msgstr "For å gi brukere mulighet til å registrere seg til ditt websted via Profile Builder, må du først aktivere bruker registering. Gå til %1$sNettverk Instillinger%2$s, og under Registrerings Instillinger sjekk “Bruker konto kan registreres”. %3$sAvvis%4$s"
3028
 
3029
+ #: front-end/class-formbuilder.php:643
3030
+ msgid "User to edit:"
3031
+ msgstr "Bruker å endre:"
3032
+
3033
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3034
  msgid "The password must have the minimum length of %s characters"
3035
  msgstr "Passordet må minimum ha en lengde på %s tegn"
3092
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3093
  msgstr "Gyldige tagger {{reply_to}} og {{site_name}}"
3094
 
3095
+ #: admin/admin-bar.php:48
3096
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3097
+ msgstr "Velg hvilken brukerrolle som skal vises i admin panelet i front-end på nettsiden. "
3098
+
3099
  #: admin/manage-fields.php:127
3100
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3101
  msgstr ""
3102
 
3103
+ #: admin/manage-fields.php:1052
3104
  msgid "The meta-name cannot be empty\n"
3105
  msgstr "Meta-Navnet kan ikke være tomt \n"
3106
 
3112
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3113
  msgstr ""
3114
 
3115
+ #: assets/lib/wck-api/fields/country select.php:14
3116
+ #: assets/lib/wck-api/fields/cpt select.php:17
3117
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3118
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3119
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3120
  msgid "...Choose"
3121
  msgstr "...velg"
3122
 
3123
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3124
+ msgid "1 item"
3125
+ msgid_plural "%s items"
3126
+ msgstr[0] ""
3127
+ msgstr[1] ""
3128
+
3129
  #: features/functions.php:552
3130
  msgid "Very Weak"
3131
  msgstr "Veldig svakt"
3158
  msgid "Lost your password?"
3159
  msgstr "Mistet ditt passord?"
3160
 
3161
+ #: index.php:34
3162
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3163
+ msgstr "aktiveres også. Må du deaktivere den før du aktiverer denne versjonen av plugin."
3164
+
3165
  #: modules/email-customizer/admin-email-customizer.php:54
3166
  #: modules/email-customizer/user-email-customizer.php:54
3167
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3203
  msgid "Show/Hide the Admin Bar on the Front-End"
3204
  msgstr "Vis/Skjul admin bar"
3205
 
3206
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3207
  msgid "Admin Bar Settings"
3208
  msgstr "Admin bar instillinger"
3209
 
3210
+ #: admin/admin-bar.php:57
3211
+ msgid "User-Role"
3212
+ msgstr "Bruker-Rolle"
3213
+
3214
+ #: admin/admin-bar.php:58
3215
+ msgid "Visibility"
3216
+ msgstr "Synlighet"
3217
+
3218
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3219
  #: modules/multiple-forms/register-forms.php:230
3220
  msgid "Default"
3228
  msgid "Hide"
3229
  msgstr "Skjul"
3230
 
3231
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3232
+ #: admin/register-version.php:95 features/functions.php:697
3233
+ #: modules/modules.php:127
3234
  msgid "Save Changes"
3235
  msgstr "Langre endringer"
3236
 
3239
  msgstr "Pålogging er satt til å gjøres ved hjelp av e - post . Dette feltet vil ikke vises i front-end ! (Du kan endre disse innstillingene under \"%s\" tab )"
3240
 
3241
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3242
+ #: admin/general-settings.php:38
3243
  msgid "General Settings"
3244
  msgstr "Generelle innstillinger"
3245
 
3246
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3247
  msgid "Very weak"
3248
  msgstr "Veldig Svakt"
3249
 
3250
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3251
+ #: features/functions.php:552
3252
  msgid "Weak"
3253
  msgstr "Svakt"
3254
 
3255
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3256
+ #: features/functions.php:552
3257
  msgid "Medium"
3258
  msgstr "Medium"
3259
 
3260
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3261
+ #: features/functions.php:552
3262
  msgid "Strong"
3263
  msgstr "Sterk"
3264
 
3267
  msgstr "Legg til felt"
3268
 
3269
  #: admin/admin-functions.php:189
3270
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3271
  msgid "Save Settings"
3272
  msgstr "Lagre innstillinger"
3273
 
3287
  msgid "The best way to add front-end registration, edit profile and login forms."
3288
  msgstr "Den beste måten å legge til front-end registrering , redigere profil og login skjemaer."
3289
 
3290
+ #: admin/basic-info.php:33
3291
+ msgid "For Modern User Interaction"
3292
+ msgstr "For Moderne brukermedvirkning"
3293
+
3294
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3295
  msgid "Login"
3296
  msgstr "innlogging"
3297
 
3298
+ #: admin/basic-info.php:40
3299
+ msgid "Registration"
3300
+ msgstr "Registrering"
3301
+
3302
+ #: admin/basic-info.php:44
3303
+ msgid "Edit Profile"
3304
+ msgstr "Rediger profil"
3305
+
3306
+ #: admin/basic-info.php:51
3307
+ msgid "Extra Features"
3308
+ msgstr "Ekstra Funksjoner"
3309
+
3310
+ #: admin/basic-info.php:52
3311
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3312
+ msgstr "Funksjoner som gir deg mer kontroll over brukerne, økt sikkerhet og hjelpe deg å bekjempe brukerregistrerings spam."
3313
+
3314
+ #: admin/basic-info.php:53
3315
+ msgid "Enable extra features"
3316
+ msgstr "Aktiver ekstra funksjoner"
3317
+
3318
+ #: admin/basic-info.php:57
3319
+ msgid "Recover Password"
3320
+ msgstr "Gjenopprett passord (*)"
3321
+
3322
+ #: admin/basic-info.php:61
3323
+ msgid "Admin Approval (*)"
3324
+ msgstr "Administratorgodkjenning (*)"
3325
+
3326
+ #: admin/basic-info.php:62
3327
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3328
+ msgstr "Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på en gang via WordPress UI."
3329
+
3330
+ #: admin/basic-info.php:65
3331
+ msgid "Email Confirmation"
3332
+ msgstr "e-post bekreftelse"
3333
+
3334
+ #: admin/basic-info.php:66
3335
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3336
+ msgstr "Sørg for at brukerne registrere seg med gyldig e-postadresse. Ved registrering vil brukere motta en melding for å bekrefte sin e-postadresse."
3337
+
3338
+ #: admin/basic-info.php:69
3339
+ msgid "Minimum Password Length and Strength Meter"
3340
+ msgstr "Minimum Password Lengde og styrkemåler"
3341
+
3342
+ #: admin/basic-info.php:70
3343
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3344
+ msgstr "Eliminere svake passord helt ved å sette en minimum passordlengde og håndhev en viss passord styrke."
3345
+
3346
+ #: admin/basic-info.php:73
3347
+ msgid "Login with Email or Username"
3348
+ msgstr "Logg inn med e-post eller brukernavn"
3349
+
3350
+ #: admin/basic-info.php:74
3351
+ msgid "Allow users to log in with their email or username when accessing your site."
3352
+ msgstr "Tillat brukere å logge inn med sin e-post eller brukernavn for tilgang til nettstedet."
3353
+
3354
+ #: admin/basic-info.php:87
3355
+ msgid "Customize Your Forms The Way You Want (*)"
3356
+ msgstr "Tilpass skjemaene slik du ønsker (*)"
3357
+
3358
+ #: admin/basic-info.php:88
3359
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3360
+ msgstr "Med ekstra profilfelter kan du opprette nøyaktig det registreringsskjemaet prosjektet ditt behøver."
3361
+
3362
+ #: admin/basic-info.php:90
3363
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3364
+ msgstr "Ekstra profilfelter er tilgjengelige i Hobbyist eller PRO-versjonene"
3365
+
3366
+ #: admin/basic-info.php:92
3367
+ msgid "Get started with extra fields"
3368
+ msgstr "Get started with extra fields"
3369
+
3370
+ #: admin/basic-info.php:95
3371
+ msgid "Avatar Upload"
3372
+ msgstr "Avatar Last opp"
3373
+
3374
+ #: admin/basic-info.php:96
3375
+ msgid "Generic Uploads"
3376
+ msgstr "Generiske opplastninger"
3377
+
3378
+ #: admin/basic-info.php:97
3379
+ msgid "Agree To Terms Checkbox"
3380
+ msgstr "Du må godta vilkårene."
3381
+
3382
+ #: admin/basic-info.php:98
3383
+ msgid "Datepicker"
3384
+ msgstr "Datovelger"
3385
+
3386
+ #: admin/basic-info.php:101
3387
+ msgid "reCAPTCHA"
3388
+ msgstr "reCAPTCHA"
3389
+
3390
+ #: admin/basic-info.php:102
3391
+ msgid "Country Select"
3392
+ msgstr "Velg Land"
3393
+
3394
+ #: admin/basic-info.php:104
3395
+ msgid "Timezone Select"
3396
+ msgstr "Velg Tidssone"
3397
+
3398
+ #: admin/basic-info.php:108
3399
+ msgid "Input / Hidden Input"
3400
+ msgstr "Input / Skjult Input"
3401
+
3402
+ #: admin/basic-info.php:110
3403
+ msgid "Checkbox"
3404
+ msgstr "Avkryssingsboks"
3405
+
3406
+ #: admin/basic-info.php:111
3407
+ msgid "Select"
3408
+ msgstr "Velg"
3409
+
3410
+ #: admin/basic-info.php:112
3411
+ msgid "Radio Buttons"
3412
+ msgstr "Radio-knapper"
3413
+
3414
+ #: admin/basic-info.php:113
3415
+ msgid "Textarea"
3416
+ msgstr "Tekstfelt"
3417
+
3418
+ #: admin/basic-info.php:125
3419
+ msgid "Powerful Modules (**)"
3420
+ msgstr "Kraftige Moduler (**)"
3421
+
3422
+ #: admin/basic-info.php:126
3423
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3424
+ msgstr "Alt du trenger for å administrere dine brukere er sannsynligvis allerede tilgjengelig ved hjelp av Pro moduler."
3425
+
3426
+ #: admin/basic-info.php:128
3427
+ msgid "Enable your modules"
3428
+ msgstr "Aktiver moduler"
3429
+
3430
+ #: admin/basic-info.php:131
3431
+ msgid "Find out more about PRO Modules"
3432
+ msgstr "Finn ut mer om PRO moduler"
3433
+
3434
+ #: admin/basic-info.php:136 modules/modules.php:89
3435
  #: modules/user-listing/userlisting.php:11
3436
  #: modules/user-listing/userlisting.php:12
3437
  #: modules/user-listing/userlisting.php:17
3439
  msgid "User Listing"
3440
  msgstr "Brukerliste"
3441
 
3442
+ #: admin/basic-info.php:138
3443
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3444
+ msgstr "Enkelt å redigere maler for å liste nettstedets brukere samt å skape enkle brukersider. Shortcode-basert, og tilbyr mange muligheter til å tilpasse dine oppføringer."
3445
+
3446
+ #: admin/basic-info.php:144
3447
+ msgid "Email Customizer"
3448
+ msgstr "Tilpass E-postmeldinger"
3449
+
3450
+ #: admin/basic-info.php:145
3451
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3452
+ msgstr "Tilpasse alle e-poster som sendes til brukere eller administratorer. Ved registrering, e-postbekreftelse, admin-godkjenning / ikke-godkjenning."
3453
+
3454
+ #: admin/basic-info.php:148
3455
  #: modules/custom-redirects/custom_redirects_admin.php:32
3456
  #: modules/custom-redirects/custom_redirects_admin.php:33
3457
+ #: modules/modules.php:110
3458
  msgid "Custom Redirects"
3459
  msgstr "Tilpassede Omdirigeringer"
3460
 
3461
+ #: admin/basic-info.php:149
3462
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3463
+ msgstr "Hold brukerne ut av WordPress-dashbordet, omdiriger dem til forsiden etter innlogging eller registrering, alt er bare et par klikk unna."
3464
+
3465
+ #: admin/basic-info.php:154 modules/modules.php:75
3466
+ msgid "Multiple Registration Forms"
3467
+ msgstr "Flere Registreringsskjemaer"
3468
+
3469
+ #: admin/basic-info.php:155
3470
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3471
+ msgstr "Sette opp flere registreringsskjemaer med ulike felt for visse brukerroller. Fange opp ulik informasjon fra forskjellige typer brukere."
3472
+
3473
+ #: admin/basic-info.php:158 modules/modules.php:82
3474
+ msgid "Multiple Edit-profile Forms"
3475
+ msgstr "Flere Rediger profil-skjemaer"
3476
+
3477
+ #: admin/basic-info.php:159
3478
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3479
+ msgstr "Tillate ulike brukerroller å redigere sin informasjon. Sett opp flere redigering profil-skjemaer med ulike felt for bestemte brukerroller."
3480
+
3481
  #: admin/basic-info.php:187
3482
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3483
  msgstr "* Bare tilgjengelig i %1$sHobbyist og Pro versjoner%2$s."
3486
  msgid "** only available in the %1$sPro version%2$s."
3487
  msgstr "** Kun tilgjengelig i %1$spro versjon%2$s."
3488
 
3489
+ #: admin/general-settings.php:42
3490
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3491
+ msgstr "Laste Profile Builders egen CSS-fil i front-end:"
3492
+
3493
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3494
+ #: admin/general-settings.php:107
3495
  #: modules/multiple-forms/edit-profile-forms.php:206
3496
  #: modules/multiple-forms/register-forms.php:229
3497
  #: modules/multiple-forms/register-forms.php:230
3503
  msgid "You can find the default file here: %1$s"
3504
  msgstr "Du kan finne standard fil her: %1$s"
3505
 
3506
+ #: admin/general-settings.php:54
3507
+ msgid "\"Email Confirmation\" Activated:"
3508
+ msgstr "\"Epost bekreftelse\" Aktivert:"
3509
+
3510
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3511
  #: modules/multiple-forms/edit-profile-forms.php:206
3512
  #: modules/multiple-forms/register-forms.php:229
3513
  #: modules/multiple-forms/register-forms.php:230
3518
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3519
  msgstr "Du kan finne en liste over brukere på %1$sUsers > All Users > Email Confirmation%2$s."
3520
 
3521
+ #: admin/general-settings.php:72
3522
+ msgid "\"Email Confirmation\" Landing Page:"
3523
+ msgstr "\"Epost bekreftelse\" Landings-side:"
3524
+
3525
+ #: admin/general-settings.php:77
3526
+ msgid "Existing Pages"
3527
+ msgstr "Eksisterende Sider"
3528
+
3529
+ #: admin/general-settings.php:92
3530
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3531
+ msgstr "Spesifisere siden brukerne vil bli sendt til når de bekrefter e-postadressen. Denne siden kan avvike fra registrér-siden(e) og kan endres når som helst. Hvis ikke spesifisert, vil en enkel bekreftelsesside vises for brukeren."
3532
+
3533
+ #: admin/general-settings.php:103
3534
+ msgid "\"Admin Approval\" Activated:"
3535
+ msgstr "\"Administrator godkjennelse\" Aktivert:"
3536
+
3537
  #: admin/general-settings.php:111
3538
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3539
  msgstr "Du kan finne en liste med brukere i %1$sUsers > All Users > Admin Approval%2$s."
3540
 
3541
+ #: admin/general-settings.php:149
3542
+ msgid "\"Admin Approval\" Feature:"
3543
+ msgstr "\"Administrator godkjennelse\" Funksjon:"
3544
+
3545
  #: admin/general-settings.php:152
3546
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3547
  msgstr "Du bestemmer hvem som er en bruker på nettstedet ditt. Bli varslet via e-post eller godkjenn flere brukere på én gang via WordPress UI. Aktiver administratorgodkjenning ved å oppgradere til %1$sHobbyist or PRO versions%2$s."
3548
 
3549
+ #: admin/general-settings.php:159
3550
+ msgid "Allow Users to Log in With:"
3551
+ msgstr "Tillat brukere å logge inn med:"
3552
+
3553
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3554
  #: features/admin-approval/class-admin-approval.php:166
3555
  #: features/email-confirmation/class-email-confirmation.php:167
3556
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3563
  msgid "Username"
3564
  msgstr "Brukernavn"
3565
 
3566
+ #: admin/general-settings.php:165 front-end/login.php:215
3567
+ #: modules/email-customizer/email-customizer.php:29
3568
  #: modules/user-listing/userlisting.php:736
3569
  #: modules/user-listing/userlisting.php:2153
3570
  msgid "Email"
3571
  msgstr "Epost"
3572
 
3573
+ #: admin/general-settings.php:177
3574
+ msgid "Minimum Password Length:"
3575
+ msgstr "Minimum passord lengde:"
3576
+
3577
+ #: admin/general-settings.php:182
3578
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3579
+ msgstr "Skriv inn minimums tegn passordet bør ha. La stå tomt for ingen minimumsgrense"
3580
+
3581
+ #: admin/general-settings.php:189
3582
+ msgid "Minimum Password Strength:"
3583
+ msgstr "Minimum passord styrke"
3584
+
3585
+ #: admin/general-settings.php:193
3586
+ msgid "Disabled"
3587
+ msgstr "Deaktivert"
3588
+
3589
  #: admin/manage-fields.php:12
3590
  msgid "Manage Fields"
3591
  msgstr "Administrer felt"
3664
  msgid "Date-format"
3665
  msgstr "Dato-format"
3666
 
 
 
 
 
3667
  #: admin/manage-fields.php:126
3668
  msgid "Terms of Agreement"
3669
  msgstr "Avtalebetingelser"
3827
  msgid "Type your password again. "
3828
  msgstr "Skriv inn passordet på nytt"
3829
 
3830
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3831
  msgid "You must select a field\n"
3832
  msgstr "Du må velge et felt\n"
3833
 
3851
  msgid "You must enter a value for the row number\n"
3852
  msgstr "You must enter a value for the row number\n"
3853
 
3854
+ #: admin/manage-fields.php:1033
3855
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3856
  msgstr "The entered value for the Datepicker is not a valid date-format\n"
3857
 
3858
+ #: admin/manage-fields.php:1036
3859
  msgid "You must enter a value for the date-format\n"
3860
  msgstr "You must enter a value for the date-format\n"
3861
 
3862
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3863
+ #: admin/manage-fields.php:1083
3864
  msgid "That meta-name is already in use\n"
3865
  msgstr "That meta-name is already in use\n"
3866
 
3867
+ #: admin/manage-fields.php:1114
3868
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3869
  msgstr "The following option(s) did not coincide with the ones in the options list: %s\n"
3870
 
3871
+ #: admin/manage-fields.php:1118
3872
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3873
  msgstr "The following option did not coincide with the ones in the options list: %s\n"
3874
 
3875
+ #: admin/manage-fields.php:1141
3876
  msgid "That field is already added in this form\n"
3877
  msgstr "That field is already added in this form\n"
3878
 
3879
+ #: admin/manage-fields.php:1190
3880
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3881
  msgstr "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3882
 
3883
+ #: admin/manage-fields.php:1190
3884
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3885
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3886
  #: features/admin-approval/class-admin-approval.php:108
3887
  #: features/functions.php:718 features/functions.php:725
3888
  #: modules/custom-redirects/custom_redirects_admin.php:179
3893
  msgid "Edit"
3894
  msgstr "Rediger"
3895
 
3896
+ #: admin/manage-fields.php:1190
3897
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3898
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3899
  #: features/admin-approval/class-admin-approval.php:113
3900
  #: features/admin-approval/class-admin-approval.php:224
3901
  #: features/email-confirmation/class-email-confirmation.php:120
3908
  msgid "Delete"
3909
  msgstr "Slett"
3910
 
3911
+ #: admin/manage-fields.php:1205
3912
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3913
+ msgstr "Bruk disse koder på sidene du vil skjemaene vises:"
3914
+
3915
  #: admin/register-version.php:14
3916
  msgid "Register Your Version"
3917
  msgstr "Registrer Deg"
3920
  msgid "Register Version"
3921
  msgstr "Registrer versjon"
3922
 
3923
+ #: admin/register-version.php:70
3924
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3925
+ msgstr "Hvis du registrerer denne versjonen av profil Builder, får du informasjon om oppgraderinger, oppdateringer og teknisk støtte."
3926
+
3927
+ #: admin/register-version.php:72
3928
+ msgid " Serial Number:"
3929
+ msgstr "Maskinens serienummer"
3930
+
3931
  #: admin/register-version.php:77
3932
  msgid "The serial number was successfully validated!"
3933
  msgstr "Serienummeret ble validert!"
3944
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3945
  msgstr "Serienummeret kunne ikke valideres fordi prosessen ble tidsavbrutt. Dette er mulig fordi serveren er nede. Prøv igjen senere!"
3946
 
3947
+ #: admin/register-version.php:87
3948
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3949
+ msgstr "(f.eks RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3950
+
3951
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3952
  msgid "Content"
3953
  msgstr "Innhold"
3954
 
3955
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3956
+ msgid "Edit this item"
3957
+ msgstr "Rediger dette elementet"
3958
+
3959
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3960
+ msgid "Delete this item"
3961
+ msgstr "Slett dette elementet"
3962
+
3963
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3964
+ msgid "Please enter a value for the required field "
3965
+ msgstr "Angi en verdi for feltet nødvendig"
3966
+
3967
  #: front-end/extra-fields/upload/upload.php:122
3968
  msgid "Select File"
3969
  msgstr ""
3970
 
3971
+ #: assets/lib/wck-api/fields/upload.php:43
3972
  #: front-end/extra-fields/upload/upload.php:112
3973
  msgid "Remove"
3974
  msgstr "Fjern"
3975
 
3976
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3977
+ msgid "You can add the information for the %s after you add a entry"
3978
+ msgstr "Du kan legge til informasjon for %s når du legger til en oppføring"
3979
+
3980
+ #: assets/lib/wck-api/fields/upload.php:75
3981
  #: front-end/extra-fields/upload/upload.php:128
3982
  msgid "Upload "
3983
  msgstr "Last opp"
3984
 
3985
+ #: features/class-list-table.php:184
3986
+ msgid "No items found."
3987
+ msgstr "Ingen element funnet."
3988
+
3989
  #: features/class-list-table.php:308
3990
  msgid "Bulk Actions"
3991
  msgstr "Massehandlinger"
3994
  msgid "Apply"
3995
  msgstr "Bruk"
3996
 
3997
+ #: features/class-list-table.php:402
3998
+ msgid "Show all dates"
3999
+ msgstr "Vis alle datoer"
4000
+
4001
  #: features/class-list-table.php:415
4002
  msgid "%1$s %2$d"
4003
  msgstr "%1$s %2$d"
4014
  msgid "%s pending"
4015
  msgstr "%s venter"
4016
 
4017
+ #: features/class-list-table.php:566
4018
+ msgid "%1$s of %2$s"
4019
+ msgstr "%1$s de %2$s"
4020
+
4021
  #: features/class-list-table.php:713
4022
  msgid "Select All"
4023
  msgstr "Merk alle"
4027
  msgstr "Styrke indikator"
4028
 
4029
  #: features/admin-approval/admin-approval.php:14
4030
+ #: features/admin-approval/class-admin-approval.php:453
4031
  msgid "Admin Approval"
4032
  msgstr "Admin Approval (*)"
4033
 
4034
+ #: features/admin-approval/admin-approval.php:28
4035
+ #: features/email-confirmation/email-confirmation.php:58
4036
+ msgid "Do you want to"
4037
+ msgstr "Ønsker du å"
4038
+
4039
  #: features/admin-approval/admin-approval.php:51
4040
  msgid "Your session has expired! Please refresh the page and try again"
4041
  msgstr "Økten er utløpt! Oppdater siden og prøv igjen"
4160
  msgid "User-status"
4161
  msgstr "Bruker-status"
4162
 
4163
+ #: features/admin-approval/class-admin-approval.php:252
4164
+ msgid "Do you want to bulk approve the selected users?"
4165
+ msgstr "Vil du godkjenne valgte brukere?"
4166
+
4167
+ #: features/admin-approval/class-admin-approval.php:260
4168
+ msgid "Do you want to bulk unapprove the selected users?"
4169
+ msgstr "Vil du blokkere valgte brukere?"
4170
+
4171
+ #: features/admin-approval/class-admin-approval.php:266
4172
+ msgid "Do you want to bulk delete the selected users?"
4173
+ msgstr "Vil du slette valgte brukere?"
4174
+
4175
+ #: features/admin-approval/class-admin-approval.php:274
4176
  #: features/email-confirmation/class-email-confirmation.php:278
4177
  msgid "Sorry, but you don't have permission to do that!"
4178
  msgstr "Beklager, men du har ikke tillatelse til å gjøre det!"
4185
  msgid "Unapproved"
4186
  msgstr "Ikke godkjent"
4187
 
4188
+ #: features/admin-approval/class-admin-approval.php:456
4189
+ #: features/email-confirmation/class-email-confirmation.php:454
4190
+ msgid "All Users"
4191
+ msgstr "Alle Brukere"
4192
+
4193
  #: features/email-confirmation/class-email-confirmation.php:120
4194
  msgid "delete this user from the _signups table?"
4195
  msgstr "slette denne brukeren fra tabellen _signups?"
4228
  msgid "The selected users have had their activation emails resent"
4229
  msgstr "Valgte brukere har fått aktiveringsepost på nytt"
4230
 
4231
+ #: features/email-confirmation/class-email-confirmation.php:451
4232
+ #: features/email-confirmation/email-confirmation.php:47
4233
+ msgid "Users with Unconfirmed Email Address"
4234
+ msgstr "Brukere med Ubekreftet e-postadresse"
4235
+
4236
  #: features/email-confirmation/email-confirmation.php:107
4237
  msgid "There was an error performing that action!"
4238
  msgstr "Det oppsto en feil da denne handlingen ble utført!"
4296
  msgid "Profile Builder Login Widget"
4297
  msgstr "Logg inn-widget"
4298
 
4299
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4300
  msgid "Register"
4301
  msgstr "Registrer"
4302
 
4303
+ #: features/login-widget/login-widget.php:63
4304
+ msgid "Title:"
4305
+ msgstr "Tittel:"
4306
+
4307
+ #: features/login-widget/login-widget.php:68
4308
+ msgid "After login redirect URL (optional):"
4309
+ msgstr "Etter innlogging omdirigere URL (valgfritt):"
4310
+
4311
+ #: features/login-widget/login-widget.php:73
4312
+ msgid "Register page URL (optional):"
4313
+ msgstr "Registrere Nettadresse (valgfritt):"
4314
+
4315
+ #: features/login-widget/login-widget.php:78
4316
+ msgid "Password Recovery page URL (optional):"
4317
+ msgstr "Password Recovery side URL (valgfritt):"
4318
+
4319
  #: features/upgrades/upgrades-functions.php:91
4320
  #: features/upgrades/upgrades-functions.php:134
4321
  msgid "The usernames cannot be changed."
4357
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4358
  msgstr "Du vil snart bli omdirigert automatisk. Hvis du ser denne siden for mer enn %1$ d sekunder, vennligst klikk %2$s.%3$s"
4359
 
4360
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4361
  msgid "The account %1s has been successfully created!"
4362
  msgstr "Kontoen %1s ble opprettet!"
4363
 
4364
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4365
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4366
  msgstr "Før du kan få tilgang til dine konto% 1s, må du bekrefte din e-postadresse. Vennligst sjekk innboksen din og klikk på koblingen aktivering."
4367
 
4368
+ #: front-end/class-formbuilder.php:308
4369
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4370
  msgstr "Før du kan få tilgang til dine konto% 1s, må en administrator godkjenne den. Du vil bli varslet via e-post."
4371
 
4372
+ #: front-end/class-formbuilder.php:331
4373
  msgid "Your profile has been successfully updated!"
4374
  msgstr "Profilen din ble oppdatert!"
4375
 
4376
+ #: front-end/class-formbuilder.php:342
4377
  msgid "There was an error in the submitted form"
4378
  msgstr "Det er en feil i skjemaet som ble sendt"
4379
 
4380
+ #: front-end/class-formbuilder.php:399
4381
  msgid "Add User"
4382
  msgstr "Legg til bruker"
4383
 
4384
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4385
  msgid "Update"
4386
  msgstr "Oppdater"
4387
 
4388
+ #: front-end/class-formbuilder.php:465
4389
  msgid "Send these credentials via email."
4390
  msgstr "Send denne informasjonen på e-post."
4391
 
4599
  msgid "To use reCAPTCHA you must get an API public key from:"
4600
  msgstr "Du må få en API fellesnøkkel fra å bruke reCAPTCHA:"
4601
 
4602
+ #: modules/modules.php:11 modules/modules.php:58
4603
  msgid "Modules"
4604
  msgstr "Moduler"
4605
 
4606
+ #: modules/modules.php:59
4607
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4608
+ msgstr "Her kan du aktivere / deaktivere tilgjengelige moduler for Profile Builder."
4609
+
4610
+ #: modules/modules.php:69
4611
+ msgid "Name/Description"
4612
+ msgstr "Navn/beskrivelse"
4613
+
4614
+ #: modules/modules.php:70
4615
+ msgid "Status"
4616
+ msgstr "Status"
4617
+
4618
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4619
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4620
+ #: modules/modules.php:119
4621
+ msgid "Active"
4622
+ msgstr "Aktiv"
4623
+
4624
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4625
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4626
+ #: modules/modules.php:120
4627
+ msgid "Inactive"
4628
+ msgstr "Inaktiv"
4629
+
4630
  #: modules/email-customizer/admin-email-customizer.php:11
4631
  #: modules/email-customizer/admin-email-customizer.php:12
4632
+ #: modules/modules.php:96
4633
  msgid "Admin Email Customizer"
4634
  msgstr "Admin Epost tilpasser"
4635
 
4636
  #: modules/email-customizer/user-email-customizer.php:11
4637
  #: modules/email-customizer/user-email-customizer.php:12
4638
+ #: modules/modules.php:103
4639
  msgid "User Email Customizer"
4640
  msgstr "Bruker Epost tilpasser"
4641
 
4642
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4643
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4644
  msgid "Save"
4645
  msgstr "Lagre"
4965
  msgid "<pre>Title (Type)</pre>"
4966
  msgstr "<pre>Tittel (Type)</pre>"
4967
 
4968
+ #: modules/multiple-forms/multiple-forms.php:222
4969
+ msgid "You need to specify the title of the form before creating it"
4970
+ msgstr "Du må angi tittelen på skjemaet før du oppretter den"
4971
+
4972
  #: modules/multiple-forms/register-forms.php:11
4973
  #: modules/multiple-forms/register-forms.php:12
4974
  msgid "Registration Form"
translation/profile-builder-nl_NL.mo CHANGED
Binary file
translation/profile-builder-nl_NL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-12-12 10:39:04+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,58 +10,74 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
- msgstr ""
16
 
17
  #: admin/register-version.php:246
18
  msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
19
- msgstr ""
20
 
21
  #: front-end/recover.php:151
22
  msgid "You are already logged in. You can change your password on the edit profile form."
23
- msgstr ""
24
 
25
  #: front-end/default-fields/blog-details/blog-details.php:70
26
  msgid "Your site url will look like this:<br>"
27
- msgstr ""
28
 
29
  #: features/functions.php:909
30
  msgid "<br><br>You can visit your site at "
31
- msgstr ""
32
 
33
  #: features/functions.php:896
34
  msgid "<br><br>Also, you will be able to visit your site at "
35
- msgstr ""
36
 
37
  #: front-end/default-fields/blog-details/blog-details.php:138
38
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
39
- msgstr ""
40
 
41
  #: front-end/default-fields/blog-details/blog-details.php:116
42
  msgid "Site Title"
43
- msgstr ""
44
 
45
  #: front-end/default-fields/blog-details/blog-details.php:93
46
  msgid "Site URL slug"
47
- msgstr ""
48
 
49
  #: front-end/default-fields/blog-details/blog-details.php:63
50
  msgid "Yes, I'd like to create a new site"
51
- msgstr ""
52
 
53
  #: modules/email-customizer/email-customizer.php:36
54
  #: modules/user-listing/userlisting.php:118
55
  msgid "Blog URL"
56
- msgstr ""
57
 
58
  #: admin/admin-functions.php:44
59
  msgid "Blog Details - only appears on the Registration page!"
60
- msgstr ""
61
 
62
  #: admin/manage-fields.php:219
63
  msgid "Blog Details"
64
- msgstr ""
65
 
66
  #: admin/pms-cross-promotion.php:239
67
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
@@ -87,6 +103,46 @@ msgstr "Beschikbaar in alle versies"
87
  msgid "Learn More"
88
  msgstr "Lees meer"
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr "Gebruik dit in combinatie met de WordPress-functies om de waarde te tonen op de door u gewenste pagina<br/>Automatisch aangevuld maar in sommige gevallen te bewerken (in dat geval moet het uniek zijn)<br/>Wijzigingen kunnen lang duren als er erg veel gebruikers zijn"
@@ -703,14 +759,18 @@ msgstr "Jemen Rial"
703
  msgid "Zimbabwe Dollar"
704
  msgstr "Zimbabwe Dollar"
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr "De meta-naam kan alleen kleine letters, nummers, _ , - en geen spaties bevatten.\n"
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr "Zoeklocatie"
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr "Voorwaardelijke logica"
724
  msgid "Conditional Rules"
725
  msgstr "Voorwaardelijke regels"
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr "Voor dit veld is voorwaardelijk logica ingeschakeld."
730
 
@@ -1047,6 +1107,22 @@ msgstr "Kies de velden die Zoek Velden doorzoekt"
1047
  msgid "Search Settings"
1048
  msgstr "Zoekinstellingen"
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "Kan plugin niet registreren. Probeer opnieuw of <a href=\"%s\" target=\
1065
  msgid "Paid Accounts"
1066
  msgstr "Betaal Accounts"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "Plugin is Actief"
@@ -1077,6 +1189,14 @@ msgstr "Plugin is geactiveerd"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "Plugin is gedeactiveerd"
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr "Klik op de volgende link om de gebruiker te activeren:<br><br>%s%s%s<br><br>Na activering zult u nog een e-mail ontvangen met uw inloggegevens."
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr "Kan de volgende dynamische tags bevatten:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr "Individuele doorverwijzing gebruiker"
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr "Selecteer een gebruikersrol."
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr "Gebruikersrol gebaseerde doorverwijzingen"
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr "Standaard doorverwijzingen"
1168
 
@@ -1203,6 +1326,50 @@ msgstr "<pre>Gebruikersrol</pre><pre>Doorverwijzen</pre><pre>URL</pre>"
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr "<pre>Doorverwijzen</pre><pre>URL</pre>"
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr "Sta gebruikers toe om wachtwoord in front-end te achterhalen door gebrui
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr "Om een pagina te maken met alle geregistreerde gebruikers van deze huidige site/blog, plaats de volgende shortcode op de gewenste pagina: %s."
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr "Selecteer gebruikersrollen om Goedkeuring Beheerder te activeren."
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "Je account is succesvol aangemaakt."
@@ -2587,7 +2766,7 @@ msgstr "U moet de website sleutel invoeren\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "U moet de geheime sleutel invoeren\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Invoegtoepassingen"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimumlengte van %s kara
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimumsterkte van %s hebben"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Specificeer de extensie(s) waartoe u de uploads wilt beperken, <br/>bijvoorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, is de standaardinstelling: .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Volgorde gebruikersrollen"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Sla de volgorde van de gebruikersrollen op o.b.v. de selectievakjes voor de gebruikersrollen"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Selecteer minstens één gebruikersrol \n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Uw serienummer is bijna verlopen, %1$s Vernieuw uw licentie %2$s."
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "Uw serienummer is verlopen, %1$s Vernieuw uw licentie %2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "tonen"
@@ -2825,6 +3024,10 @@ msgstr "tonen"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder te registreren voor uw website, moet u eerst gebruikersregistratie inschakelen. Ga naar %1$sNetwerk Instellingen%2$s en vink onder Registratie Instellingen \"Gebruikersaccounts kunnen worden geregistreerd\" aan. %3$sSluiten%4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "Het wachtwoord moet een minimumlengte hebben van %s karakters"
@@ -2887,11 +3090,15 @@ msgstr "Gebruiker niet gevonden"
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "Geldige tags {{reply_to}} en {{site_name}}"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "Voer een kommagescheiden lijst van waardes in<br/>Dit kan van alles zijn, omdat het verborgen is voor de gebruiker, maar mag geen speciale karakters of apostrofs bevatten"
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "De meta-naam mag niet leeg zijn\n"
2897
 
@@ -2903,11 +3110,20 @@ msgstr "Nu u een exemplaar hebt van %s, moet u de tijd nemen om het te registrer
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Uw <strong>Profile Builder</strong> serienummer is ongeldig of ontbreekt. <br/> %1$sRegistreer uw exemplaar%2$s om toegang te krijgen tot automatische updates en ondersteuning. Licentiesleutel nodig? %3$sKoop er nu een%4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Kies"
2910
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Erg zwak"
@@ -2940,6 +3156,10 @@ msgstr "e-mailadres"
2940
  msgid "Lost your password?"
2941
  msgstr "Uw wachtwoord vergeten?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3201,18 @@ msgstr "Stel het aantal gebruikers in dat getoond moet worden per pagina van de
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Toon/verberg de beheerdersbalk in de front-end"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Instellingen beheerdersbalk"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3226,9 @@ msgstr "Tonen"
2998
  msgid "Hide"
2999
  msgstr "Verbergen"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Wijzigingen opslaan"
3004
 
@@ -3007,22 +3237,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "U moet inloggen met het e-mailadres. Dit veld is NIET zichtbaar op de front-end! (u kunt deze instellingen wijzigen op het tabblad \"%s\")"
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Algemene Instellingen"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Zeer zwak"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Zwak"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Gemiddeld"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Sterk"
3028
 
@@ -3031,6 +3265,7 @@ msgid "Add Field"
3031
  msgstr "Veld toevoegen"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Instellingen opslaan"
3036
 
@@ -3050,10 +3285,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "De beste manier om frond-end-registratie, profielbewerking en inlogformulieren toe te voegen."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Inloggen"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3437,45 @@ msgstr "Inloggen"
3061
  msgid "User Listing"
3062
  msgstr "Gebruikerslijsten"
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Aangepaste doorverwijzingen"
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr "* alleen beschikbaar in de %1$sHobbyist- en Pro-versie%2$s."
@@ -3074,6 +3484,12 @@ msgstr "* alleen beschikbaar in de %1$sHobbyist- en Pro-versie%2$s."
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** alleen beschikbaar in de %1$sPro-versie%2$s."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3501,11 @@ msgstr "Ja"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "U kunt het standaardbestand hier vinden: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3516,39 @@ msgstr "Nee"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "U kunt een lijst met niet bevestigde e-mailadressen vinden in %1$sGebruikers > Alle Gebruikers > E-mailbevestiging%2$s."
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "U kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring beheerder%2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
- msgstr "U bepaalt wie gebruikers is op uw website. Ontvang een melding via e-mail of keur meerdere gebruikers in één keer goed via de WordPress UI. Zet 'Goedkeuring beheerder' aan door te upgraden naar de %1$sHobbyist- of Pro-versie%2$s."
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3561,29 @@ msgstr "U bepaalt wie gebruikers is op uw website. Ontvang een melding via e-mai
3116
  msgid "Username"
3117
  msgstr "Gebruikersnaam"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "E-mailadres"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Velden beheren"
@@ -3200,10 +3662,6 @@ msgstr "Voer een waarde in (tussen 20 en 200) voor de grootte van de 'Avatar'<br
3200
  msgid "Date-format"
3201
  msgstr "Datum-formaat"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Specificeer het datumformaat als u de datumkiezer gebruikt<br/>Geldige opties: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Is standaard mm/dd/yy, indien niet gespecificeerd."
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Algemene voorwaarden"
@@ -3367,7 +3825,7 @@ msgstr "Herhaal het wachtwoord"
3367
  msgid "Type your password again. "
3368
  msgstr "Voer uw wachtwoord opnieuw in. "
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "U moet een veld selecteren\n"
3373
 
@@ -3391,36 +3849,38 @@ msgstr "Het ingevoerde rijnummer is niet numeriek\n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "U moet een waarde invoeren voor het rijnummer\n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "De ingevoerde waarde voor de datumkiezer heeft geen geldig datumformaat\n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "U moet een waarde voor het datumformaat invoeren\n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "Deze meta-naam is al in gebruik\n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s \n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "Dat veld is al aan dit formulier toegevoegd\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>Titel</pre><pre>Type</pre><pre>Metanaam</pre><pre class=\"wppb-mb-head-required\">Verplicht</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3891,9 @@ msgstr "<pre>Titel</pre><pre>Type</pre><pre>Metanaam</pre><pre class=\"wppb-mb-h
3431
  msgid "Edit"
3432
  msgstr "Bewerken"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3906,10 @@ msgstr "Bewerken"
3444
  msgid "Delete"
3445
  msgstr "Verwijderen"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "Registreer uw versie"
@@ -3452,6 +3918,14 @@ msgstr "Registreer uw versie"
3452
  msgid "Register Version"
3453
  msgstr "Versie registreren"
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "Het serienummer is met succes gevalideerd!"
@@ -3468,22 +3942,48 @@ msgstr "Het serienummer kon niet gevalideerd worden want het is verlopen!"
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "Het serienummer kon niet gevalideerd worden omdat het proces te lang duurde. Dit komt mogelijk doordat de server niet werkt. Probeer het later opnieuw!"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Inhoud"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr "Selecteer Bestand"
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Verwijderen"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Uploaden"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "Bulkacties"
@@ -3492,6 +3992,10 @@ msgstr "Bulkacties"
3492
  msgid "Apply"
3493
  msgstr "Toepassen"
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d"
@@ -3508,6 +4012,10 @@ msgstr "Samenvatting Weergave"
3508
  msgid "%s pending"
3509
  msgstr "%s in afwachting"
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Alles selecteren"
@@ -3517,9 +4025,15 @@ msgid "Strength indicator"
3517
  msgstr "Sterkte-indicator"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "Goedkeuring beheerder"
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "Uw sessie is verlopen! Ververs de pagina en probeer het opnieuw"
@@ -3644,6 +4158,19 @@ msgstr "Geregistreerd"
3644
  msgid "User-status"
3645
  msgstr "Gebruikersstatus"
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Sorry, u hebt niet het recht dit te doen!"
@@ -3656,6 +4183,11 @@ msgstr "Goedgekeurd"
3656
  msgid "Unapproved"
3657
  msgstr "Afgekeurd"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "deze gebruiker verwijderen uit de tabel _signups?"
@@ -3694,6 +4226,11 @@ msgstr "De geselecteerde gebruikers zijn geactiveerd"
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "De activerings e-mail is opnieuw gestuurd naar de geselecteerde gebruikers"
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "Er is een fout opgetreden tijdens deze actie!"
@@ -3757,10 +4294,26 @@ msgstr "Met deze inlogwidget kunt u een inlogformulier op de zijbalk plaatsen."
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Profile Builder inlogwidget"
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "Registreren"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4355,35 @@ msgstr "hier"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "U zult spoedig automatisch doorgestuurd worden. Als u deze pagina meer dan %1$d seconden ziet, klik dan op %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "Het account %1s is aangemaakt!"
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
- msgstr "Voordat u toegang krijgt uw account %1s, moet u uw e-mailadres bevestigen. Kijk in uw inbox en klik op de activeringslink."
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Voordat u toegang krijgt tot uw account %1s, moet een beheerder dit goedkeuren. U wordt geïnformeerd via e-mail."
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "Uw profiel is bijgewerkt!"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "Fout tijdens versturen van het formulier"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Gebruiker toevoegen"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Bijwerken"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Stuur deze aanmeldingsgegevens via e-mail."
3836
 
@@ -4044,20 +4597,47 @@ msgstr "Om veiligheidsredenen moet u het externe IP adres doorgeven aan reCAPTCH
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "Om reCAPTCHA te gebruiken moet u een openbare API-sleutel krijgen van:"
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Modules"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "Beheerders e-mail aanpassen"
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr "Gebruikers e-mail aanpassen"
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Opslaan"
@@ -4385,6 +4965,10 @@ msgstr "Kies een van de ondersteunde velden die u beheert <a href=\""
4385
  msgid "<pre>Title (Type)</pre>"
4386
  msgstr "<pre>Titel (Type)</pre>"
4387
 
 
 
 
 
4388
  #: modules/multiple-forms/register-forms.php:11
4389
  #: modules/multiple-forms/register-forms.php:12
4390
  msgid "Registration Form"
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-04-12 05:21:01+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
+ msgstr "<p>Uw <strong>Profile Builder</strong> licentie verloopt op %5$s. <br/>%1$sVernieuw uw Licentie%2$s om productdownloads, automatische updates en ondersteuning te blijven ontvangen. %3$sVernieuw nu en krijg 40&#37; korting %4$s %6$sSluiten%7$s</p>"
32
 
33
  #: admin/register-version.php:246
34
  msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
35
+ msgstr "<p>Uw <strong>Profile Builder</strong> licentie is verlopen. <br/>%1$sVernieuw uw Licentie%2$s om productdownloads, automatische updates en ondersteuning te blijven ontvangen. %3$sVernieuw nu en krijg 40&#37; %4$s korting. %5$sSluiten%6$s</p>"
36
 
37
  #: front-end/recover.php:151
38
  msgid "You are already logged in. You can change your password on the edit profile form."
39
+ msgstr "U bent reeds ingelogd. Wijzig uw wachtwoord via het profiel bewerkingsformulier."
40
 
41
  #: front-end/default-fields/blog-details/blog-details.php:70
42
  msgid "Your site url will look like this:<br>"
43
+ msgstr "Uw website ziet er zo uit:<br>"
44
 
45
  #: features/functions.php:909
46
  msgid "<br><br>You can visit your site at "
47
+ msgstr "<br><br>U kunt uw website bezoeken via "
48
 
49
  #: features/functions.php:896
50
  msgid "<br><br>Also, you will be able to visit your site at "
51
+ msgstr "<br><br>Ook kunt u uw website bezoeken via "
52
 
53
  #: front-end/default-fields/blog-details/blog-details.php:138
54
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
55
+ msgstr "Privacy: Ik wil dat mijn website getoond wordt in zoekmachines en in publieke weergaves rond dit netwerk."
56
 
57
  #: front-end/default-fields/blog-details/blog-details.php:116
58
  msgid "Site Title"
59
+ msgstr "Website Titel"
60
 
61
  #: front-end/default-fields/blog-details/blog-details.php:93
62
  msgid "Site URL slug"
63
+ msgstr "Website URL slug"
64
 
65
  #: front-end/default-fields/blog-details/blog-details.php:63
66
  msgid "Yes, I'd like to create a new site"
67
+ msgstr "Ja, ik wil een nieuwe website maken"
68
 
69
  #: modules/email-customizer/email-customizer.php:36
70
  #: modules/user-listing/userlisting.php:118
71
  msgid "Blog URL"
72
+ msgstr "Blog URL"
73
 
74
  #: admin/admin-functions.php:44
75
  msgid "Blog Details - only appears on the Registration page!"
76
+ msgstr "Blog Details - worden alleen getoond op Registratie Pagina!"
77
 
78
  #: admin/manage-fields.php:219
79
  msgid "Blog Details"
80
+ msgstr "Blog Details"
81
 
82
  #: admin/pms-cross-promotion.php:239
83
  msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
103
  msgid "Learn More"
104
  msgstr "Lees meer"
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr "Tijdkiezer"
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr "Kleurkiezer"
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr "Selecteer valuta"
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr "Nummer"
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr "Validatie"
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr "Plattegrond"
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr "HTML"
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr "Herhalingsvelden"
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr "Maak een groep herhalingsvelden op profiel registratie en profiel bewerkformulieren. Begrens het aantal groepen herhalingsvelden voor iedere gebruiksrol."
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr "Dit werkt alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, met gebruik van de \"Aangepaste doorverwijzingen\" invoegtoepassing."
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr "Gebruik dit in combinatie met de WordPress-functies om de waarde te tonen op de door u gewenste pagina<br/>Automatisch aangevuld maar in sommige gevallen te bewerken (in dat geval moet het uniek zijn)<br/>Wijzigingen kunnen lang duren als er erg veel gebruikers zijn"
759
  msgid "Zimbabwe Dollar"
760
  msgstr "Zimbabwe Dollar"
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr "De meta-naam kan alleen kleine letters, nummers, _ , - en geen spaties bevatten.\n"
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr "Zoeklocatie"
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr "Je mag dit niet doen."
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr "Voorwaardelijke regels"
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr "Voor dit veld is voorwaardelijk logica ingeschakeld."
790
 
1107
  msgid "Search Settings"
1108
  msgstr "Zoekinstellingen"
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Aanbevolen plugins"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Vrij"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je lidmaatschap website."
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Meer Details"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Betaal Accounts"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Paid Member Subscriptions - een gratis WordPress plugin"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr "Met het nieuwe Abonnementen Veld in Profile Builder, wordt het mogelijk om gebruikers zich via het registratieformulier aan te laten melden voor betaalde accounts."
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Betaal en gratis abonnementen"
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Beperk Inhoud"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Beheer van Geregistereerde Klanten"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "E-mail Templates"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Account Management"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Abonnementsbeheer"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Betalingsbeheer"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Plugin is Actief"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Plugin is gedeactiveerd"
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Accepteer betalingen door gebruikers, maak abonnementsplannen en beperk inhoud op je website."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Stap voor stap snelle installatie"
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr "Klik op de volgende link om de gebruiker te activeren:<br><br>%s%s%s<br><br>Na activering zult u nog een e-mail ontvangen met uw inloggegevens."
1267
  msgstr "Kan de volgende dynamische tags bevatten:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Individuele doorverwijzing gebruiker"
1273
 
1280
  msgstr "Selecteer een gebruikersrol."
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Gebruikersrol gebaseerde doorverwijzingen"
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr "Standaard doorverwijzingen"
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Doorverwijzen</pre><pre>URL</pre>"
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr "Deze doorverwijzing vindt plaats na een succesvolle actie, zoals registratie of succesvol inloggen."
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr "Welke doorverwijzing plaatsvindt is afhankelijk van de volgende prioriteit:"
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr "Standaard doorverwijzing van WordPress formulieren en pagina's"
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr "Met deze kun je diverse WordPress formulieren en pagina's doorverwijzen naar pagina's die zijn gemaakt met Profile Builder."
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr "Beschikbare tags voor dynamische URLs"
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr "Je gebruikt de volgende tags in je URLs om gebruikers door te verwijzen naar diverse pagina's."
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr "genereert een homepage link van de huidige website."
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr "in WordPress kan de <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> anders zijn dan de home url"
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr "de ID van de gebruiker"
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr "de voor URL opgeschoonde versie van de gebruikersnaam, de vereenvoudigde gebruikersnaam kan veilig worden gebruikt in URLs omdat het geen speciale karakters of spaties kan bevatten."
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr "de URL van de hiervoor bezochte pagina"
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr "Om een pagina te maken met alle geregistreerde gebruikers van deze huidige site/blog, plaats de volgende shortcode op de gewenste pagina: %s."
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr "\"Goedkeuring Beheerder\" voor gebruikersrol:"
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Selecteer gebruikersrollen om Goedkeuring Beheerder te activeren."
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr "Met Profile Builder Pro v2 kun je verschillende velden in de registratie en profiel bewerkingsformulieren tonen, door gebruik van de Meerdere Registratie & Profiel Bewerkingsformulieren module."
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Je account moet eerst geaccepteerd worden bij een administrator voordat u kan inloggen"
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Je account is succesvol aangemaakt."
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "U moet de geheime sleutel invoeren\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Invoegtoepassingen"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimumsterkte van %s hebben"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Gebruikersnaam en e-mailadres"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Gebruikersnaam en E-mailadres\" - gebruikers kunnen inloggen met zowel Gebruikersnaam als E-mailadres."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Gebruikersnaam\" - gebruikers kunnen alleen inloggen met Gebruikersnaam."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"E-mailadres\" - gebruikers kunnen alleen inloggen met E-mailadres."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Specificeer de extensie(s) waartoe u de uploads wilt beperken, <br/>bijvoorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, is de standaardinstelling: .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Sla de volgorde van de gebruikersrollen op o.b.v. de selectievakjes voor de gebruikersrollen"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Selecteer minstens één gebruikersrol \n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "Uw serienummer is verlopen, %1$s Vernieuw uw licentie %2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Voeg toe"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "tonen"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Om gebruikers toe te staan zich m.b.v. Profile Builder te registreren voor uw website, moet u eerst gebruikersregistratie inschakelen. Ga naar %1$sNetwerk Instellingen%2$s en vink onder Registratie Instellingen \"Gebruikersaccounts kunnen worden geregistreerd\" aan. %3$sSluiten%4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Te bewerken gebruiker:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "Het wachtwoord moet een minimumlengte hebben van %s karakters"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "Geldige tags {{reply_to}} en {{site_name}}"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Kies welke gebruikersrollen de beheerdersbalk in de front-end van de website te zien krijgen."
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "Voer een kommagescheiden lijst van waardes in<br/>Dit kan van alles zijn, omdat het verborgen is voor de gebruiker, maar mag geen speciale karakters of apostrofs bevatten"
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "De meta-naam mag niet leeg zijn\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Uw <strong>Profile Builder</strong> serienummer is ongeldig of ontbreekt. <br/> %1$sRegistreer uw exemplaar%2$s om toegang te krijgen tot automatische updates en ondersteuning. Licentiesleutel nodig? %3$sKoop er nu een%4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Kies"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 item"
3125
+ msgstr[1] ""
3126
+
3127
  #: features/functions.php:552
3128
  msgid "Very Weak"
3129
  msgstr "Erg zwak"
3156
  msgid "Lost your password?"
3157
  msgstr "Uw wachtwoord vergeten?"
3158
 
3159
+ #: index.php:34
3160
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3161
+ msgstr "is ook geactiveerd. U moet deze deactiveren voordat u deze versie van de plugin activeert."
3162
+
3163
  #: modules/email-customizer/admin-email-customizer.php:54
3164
  #: modules/email-customizer/user-email-customizer.php:54
3165
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3201
  msgid "Show/Hide the Admin Bar on the Front-End"
3202
  msgstr "Toon/verberg de beheerdersbalk in de front-end"
3203
 
3204
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3205
  msgid "Admin Bar Settings"
3206
  msgstr "Instellingen beheerdersbalk"
3207
 
3208
+ #: admin/admin-bar.php:57
3209
+ msgid "User-Role"
3210
+ msgstr "Gebruikersrol"
3211
+
3212
+ #: admin/admin-bar.php:58
3213
+ msgid "Visibility"
3214
+ msgstr "Zichtbaarheid"
3215
+
3216
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3217
  #: modules/multiple-forms/register-forms.php:230
3218
  msgid "Default"
3226
  msgid "Hide"
3227
  msgstr "Verbergen"
3228
 
3229
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3230
+ #: admin/register-version.php:95 features/functions.php:697
3231
+ #: modules/modules.php:127
3232
  msgid "Save Changes"
3233
  msgstr "Wijzigingen opslaan"
3234
 
3237
  msgstr "U moet inloggen met het e-mailadres. Dit veld is NIET zichtbaar op de front-end! (u kunt deze instellingen wijzigen op het tabblad \"%s\")"
3238
 
3239
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3240
+ #: admin/general-settings.php:38
3241
  msgid "General Settings"
3242
  msgstr "Algemene Instellingen"
3243
 
3244
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3245
  msgid "Very weak"
3246
  msgstr "Zeer zwak"
3247
 
3248
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3249
+ #: features/functions.php:552
3250
  msgid "Weak"
3251
  msgstr "Zwak"
3252
 
3253
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3254
+ #: features/functions.php:552
3255
  msgid "Medium"
3256
  msgstr "Gemiddeld"
3257
 
3258
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3259
+ #: features/functions.php:552
3260
  msgid "Strong"
3261
  msgstr "Sterk"
3262
 
3265
  msgstr "Veld toevoegen"
3266
 
3267
  #: admin/admin-functions.php:189
3268
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3269
  msgid "Save Settings"
3270
  msgstr "Instellingen opslaan"
3271
 
3285
  msgid "The best way to add front-end registration, edit profile and login forms."
3286
  msgstr "De beste manier om frond-end-registratie, profielbewerking en inlogformulieren toe te voegen."
3287
 
3288
+ #: admin/basic-info.php:33
3289
+ msgid "For Modern User Interaction"
3290
+ msgstr "Voor moderne gebruikersinteractie"
3291
+
3292
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3293
  msgid "Login"
3294
  msgstr "Inloggen"
3295
 
3296
+ #: admin/basic-info.php:40
3297
+ msgid "Registration"
3298
+ msgstr "Registratie"
3299
+
3300
+ #: admin/basic-info.php:44
3301
+ msgid "Edit Profile"
3302
+ msgstr "Profiel bewerken"
3303
+
3304
+ #: admin/basic-info.php:51
3305
+ msgid "Extra Features"
3306
+ msgstr "Extra functies"
3307
+
3308
+ #: admin/basic-info.php:52
3309
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3310
+ msgstr "Functies die u meer controle geven over uw gebruikers, de veiligheid verhogen en u helpen tegen spam tijdens gebruikersregistratie."
3311
+
3312
+ #: admin/basic-info.php:53
3313
+ msgid "Enable extra features"
3314
+ msgstr "Extra functies inschakelen"
3315
+
3316
+ #: admin/basic-info.php:57
3317
+ msgid "Recover Password"
3318
+ msgstr "Wachtwoord herstellen"
3319
+
3320
+ #: admin/basic-info.php:61
3321
+ msgid "Admin Approval (*)"
3322
+ msgstr "Goedkeuring beheerder (*)"
3323
+
3324
+ #: admin/basic-info.php:62
3325
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3326
+ msgstr "U bepaalt wie er gebruiker is op uw website. Ontvang meldingen via e-mail of keur meerdere gebruikers in één keer goed vanaf de WordPress-UI."
3327
+
3328
+ #: admin/basic-info.php:65
3329
+ msgid "Email Confirmation"
3330
+ msgstr "E-mailbevestiging"
3331
+
3332
+ #: admin/basic-info.php:66
3333
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3334
+ msgstr "Wees er zeker van dat gebruikers zich met echte e-mailadressen aanmelden. Tijdens registratie zullen gebruikers een bericht ontvangen om hun e-mailadres te bevestigen."
3335
+
3336
+ #: admin/basic-info.php:69
3337
+ msgid "Minimum Password Length and Strength Meter"
3338
+ msgstr "Minimale Wachtwoordlengte- en Sterktemeter"
3339
+
3340
+ #: admin/basic-info.php:70
3341
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3342
+ msgstr "Elimineer zwakke wachtwoorden meteen door een minimum wachtwoordlengte in te stellen en een bepaalde wachtwoordsterkte af te dwingen."
3343
+
3344
+ #: admin/basic-info.php:73
3345
+ msgid "Login with Email or Username"
3346
+ msgstr "Inloggen met e-mailadres of gebruikersnaam"
3347
+
3348
+ #: admin/basic-info.php:74
3349
+ msgid "Allow users to log in with their email or username when accessing your site."
3350
+ msgstr "Sta gebruikers toe in te loggen met e-mailadres of gebruikersnaam als ze uw website bezoeken."
3351
+
3352
+ #: admin/basic-info.php:87
3353
+ msgid "Customize Your Forms The Way You Want (*)"
3354
+ msgstr "Pas de formulieren aan naar uw wens (*)"
3355
+
3356
+ #: admin/basic-info.php:88
3357
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3358
+ msgstr "Met extra profielvelden kunt u het registratieformulier creëren dat precies voldoet aan de behoefte van uw project."
3359
+
3360
+ #: admin/basic-info.php:90
3361
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3362
+ msgstr "Extra profielvelden zijn beschikbaar in Hobbyist- of Pro-versies"
3363
+
3364
+ #: admin/basic-info.php:92
3365
+ msgid "Get started with extra fields"
3366
+ msgstr "Beginnen met extra velden"
3367
+
3368
+ #: admin/basic-info.php:95
3369
+ msgid "Avatar Upload"
3370
+ msgstr "Avatar upload"
3371
+
3372
+ #: admin/basic-info.php:96
3373
+ msgid "Generic Uploads"
3374
+ msgstr "Algemene uploads"
3375
+
3376
+ #: admin/basic-info.php:97
3377
+ msgid "Agree To Terms Checkbox"
3378
+ msgstr "Akkoord met voorwaarden Selectievakje"
3379
+
3380
+ #: admin/basic-info.php:98
3381
+ msgid "Datepicker"
3382
+ msgstr "Datumkiezer"
3383
+
3384
+ #: admin/basic-info.php:101
3385
+ msgid "reCAPTCHA"
3386
+ msgstr "reCAPTCHA"
3387
+
3388
+ #: admin/basic-info.php:102
3389
+ msgid "Country Select"
3390
+ msgstr "Landselectie"
3391
+
3392
+ #: admin/basic-info.php:104
3393
+ msgid "Timezone Select"
3394
+ msgstr "Tijdzoneselectie"
3395
+
3396
+ #: admin/basic-info.php:108
3397
+ msgid "Input / Hidden Input"
3398
+ msgstr "Invoer / Afgeschermde invoer"
3399
+
3400
+ #: admin/basic-info.php:110
3401
+ msgid "Checkbox"
3402
+ msgstr "Selectievakje"
3403
+
3404
+ #: admin/basic-info.php:111
3405
+ msgid "Select"
3406
+ msgstr "Selecteren"
3407
+
3408
+ #: admin/basic-info.php:112
3409
+ msgid "Radio Buttons"
3410
+ msgstr "Keuzerondjes"
3411
+
3412
+ #: admin/basic-info.php:113
3413
+ msgid "Textarea"
3414
+ msgstr "Tekstgebied"
3415
+
3416
+ #: admin/basic-info.php:125
3417
+ msgid "Powerful Modules (**)"
3418
+ msgstr "Krachtige modules (**)"
3419
+
3420
+ #: admin/basic-info.php:126
3421
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3422
+ msgstr "Alles wat u nodig hebt om uw gebruikers te beheren is waarschijnlijk al beschikbaar bij gebruik van de Pro-modules."
3423
+
3424
+ #: admin/basic-info.php:128
3425
+ msgid "Enable your modules"
3426
+ msgstr "Uw modules inschakelen"
3427
+
3428
+ #: admin/basic-info.php:131
3429
+ msgid "Find out more about PRO Modules"
3430
+ msgstr "Leer meer over de Pro-modules"
3431
+
3432
+ #: admin/basic-info.php:136 modules/modules.php:89
3433
  #: modules/user-listing/userlisting.php:11
3434
  #: modules/user-listing/userlisting.php:12
3435
  #: modules/user-listing/userlisting.php:17
3437
  msgid "User Listing"
3438
  msgstr "Gebruikerslijsten"
3439
 
3440
+ #: admin/basic-info.php:138
3441
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3442
+ msgstr "Eenvoudig te bewerken sjablonen voor gebruikerslijsten en gebruikerspagina's. Op shortcode gebaseerd en met vele opties om de overzichten aan te passen."
3443
+
3444
+ #: admin/basic-info.php:144
3445
+ msgid "Email Customizer"
3446
+ msgstr "E-mail aanpassen"
3447
+
3448
+ #: admin/basic-info.php:145
3449
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3450
+ msgstr "Personaliseer alle e-mail die naar de gebruikers of beheerders wordt gestuurd. Na registratie, e-mailbevestiging, goedkeuring/afkeuring."
3451
+
3452
+ #: admin/basic-info.php:148
3453
  #: modules/custom-redirects/custom_redirects_admin.php:32
3454
  #: modules/custom-redirects/custom_redirects_admin.php:33
3455
+ #: modules/modules.php:110
3456
  msgid "Custom Redirects"
3457
  msgstr "Aangepaste doorverwijzingen"
3458
 
3459
+ #: admin/basic-info.php:149
3460
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3461
+ msgstr "Houd uw gebruikers weg van het WordPress-dashboard, stuur hen door naar de startpagina na inloggen of registratie, alles vereist maar een paar muisklikken."
3462
+
3463
+ #: admin/basic-info.php:154 modules/modules.php:75
3464
+ msgid "Multiple Registration Forms"
3465
+ msgstr "Meerdere registratieformulieren"
3466
+
3467
+ #: admin/basic-info.php:155
3468
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3469
+ msgstr "Maak meerdere registratieformulieren met verschillende velden voor bepaalde gebruikersrollen. Gebruik verschillende informatie voor verschillende gebruikerstypen."
3470
+
3471
+ #: admin/basic-info.php:158 modules/modules.php:82
3472
+ msgid "Multiple Edit-profile Forms"
3473
+ msgstr "Meerdere formulieren voor profielbewerking"
3474
+
3475
+ #: admin/basic-info.php:159
3476
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3477
+ msgstr "Sta verschillende gebruikersgroepen toe hun specifieke informatie te bewerken. Maak meerdere formulieren voor profielbewerking aan met verschillende velden voor bepaalde gebruikersrollen."
3478
+
3479
  #: admin/basic-info.php:187
3480
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3481
  msgstr "* alleen beschikbaar in de %1$sHobbyist- en Pro-versie%2$s."
3484
  msgid "** only available in the %1$sPro version%2$s."
3485
  msgstr "** alleen beschikbaar in de %1$sPro-versie%2$s."
3486
 
3487
+ #: admin/general-settings.php:42
3488
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3489
+ msgstr "Laad het eigen CSS-bestand van Profile Builder in de front-end:"
3490
+
3491
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3492
+ #: admin/general-settings.php:107
3493
  #: modules/multiple-forms/edit-profile-forms.php:206
3494
  #: modules/multiple-forms/register-forms.php:229
3495
  #: modules/multiple-forms/register-forms.php:230
3501
  msgid "You can find the default file here: %1$s"
3502
  msgstr "U kunt het standaardbestand hier vinden: %1$s"
3503
 
3504
+ #: admin/general-settings.php:54
3505
+ msgid "\"Email Confirmation\" Activated:"
3506
+ msgstr "\"E-mailbevestiging\" geactiveerd:"
3507
+
3508
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3509
  #: modules/multiple-forms/edit-profile-forms.php:206
3510
  #: modules/multiple-forms/register-forms.php:229
3511
  #: modules/multiple-forms/register-forms.php:230
3516
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3517
  msgstr "U kunt een lijst met niet bevestigde e-mailadressen vinden in %1$sGebruikers > Alle Gebruikers > E-mailbevestiging%2$s."
3518
 
3519
+ #: admin/general-settings.php:72
3520
+ msgid "\"Email Confirmation\" Landing Page:"
3521
+ msgstr "\"E-mailbevestiging\" startpagina:"
3522
+
3523
+ #: admin/general-settings.php:77
3524
+ msgid "Existing Pages"
3525
+ msgstr "Bestaande pagina's"
3526
+
3527
+ #: admin/general-settings.php:92
3528
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3529
+ msgstr "Specificeer de pagina waar gebruikers naar worden doorgestuurd als ze hun e-mail bevestigen. Dit kan een andere pagina zijn dan de registratiepagina(s), en kan altijd gewijzigd worden. Als er niets geselecteerd is, zal er een eenvoudige bevestigingspagina aan gebruiker getoond worden."
3530
+
3531
+ #: admin/general-settings.php:103
3532
+ msgid "\"Admin Approval\" Activated:"
3533
+ msgstr "\"Goedkeuring beheerder\" geactiveerd:"
3534
+
3535
  #: admin/general-settings.php:111
3536
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3537
  msgstr "U kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring beheerder%2$s."
3538
 
3539
+ #: admin/general-settings.php:149
3540
+ msgid "\"Admin Approval\" Feature:"
3541
+ msgstr "\"Goedkeuring beheerder\" functie:"
3542
+
3543
  #: admin/general-settings.php:152
3544
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3545
+ msgstr "U bepaalt wie gebruiker is op uw website. Ontvang een melding via e-mail of keur meerdere gebruikers in één keer goed via de WordPress UI. Zet 'Goedkeuring beheerder' aan door te upgraden naar de %1$sHobbyist- of Pro-versie%2$s."
3546
 
3547
+ #: admin/general-settings.php:159
3548
+ msgid "Allow Users to Log in With:"
3549
+ msgstr "Sta gebruikers toe in te loggen met:"
3550
+
3551
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3552
  #: features/admin-approval/class-admin-approval.php:166
3553
  #: features/email-confirmation/class-email-confirmation.php:167
3554
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3561
  msgid "Username"
3562
  msgstr "Gebruikersnaam"
3563
 
3564
+ #: admin/general-settings.php:165 front-end/login.php:215
3565
+ #: modules/email-customizer/email-customizer.php:29
3566
  #: modules/user-listing/userlisting.php:736
3567
  #: modules/user-listing/userlisting.php:2153
3568
  msgid "Email"
3569
  msgstr "E-mailadres"
3570
 
3571
+ #: admin/general-settings.php:177
3572
+ msgid "Minimum Password Length:"
3573
+ msgstr "Minimale Wachtwoordlengte:"
3574
+
3575
+ #: admin/general-settings.php:182
3576
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3577
+ msgstr "Voer het minimaal aantal karakters in die het wachtwoord moet hebben. Laat leeg voor geen minimaal limiet."
3578
+
3579
+ #: admin/general-settings.php:189
3580
+ msgid "Minimum Password Strength:"
3581
+ msgstr "Minimale Wachtwoordsterkte:"
3582
+
3583
+ #: admin/general-settings.php:193
3584
+ msgid "Disabled"
3585
+ msgstr "Uitgeschakeld"
3586
+
3587
  #: admin/manage-fields.php:12
3588
  msgid "Manage Fields"
3589
  msgstr "Velden beheren"
3662
  msgid "Date-format"
3663
  msgstr "Datum-formaat"
3664
 
 
 
 
 
3665
  #: admin/manage-fields.php:126
3666
  msgid "Terms of Agreement"
3667
  msgstr "Algemene voorwaarden"
3825
  msgid "Type your password again. "
3826
  msgstr "Voer uw wachtwoord opnieuw in. "
3827
 
3828
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3829
  msgid "You must select a field\n"
3830
  msgstr "U moet een veld selecteren\n"
3831
 
3849
  msgid "You must enter a value for the row number\n"
3850
  msgstr "U moet een waarde invoeren voor het rijnummer\n"
3851
 
3852
+ #: admin/manage-fields.php:1033
3853
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3854
  msgstr "De ingevoerde waarde voor de datumkiezer heeft geen geldig datumformaat\n"
3855
 
3856
+ #: admin/manage-fields.php:1036
3857
  msgid "You must enter a value for the date-format\n"
3858
  msgstr "U moet een waarde voor het datumformaat invoeren\n"
3859
 
3860
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3861
+ #: admin/manage-fields.php:1083
3862
  msgid "That meta-name is already in use\n"
3863
  msgstr "Deze meta-naam is al in gebruik\n"
3864
 
3865
+ #: admin/manage-fields.php:1114
3866
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3867
  msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s\n"
3868
 
3869
+ #: admin/manage-fields.php:1118
3870
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3871
  msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s \n"
3872
 
3873
+ #: admin/manage-fields.php:1141
3874
  msgid "That field is already added in this form\n"
3875
  msgstr "Dat veld is al aan dit formulier toegevoegd\n"
3876
 
3877
+ #: admin/manage-fields.php:1190
3878
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3879
  msgstr "<pre>Titel</pre><pre>Type</pre><pre>Metanaam</pre><pre class=\"wppb-mb-head-required\">Verplicht</pre>"
3880
 
3881
+ #: admin/manage-fields.php:1190
3882
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3884
  #: features/admin-approval/class-admin-approval.php:108
3885
  #: features/functions.php:718 features/functions.php:725
3886
  #: modules/custom-redirects/custom_redirects_admin.php:179
3891
  msgid "Edit"
3892
  msgstr "Bewerken"
3893
 
3894
+ #: admin/manage-fields.php:1190
3895
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3896
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3897
  #: features/admin-approval/class-admin-approval.php:113
3898
  #: features/admin-approval/class-admin-approval.php:224
3899
  #: features/email-confirmation/class-email-confirmation.php:120
3906
  msgid "Delete"
3907
  msgstr "Verwijderen"
3908
 
3909
+ #: admin/manage-fields.php:1205
3910
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3911
+ msgstr "Gebruik deze shortcodes op de pagina's waarop u de formulieren wilt tonen:"
3912
+
3913
  #: admin/register-version.php:14
3914
  msgid "Register Your Version"
3915
  msgstr "Registreer uw versie"
3918
  msgid "Register Version"
3919
  msgstr "Versie registreren"
3920
 
3921
+ #: admin/register-version.php:70
3922
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3923
+ msgstr "Als u deze versie van Profile Builder registreert, zult u informatie ontvangen inzake updates, patches en technische support."
3924
+
3925
+ #: admin/register-version.php:72
3926
+ msgid " Serial Number:"
3927
+ msgstr "Serienummer:"
3928
+
3929
  #: admin/register-version.php:77
3930
  msgid "The serial number was successfully validated!"
3931
  msgstr "Het serienummer is met succes gevalideerd!"
3942
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3943
  msgstr "Het serienummer kon niet gevalideerd worden omdat het proces te lang duurde. Dit komt mogelijk doordat de server niet werkt. Probeer het later opnieuw!"
3944
 
3945
+ #: admin/register-version.php:87
3946
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3947
+ msgstr "(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3948
+
3949
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3950
  msgid "Content"
3951
  msgstr "Inhoud"
3952
 
3953
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3954
+ msgid "Edit this item"
3955
+ msgstr "Dit item bewerken"
3956
+
3957
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3958
+ msgid "Delete this item"
3959
+ msgstr "Dit item verwijderen"
3960
+
3961
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3962
+ msgid "Please enter a value for the required field "
3963
+ msgstr "Voer een waarde in voor het verplichte veld"
3964
+
3965
  #: front-end/extra-fields/upload/upload.php:122
3966
  msgid "Select File"
3967
  msgstr "Selecteer Bestand"
3968
 
3969
+ #: assets/lib/wck-api/fields/upload.php:43
3970
  #: front-end/extra-fields/upload/upload.php:112
3971
  msgid "Remove"
3972
  msgstr "Verwijderen"
3973
 
3974
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3975
+ msgid "You can add the information for the %s after you add a entry"
3976
+ msgstr "U kunt informatie toevoegen aan %s nadat u een item hebt toegevoegd"
3977
+
3978
+ #: assets/lib/wck-api/fields/upload.php:75
3979
  #: front-end/extra-fields/upload/upload.php:128
3980
  msgid "Upload "
3981
  msgstr "Uploaden"
3982
 
3983
+ #: features/class-list-table.php:184
3984
+ msgid "No items found."
3985
+ msgstr "Geen items gevonden."
3986
+
3987
  #: features/class-list-table.php:308
3988
  msgid "Bulk Actions"
3989
  msgstr "Bulkacties"
3992
  msgid "Apply"
3993
  msgstr "Toepassen"
3994
 
3995
+ #: features/class-list-table.php:402
3996
+ msgid "Show all dates"
3997
+ msgstr "Alle data tonen"
3998
+
3999
  #: features/class-list-table.php:415
4000
  msgid "%1$s %2$d"
4001
  msgstr "%1$s %2$d"
4012
  msgid "%s pending"
4013
  msgstr "%s in afwachting"
4014
 
4015
+ #: features/class-list-table.php:566
4016
+ msgid "%1$s of %2$s"
4017
+ msgstr "%1$s van %2$s"
4018
+
4019
  #: features/class-list-table.php:713
4020
  msgid "Select All"
4021
  msgstr "Alles selecteren"
4025
  msgstr "Sterkte-indicator"
4026
 
4027
  #: features/admin-approval/admin-approval.php:14
4028
+ #: features/admin-approval/class-admin-approval.php:453
4029
  msgid "Admin Approval"
4030
  msgstr "Goedkeuring beheerder"
4031
 
4032
+ #: features/admin-approval/admin-approval.php:28
4033
+ #: features/email-confirmation/email-confirmation.php:58
4034
+ msgid "Do you want to"
4035
+ msgstr "Wilt u"
4036
+
4037
  #: features/admin-approval/admin-approval.php:51
4038
  msgid "Your session has expired! Please refresh the page and try again"
4039
  msgstr "Uw sessie is verlopen! Ververs de pagina en probeer het opnieuw"
4158
  msgid "User-status"
4159
  msgstr "Gebruikersstatus"
4160
 
4161
+ #: features/admin-approval/class-admin-approval.php:252
4162
+ msgid "Do you want to bulk approve the selected users?"
4163
+ msgstr "Wilt u de geselecteerde gebruikers in één keer goedkeuren?"
4164
+
4165
+ #: features/admin-approval/class-admin-approval.php:260
4166
+ msgid "Do you want to bulk unapprove the selected users?"
4167
+ msgstr "Wilt u de geselecteerde gebruikers in één keer afkeuren?"
4168
+
4169
+ #: features/admin-approval/class-admin-approval.php:266
4170
+ msgid "Do you want to bulk delete the selected users?"
4171
+ msgstr "Wilt u de geselecteerde gebruikers in één keer verwijderen?"
4172
+
4173
+ #: features/admin-approval/class-admin-approval.php:274
4174
  #: features/email-confirmation/class-email-confirmation.php:278
4175
  msgid "Sorry, but you don't have permission to do that!"
4176
  msgstr "Sorry, u hebt niet het recht dit te doen!"
4183
  msgid "Unapproved"
4184
  msgstr "Afgekeurd"
4185
 
4186
+ #: features/admin-approval/class-admin-approval.php:456
4187
+ #: features/email-confirmation/class-email-confirmation.php:454
4188
+ msgid "All Users"
4189
+ msgstr "Alle gebruikers"
4190
+
4191
  #: features/email-confirmation/class-email-confirmation.php:120
4192
  msgid "delete this user from the _signups table?"
4193
  msgstr "deze gebruiker verwijderen uit de tabel _signups?"
4226
  msgid "The selected users have had their activation emails resent"
4227
  msgstr "De activerings e-mail is opnieuw gestuurd naar de geselecteerde gebruikers"
4228
 
4229
+ #: features/email-confirmation/class-email-confirmation.php:451
4230
+ #: features/email-confirmation/email-confirmation.php:47
4231
+ msgid "Users with Unconfirmed Email Address"
4232
+ msgstr "Gebruikers met niet bevestigde e-mailadressen"
4233
+
4234
  #: features/email-confirmation/email-confirmation.php:107
4235
  msgid "There was an error performing that action!"
4236
  msgstr "Er is een fout opgetreden tijdens deze actie!"
4294
  msgid "Profile Builder Login Widget"
4295
  msgstr "Profile Builder inlogwidget"
4296
 
4297
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4298
  msgid "Register"
4299
  msgstr "Registreren"
4300
 
4301
+ #: features/login-widget/login-widget.php:63
4302
+ msgid "Title:"
4303
+ msgstr "Titel:"
4304
+
4305
+ #: features/login-widget/login-widget.php:68
4306
+ msgid "After login redirect URL (optional):"
4307
+ msgstr "Doorverwijs-URL na inloggen (optioneel):"
4308
+
4309
+ #: features/login-widget/login-widget.php:73
4310
+ msgid "Register page URL (optional):"
4311
+ msgstr "Registratiepagina-URL (optioneel):"
4312
+
4313
+ #: features/login-widget/login-widget.php:78
4314
+ msgid "Password Recovery page URL (optional):"
4315
+ msgstr "URL Wachtwoord-herstel pagina (optioneel):"
4316
+
4317
  #: features/upgrades/upgrades-functions.php:91
4318
  #: features/upgrades/upgrades-functions.php:134
4319
  msgid "The usernames cannot be changed."
4355
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4356
  msgstr "U zult spoedig automatisch doorgestuurd worden. Als u deze pagina meer dan %1$d seconden ziet, klik dan op %2$s.%3$s"
4357
 
4358
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4359
  msgid "The account %1s has been successfully created!"
4360
  msgstr "Het account %1s is aangemaakt!"
4361
 
4362
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4363
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4364
+ msgstr "Voordat u toegang krijgt tot uw account %1s, moet u uw e-mailadres bevestigen. Kijk in uw inbox en klik op de activeringslink."
4365
 
4366
+ #: front-end/class-formbuilder.php:308
4367
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4368
  msgstr "Voordat u toegang krijgt tot uw account %1s, moet een beheerder dit goedkeuren. U wordt geïnformeerd via e-mail."
4369
 
4370
+ #: front-end/class-formbuilder.php:331
4371
  msgid "Your profile has been successfully updated!"
4372
  msgstr "Uw profiel is bijgewerkt!"
4373
 
4374
+ #: front-end/class-formbuilder.php:342
4375
  msgid "There was an error in the submitted form"
4376
  msgstr "Fout tijdens versturen van het formulier"
4377
 
4378
+ #: front-end/class-formbuilder.php:399
4379
  msgid "Add User"
4380
  msgstr "Gebruiker toevoegen"
4381
 
4382
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4383
  msgid "Update"
4384
  msgstr "Bijwerken"
4385
 
4386
+ #: front-end/class-formbuilder.php:465
4387
  msgid "Send these credentials via email."
4388
  msgstr "Stuur deze aanmeldingsgegevens via e-mail."
4389
 
4597
  msgid "To use reCAPTCHA you must get an API public key from:"
4598
  msgstr "Om reCAPTCHA te gebruiken moet u een openbare API-sleutel krijgen van:"
4599
 
4600
+ #: modules/modules.php:11 modules/modules.php:58
4601
  msgid "Modules"
4602
  msgstr "Modules"
4603
 
4604
+ #: modules/modules.php:59
4605
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4606
+ msgstr "Hier kunt u alle modules van Profile Builder activeren/deactiveren."
4607
+
4608
+ #: modules/modules.php:69
4609
+ msgid "Name/Description"
4610
+ msgstr "Naam/beschrijving"
4611
+
4612
+ #: modules/modules.php:70
4613
+ msgid "Status"
4614
+ msgstr "Status"
4615
+
4616
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4617
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4618
+ #: modules/modules.php:119
4619
+ msgid "Active"
4620
+ msgstr "Actief"
4621
+
4622
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4623
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4624
+ #: modules/modules.php:120
4625
+ msgid "Inactive"
4626
+ msgstr "Niet actief"
4627
+
4628
  #: modules/email-customizer/admin-email-customizer.php:11
4629
  #: modules/email-customizer/admin-email-customizer.php:12
4630
+ #: modules/modules.php:96
4631
  msgid "Admin Email Customizer"
4632
  msgstr "Beheerders e-mail aanpassen"
4633
 
4634
  #: modules/email-customizer/user-email-customizer.php:11
4635
  #: modules/email-customizer/user-email-customizer.php:12
4636
+ #: modules/modules.php:103
4637
  msgid "User Email Customizer"
4638
  msgstr "Gebruikers e-mail aanpassen"
4639
 
4640
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4641
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4642
  msgid "Save"
4643
  msgstr "Opslaan"
4965
  msgid "<pre>Title (Type)</pre>"
4966
  msgstr "<pre>Titel (Type)</pre>"
4967
 
4968
+ #: modules/multiple-forms/multiple-forms.php:222
4969
+ msgid "You need to specify the title of the form before creating it"
4970
+ msgstr "U moet de titel van het formulier specificeren voordat u het aanmaakt"
4971
+
4972
  #: modules/multiple-forms/register-forms.php:11
4973
  #: modules/multiple-forms/register-forms.php:12
4974
  msgid "Registration Form"
translation/profile-builder-pl_PL.mo CHANGED
Binary file
translation/profile-builder-pl_PL.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr "Wtyczka została aktywowana"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "Wtyczka została wyłączona."
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "Musisz podać klucz strony\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Musisz podać tajny klucz\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Wtyczki"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>BŁĄD</strong>: Hasło musi mieć minimum %s znaków."
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>BŁĄD</strong>: Minimalna siłahasła to: %s"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Wybierz rozszerzenie/rozszedzenia, które użytkownicy mogą przesyłać.<br/>Przykład: .ext1,.ext2,.ext3<br/>Jeśli nic nie wybrano, domyślne to: .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Kolejność profili użytkownika"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Zapisz kolejność profili użytkownika z pól wyboru"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Wybierz proszę, co najmniej jeden profil użytkownika\n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Twój numer seryjny wkrótce wygaśnie, proszę %1$s Odnów Swoją Licen
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr " Twój numer seryjny wygasł, proszę %1$s Odnów Swoją Licencję%2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "pokaż"
@@ -2825,6 +3024,10 @@ msgstr "pokaż"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Aby zezwolić użytkownikom na logowanie na Twojej stronie poprzez Profile Builder, musisz najpierw zezwolić na rejestrację użytkowników. Idź do %1$sUstawień Sieciowych%2$s, oraz upewnij się, że pole \"Możliwość rejestracji kont użytowników\" jest zaznaczone. %3$sAnuluj%4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "Hasło musi składać się z minimum %s znaku."
@@ -2887,11 +3090,15 @@ msgstr "Użytkownik nie znaleziony"
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "Poprawne tagi {{reply_to}} oraz {{site_name}}"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "Wprowadź listę elementów oddzielając poszczególne elementy przecinkami<br/>Może to być cokolwiek, ponieważ jest to niewidoczne dla użytkownika, ale nie powinno zawierać żadnych znaków specjalnych lub apostrofów."
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "Parametr meta-name nie może być pusty\n"
2897
 
@@ -2903,11 +3110,21 @@ msgstr "W związku z nabyciem kopii %s, powinieneś zarejestrować ją wykorzyst
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Twój numer seryjny <strong>Profile Builder</strong> jest niepoprawny lub niepełny. <br/>Proszę %1$szarejestruj swoją kopię%2$s, aby otrzymać dostęp do automatycznych aktualizacji oraz wsparcia. Potrzebujesz klucza licencyjnego? %3$sKup go teraz%4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Wybierz"
2910
 
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Bardzo łatwe"
@@ -2940,6 +3157,10 @@ msgstr "email"
2940
  msgid "Lost your password?"
2941
  msgstr "Zapomniałeś hasła?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3202,18 @@ msgstr "Wybierz liczbę użytkowników do wyświetlenia na jednej stronie zestaw
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Pokaż/Ukryj pasek narzędziowy podczas przeglądania witryny"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Ustawienia paska narzędziowego"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3227,9 @@ msgstr "Pokaż"
2998
  msgid "Hide"
2999
  msgstr "Ukryj"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Zapisz zmiany"
3004
 
@@ -3007,22 +3238,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "Ustawione zostało logowanie z wykorzystaniem adresu e-mail. To pole NIE pojawi się na Twojej stronie! ( możesz zmienić to ustawienie w zakładce \"%s\" )"
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Ustawienia ogólne"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Bardzo słabe"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "słabe"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Średnie"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Trudne"
3028
 
@@ -3031,6 +3266,7 @@ msgid "Add Field"
3031
  msgstr "Dodaj pole"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Zapisz ustawienia"
3036
 
@@ -3050,10 +3286,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "Najlepszy sposób, aby dodać możliwość rejestracji użytkowników, edycję ich profili oraz formularze do logowania."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Login"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3438,45 @@ msgstr "Login"
3061
  msgid "User Listing"
3062
  msgstr "Lista użytkowników"
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Własne przekierowania"
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr " * dostępne tylko %1$sw wersjach Hobbyist oraz Pro%2$s."
@@ -3074,6 +3485,12 @@ msgstr " * dostępne tylko %1$sw wersjach Hobbyist oraz Pro%2$s."
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** dostępne tylko w %1$s wersji Pro%2$s."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3502,11 @@ msgstr "Tak"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "Domyślny plik znajdziesz tutaj: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3517,39 @@ msgstr "Nie"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "Listę niepotwierdzonych adresów email mozesz znaleźć w %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Email%2$s."
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "Możesz znaleźć listę użytkowników przechodząć do %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Administratora%2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj potwierdzenia poprzez email lub akceptuj wielu użytkowników na raz poprzez panel Wordpress. Odblokuj \"Potwierdzenie Administratora\" poprzez aktualizację do %1$s wersji Hobbyist lub PRO %2$s."
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3562,29 @@ msgstr "Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj potwi
3116
  msgid "Username"
3117
  msgstr "Username"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "Email"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Zarządzaj polami"
@@ -3200,10 +3663,6 @@ msgstr "Określ rozmiar Awatara (pomiędzy 20 a 200)<br/>Jeśli nie zostanie zde
3200
  msgid "Date-format"
3201
  msgstr "Format daty"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Zdefiniuj format daty dla wtyczki wyboru daty \"Datepicker\"<br/>Możliwe opcje to: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Jeśli nie zostanie zdefiniowany domyślny to mm/dd/yy [d - dzień, m - miesiąć, y - rok]"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Warunki umowy"
@@ -3367,7 +3826,7 @@ msgstr "Powtórz hasło"
3367
  msgid "Type your password again. "
3368
  msgstr "Wpisz swoje hasło ponownie"
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Musisz wybrać pole\n"
3373
 
@@ -3391,36 +3850,38 @@ msgstr "Wprowadzony numer wiersza nie jest wartością liczbową\n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "Wprowadź numer wiersza\n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "Wprowadzony format daty nie jest poprawny\n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "Musisz wprowadzić format daty\n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "Parametr meta-name jest już wykorzystywany\n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "Następujące opcje nie są zgodne z ustawieniami z listy: %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "Następująca opcja nie jest zgodna z ustawieniami z listy: %s \n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "To pole zostało już dodane do formularza\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>Nazwa</pre><pre>Typ</pre><pre>Parametr Meta Name</pre><pre class=\"wppb-mb-head-required\">Wymagane</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3892,9 @@ msgstr "<pre>Nazwa</pre><pre>Typ</pre><pre>Parametr Meta Name</pre><pre class=\"
3431
  msgid "Edit"
3432
  msgstr "Edytuj"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3907,10 @@ msgstr "Edytuj"
3444
  msgid "Delete"
3445
  msgstr "Usuń"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "Zarejestruj swoją kopię"
@@ -3452,6 +3919,14 @@ msgstr "Zarejestruj swoją kopię"
3452
  msgid "Register Version"
3453
  msgstr "Zarejestruj kopię"
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "Numer seryjny został zweryfikowany poprawnie!"
@@ -3468,22 +3943,48 @@ msgstr "Numer seryjny został zweryfikowany, ponieważ wygasł! "
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "Numer seryjny został zweryfikowany, nie otrzymano odpowiedzi z serwera! Najprawdopodobniej serwer jest niedostępny. Proszę spróbować później!"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Treść"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr "Wybierz plik"
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Usuń"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Prześlij"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "Akcje masowe"
@@ -3492,6 +3993,10 @@ msgstr "Akcje masowe"
3492
  msgid "Apply"
3493
  msgstr "Zatwierdź"
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d"
@@ -3508,6 +4013,10 @@ msgstr "Widok Skrócony"
3508
  msgid "%s pending"
3509
  msgstr "%s oczekuje"
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Zaznacz wszystko"
@@ -3517,9 +4026,15 @@ msgid "Strength indicator"
3517
  msgstr "Siłomierz"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "Potwierdzenie Administratora"
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "Twoja sesja wygasła! Proszę odśwież stronę oraz spróbuj ponownie"
@@ -3644,6 +4159,19 @@ msgstr "Zarejestrowany"
3644
  msgid "User-status"
3645
  msgstr "Status użytkownika"
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Przepraszam, ale nie masz uprawnień do wykonania tej operacji!"
@@ -3656,6 +4184,11 @@ msgstr "Zatwierdzone"
3656
  msgid "Unapproved"
3657
  msgstr "Odrzucone"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "Usunąć użytkowników z tabeli _signups?"
@@ -3694,6 +4227,11 @@ msgstr "Wybrani użytkownicy zostali aktywowani"
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "Ponownie wysłano aktywacyjne wiadomości email do wybranych użytkowników"
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "Wystąpił błąd podczas wykonywania tej akcji!"
@@ -3757,10 +4295,26 @@ msgstr "Ten widżet logowania pozwala Tobie na dodanie formularza logowania w be
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Widżet Logowania Profile Bulder"
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "Zarejestruj się"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4356,35 @@ msgstr "tutaj"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "Niedługo zostaniesz przekierowany. Jeśli oglądasz tę stronę przez więcej niż %1$d sekund, proszę kliknij %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "Konto %1s zostało pomyślnie założone!"
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "Zanim będziesz mógł się zalogować na swoje kontu %1s, musisz potwierdzić swój adres email. Proszę sprawdź swoją skrzynkę oraz kliknij link aktywacyjny. "
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Zanim będziesz mógł się zalogować na swoje kontu %1s, administrator musi zatwierdzić Twoje konto. Otrzymasz powiadomienie na Twój adres email."
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "Twój profil został zaktualizowany!"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "Pojawiły się błędy w przesłanym formularzu"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Dodaj użytkownika"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Aktualizuj"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Wyślij te dane na adres e-mail."
3836
 
@@ -4044,20 +4598,47 @@ msgstr "W celach bezpieczeństwa musisz przekazać zdalny adres IP do reCAPTCHA!
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "Aby korzystać z reCAPTCHA musisz pobrać klucz publiczny API z:"
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Moduły"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "Dostosowanie Wiadomości Email Administratora"
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr "Dostosowanie Wiadomości Email Użytkownika"
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Zapisz"
@@ -4390,6 +4971,10 @@ msgstr "Wybierz jedno ze wspieranych pól którymi zarządzasz <a href=\""
4390
  msgid "<pre>Title (Type)</pre>"
4391
  msgstr "<pre>Nazwa (Typ)</pre>"
4392
 
 
 
 
 
4393
  #: modules/multiple-forms/register-forms.php:11
4394
  #: modules/multiple-forms/register-forms.php:12
4395
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Więcej szczegółów"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Wtyczka została wyłączona."
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Musisz podać tajny klucz\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Wtyczki"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>BŁĄD</strong>: Minimalna siłahasła to: %s"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Nazwa użytkownika lub email"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Nazwa użytkownika lub email\" - użytkownicy mogą zalogować się korzystając z nazwy użytkownika lub adresu email."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Nazwa użytkownika\" - użytkownicy mogą zalogować się tylko przez podanie nazwy użytkownika."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"Email\" - użytkownicy mogą zalogować się tylko przez podanie adresu email."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Wybierz rozszerzenie/rozszedzenia, które użytkownicy mogą przesyłać.<br/>Przykład: .ext1,.ext2,.ext3<br/>Jeśli nic nie wybrano, domyślne to: .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Zapisz kolejność profili użytkownika z pól wyboru"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Wybierz proszę, co najmniej jeden profil użytkownika\n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr " Twój numer seryjny wygasł, proszę %1$s Odnów Swoją Licencję%2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Dodaj wpis"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "pokaż"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Aby zezwolić użytkownikom na logowanie na Twojej stronie poprzez Profile Builder, musisz najpierw zezwolić na rejestrację użytkowników. Idź do %1$sUstawień Sieciowych%2$s, oraz upewnij się, że pole \"Możliwość rejestracji kont użytowników\" jest zaznaczone. %3$sAnuluj%4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Użytkownik do edycji:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "Hasło musi składać się z minimum %s znaku."
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "Poprawne tagi {{reply_to}} oraz {{site_name}}"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Wybierz, które profile użytkownika powinny mieć dostęp do listwy administracyjnej Wordpress na Twojej stronie."
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "Wprowadź listę elementów oddzielając poszczególne elementy przecinkami<br/>Może to być cokolwiek, ponieważ jest to niewidoczne dla użytkownika, ale nie powinno zawierać żadnych znaków specjalnych lub apostrofów."
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "Parametr meta-name nie może być pusty\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Twój numer seryjny <strong>Profile Builder</strong> jest niepoprawny lub niepełny. <br/>Proszę %1$szarejestruj swoją kopię%2$s, aby otrzymać dostęp do automatycznych aktualizacji oraz wsparcia. Potrzebujesz klucza licencyjnego? %3$sKup go teraz%4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Wybierz"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 element"
3125
+ msgstr[1] ""
3126
+ msgstr[2] ""
3127
+
3128
  #: features/functions.php:552
3129
  msgid "Very Weak"
3130
  msgstr "Bardzo łatwe"
3157
  msgid "Lost your password?"
3158
  msgstr "Zapomniałeś hasła?"
3159
 
3160
+ #: index.php:34
3161
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3162
+ msgstr "jest także aktywny. Musisz dezaktywować go przed aktywacją tej wersji wtyczki."
3163
+
3164
  #: modules/email-customizer/admin-email-customizer.php:54
3165
  #: modules/email-customizer/user-email-customizer.php:54
3166
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3202
  msgid "Show/Hide the Admin Bar on the Front-End"
3203
  msgstr "Pokaż/Ukryj pasek narzędziowy podczas przeglądania witryny"
3204
 
3205
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3206
  msgid "Admin Bar Settings"
3207
  msgstr "Ustawienia paska narzędziowego"
3208
 
3209
+ #: admin/admin-bar.php:57
3210
+ msgid "User-Role"
3211
+ msgstr "Rola użytkownika"
3212
+
3213
+ #: admin/admin-bar.php:58
3214
+ msgid "Visibility"
3215
+ msgstr "Widoczność"
3216
+
3217
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3218
  #: modules/multiple-forms/register-forms.php:230
3219
  msgid "Default"
3227
  msgid "Hide"
3228
  msgstr "Ukryj"
3229
 
3230
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3231
+ #: admin/register-version.php:95 features/functions.php:697
3232
+ #: modules/modules.php:127
3233
  msgid "Save Changes"
3234
  msgstr "Zapisz zmiany"
3235
 
3238
  msgstr "Ustawione zostało logowanie z wykorzystaniem adresu e-mail. To pole NIE pojawi się na Twojej stronie! ( możesz zmienić to ustawienie w zakładce \"%s\" )"
3239
 
3240
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3241
+ #: admin/general-settings.php:38
3242
  msgid "General Settings"
3243
  msgstr "Ustawienia ogólne"
3244
 
3245
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3246
  msgid "Very weak"
3247
  msgstr "Bardzo słabe"
3248
 
3249
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3250
+ #: features/functions.php:552
3251
  msgid "Weak"
3252
  msgstr "słabe"
3253
 
3254
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3255
+ #: features/functions.php:552
3256
  msgid "Medium"
3257
  msgstr "Średnie"
3258
 
3259
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3260
+ #: features/functions.php:552
3261
  msgid "Strong"
3262
  msgstr "Trudne"
3263
 
3266
  msgstr "Dodaj pole"
3267
 
3268
  #: admin/admin-functions.php:189
3269
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3270
  msgid "Save Settings"
3271
  msgstr "Zapisz ustawienia"
3272
 
3286
  msgid "The best way to add front-end registration, edit profile and login forms."
3287
  msgstr "Najlepszy sposób, aby dodać możliwość rejestracji użytkowników, edycję ich profili oraz formularze do logowania."
3288
 
3289
+ #: admin/basic-info.php:33
3290
+ msgid "For Modern User Interaction"
3291
+ msgstr "Dla Nowoczesnej Interakcji Użytkowników"
3292
+
3293
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3294
  msgid "Login"
3295
  msgstr "Login"
3296
 
3297
+ #: admin/basic-info.php:40
3298
+ msgid "Registration"
3299
+ msgstr "Rejestracja"
3300
+
3301
+ #: admin/basic-info.php:44
3302
+ msgid "Edit Profile"
3303
+ msgstr "Edytuj profil"
3304
+
3305
+ #: admin/basic-info.php:51
3306
+ msgid "Extra Features"
3307
+ msgstr "Dodatkowe Funkcjonalności"
3308
+
3309
+ #: admin/basic-info.php:52
3310
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3311
+ msgstr "Funkcjonalności, które dają Ci więcej kontroli nad Twoimi użytkownikami, zwiększone bezpieczeństwo oraz wsparcie w walce ze spamem."
3312
+
3313
+ #: admin/basic-info.php:53
3314
+ msgid "Enable extra features"
3315
+ msgstr "Aktywuj dodatkowe funkcjonalności"
3316
+
3317
+ #: admin/basic-info.php:57
3318
+ msgid "Recover Password"
3319
+ msgstr "Odzyskaj hasło"
3320
+
3321
+ #: admin/basic-info.php:61
3322
+ msgid "Admin Approval (*)"
3323
+ msgstr "Zatwierdzanie przez administratora (*)"
3324
+
3325
+ #: admin/basic-info.php:62
3326
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3327
+ msgstr "Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj powiadomienia na email oraz zezwalaj na logowanie do Twojej strony wielu użytkownikom w tym samym czasie."
3328
+
3329
+ #: admin/basic-info.php:65
3330
+ msgid "Email Confirmation"
3331
+ msgstr "Potwierdzenie e-mail"
3332
+
3333
+ #: admin/basic-info.php:66
3334
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3335
+ msgstr "Upewnij się, że użytkownicy rejestrują się z poprawnymi adresami email. W trakcie rejestracji użytkownicy otrzymają powiadomienie na email w celu potwierdzenia swojej rejestracji."
3336
+
3337
+ #: admin/basic-info.php:69
3338
+ msgid "Minimum Password Length and Strength Meter"
3339
+ msgstr "Minimalna długość hasła oraz wskaźnik skomplikowania hasła"
3340
+
3341
+ #: admin/basic-info.php:70
3342
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3343
+ msgstr "Wyeliminuj słabe hasła poprzez ustawienie minimalnej długości hasła oraz wymuszenie określonego poziomu skomplikowania hasła"
3344
+
3345
+ #: admin/basic-info.php:73
3346
+ msgid "Login with Email or Username"
3347
+ msgstr "Adres e-mail lub nazwa użytkownika"
3348
+
3349
+ #: admin/basic-info.php:74
3350
+ msgid "Allow users to log in with their email or username when accessing your site."
3351
+ msgstr "Wszyscy użytkownicy mogą logować się swoim adresem email lub nazwą użytkownika."
3352
+
3353
+ #: admin/basic-info.php:87
3354
+ msgid "Customize Your Forms The Way You Want (*)"
3355
+ msgstr "Konfiguruj Twoje formularze w dowolny sposób (*)"
3356
+
3357
+ #: admin/basic-info.php:88
3358
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3359
+ msgstr "Z wykorzystanie dodatkowych pól w profilu możesz stworzyć formularz rejestracji, którego potrzebuje Twój projekt."
3360
+
3361
+ #: admin/basic-info.php:90
3362
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3363
+ msgstr "Dodatkowe Pola w profilu są dostępne w wersjach Hobbyist oraz PRO"
3364
+
3365
+ #: admin/basic-info.php:92
3366
+ msgid "Get started with extra fields"
3367
+ msgstr "Zacznij korzystać z dodatkowych pól"
3368
+
3369
+ #: admin/basic-info.php:95
3370
+ msgid "Avatar Upload"
3371
+ msgstr "Dodaj awatar"
3372
+
3373
+ #: admin/basic-info.php:96
3374
+ msgid "Generic Uploads"
3375
+ msgstr "Ogólne ustawienia przesyłania plików"
3376
+
3377
+ #: admin/basic-info.php:97
3378
+ msgid "Agree To Terms Checkbox"
3379
+ msgstr "Pole zgody na warunki użytkowania strony"
3380
+
3381
+ #: admin/basic-info.php:98
3382
+ msgid "Datepicker"
3383
+ msgstr "Wybór daty"
3384
+
3385
+ #: admin/basic-info.php:101
3386
+ msgid "reCAPTCHA"
3387
+ msgstr "reCAPTCHA"
3388
+
3389
+ #: admin/basic-info.php:102
3390
+ msgid "Country Select"
3391
+ msgstr "Wybór kraju"
3392
+
3393
+ #: admin/basic-info.php:104
3394
+ msgid "Timezone Select"
3395
+ msgstr "Wybór strefy czasowej"
3396
+
3397
+ #: admin/basic-info.php:108
3398
+ msgid "Input / Hidden Input"
3399
+ msgstr "Pole tekstowe / Ukryte pole testowe"
3400
+
3401
+ #: admin/basic-info.php:110
3402
+ msgid "Checkbox"
3403
+ msgstr "Pole wyboru"
3404
+
3405
+ #: admin/basic-info.php:111
3406
+ msgid "Select"
3407
+ msgstr "Wybierz"
3408
+
3409
+ #: admin/basic-info.php:112
3410
+ msgid "Radio Buttons"
3411
+ msgstr "Przyciski opcji"
3412
+
3413
+ #: admin/basic-info.php:113
3414
+ msgid "Textarea"
3415
+ msgstr "Pole tekstowe"
3416
+
3417
+ #: admin/basic-info.php:125
3418
+ msgid "Powerful Modules (**)"
3419
+ msgstr "Moduły Powerful (**)"
3420
+
3421
+ #: admin/basic-info.php:126
3422
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3423
+ msgstr "Wszystko, czego potrzebujesz, aby zarządzać swoimi użytkownikami, jest jest najprawdopodobniej dostępne w wersji PRO. "
3424
+
3425
+ #: admin/basic-info.php:128
3426
+ msgid "Enable your modules"
3427
+ msgstr "Przejdź do wersji PRO"
3428
+
3429
+ #: admin/basic-info.php:131
3430
+ msgid "Find out more about PRO Modules"
3431
+ msgstr "Dowiedz się więcej o wersji PRO"
3432
+
3433
+ #: admin/basic-info.php:136 modules/modules.php:89
3434
  #: modules/user-listing/userlisting.php:11
3435
  #: modules/user-listing/userlisting.php:12
3436
  #: modules/user-listing/userlisting.php:17
3438
  msgid "User Listing"
3439
  msgstr "Lista użytkowników"
3440
 
3441
+ #: admin/basic-info.php:138
3442
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3443
+ msgstr "Łatwe do edycji szablony list użytkowników oraz tworzenie stron dla każdego z użytkowników. Oparte na krótkich kodach, które oferują wiele możliwości konfiguracji."
3444
+
3445
+ #: admin/basic-info.php:144
3446
+ msgid "Email Customizer"
3447
+ msgstr "Konfiguracja Email"
3448
+
3449
+ #: admin/basic-info.php:145
3450
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3451
+ msgstr "Personalizuj wszystkie wiadomości email wysyłane do użytkowników lub administratorów. Podczas rejstracji, potwierdzenia adresu email, potwierdzenia dodania nowego konta dla administratora."
3452
+
3453
+ #: admin/basic-info.php:148
3454
  #: modules/custom-redirects/custom_redirects_admin.php:32
3455
  #: modules/custom-redirects/custom_redirects_admin.php:33
3456
+ #: modules/modules.php:110
3457
  msgid "Custom Redirects"
3458
  msgstr "Własne przekierowania"
3459
 
3460
+ #: admin/basic-info.php:149
3461
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3462
+ msgstr "Zablokuj swoim użytkownikom dostępu do panelu Wordpress dashboard, przekieruj ich do strony głównej po zalogowaniu lub rejestracji, z wykorzystaniem zaledwie kilku kliknięć."
3463
+
3464
+ #: admin/basic-info.php:154 modules/modules.php:75
3465
+ msgid "Multiple Registration Forms"
3466
+ msgstr "Różnorodne Formularze Rejestracji"
3467
+
3468
+ #: admin/basic-info.php:155
3469
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3470
+ msgstr "Zdefiniuj różne formularze rejestracji z odmiennymi polami dla użytkowników o określonych profilach. Zbieraj inne informacje od wielu różnych typów użytkowników."
3471
+
3472
+ #: admin/basic-info.php:158 modules/modules.php:82
3473
+ msgid "Multiple Edit-profile Forms"
3474
+ msgstr "Różnorodne Formularze Edycji Profilu"
3475
+
3476
+ #: admin/basic-info.php:159
3477
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3478
+ msgstr "Zezwól użytkownikom o różnych profilach na edycję tylko określonych składników profilu. Zdefiniuj odmienne formularze edycji profilu w zależności od profilu użytkownika"
3479
+
3480
  #: admin/basic-info.php:187
3481
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3482
  msgstr " * dostępne tylko %1$sw wersjach Hobbyist oraz Pro%2$s."
3485
  msgid "** only available in the %1$sPro version%2$s."
3486
  msgstr "** dostępne tylko w %1$s wersji Pro%2$s."
3487
 
3488
+ #: admin/general-settings.php:42
3489
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3490
+ msgstr "Załaduj wewnętrzne pliki CSS (szablony styli) od Profile Builder"
3491
+
3492
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3493
+ #: admin/general-settings.php:107
3494
  #: modules/multiple-forms/edit-profile-forms.php:206
3495
  #: modules/multiple-forms/register-forms.php:229
3496
  #: modules/multiple-forms/register-forms.php:230
3502
  msgid "You can find the default file here: %1$s"
3503
  msgstr "Domyślny plik znajdziesz tutaj: %1$s"
3504
 
3505
+ #: admin/general-settings.php:54
3506
+ msgid "\"Email Confirmation\" Activated:"
3507
+ msgstr "\"Potwierdzenie Email\" Aktywne:"
3508
+
3509
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3510
  #: modules/multiple-forms/edit-profile-forms.php:206
3511
  #: modules/multiple-forms/register-forms.php:229
3512
  #: modules/multiple-forms/register-forms.php:230
3517
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3518
  msgstr "Listę niepotwierdzonych adresów email mozesz znaleźć w %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Email%2$s."
3519
 
3520
+ #: admin/general-settings.php:72
3521
+ msgid "\"Email Confirmation\" Landing Page:"
3522
+ msgstr "Strona otwierana podczas Potwierdzenia adresu Email:"
3523
+
3524
+ #: admin/general-settings.php:77
3525
+ msgid "Existing Pages"
3526
+ msgstr "Istniejące strony"
3527
+
3528
+ #: admin/general-settings.php:92
3529
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3530
+ msgstr "Zdefiniuj stronę, na którą będą przekierowywani użytkownicy potwierdzający rejestrację swojego konta. Ta strona może być różna od strony rejestracji oraz może być zmieniona w dowolnym momencie. Jeśli żadna nie zostanie wybrana, proste potwierdzenie rejestracji zostanie wyświetlone użytkownikowi."
3531
+
3532
+ #: admin/general-settings.php:103
3533
+ msgid "\"Admin Approval\" Activated:"
3534
+ msgstr "\"Potwierdzenie Administratora\" aktywowane:"
3535
+
3536
  #: admin/general-settings.php:111
3537
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3538
  msgstr "Możesz znaleźć listę użytkowników przechodząć do %1$sUżytkownicy > Wszyscy Użytkownicy > Potwierdzenie Administratora%2$s."
3539
 
3540
+ #: admin/general-settings.php:149
3541
+ msgid "\"Admin Approval\" Feature:"
3542
+ msgstr "Funkcjonalność \"Potwierdzenia administratora\":"
3543
+
3544
  #: admin/general-settings.php:152
3545
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3546
  msgstr "Ty decydujesz, kto jest użytkownikiem na Twojej stronie. Otrzymuj potwierdzenia poprzez email lub akceptuj wielu użytkowników na raz poprzez panel Wordpress. Odblokuj \"Potwierdzenie Administratora\" poprzez aktualizację do %1$s wersji Hobbyist lub PRO %2$s."
3547
 
3548
+ #: admin/general-settings.php:159
3549
+ msgid "Allow Users to Log in With:"
3550
+ msgstr "Zezwalaj użytkownikom na logowanie za pomocą:"
3551
+
3552
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3553
  #: features/admin-approval/class-admin-approval.php:166
3554
  #: features/email-confirmation/class-email-confirmation.php:167
3555
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3562
  msgid "Username"
3563
  msgstr "Username"
3564
 
3565
+ #: admin/general-settings.php:165 front-end/login.php:215
3566
+ #: modules/email-customizer/email-customizer.php:29
3567
  #: modules/user-listing/userlisting.php:736
3568
  #: modules/user-listing/userlisting.php:2153
3569
  msgid "Email"
3570
  msgstr "Email"
3571
 
3572
+ #: admin/general-settings.php:177
3573
+ msgid "Minimum Password Length:"
3574
+ msgstr "Minimalna długość hasła"
3575
+
3576
+ #: admin/general-settings.php:182
3577
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3578
+ msgstr "Wprowadź minimalną liczbę znaków jakie powinno posiadać hasło. Zostaw pole puste żeby nie ustalać limitów."
3579
+
3580
+ #: admin/general-settings.php:189
3581
+ msgid "Minimum Password Strength:"
3582
+ msgstr "Minimalna siła hasła:"
3583
+
3584
+ #: admin/general-settings.php:193
3585
+ msgid "Disabled"
3586
+ msgstr "Wyłączone"
3587
+
3588
  #: admin/manage-fields.php:12
3589
  msgid "Manage Fields"
3590
  msgstr "Zarządzaj polami"
3663
  msgid "Date-format"
3664
  msgstr "Format daty"
3665
 
 
 
 
 
3666
  #: admin/manage-fields.php:126
3667
  msgid "Terms of Agreement"
3668
  msgstr "Warunki umowy"
3826
  msgid "Type your password again. "
3827
  msgstr "Wpisz swoje hasło ponownie"
3828
 
3829
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3830
  msgid "You must select a field\n"
3831
  msgstr "Musisz wybrać pole\n"
3832
 
3850
  msgid "You must enter a value for the row number\n"
3851
  msgstr "Wprowadź numer wiersza\n"
3852
 
3853
+ #: admin/manage-fields.php:1033
3854
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3855
  msgstr "Wprowadzony format daty nie jest poprawny\n"
3856
 
3857
+ #: admin/manage-fields.php:1036
3858
  msgid "You must enter a value for the date-format\n"
3859
  msgstr "Musisz wprowadzić format daty\n"
3860
 
3861
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3862
+ #: admin/manage-fields.php:1083
3863
  msgid "That meta-name is already in use\n"
3864
  msgstr "Parametr meta-name jest już wykorzystywany\n"
3865
 
3866
+ #: admin/manage-fields.php:1114
3867
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3868
  msgstr "Następujące opcje nie są zgodne z ustawieniami z listy: %s\n"
3869
 
3870
+ #: admin/manage-fields.php:1118
3871
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3872
  msgstr "Następująca opcja nie jest zgodna z ustawieniami z listy: %s \n"
3873
 
3874
+ #: admin/manage-fields.php:1141
3875
  msgid "That field is already added in this form\n"
3876
  msgstr "To pole zostało już dodane do formularza\n"
3877
 
3878
+ #: admin/manage-fields.php:1190
3879
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3880
  msgstr "<pre>Nazwa</pre><pre>Typ</pre><pre>Parametr Meta Name</pre><pre class=\"wppb-mb-head-required\">Wymagane</pre>"
3881
 
3882
+ #: admin/manage-fields.php:1190
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3884
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3885
  #: features/admin-approval/class-admin-approval.php:108
3886
  #: features/functions.php:718 features/functions.php:725
3887
  #: modules/custom-redirects/custom_redirects_admin.php:179
3892
  msgid "Edit"
3893
  msgstr "Edytuj"
3894
 
3895
+ #: admin/manage-fields.php:1190
3896
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3897
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3898
  #: features/admin-approval/class-admin-approval.php:113
3899
  #: features/admin-approval/class-admin-approval.php:224
3900
  #: features/email-confirmation/class-email-confirmation.php:120
3907
  msgid "Delete"
3908
  msgstr "Usuń"
3909
 
3910
+ #: admin/manage-fields.php:1205
3911
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3912
+ msgstr "Umieść następujące krótkie kody na stronach na których chcesz wyświetlić formularze:"
3913
+
3914
  #: admin/register-version.php:14
3915
  msgid "Register Your Version"
3916
  msgstr "Zarejestruj swoją kopię"
3919
  msgid "Register Version"
3920
  msgstr "Zarejestruj kopię"
3921
 
3922
+ #: admin/register-version.php:70
3923
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3924
+ msgstr "Jeśli zarejestrujesz swoją kopię Profile Builder, będziesz otrzymywał infromację o aktualizacjach, poprawkach oraz wsparcie techniczne."
3925
+
3926
+ #: admin/register-version.php:72
3927
+ msgid " Serial Number:"
3928
+ msgstr "Numer Seryjny:"
3929
+
3930
  #: admin/register-version.php:77
3931
  msgid "The serial number was successfully validated!"
3932
  msgstr "Numer seryjny został zweryfikowany poprawnie!"
3943
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3944
  msgstr "Numer seryjny został zweryfikowany, nie otrzymano odpowiedzi z serwera! Najprawdopodobniej serwer jest niedostępny. Proszę spróbować później!"
3945
 
3946
+ #: admin/register-version.php:87
3947
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3948
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3949
+
3950
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3951
  msgid "Content"
3952
  msgstr "Treść"
3953
 
3954
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3955
+ msgid "Edit this item"
3956
+ msgstr "Edytuj ten element"
3957
+
3958
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3959
+ msgid "Delete this item"
3960
+ msgstr "Usuń ten element"
3961
+
3962
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3963
+ msgid "Please enter a value for the required field "
3964
+ msgstr "To pole jest wymagane"
3965
+
3966
  #: front-end/extra-fields/upload/upload.php:122
3967
  msgid "Select File"
3968
  msgstr "Wybierz plik"
3969
 
3970
+ #: assets/lib/wck-api/fields/upload.php:43
3971
  #: front-end/extra-fields/upload/upload.php:112
3972
  msgid "Remove"
3973
  msgstr "Usuń"
3974
 
3975
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3976
+ msgid "You can add the information for the %s after you add a entry"
3977
+ msgstr "Możesz dodać informację do %s po dodaniu wpisu"
3978
+
3979
+ #: assets/lib/wck-api/fields/upload.php:75
3980
  #: front-end/extra-fields/upload/upload.php:128
3981
  msgid "Upload "
3982
  msgstr "Prześlij"
3983
 
3984
+ #: features/class-list-table.php:184
3985
+ msgid "No items found."
3986
+ msgstr "Nie znaleziono elementów."
3987
+
3988
  #: features/class-list-table.php:308
3989
  msgid "Bulk Actions"
3990
  msgstr "Akcje masowe"
3993
  msgid "Apply"
3994
  msgstr "Zatwierdź"
3995
 
3996
+ #: features/class-list-table.php:402
3997
+ msgid "Show all dates"
3998
+ msgstr "Pokaż wszystkie daty"
3999
+
4000
  #: features/class-list-table.php:415
4001
  msgid "%1$s %2$d"
4002
  msgstr "%1$s %2$d"
4013
  msgid "%s pending"
4014
  msgstr "%s oczekuje"
4015
 
4016
+ #: features/class-list-table.php:566
4017
+ msgid "%1$s of %2$s"
4018
+ msgstr "%1$s z %2$s"
4019
+
4020
  #: features/class-list-table.php:713
4021
  msgid "Select All"
4022
  msgstr "Zaznacz wszystko"
4026
  msgstr "Siłomierz"
4027
 
4028
  #: features/admin-approval/admin-approval.php:14
4029
+ #: features/admin-approval/class-admin-approval.php:453
4030
  msgid "Admin Approval"
4031
  msgstr "Potwierdzenie Administratora"
4032
 
4033
+ #: features/admin-approval/admin-approval.php:28
4034
+ #: features/email-confirmation/email-confirmation.php:58
4035
+ msgid "Do you want to"
4036
+ msgstr "Czy chcesz"
4037
+
4038
  #: features/admin-approval/admin-approval.php:51
4039
  msgid "Your session has expired! Please refresh the page and try again"
4040
  msgstr "Twoja sesja wygasła! Proszę odśwież stronę oraz spróbuj ponownie"
4159
  msgid "User-status"
4160
  msgstr "Status użytkownika"
4161
 
4162
+ #: features/admin-approval/class-admin-approval.php:252
4163
+ msgid "Do you want to bulk approve the selected users?"
4164
+ msgstr "Czy chcesz zatwierdzić konta dla wybranych użytkowników?"
4165
+
4166
+ #: features/admin-approval/class-admin-approval.php:260
4167
+ msgid "Do you want to bulk unapprove the selected users?"
4168
+ msgstr "Czy chcesz zawiesić konta dla wybranych użytkowników? "
4169
+
4170
+ #: features/admin-approval/class-admin-approval.php:266
4171
+ msgid "Do you want to bulk delete the selected users?"
4172
+ msgstr "Czy chcesz usunąć konta wybranych użytkowników? "
4173
+
4174
+ #: features/admin-approval/class-admin-approval.php:274
4175
  #: features/email-confirmation/class-email-confirmation.php:278
4176
  msgid "Sorry, but you don't have permission to do that!"
4177
  msgstr "Przepraszam, ale nie masz uprawnień do wykonania tej operacji!"
4184
  msgid "Unapproved"
4185
  msgstr "Odrzucone"
4186
 
4187
+ #: features/admin-approval/class-admin-approval.php:456
4188
+ #: features/email-confirmation/class-email-confirmation.php:454
4189
+ msgid "All Users"
4190
+ msgstr "Wszyscy użytkownicy"
4191
+
4192
  #: features/email-confirmation/class-email-confirmation.php:120
4193
  msgid "delete this user from the _signups table?"
4194
  msgstr "Usunąć użytkowników z tabeli _signups?"
4227
  msgid "The selected users have had their activation emails resent"
4228
  msgstr "Ponownie wysłano aktywacyjne wiadomości email do wybranych użytkowników"
4229
 
4230
+ #: features/email-confirmation/class-email-confirmation.php:451
4231
+ #: features/email-confirmation/email-confirmation.php:47
4232
+ msgid "Users with Unconfirmed Email Address"
4233
+ msgstr "Użytkownicy z niepotwierdzonymi adresami Email"
4234
+
4235
  #: features/email-confirmation/email-confirmation.php:107
4236
  msgid "There was an error performing that action!"
4237
  msgstr "Wystąpił błąd podczas wykonywania tej akcji!"
4295
  msgid "Profile Builder Login Widget"
4296
  msgstr "Widżet Logowania Profile Bulder"
4297
 
4298
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4299
  msgid "Register"
4300
  msgstr "Zarejestruj się"
4301
 
4302
+ #: features/login-widget/login-widget.php:63
4303
+ msgid "Title:"
4304
+ msgstr "Nazwa:"
4305
+
4306
+ #: features/login-widget/login-widget.php:68
4307
+ msgid "After login redirect URL (optional):"
4308
+ msgstr "Przekieruj pod następujący adres URL po zalogowaniu (opcjonalne):"
4309
+
4310
+ #: features/login-widget/login-widget.php:73
4311
+ msgid "Register page URL (optional):"
4312
+ msgstr "Adres URL Rejestracji (opcjonalne):"
4313
+
4314
+ #: features/login-widget/login-widget.php:78
4315
+ msgid "Password Recovery page URL (optional):"
4316
+ msgstr "Adres URL Odzyskiwania Hasła (opcjonalny):"
4317
+
4318
  #: features/upgrades/upgrades-functions.php:91
4319
  #: features/upgrades/upgrades-functions.php:134
4320
  msgid "The usernames cannot be changed."
4356
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4357
  msgstr "Niedługo zostaniesz przekierowany. Jeśli oglądasz tę stronę przez więcej niż %1$d sekund, proszę kliknij %2$s.%3$s"
4358
 
4359
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4360
  msgid "The account %1s has been successfully created!"
4361
  msgstr "Konto %1s zostało pomyślnie założone!"
4362
 
4363
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4364
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4365
  msgstr "Zanim będziesz mógł się zalogować na swoje kontu %1s, musisz potwierdzić swój adres email. Proszę sprawdź swoją skrzynkę oraz kliknij link aktywacyjny. "
4366
 
4367
+ #: front-end/class-formbuilder.php:308
4368
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4369
  msgstr "Zanim będziesz mógł się zalogować na swoje kontu %1s, administrator musi zatwierdzić Twoje konto. Otrzymasz powiadomienie na Twój adres email."
4370
 
4371
+ #: front-end/class-formbuilder.php:331
4372
  msgid "Your profile has been successfully updated!"
4373
  msgstr "Twój profil został zaktualizowany!"
4374
 
4375
+ #: front-end/class-formbuilder.php:342
4376
  msgid "There was an error in the submitted form"
4377
  msgstr "Pojawiły się błędy w przesłanym formularzu"
4378
 
4379
+ #: front-end/class-formbuilder.php:399
4380
  msgid "Add User"
4381
  msgstr "Dodaj użytkownika"
4382
 
4383
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4384
  msgid "Update"
4385
  msgstr "Aktualizuj"
4386
 
4387
+ #: front-end/class-formbuilder.php:465
4388
  msgid "Send these credentials via email."
4389
  msgstr "Wyślij te dane na adres e-mail."
4390
 
4598
  msgid "To use reCAPTCHA you must get an API public key from:"
4599
  msgstr "Aby korzystać z reCAPTCHA musisz pobrać klucz publiczny API z:"
4600
 
4601
+ #: modules/modules.php:11 modules/modules.php:58
4602
  msgid "Modules"
4603
  msgstr "Moduły"
4604
 
4605
+ #: modules/modules.php:59
4606
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4607
+ msgstr "Tutaj może aktywować / dezaktywować dostępne moduły dodatku Profile Builder."
4608
+
4609
+ #: modules/modules.php:69
4610
+ msgid "Name/Description"
4611
+ msgstr "Nazwa/Opis"
4612
+
4613
+ #: modules/modules.php:70
4614
+ msgid "Status"
4615
+ msgstr "Status"
4616
+
4617
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4618
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4619
+ #: modules/modules.php:119
4620
+ msgid "Active"
4621
+ msgstr "Aktywny"
4622
+
4623
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4624
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4625
+ #: modules/modules.php:120
4626
+ msgid "Inactive"
4627
+ msgstr "Nieaktywny"
4628
+
4629
  #: modules/email-customizer/admin-email-customizer.php:11
4630
  #: modules/email-customizer/admin-email-customizer.php:12
4631
+ #: modules/modules.php:96
4632
  msgid "Admin Email Customizer"
4633
  msgstr "Dostosowanie Wiadomości Email Administratora"
4634
 
4635
  #: modules/email-customizer/user-email-customizer.php:11
4636
  #: modules/email-customizer/user-email-customizer.php:12
4637
+ #: modules/modules.php:103
4638
  msgid "User Email Customizer"
4639
  msgstr "Dostosowanie Wiadomości Email Użytkownika"
4640
 
4641
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4642
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4643
  msgid "Save"
4644
  msgstr "Zapisz"
4971
  msgid "<pre>Title (Type)</pre>"
4972
  msgstr "<pre>Nazwa (Typ)</pre>"
4973
 
4974
+ #: modules/multiple-forms/multiple-forms.php:222
4975
+ msgid "You need to specify the title of the form before creating it"
4976
+ msgstr "Musisz określić nazwę formularza przez jego stworzeniem"
4977
+
4978
  #: modules/multiple-forms/register-forms.php:11
4979
  #: modules/multiple-forms/register-forms.php:12
4980
  msgid "Registration Form"
translation/profile-builder-pt_BR.mo CHANGED
Binary file
translation/profile-builder-pt_BR.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr ""
1077
  msgid "Plugin has been deactivated."
1078
  msgstr ""
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "Voce precisa entrar com a chave do site\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Você precisa entrar a chave secreta\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Add-Ons"
2593
 
@@ -2772,6 +2951,22 @@ msgstr "<strong>ERRO</strong>: A senha deve ter o tamanho mínimo de %s caracter
2772
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2773
  msgstr "<strong>ERRO</strong>: A senha deve ter uma força mínima de %s"
2774
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2775
  #: admin/manage-fields.php:122
2776
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2777
  msgstr "Especifique a(s) extensão(ões) que você quer limitar para fazer upload<br/>Exemplo: .ext1,.ext2,.ext3<br/>Se não especificado, o padrão é: .jpg,.jpeg,.gif,.png (.*)"
@@ -2796,7 +2991,7 @@ msgstr "Ordem das Funções de Usuário "
2796
  msgid "Save the user role order from the user roles checkboxes"
2797
  msgstr "Salvar a ordem das funções das caixas de seleção"
2798
 
2799
- #: admin/manage-fields.php:1122
2800
  msgid "Please select at least one user role\n"
2801
  msgstr "Favor selecionar ao menos uma função de usuário\n"
2802
 
@@ -2816,6 +3011,10 @@ msgstr "Seu serial está para expirar, favor %1$s Renovar Sua Licença%2$s."
2816
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2817
  msgstr "Seu serial expirou, favor %1$s Renovar Sua Licença%2$s."
2818
 
 
 
 
 
2819
  #: features/email-confirmation/class-email-confirmation.php:91
2820
  msgid "show"
2821
  msgstr "mostrar"
@@ -2824,6 +3023,10 @@ msgstr "mostrar"
2824
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2825
  msgstr "Para permitir que usuários registrem para seu website via Profile Builder, você precisa antes habilitar o registro de usuário. Vá para %1$sConfigurações de Rede%2$s, e sob Configurações de Registro certifique-se de ticar “Contas de usuário podem ser registradas”. %3$sDispensar%4$s"
2826
 
 
 
 
 
2827
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2828
  msgid "The password must have the minimum length of %s characters"
2829
  msgstr "A senha deve ter um tamanho mínimo de %s caracteres"
@@ -2886,11 +3089,15 @@ msgstr "Usuário não encontrado"
2886
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2887
  msgstr "Etiquetas válidas {{reply_to}} e {{site_name}}"
2888
 
 
 
 
 
2889
  #: admin/manage-fields.php:127
2890
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2891
  msgstr "Insira uma lista de valores separada por vírgula<br/>Ela pode ser qualquer uma, pois é ocultada do usuário, mas não deve conter caracteres especiais ou apóstrofes"
2892
 
2893
- #: admin/manage-fields.php:1049
2894
  msgid "The meta-name cannot be empty\n"
2895
  msgstr "O meta-name não pode ser vazio \n"
2896
 
@@ -2902,11 +3109,20 @@ msgstr "Agora que você adquiriu uma cópia do %s, você pode aproveitar para re
2902
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2903
  msgstr "<p>Seu serial do <strong>Profile Builder</strong> é inválido or inexistente. <br/>Favor %1$sregistrar sua cópia%2$s para ter acesso a atualizações automáticas e suporte. Precisa de uma licença? %3$sAdquira uma agora%4$s</p>"
2904
 
2905
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2906
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2907
  msgid "...Choose"
2908
  msgstr "...Escolher"
2909
 
 
 
 
 
 
 
2910
  #: features/functions.php:552
2911
  msgid "Very Weak"
2912
  msgstr "Muito Fraco"
@@ -2939,6 +3155,10 @@ msgstr "e-mail"
2939
  msgid "Lost your password?"
2940
  msgstr "Perdeu sua senha?"
2941
 
 
 
 
 
2942
  #: modules/email-customizer/admin-email-customizer.php:54
2943
  #: modules/email-customizer/user-email-customizer.php:54
2944
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2980,10 +3200,18 @@ msgstr "Selecione o numero de usuário para ser mostrado em cada parte paginada
2980
  msgid "Show/Hide the Admin Bar on the Front-End"
2981
  msgstr "Mostrar/Ocultar a Barra de Admin no site"
2982
 
2983
- #: admin/admin-bar.php:10
2984
  msgid "Admin Bar Settings"
2985
  msgstr "Configurações da Barra de Admin"
2986
 
 
 
 
 
 
 
 
 
2987
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2988
  #: modules/multiple-forms/register-forms.php:230
2989
  msgid "Default"
@@ -2997,7 +3225,9 @@ msgstr "Mostrar"
2997
  msgid "Hide"
2998
  msgstr "Ocultar"
2999
 
3000
- #: features/functions.php:697
 
 
3001
  msgid "Save Changes"
3002
  msgstr "Salvar Alterações"
3003
 
@@ -3006,22 +3236,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3006
  msgstr "Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba \"%s\")"
3007
 
3008
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3009
  msgid "General Settings"
3010
  msgstr "Configurações Gerais"
3011
 
3012
- #: admin/admin-functions.php:137
3013
  msgid "Very weak"
3014
  msgstr "Muito fraco"
3015
 
3016
- #: admin/admin-functions.php:137 features/functions.php:552
 
3017
  msgid "Weak"
3018
  msgstr "Fraco"
3019
 
3020
- #: admin/admin-functions.php:137 features/functions.php:552
 
3021
  msgid "Medium"
3022
  msgstr "Médio"
3023
 
3024
- #: admin/admin-functions.php:137 features/functions.php:552
 
3025
  msgid "Strong"
3026
  msgstr "Forte"
3027
 
@@ -3030,6 +3264,7 @@ msgid "Add Field"
3030
  msgstr "Adicionar Campo"
3031
 
3032
  #: admin/admin-functions.php:189
 
3033
  msgid "Save Settings"
3034
  msgstr "Salvar Configurações"
3035
 
@@ -3049,10 +3284,151 @@ msgstr "<strong>Profile Builder </strong>"
3049
  msgid "The best way to add front-end registration, edit profile and login forms."
3050
  msgstr "A melhor forma de criar registros no front-end, editar perfis e formulários de login."
3051
 
3052
- #: features/login-widget/login-widget.php:59
 
 
 
 
3053
  msgid "Login"
3054
  msgstr "Login"
3055
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3056
  #: modules/user-listing/userlisting.php:11
3057
  #: modules/user-listing/userlisting.php:12
3058
  #: modules/user-listing/userlisting.php:17
@@ -3060,11 +3436,45 @@ msgstr "Login"
3060
  msgid "User Listing"
3061
  msgstr "Listagem de usuários"
3062
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3063
  #: modules/custom-redirects/custom_redirects_admin.php:32
3064
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3065
  msgid "Custom Redirects"
3066
  msgstr "Redirecionamentos customizados"
3067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3068
  #: admin/basic-info.php:187
3069
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3070
  msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s."
@@ -3073,6 +3483,12 @@ msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s."
3073
  msgid "** only available in the %1$sPro version%2$s."
3074
  msgstr "** disponível apenas na versão %1s Pro %2$s."
3075
 
 
 
 
 
 
 
3076
  #: modules/multiple-forms/edit-profile-forms.php:206
3077
  #: modules/multiple-forms/register-forms.php:229
3078
  #: modules/multiple-forms/register-forms.php:230
@@ -3084,6 +3500,11 @@ msgstr "Sim"
3084
  msgid "You can find the default file here: %1$s"
3085
  msgstr "Você pode encontrar o arquivo padrão aqui: %1$s"
3086
 
 
 
 
 
 
3087
  #: modules/multiple-forms/edit-profile-forms.php:206
3088
  #: modules/multiple-forms/register-forms.php:229
3089
  #: modules/multiple-forms/register-forms.php:230
@@ -3094,15 +3515,39 @@ msgstr "Não"
3094
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3095
  msgstr "Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s."
3096
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3097
  #: admin/general-settings.php:111
3098
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3099
  msgstr "Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s."
3100
 
 
 
 
 
3101
  #: admin/general-settings.php:152
3102
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3103
  msgstr "Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s."
3104
 
3105
- #: admin/manage-fields.php:198
 
 
 
 
3106
  #: features/admin-approval/class-admin-approval.php:166
3107
  #: features/email-confirmation/class-email-confirmation.php:167
3108
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3115,12 +3560,29 @@ msgstr "Você decide quem é um usuário em seu website. Seja notificado via ema
3115
  msgid "Username"
3116
  msgstr "Usuário"
3117
 
3118
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3119
  #: modules/user-listing/userlisting.php:736
3120
  #: modules/user-listing/userlisting.php:2153
3121
  msgid "Email"
3122
  msgstr "Email"
3123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3124
  #: admin/manage-fields.php:12
3125
  msgid "Manage Fields"
3126
  msgstr "Gerenciar campos"
@@ -3199,10 +3661,6 @@ msgstr "Digite um valor (entre 20 e 200) para o tamanho do 'Avatar'<br/>Se não
3199
  msgid "Date-format"
3200
  msgstr "Formato da data"
3201
 
3202
- #: admin/manage-fields.php:125
3203
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3204
- msgstr "Especifique o formato da data usando o Selecionador de Datas<br/>Opções válidas: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Se não especificado, o padrão é mm/dd/yy"
3205
-
3206
  #: admin/manage-fields.php:126
3207
  msgid "Terms of Agreement"
3208
  msgstr "Termos de Acordo"
@@ -3366,7 +3824,7 @@ msgstr "Repita o Password"
3366
  msgid "Type your password again. "
3367
  msgstr "Digite seu password novamente."
3368
 
3369
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3370
  msgid "You must select a field\n"
3371
  msgstr "Você deve selecionar um campo\n"
3372
 
@@ -3390,36 +3848,38 @@ msgstr "O número de linha digitado não é numérico\n"
3390
  msgid "You must enter a value for the row number\n"
3391
  msgstr "Você deve digitar um valor para o número de linha\n"
3392
 
3393
- #: admin/manage-fields.php:1030
3394
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3395
  msgstr "O valor digitado para o Selecionador de Datas não está em um formato válido\n"
3396
 
3397
- #: admin/manage-fields.php:1033
3398
  msgid "You must enter a value for the date-format\n"
3399
  msgstr "Você deve digitar um valor para o formato de data\n"
3400
 
3401
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3402
- #: admin/manage-fields.php:1080
3403
  msgid "That meta-name is already in use\n"
3404
  msgstr "O meta-name já está sendo usado\n"
3405
 
3406
- #: admin/manage-fields.php:1111
3407
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3408
  msgstr "A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s\n"
3409
 
3410
- #: admin/manage-fields.php:1115
3411
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3412
  msgstr "A seguinte opção não coincide com as da lista de opções: %s\n"
3413
 
3414
- #: admin/manage-fields.php:1138
3415
  msgid "That field is already added in this form\n"
3416
  msgstr "Esse campo já foi adicionado a esse formulário\n"
3417
 
3418
- #: admin/manage-fields.php:1187
3419
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3420
  msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Obrigatório</pre>"
3421
 
3422
- #: admin/manage-fields.php:1187
 
 
3423
  #: features/admin-approval/class-admin-approval.php:108
3424
  #: features/functions.php:718 features/functions.php:725
3425
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3430,7 +3890,9 @@ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-m
3430
  msgid "Edit"
3431
  msgstr "Editar"
3432
 
3433
- #: admin/manage-fields.php:1187
 
 
3434
  #: features/admin-approval/class-admin-approval.php:113
3435
  #: features/admin-approval/class-admin-approval.php:224
3436
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3443,6 +3905,10 @@ msgstr "Editar"
3443
  msgid "Delete"
3444
  msgstr "Deletar"
3445
 
 
 
 
 
3446
  #: admin/register-version.php:14
3447
  msgid "Register Your Version"
3448
  msgstr "Registre sua versão"
@@ -3451,6 +3917,14 @@ msgstr "Registre sua versão"
3451
  msgid "Register Version"
3452
  msgstr "Registre a versão"
3453
 
 
 
 
 
 
 
 
 
3454
  #: admin/register-version.php:77
3455
  msgid "The serial number was successfully validated!"
3456
  msgstr "O número de série foi validado com sucesso!"
@@ -3467,22 +3941,48 @@ msgstr "O número de série não pôde ser validado porque encontra-se expirado!
3467
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3468
  msgstr "O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!"
3469
 
3470
- #: features/functions.php:725
 
 
 
 
3471
  msgid "Content"
3472
  msgstr "Conteúdo"
3473
 
 
 
 
 
 
 
 
 
 
 
 
 
3474
  #: front-end/extra-fields/upload/upload.php:122
3475
  msgid "Select File"
3476
  msgstr "Selecionar Arquivo"
3477
 
 
3478
  #: front-end/extra-fields/upload/upload.php:112
3479
  msgid "Remove"
3480
  msgstr "Remover"
3481
 
 
 
 
 
 
3482
  #: front-end/extra-fields/upload/upload.php:128
3483
  msgid "Upload "
3484
  msgstr "Upload "
3485
 
 
 
 
 
3486
  #: features/class-list-table.php:308
3487
  msgid "Bulk Actions"
3488
  msgstr "Ações em massa"
@@ -3491,6 +3991,10 @@ msgstr "Ações em massa"
3491
  msgid "Apply"
3492
  msgstr "Aplicar"
3493
 
 
 
 
 
3494
  #: features/class-list-table.php:415
3495
  msgid "%1$s %2$d"
3496
  msgstr "%1$s %2$d"
@@ -3507,6 +4011,10 @@ msgstr "Visualizar Resumo"
3507
  msgid "%s pending"
3508
  msgstr "%s pendente"
3509
 
 
 
 
 
3510
  #: features/class-list-table.php:713
3511
  msgid "Select All"
3512
  msgstr "Selecionar Tudo"
@@ -3516,9 +4024,15 @@ msgid "Strength indicator"
3516
  msgstr "Indicador de força"
3517
 
3518
  #: features/admin-approval/admin-approval.php:14
 
3519
  msgid "Admin Approval"
3520
  msgstr "Aprovação do Admin"
3521
 
 
 
 
 
 
3522
  #: features/admin-approval/admin-approval.php:51
3523
  msgid "Your session has expired! Please refresh the page and try again"
3524
  msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente"
@@ -3643,6 +4157,19 @@ msgstr "Registrado"
3643
  msgid "User-status"
3644
  msgstr "Status do usuário"
3645
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3646
  #: features/email-confirmation/class-email-confirmation.php:278
3647
  msgid "Sorry, but you don't have permission to do that!"
3648
  msgstr "Desculpe, mas você não tem permissão para fazer isso!"
@@ -3655,6 +4182,11 @@ msgstr "Aprovado"
3655
  msgid "Unapproved"
3656
  msgstr "Reprovado"
3657
 
 
 
 
 
 
3658
  #: features/email-confirmation/class-email-confirmation.php:120
3659
  msgid "delete this user from the _signups table?"
3660
  msgstr "deletar esse usuário da tabela _signups?"
@@ -3693,6 +4225,11 @@ msgstr "Os usuários selecionados foram ativados"
3693
  msgid "The selected users have had their activation emails resent"
3694
  msgstr "Os usuários selecionados tiveram seus emails de ativação reenviados"
3695
 
 
 
 
 
 
3696
  #: features/email-confirmation/email-confirmation.php:107
3697
  msgid "There was an error performing that action!"
3698
  msgstr "Houve um erro executando essa ação!"
@@ -3756,10 +4293,26 @@ msgstr "Esse widget de login permite adicionar um formulário de login na barra
3756
  msgid "Profile Builder Login Widget"
3757
  msgstr "Widget de Login Profile Builder"
3758
 
3759
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3760
  msgid "Register"
3761
  msgstr "Registrar"
3762
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3763
  #: features/upgrades/upgrades-functions.php:91
3764
  #: features/upgrades/upgrades-functions.php:134
3765
  msgid "The usernames cannot be changed."
@@ -3801,35 +4354,35 @@ msgstr "aqui"
3801
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3802
  msgstr "Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$s"
3803
 
3804
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3805
  msgid "The account %1s has been successfully created!"
3806
  msgstr "A conta %1s foi criada com sucesso!"
3807
 
3808
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3809
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3810
  msgstr "Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação."
3811
 
3812
- #: front-end/class-formbuilder.php:299
3813
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3814
  msgstr "Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer."
3815
 
3816
- #: front-end/class-formbuilder.php:322
3817
  msgid "Your profile has been successfully updated!"
3818
  msgstr "Seu perfil foi atualizado com sucesso!"
3819
 
3820
- #: front-end/class-formbuilder.php:333
3821
  msgid "There was an error in the submitted form"
3822
  msgstr "Houve um erro no formulário enviado"
3823
 
3824
- #: front-end/class-formbuilder.php:390
3825
  msgid "Add User"
3826
  msgstr "Adicionar usuário"
3827
 
3828
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3829
  msgid "Update"
3830
  msgstr "Atualizar"
3831
 
3832
- #: front-end/class-formbuilder.php:456
3833
  msgid "Send these credentials via email."
3834
  msgstr "Enviar essas credenciais via email."
3835
 
@@ -4043,20 +4596,47 @@ msgstr "Por motivos de segurança, você deve passar o IP remoto para o reCAPTCH
4043
  msgid "To use reCAPTCHA you must get an API public key from:"
4044
  msgstr "Para usar o reCAPTCHA você deve ter uma chave API pública de:"
4045
 
4046
- #: modules/modules.php:11
4047
  msgid "Modules"
4048
  msgstr "Módulos"
4049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4050
  #: modules/email-customizer/admin-email-customizer.php:11
4051
  #: modules/email-customizer/admin-email-customizer.php:12
 
4052
  msgid "Admin Email Customizer"
4053
  msgstr "Customizador do Email Admin"
4054
 
4055
  #: modules/email-customizer/user-email-customizer.php:11
4056
  #: modules/email-customizer/user-email-customizer.php:12
 
4057
  msgid "User Email Customizer"
4058
  msgstr "Customizador do Email do Usuário"
4059
 
 
4060
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4061
  msgid "Save"
4062
  msgstr "Salvar"
@@ -4387,6 +4967,10 @@ msgstr "Escolha um dos campos suportados que você gerencia <a href=\""
4387
  msgid "<pre>Title (Type)</pre>"
4388
  msgstr "<pre>Título (Tipo)</pre>"
4389
 
 
 
 
 
4390
  #: modules/multiple-forms/register-forms.php:11
4391
  #: modules/multiple-forms/register-forms.php:12
4392
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr ""
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Você precisa entrar a chave secreta\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Add-Ons"
2772
 
2951
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2952
  msgstr "<strong>ERRO</strong>: A senha deve ter uma força mínima de %s"
2953
 
2954
+ #: admin/general-settings.php:163
2955
+ msgid "Username and Email"
2956
+ msgstr "Nome e Email"
2957
+
2958
+ #: admin/general-settings.php:168
2959
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2960
+ msgstr "\"Nome e Email\" - usuários podem fazer Log In com Nome e Email."
2961
+
2962
+ #: admin/general-settings.php:169
2963
+ msgid "\"Username\" - users can Log In only with Username."
2964
+ msgstr "\"Nome\" - usuários só podem fazer Log In com o Nome."
2965
+
2966
+ #: admin/general-settings.php:170
2967
+ msgid "\"Email\" - users can Log In only with Email."
2968
+ msgstr "\"Email\" - usuários só podem fazer Log In com o Email."
2969
+
2970
  #: admin/manage-fields.php:122
2971
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2972
  msgstr "Especifique a(s) extensão(ões) que você quer limitar para fazer upload<br/>Exemplo: .ext1,.ext2,.ext3<br/>Se não especificado, o padrão é: .jpg,.jpeg,.gif,.png (.*)"
2991
  msgid "Save the user role order from the user roles checkboxes"
2992
  msgstr "Salvar a ordem das funções das caixas de seleção"
2993
 
2994
+ #: admin/manage-fields.php:1125
2995
  msgid "Please select at least one user role\n"
2996
  msgstr "Favor selecionar ao menos uma função de usuário\n"
2997
 
3011
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3012
  msgstr "Seu serial expirou, favor %1$s Renovar Sua Licença%2$s."
3013
 
3014
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3015
+ msgid "Add Entry"
3016
+ msgstr "Adicionar Entrada"
3017
+
3018
  #: features/email-confirmation/class-email-confirmation.php:91
3019
  msgid "show"
3020
  msgstr "mostrar"
3023
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3024
  msgstr "Para permitir que usuários registrem para seu website via Profile Builder, você precisa antes habilitar o registro de usuário. Vá para %1$sConfigurações de Rede%2$s, e sob Configurações de Registro certifique-se de ticar “Contas de usuário podem ser registradas”. %3$sDispensar%4$s"
3025
 
3026
+ #: front-end/class-formbuilder.php:643
3027
+ msgid "User to edit:"
3028
+ msgstr "Usuário para editar:"
3029
+
3030
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3031
  msgid "The password must have the minimum length of %s characters"
3032
  msgstr "A senha deve ter um tamanho mínimo de %s caracteres"
3089
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3090
  msgstr "Etiquetas válidas {{reply_to}} e {{site_name}}"
3091
 
3092
+ #: admin/admin-bar.php:48
3093
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3094
+ msgstr "Escolha que função de usuário pode ver a barra de administração na interface do website."
3095
+
3096
  #: admin/manage-fields.php:127
3097
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3098
  msgstr "Insira uma lista de valores separada por vírgula<br/>Ela pode ser qualquer uma, pois é ocultada do usuário, mas não deve conter caracteres especiais ou apóstrofes"
3099
 
3100
+ #: admin/manage-fields.php:1052
3101
  msgid "The meta-name cannot be empty\n"
3102
  msgstr "O meta-name não pode ser vazio \n"
3103
 
3109
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3110
  msgstr "<p>Seu serial do <strong>Profile Builder</strong> é inválido or inexistente. <br/>Favor %1$sregistrar sua cópia%2$s para ter acesso a atualizações automáticas e suporte. Precisa de uma licença? %3$sAdquira uma agora%4$s</p>"
3111
 
3112
+ #: assets/lib/wck-api/fields/country select.php:14
3113
+ #: assets/lib/wck-api/fields/cpt select.php:17
3114
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3115
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3116
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3117
  msgid "...Choose"
3118
  msgstr "...Escolher"
3119
 
3120
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3121
+ msgid "1 item"
3122
+ msgid_plural "%s items"
3123
+ msgstr[0] "1 item"
3124
+ msgstr[1] ""
3125
+
3126
  #: features/functions.php:552
3127
  msgid "Very Weak"
3128
  msgstr "Muito Fraco"
3155
  msgid "Lost your password?"
3156
  msgstr "Perdeu sua senha?"
3157
 
3158
+ #: index.php:34
3159
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3160
+ msgstr "também é ativado. Você precisa desativá-la antes de ativar esta versão do plugin."
3161
+
3162
  #: modules/email-customizer/admin-email-customizer.php:54
3163
  #: modules/email-customizer/user-email-customizer.php:54
3164
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3200
  msgid "Show/Hide the Admin Bar on the Front-End"
3201
  msgstr "Mostrar/Ocultar a Barra de Admin no site"
3202
 
3203
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3204
  msgid "Admin Bar Settings"
3205
  msgstr "Configurações da Barra de Admin"
3206
 
3207
+ #: admin/admin-bar.php:57
3208
+ msgid "User-Role"
3209
+ msgstr "Função do Usuário"
3210
+
3211
+ #: admin/admin-bar.php:58
3212
+ msgid "Visibility"
3213
+ msgstr "Visibilidade"
3214
+
3215
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3216
  #: modules/multiple-forms/register-forms.php:230
3217
  msgid "Default"
3225
  msgid "Hide"
3226
  msgstr "Ocultar"
3227
 
3228
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3229
+ #: admin/register-version.php:95 features/functions.php:697
3230
+ #: modules/modules.php:127
3231
  msgid "Save Changes"
3232
  msgstr "Salvar Alterações"
3233
 
3236
  msgstr "Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba \"%s\")"
3237
 
3238
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3239
+ #: admin/general-settings.php:38
3240
  msgid "General Settings"
3241
  msgstr "Configurações Gerais"
3242
 
3243
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3244
  msgid "Very weak"
3245
  msgstr "Muito fraco"
3246
 
3247
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3248
+ #: features/functions.php:552
3249
  msgid "Weak"
3250
  msgstr "Fraco"
3251
 
3252
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3253
+ #: features/functions.php:552
3254
  msgid "Medium"
3255
  msgstr "Médio"
3256
 
3257
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3258
+ #: features/functions.php:552
3259
  msgid "Strong"
3260
  msgstr "Forte"
3261
 
3264
  msgstr "Adicionar Campo"
3265
 
3266
  #: admin/admin-functions.php:189
3267
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3268
  msgid "Save Settings"
3269
  msgstr "Salvar Configurações"
3270
 
3284
  msgid "The best way to add front-end registration, edit profile and login forms."
3285
  msgstr "A melhor forma de criar registros no front-end, editar perfis e formulários de login."
3286
 
3287
+ #: admin/basic-info.php:33
3288
+ msgid "For Modern User Interaction"
3289
+ msgstr "Para interação com usuários modernos"
3290
+
3291
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3292
  msgid "Login"
3293
  msgstr "Login"
3294
 
3295
+ #: admin/basic-info.php:40
3296
+ msgid "Registration"
3297
+ msgstr "Registro"
3298
+
3299
+ #: admin/basic-info.php:44
3300
+ msgid "Edit Profile"
3301
+ msgstr "Editar Perfil"
3302
+
3303
+ #: admin/basic-info.php:51
3304
+ msgid "Extra Features"
3305
+ msgstr "Funções Extras"
3306
+
3307
+ #: admin/basic-info.php:52
3308
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3309
+ msgstr "Funções que lhe dão mais controle sobre seus usuários, aumentam a seguração e o ajudam a combater o cadastro de spams."
3310
+
3311
+ #: admin/basic-info.php:53
3312
+ msgid "Enable extra features"
3313
+ msgstr "Habilite as funções extras"
3314
+
3315
+ #: admin/basic-info.php:57
3316
+ msgid "Recover Password"
3317
+ msgstr "Recuperar Password"
3318
+
3319
+ #: admin/basic-info.php:61
3320
+ msgid "Admin Approval (*)"
3321
+ msgstr "Aprovação do Admin (*)"
3322
+
3323
+ #: admin/basic-info.php:62
3324
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3325
+ msgstr "Você decide quem é um usuário em seu site. Receba notificações via email ou aprove múltiplos usuários de uma só vez pela interface do Wordpress."
3326
+
3327
+ #: admin/basic-info.php:65
3328
+ msgid "Email Confirmation"
3329
+ msgstr "Confirmação de Email"
3330
+
3331
+ #: admin/basic-info.php:66
3332
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3333
+ msgstr "Garanta que usuários cadastrem-se com emails genuínos. No registro, os usuários receberão uma notificação para confirmarem seus emails."
3334
+
3335
+ #: admin/basic-info.php:69
3336
+ msgid "Minimum Password Length and Strength Meter"
3337
+ msgstr "Tamanho mínimo do password e medidor de força"
3338
+
3339
+ #: admin/basic-info.php:70
3340
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3341
+ msgstr "Elimine passwords de uma vez configurando um tamanho mínimo e mantendo a força do password."
3342
+
3343
+ #: admin/basic-info.php:73
3344
+ msgid "Login with Email or Username"
3345
+ msgstr "Login com Email ou Usuário"
3346
+
3347
+ #: admin/basic-info.php:74
3348
+ msgid "Allow users to log in with their email or username when accessing your site."
3349
+ msgstr "Permite aos usuários fazerem o login com seus emails ou nome de usuários quando acessarem seu site."
3350
+
3351
+ #: admin/basic-info.php:87
3352
+ msgid "Customize Your Forms The Way You Want (*)"
3353
+ msgstr "Customize seus formulários da forma que quiser (*)"
3354
+
3355
+ #: admin/basic-info.php:88
3356
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3357
+ msgstr "Com os campos extra de perfil você pode criar o formulário de registro exatamente como precisa."
3358
+
3359
+ #: admin/basic-info.php:90
3360
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3361
+ msgstr "Campos Extra de Perfil estão disponíveis nas versões Hobbyist ou PRO"
3362
+
3363
+ #: admin/basic-info.php:92
3364
+ msgid "Get started with extra fields"
3365
+ msgstr "Comece já a usar os campos extra"
3366
+
3367
+ #: admin/basic-info.php:95
3368
+ msgid "Avatar Upload"
3369
+ msgstr "Upload de Avatar"
3370
+
3371
+ #: admin/basic-info.php:96
3372
+ msgid "Generic Uploads"
3373
+ msgstr "Uploads Genéricos"
3374
+
3375
+ #: admin/basic-info.php:97
3376
+ msgid "Agree To Terms Checkbox"
3377
+ msgstr "Checkbox de acordo com termos"
3378
+
3379
+ #: admin/basic-info.php:98
3380
+ msgid "Datepicker"
3381
+ msgstr "Selecionador de datas"
3382
+
3383
+ #: admin/basic-info.php:101
3384
+ msgid "reCAPTCHA"
3385
+ msgstr "reCAPTCHA"
3386
+
3387
+ #: admin/basic-info.php:102
3388
+ msgid "Country Select"
3389
+ msgstr "Selecionador de País"
3390
+
3391
+ #: admin/basic-info.php:104
3392
+ msgid "Timezone Select"
3393
+ msgstr "Selecionador de Fuso Horários"
3394
+
3395
+ #: admin/basic-info.php:108
3396
+ msgid "Input / Hidden Input"
3397
+ msgstr "Input / Input Oculto"
3398
+
3399
+ #: admin/basic-info.php:110
3400
+ msgid "Checkbox"
3401
+ msgstr "Checkbox"
3402
+
3403
+ #: admin/basic-info.php:111
3404
+ msgid "Select"
3405
+ msgstr "Select"
3406
+
3407
+ #: admin/basic-info.php:112
3408
+ msgid "Radio Buttons"
3409
+ msgstr "Radio Buttons"
3410
+
3411
+ #: admin/basic-info.php:113
3412
+ msgid "Textarea"
3413
+ msgstr "Área de Texto"
3414
+
3415
+ #: admin/basic-info.php:125
3416
+ msgid "Powerful Modules (**)"
3417
+ msgstr "Módulos Poderosos (**)"
3418
+
3419
+ #: admin/basic-info.php:126
3420
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3421
+ msgstr "Tudo que você precisa para gerenciar seus usuários provavelmente já está disponível usando os módulos PRO."
3422
+
3423
+ #: admin/basic-info.php:128
3424
+ msgid "Enable your modules"
3425
+ msgstr "Habilite seus módulos"
3426
+
3427
+ #: admin/basic-info.php:131
3428
+ msgid "Find out more about PRO Modules"
3429
+ msgstr "Saiba mais sobre os módulos PRO"
3430
+
3431
+ #: admin/basic-info.php:136 modules/modules.php:89
3432
  #: modules/user-listing/userlisting.php:11
3433
  #: modules/user-listing/userlisting.php:12
3434
  #: modules/user-listing/userlisting.php:17
3436
  msgid "User Listing"
3437
  msgstr "Listagem de usuários"
3438
 
3439
+ #: admin/basic-info.php:138
3440
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3441
+ msgstr "Templates para listagem dos usuários do seu site fáceis de editar, além da criação de páginas exclusivas para cada um. Baseado em shortcodes, ofecere muitas opções de customizar suas listagens. "
3442
+
3443
+ #: admin/basic-info.php:144
3444
+ msgid "Email Customizer"
3445
+ msgstr "Customizador de Emails"
3446
+
3447
+ #: admin/basic-info.php:145
3448
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3449
+ msgstr "Personalize todos os emails enviados aos seus usuários ou admins. Quando fizerem registro, confirmação de email, aprovação/negação de admin."
3450
+
3451
+ #: admin/basic-info.php:148
3452
  #: modules/custom-redirects/custom_redirects_admin.php:32
3453
  #: modules/custom-redirects/custom_redirects_admin.php:33
3454
+ #: modules/modules.php:110
3455
  msgid "Custom Redirects"
3456
  msgstr "Redirecionamentos customizados"
3457
 
3458
+ #: admin/basic-info.php:149
3459
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3460
+ msgstr "Mantenha seus usuários longe do dashboard do Wordpress, redirecione-os para a página principal após o login ou o registro, tudo isso com alguns cliques."
3461
+
3462
+ #: admin/basic-info.php:154 modules/modules.php:75
3463
+ msgid "Multiple Registration Forms"
3464
+ msgstr "Múltiplos formulários de Registro"
3465
+
3466
+ #: admin/basic-info.php:155
3467
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3468
+ msgstr "Configure múltiplos formulários de registro com diferentes campos para funções específicas de usuários. Capture diferentes informações de diferentes tipos de usuários."
3469
+
3470
+ #: admin/basic-info.php:158 modules/modules.php:82
3471
+ msgid "Multiple Edit-profile Forms"
3472
+ msgstr "Múltiplos formulários de edição de perfil"
3473
+
3474
+ #: admin/basic-info.php:159
3475
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3476
+ msgstr "Permita que usuários com diferentes funções editem suas informações específicas. Configure múltiplos formulários de edição de perfil com diferentes campos para funções específicas de usuários."
3477
+
3478
  #: admin/basic-info.php:187
3479
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3480
  msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s."
3483
  msgid "** only available in the %1$sPro version%2$s."
3484
  msgstr "** disponível apenas na versão %1s Pro %2$s."
3485
 
3486
+ #: admin/general-settings.php:42
3487
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3488
+ msgstr "Carregar o arquivo CSS próprio do Profile Builder em sua página:"
3489
+
3490
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3491
+ #: admin/general-settings.php:107
3492
  #: modules/multiple-forms/edit-profile-forms.php:206
3493
  #: modules/multiple-forms/register-forms.php:229
3494
  #: modules/multiple-forms/register-forms.php:230
3500
  msgid "You can find the default file here: %1$s"
3501
  msgstr "Você pode encontrar o arquivo padrão aqui: %1$s"
3502
 
3503
+ #: admin/general-settings.php:54
3504
+ msgid "\"Email Confirmation\" Activated:"
3505
+ msgstr "\"Email de Confirmação\" Ativado:"
3506
+
3507
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3508
  #: modules/multiple-forms/edit-profile-forms.php:206
3509
  #: modules/multiple-forms/register-forms.php:229
3510
  #: modules/multiple-forms/register-forms.php:230
3515
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3516
  msgstr "Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s."
3517
 
3518
+ #: admin/general-settings.php:72
3519
+ msgid "\"Email Confirmation\" Landing Page:"
3520
+ msgstr "Página de abertura da \"Confirmação de Email\""
3521
+
3522
+ #: admin/general-settings.php:77
3523
+ msgid "Existing Pages"
3524
+ msgstr "Páginas existentes"
3525
+
3526
+ #: admin/general-settings.php:92
3527
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3528
+ msgstr "Especifique qual a página que os usuários serão redirecionados quando confirmarem sua conta por email. Essa página pode diferente da página de registro e poderá ser alterada a qualquer momento. Se nenhuma for selecionada, uma página simples de confirmação será apresentada ao usuário."
3529
+
3530
+ #: admin/general-settings.php:103
3531
+ msgid "\"Admin Approval\" Activated:"
3532
+ msgstr "\"Aprovação do Admin\" Ativada:"
3533
+
3534
  #: admin/general-settings.php:111
3535
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3536
  msgstr "Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s."
3537
 
3538
+ #: admin/general-settings.php:149
3539
+ msgid "\"Admin Approval\" Feature:"
3540
+ msgstr "Função \"Aprovação do Admin\":"
3541
+
3542
  #: admin/general-settings.php:152
3543
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3544
  msgstr "Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s."
3545
 
3546
+ #: admin/general-settings.php:159
3547
+ msgid "Allow Users to Log in With:"
3548
+ msgstr "Permitir usuários fazerem login com:"
3549
+
3550
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3551
  #: features/admin-approval/class-admin-approval.php:166
3552
  #: features/email-confirmation/class-email-confirmation.php:167
3553
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3560
  msgid "Username"
3561
  msgstr "Usuário"
3562
 
3563
+ #: admin/general-settings.php:165 front-end/login.php:215
3564
+ #: modules/email-customizer/email-customizer.php:29
3565
  #: modules/user-listing/userlisting.php:736
3566
  #: modules/user-listing/userlisting.php:2153
3567
  msgid "Email"
3568
  msgstr "Email"
3569
 
3570
+ #: admin/general-settings.php:177
3571
+ msgid "Minimum Password Length:"
3572
+ msgstr "Tamanho mínimo do password:"
3573
+
3574
+ #: admin/general-settings.php:182
3575
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3576
+ msgstr "Digite a quantidade mínima de caracteres que o password deve conter. Deixe em branco para sem limite mínimo"
3577
+
3578
+ #: admin/general-settings.php:189
3579
+ msgid "Minimum Password Strength:"
3580
+ msgstr "Força mínima do password:"
3581
+
3582
+ #: admin/general-settings.php:193
3583
+ msgid "Disabled"
3584
+ msgstr "Desabilitado"
3585
+
3586
  #: admin/manage-fields.php:12
3587
  msgid "Manage Fields"
3588
  msgstr "Gerenciar campos"
3661
  msgid "Date-format"
3662
  msgstr "Formato da data"
3663
 
 
 
 
 
3664
  #: admin/manage-fields.php:126
3665
  msgid "Terms of Agreement"
3666
  msgstr "Termos de Acordo"
3824
  msgid "Type your password again. "
3825
  msgstr "Digite seu password novamente."
3826
 
3827
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3828
  msgid "You must select a field\n"
3829
  msgstr "Você deve selecionar um campo\n"
3830
 
3848
  msgid "You must enter a value for the row number\n"
3849
  msgstr "Você deve digitar um valor para o número de linha\n"
3850
 
3851
+ #: admin/manage-fields.php:1033
3852
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3853
  msgstr "O valor digitado para o Selecionador de Datas não está em um formato válido\n"
3854
 
3855
+ #: admin/manage-fields.php:1036
3856
  msgid "You must enter a value for the date-format\n"
3857
  msgstr "Você deve digitar um valor para o formato de data\n"
3858
 
3859
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3860
+ #: admin/manage-fields.php:1083
3861
  msgid "That meta-name is already in use\n"
3862
  msgstr "O meta-name já está sendo usado\n"
3863
 
3864
+ #: admin/manage-fields.php:1114
3865
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3866
  msgstr "A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s\n"
3867
 
3868
+ #: admin/manage-fields.php:1118
3869
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3870
  msgstr "A seguinte opção não coincide com as da lista de opções: %s\n"
3871
 
3872
+ #: admin/manage-fields.php:1141
3873
  msgid "That field is already added in this form\n"
3874
  msgstr "Esse campo já foi adicionado a esse formulário\n"
3875
 
3876
+ #: admin/manage-fields.php:1190
3877
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3878
  msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Obrigatório</pre>"
3879
 
3880
+ #: admin/manage-fields.php:1190
3881
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3882
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3883
  #: features/admin-approval/class-admin-approval.php:108
3884
  #: features/functions.php:718 features/functions.php:725
3885
  #: modules/custom-redirects/custom_redirects_admin.php:179
3890
  msgid "Edit"
3891
  msgstr "Editar"
3892
 
3893
+ #: admin/manage-fields.php:1190
3894
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3895
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3896
  #: features/admin-approval/class-admin-approval.php:113
3897
  #: features/admin-approval/class-admin-approval.php:224
3898
  #: features/email-confirmation/class-email-confirmation.php:120
3905
  msgid "Delete"
3906
  msgstr "Deletar"
3907
 
3908
+ #: admin/manage-fields.php:1205
3909
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3910
+ msgstr "Use esses shortcodes nas páginas que você quer que o formulário seja mostrado:"
3911
+
3912
  #: admin/register-version.php:14
3913
  msgid "Register Your Version"
3914
  msgstr "Registre sua versão"
3917
  msgid "Register Version"
3918
  msgstr "Registre a versão"
3919
 
3920
+ #: admin/register-version.php:70
3921
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3922
+ msgstr "Se você registrar essa versão do Profile Builder, você receberá informações sobre upgrades, atualizações e suporte técnico."
3923
+
3924
+ #: admin/register-version.php:72
3925
+ msgid " Serial Number:"
3926
+ msgstr "Número de série:"
3927
+
3928
  #: admin/register-version.php:77
3929
  msgid "The serial number was successfully validated!"
3930
  msgstr "O número de série foi validado com sucesso!"
3941
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3942
  msgstr "O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!"
3943
 
3944
+ #: admin/register-version.php:87
3945
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3946
+ msgstr "(ex: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3947
+
3948
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3949
  msgid "Content"
3950
  msgstr "Conteúdo"
3951
 
3952
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3953
+ msgid "Edit this item"
3954
+ msgstr "Editar esse item"
3955
+
3956
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3957
+ msgid "Delete this item"
3958
+ msgstr "Deletar esse item"
3959
+
3960
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3961
+ msgid "Please enter a value for the required field "
3962
+ msgstr "Por favor digite um valor para o campo obrigatório"
3963
+
3964
  #: front-end/extra-fields/upload/upload.php:122
3965
  msgid "Select File"
3966
  msgstr "Selecionar Arquivo"
3967
 
3968
+ #: assets/lib/wck-api/fields/upload.php:43
3969
  #: front-end/extra-fields/upload/upload.php:112
3970
  msgid "Remove"
3971
  msgstr "Remover"
3972
 
3973
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3974
+ msgid "You can add the information for the %s after you add a entry"
3975
+ msgstr "Você pode adicionar a informação para %s depois de adicionar uma entrada"
3976
+
3977
+ #: assets/lib/wck-api/fields/upload.php:75
3978
  #: front-end/extra-fields/upload/upload.php:128
3979
  msgid "Upload "
3980
  msgstr "Upload "
3981
 
3982
+ #: features/class-list-table.php:184
3983
+ msgid "No items found."
3984
+ msgstr "Nenhum item encontrado."
3985
+
3986
  #: features/class-list-table.php:308
3987
  msgid "Bulk Actions"
3988
  msgstr "Ações em massa"
3991
  msgid "Apply"
3992
  msgstr "Aplicar"
3993
 
3994
+ #: features/class-list-table.php:402
3995
+ msgid "Show all dates"
3996
+ msgstr "Mostrar todas as datas"
3997
+
3998
  #: features/class-list-table.php:415
3999
  msgid "%1$s %2$d"
4000
  msgstr "%1$s %2$d"
4011
  msgid "%s pending"
4012
  msgstr "%s pendente"
4013
 
4014
+ #: features/class-list-table.php:566
4015
+ msgid "%1$s of %2$s"
4016
+ msgstr "%1$s de %2$s"
4017
+
4018
  #: features/class-list-table.php:713
4019
  msgid "Select All"
4020
  msgstr "Selecionar Tudo"
4024
  msgstr "Indicador de força"
4025
 
4026
  #: features/admin-approval/admin-approval.php:14
4027
+ #: features/admin-approval/class-admin-approval.php:453
4028
  msgid "Admin Approval"
4029
  msgstr "Aprovação do Admin"
4030
 
4031
+ #: features/admin-approval/admin-approval.php:28
4032
+ #: features/email-confirmation/email-confirmation.php:58
4033
+ msgid "Do you want to"
4034
+ msgstr "Você deseja"
4035
+
4036
  #: features/admin-approval/admin-approval.php:51
4037
  msgid "Your session has expired! Please refresh the page and try again"
4038
  msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente"
4157
  msgid "User-status"
4158
  msgstr "Status do usuário"
4159
 
4160
+ #: features/admin-approval/class-admin-approval.php:252
4161
+ msgid "Do you want to bulk approve the selected users?"
4162
+ msgstr "Você deseja aprovar em massa os usuários selecionados?"
4163
+
4164
+ #: features/admin-approval/class-admin-approval.php:260
4165
+ msgid "Do you want to bulk unapprove the selected users?"
4166
+ msgstr "Você deseja reprovar em massa os usuários selecionados?"
4167
+
4168
+ #: features/admin-approval/class-admin-approval.php:266
4169
+ msgid "Do you want to bulk delete the selected users?"
4170
+ msgstr "Você deseja deletar em massa os usuários selecionados?"
4171
+
4172
+ #: features/admin-approval/class-admin-approval.php:274
4173
  #: features/email-confirmation/class-email-confirmation.php:278
4174
  msgid "Sorry, but you don't have permission to do that!"
4175
  msgstr "Desculpe, mas você não tem permissão para fazer isso!"
4182
  msgid "Unapproved"
4183
  msgstr "Reprovado"
4184
 
4185
+ #: features/admin-approval/class-admin-approval.php:456
4186
+ #: features/email-confirmation/class-email-confirmation.php:454
4187
+ msgid "All Users"
4188
+ msgstr "Todos os usuários"
4189
+
4190
  #: features/email-confirmation/class-email-confirmation.php:120
4191
  msgid "delete this user from the _signups table?"
4192
  msgstr "deletar esse usuário da tabela _signups?"
4225
  msgid "The selected users have had their activation emails resent"
4226
  msgstr "Os usuários selecionados tiveram seus emails de ativação reenviados"
4227
 
4228
+ #: features/email-confirmation/class-email-confirmation.php:451
4229
+ #: features/email-confirmation/email-confirmation.php:47
4230
+ msgid "Users with Unconfirmed Email Address"
4231
+ msgstr "Usuários com endereço de email não confirmados"
4232
+
4233
  #: features/email-confirmation/email-confirmation.php:107
4234
  msgid "There was an error performing that action!"
4235
  msgstr "Houve um erro executando essa ação!"
4293
  msgid "Profile Builder Login Widget"
4294
  msgstr "Widget de Login Profile Builder"
4295
 
4296
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4297
  msgid "Register"
4298
  msgstr "Registrar"
4299
 
4300
+ #: features/login-widget/login-widget.php:63
4301
+ msgid "Title:"
4302
+ msgstr "Título:"
4303
+
4304
+ #: features/login-widget/login-widget.php:68
4305
+ msgid "After login redirect URL (optional):"
4306
+ msgstr "URL para redirecionar após login (opcional):"
4307
+
4308
+ #: features/login-widget/login-widget.php:73
4309
+ msgid "Register page URL (optional):"
4310
+ msgstr "ULR da página de registro (opcional):"
4311
+
4312
+ #: features/login-widget/login-widget.php:78
4313
+ msgid "Password Recovery page URL (optional):"
4314
+ msgstr "URL da página de recuperação de password (opcional):"
4315
+
4316
  #: features/upgrades/upgrades-functions.php:91
4317
  #: features/upgrades/upgrades-functions.php:134
4318
  msgid "The usernames cannot be changed."
4354
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4355
  msgstr "Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$s"
4356
 
4357
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4358
  msgid "The account %1s has been successfully created!"
4359
  msgstr "A conta %1s foi criada com sucesso!"
4360
 
4361
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4362
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4363
  msgstr "Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação."
4364
 
4365
+ #: front-end/class-formbuilder.php:308
4366
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4367
  msgstr "Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer."
4368
 
4369
+ #: front-end/class-formbuilder.php:331
4370
  msgid "Your profile has been successfully updated!"
4371
  msgstr "Seu perfil foi atualizado com sucesso!"
4372
 
4373
+ #: front-end/class-formbuilder.php:342
4374
  msgid "There was an error in the submitted form"
4375
  msgstr "Houve um erro no formulário enviado"
4376
 
4377
+ #: front-end/class-formbuilder.php:399
4378
  msgid "Add User"
4379
  msgstr "Adicionar usuário"
4380
 
4381
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4382
  msgid "Update"
4383
  msgstr "Atualizar"
4384
 
4385
+ #: front-end/class-formbuilder.php:465
4386
  msgid "Send these credentials via email."
4387
  msgstr "Enviar essas credenciais via email."
4388
 
4596
  msgid "To use reCAPTCHA you must get an API public key from:"
4597
  msgstr "Para usar o reCAPTCHA você deve ter uma chave API pública de:"
4598
 
4599
+ #: modules/modules.php:11 modules/modules.php:58
4600
  msgid "Modules"
4601
  msgstr "Módulos"
4602
 
4603
+ #: modules/modules.php:59
4604
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4605
+ msgstr "Aqui você pode ativar/desativar os módulos disponíveis para o Profile Builder."
4606
+
4607
+ #: modules/modules.php:69
4608
+ msgid "Name/Description"
4609
+ msgstr "Nome/Descrição"
4610
+
4611
+ #: modules/modules.php:70
4612
+ msgid "Status"
4613
+ msgstr "Status"
4614
+
4615
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4616
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4617
+ #: modules/modules.php:119
4618
+ msgid "Active"
4619
+ msgstr "Ativo"
4620
+
4621
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4622
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4623
+ #: modules/modules.php:120
4624
+ msgid "Inactive"
4625
+ msgstr "Inativo"
4626
+
4627
  #: modules/email-customizer/admin-email-customizer.php:11
4628
  #: modules/email-customizer/admin-email-customizer.php:12
4629
+ #: modules/modules.php:96
4630
  msgid "Admin Email Customizer"
4631
  msgstr "Customizador do Email Admin"
4632
 
4633
  #: modules/email-customizer/user-email-customizer.php:11
4634
  #: modules/email-customizer/user-email-customizer.php:12
4635
+ #: modules/modules.php:103
4636
  msgid "User Email Customizer"
4637
  msgstr "Customizador do Email do Usuário"
4638
 
4639
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4640
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4641
  msgid "Save"
4642
  msgstr "Salvar"
4967
  msgid "<pre>Title (Type)</pre>"
4968
  msgstr "<pre>Título (Tipo)</pre>"
4969
 
4970
+ #: modules/multiple-forms/multiple-forms.php:222
4971
+ msgid "You need to specify the title of the form before creating it"
4972
+ msgstr "Você precisa especificar o título do formulário antes de criá-lo"
4973
+
4974
  #: modules/multiple-forms/register-forms.php:11
4975
  #: modules/multiple-forms/register-forms.php:12
4976
  msgid "Registration Form"
translation/profile-builder-ro_RO.mo CHANGED
Binary file
translation/profile-builder-ro_RO.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr ""
1077
  msgid "Plugin has been deactivated."
1078
  msgstr ""
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "Trebuie să introduci site key-ul\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Trebuie să introduci secret key-ul\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Add-On-uri"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>EROARE</strong>: Parola trebuie să aibă lungimea minimă de %s
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>EROARE</strong>: Parola trebuie să aibă complexitatea minimă de %s"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Specifică extensia/extensiile pe care vrei să le limitezi la upload <br/> Exemplu: .ext1,.ext2,.ext3<br/> Dacă nu se specifică, setările originale sunt: .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Ordine roluri utilizator"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Salvează ordinea rolurilor de utilizator din checkbox-urile acestora"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Selectează cel puțin un rol pentru utilizator\n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Numărul serial va expira în curând, te rugăm %1$s să reînnoiești
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "Numărul serial a expirat, te rugăm %1$s să reînnoiești licența %2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "arată"
@@ -2825,6 +3024,10 @@ msgstr "arată"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Pentru a permite utilizatorilor să se înregistreze pe website folosind Profile Builder, mai întâi trebuie activată înregistrarea utilizatorilor. Mergi la %1$s Setări rețea %2$s, și în meniul Setări Înregistrare asigură-te că este bifat “Conturile utilizatorilor pot fi înregistrate”. %3$s Anulează %4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "Parola trebuie să aibă lungimea minimă de %s caractere"
@@ -2887,11 +3090,15 @@ msgstr "Utilizatorul nu a fost găsit."
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "Tag-uri valide {{reply_to}} și {{site_name}}"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "Introdu o listă de valori separate prin virgulă<br/>Nefiind permisă utilizatorului, poate conține orice, exceptând caractere speciale sau apostrofuri"
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "Numele-meta nu poate fi gol\n"
2897
 
@@ -2903,11 +3110,21 @@ msgstr "Acum, că ai primit o copie de %s, te rugăm să înregistrezi plugin-ul
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Numărul serial al <strong>Profile Builder</strong> este invalid sau lipsește. <br/>Te rugăm %1$sînregistrează copia ta%2$s pentru a primi acces la actualizările automate și la suport. Ai nevoie de o licență? %3$sCumpără una acum%4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Alege"
2910
 
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Foarte slab"
@@ -2940,6 +3157,10 @@ msgstr "E-mail"
2940
  msgid "Lost your password?"
2941
  msgstr "Ţi-ai pierdut parola?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3202,18 @@ msgstr "Setează numărul utilizatorilor care vor fi afișați pe fiecare pagin
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Arată/Ascunde Bara Administrator în Front-end "
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Setări Bară Administrator"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3227,9 @@ msgstr "Arată"
2998
  msgid "Hide"
2999
  msgstr "Ascunde"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Salvează Modificările"
3004
 
@@ -3007,22 +3238,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "Logarea se realizează folosind adresa de e-mail. Acest câmp NU va apărea în Front-end! ( aceste setări se pot schimba din tab-ul \"%s\" ) "
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Setări Generale"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Foarte Slab"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Slab"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Mediu"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Puternic"
3028
 
@@ -3031,6 +3266,7 @@ msgid "Add Field"
3031
  msgstr "Adaugă Câmp"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Salvează Setările"
3036
 
@@ -3050,10 +3286,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "Cel mai bun mod de a adăuga formulare de înregistrare, login și editare profil din front-end."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Logare"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3438,45 @@ msgstr "Logare"
3061
  msgid "User Listing"
3062
  msgstr "Listă utilizatori "
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Redirecționări personalizate "
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr "* disponibil doar pentru versiunile %1$sHobbyist și Pro %2$s"
@@ -3074,6 +3485,12 @@ msgstr "* disponibil doar pentru versiunile %1$sHobbyist și Pro %2$s"
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** disponibil doar în versiunea %1$sPro %2$s."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3502,11 @@ msgstr "Da"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "Poți găsi fișierul inițial aici: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3517,39 @@ msgstr "Nu"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "Poți găsi o listă cu adresele de e-mail neconfirmate %1$sUsers > All Users > Email Confirmation%2$s."
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "Poți găsi o lista a utilizatorilor la %1$sUsers > All Users > Admin Approval%2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress. Activează opțiunea \"Aprobare Administrator\" prin a trece la versiunile %1$sHobbyist sau PRO %2$s."
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3562,29 @@ msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificăr
3116
  msgid "Username"
3117
  msgstr "Nume Utilizator"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "E-mail"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Gestionează câmpurile"
@@ -3200,10 +3663,6 @@ msgstr "Introdu o valoare (intre 20 și 200) pentru a stabili dimensiunea 'Avata
3200
  msgid "Date-format"
3201
  msgstr "Format dată"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Specifică formatul datei când folosești Datepicker<br/>Opțiuni valide: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Dacă nu se specifică, se va folosi mm/dd/yy"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Termenii acordului"
@@ -3367,7 +3826,7 @@ msgstr "Repetă parola"
3367
  msgid "Type your password again. "
3368
  msgstr "Tastează parola din nou"
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Trebuie sa selectezi un câmp \n"
3373
 
@@ -3394,36 +3853,38 @@ msgstr "Numărul rândului introdus nu este în formă numerică\n"
3394
  msgid "You must enter a value for the row number\n"
3395
  msgstr "Trebuie să introduci o valoare pentru numărul rândului\n"
3396
 
3397
- #: admin/manage-fields.php:1030
3398
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3399
  msgstr "Valoarea introdusă pentru Datepicker nu este în format dată valid\n"
3400
 
3401
- #: admin/manage-fields.php:1033
3402
  msgid "You must enter a value for the date-format\n"
3403
  msgstr "Trebuie să introduci o valoare pentru formatul dată\n"
3404
 
3405
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3406
- #: admin/manage-fields.php:1080
3407
  msgid "That meta-name is already in use\n"
3408
  msgstr "Acest meta-name este deja în uz\n"
3409
 
3410
- #: admin/manage-fields.php:1111
3411
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3412
  msgstr "Următoarele opțiuni nu coincid cu cele din lista de opțiuni: %s\n"
3413
 
3414
- #: admin/manage-fields.php:1115
3415
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3416
  msgstr "Următoarea opțiune nu coincide cu cele din lista de opțiuni: %s\n"
3417
 
3418
- #: admin/manage-fields.php:1138
3419
  msgid "That field is already added in this form\n"
3420
  msgstr "Câmpul este deja adăugat în acest formular\n"
3421
 
3422
- #: admin/manage-fields.php:1187
3423
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3424
  msgstr "<pre>Titlu</pre><pre>Tip</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Necesar</pre>"
3425
 
3426
- #: admin/manage-fields.php:1187
 
 
3427
  #: features/admin-approval/class-admin-approval.php:108
3428
  #: features/functions.php:718 features/functions.php:725
3429
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3434,7 +3895,9 @@ msgstr "<pre>Titlu</pre><pre>Tip</pre><pre>Meta Name</pre><pre class=\"wppb-mb-h
3434
  msgid "Edit"
3435
  msgstr "Editează"
3436
 
3437
- #: admin/manage-fields.php:1187
 
 
3438
  #: features/admin-approval/class-admin-approval.php:113
3439
  #: features/admin-approval/class-admin-approval.php:224
3440
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3447,6 +3910,10 @@ msgstr "Editează"
3447
  msgid "Delete"
3448
  msgstr "Șterge "
3449
 
 
 
 
 
3450
  #: admin/register-version.php:14
3451
  msgid "Register Your Version"
3452
  msgstr "Înregistrează versiunea proprie"
@@ -3455,6 +3922,14 @@ msgstr "Înregistrează versiunea proprie"
3455
  msgid "Register Version"
3456
  msgstr "Înregistrează versiunea "
3457
 
 
 
 
 
 
 
 
 
3458
  #: admin/register-version.php:77
3459
  msgid "The serial number was successfully validated!"
3460
  msgstr "Numărul serial a fost validat cu succes!"
@@ -3471,22 +3946,48 @@ msgstr "Numărul serial nu a putut fi validat pentru că a expirat!"
3471
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3472
  msgstr "Numărul serial nu a putut fi validat pentru că timpul pentru procesul de validare a expirat. Acest lucru e posibil să se fi întâmplat din cauză că serverul nu funcționează momentan. Te rugăm încearcă din nou mai târziu! "
3473
 
3474
- #: features/functions.php:725
 
 
 
 
3475
  msgid "Content"
3476
  msgstr "Conținut "
3477
 
 
 
 
 
 
 
 
 
 
 
 
 
3478
  #: front-end/extra-fields/upload/upload.php:122
3479
  msgid "Select File"
3480
  msgstr "Selectează fișierul "
3481
 
 
3482
  #: front-end/extra-fields/upload/upload.php:112
3483
  msgid "Remove"
3484
  msgstr "Șterge "
3485
 
 
 
 
 
 
3486
  #: front-end/extra-fields/upload/upload.php:128
3487
  msgid "Upload "
3488
  msgstr "Încarcă "
3489
 
 
 
 
 
3490
  #: features/class-list-table.php:308
3491
  msgid "Bulk Actions"
3492
  msgstr "Acțiuni în masă"
@@ -3495,6 +3996,10 @@ msgstr "Acțiuni în masă"
3495
  msgid "Apply"
3496
  msgstr "Aplică"
3497
 
 
 
 
 
3498
  #: features/class-list-table.php:415
3499
  msgid "%1$s %2$d"
3500
  msgstr "%1$s %2$d"
@@ -3511,6 +4016,10 @@ msgstr "Vizualizare fragment"
3511
  msgid "%s pending"
3512
  msgstr "%s în așteptare"
3513
 
 
 
 
 
3514
  #: features/class-list-table.php:713
3515
  msgid "Select All"
3516
  msgstr "Selectează tot"
@@ -3520,9 +4029,15 @@ msgid "Strength indicator"
3520
  msgstr "Indicator complexitate"
3521
 
3522
  #: features/admin-approval/admin-approval.php:14
 
3523
  msgid "Admin Approval"
3524
  msgstr "Aprobare administrator "
3525
 
 
 
 
 
 
3526
  #: features/admin-approval/admin-approval.php:51
3527
  msgid "Your session has expired! Please refresh the page and try again"
3528
  msgstr "Sesiunea a expirat! Te rugăm să actualizezi pagina și să încerci din nou"
@@ -3647,6 +4162,19 @@ msgstr "Înregistrat "
3647
  msgid "User-status"
3648
  msgstr "Status utilizator "
3649
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3650
  #: features/email-confirmation/class-email-confirmation.php:278
3651
  msgid "Sorry, but you don't have permission to do that!"
3652
  msgstr "Îmi pare rău, dar nu ai permisiunea de a face acest lucru!"
@@ -3659,6 +4187,11 @@ msgstr "Aprobat"
3659
  msgid "Unapproved"
3660
  msgstr "Neaprobat "
3661
 
 
 
 
 
 
3662
  #: features/email-confirmation/class-email-confirmation.php:120
3663
  msgid "delete this user from the _signups table?"
3664
  msgstr "ștergi acest utilizator din tabelul _signups?"
@@ -3697,6 +4230,11 @@ msgstr "Utilizatorii selectați au fost activați "
3697
  msgid "The selected users have had their activation emails resent"
3698
  msgstr "E-mail-urile de activare au fost retrimise către utilizatorii selectați "
3699
 
 
 
 
 
 
3700
  #: features/email-confirmation/email-confirmation.php:107
3701
  msgid "There was an error performing that action!"
3702
  msgstr "A apărut o eroare în timp ce se desfășura această acțiune!"
@@ -3760,10 +4298,26 @@ msgstr "Acest widget de conectare îți permite să adaugi un formular de conect
3760
  msgid "Profile Builder Login Widget"
3761
  msgstr "Profile Builder Login Widget"
3762
 
3763
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3764
  msgid "Register"
3765
  msgstr "Înregistrează-te "
3766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3767
  #: features/upgrades/upgrades-functions.php:91
3768
  #: features/upgrades/upgrades-functions.php:134
3769
  msgid "The usernames cannot be changed."
@@ -3805,35 +4359,35 @@ msgstr "aici"
3805
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3806
  msgstr "În curând vei fi redirecționat automat. Dacă această pagina se poate vizualiza pentru mai mult de %1$d, te rog apasă aici %2$s.%3$s"
3807
 
3808
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3809
  msgid "The account %1s has been successfully created!"
3810
  msgstr "Contul %1s a fost creat cu succes!"
3811
 
3812
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3813
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3814
  msgstr "Înainte de a-ți putea accesa contul %1s, trebuie să confirmi adresa de e-mail. Te rog verifică inbox-ul și apasă pe link-ul de activare."
3815
 
3816
- #: front-end/class-formbuilder.php:299
3817
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3818
  msgstr "Înainte de a putea accesa contul %1s, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail."
3819
 
3820
- #: front-end/class-formbuilder.php:322
3821
  msgid "Your profile has been successfully updated!"
3822
  msgstr "Profilul tău a fost actualizat cu succes!"
3823
 
3824
- #: front-end/class-formbuilder.php:333
3825
  msgid "There was an error in the submitted form"
3826
  msgstr "A apărut o eroare în formularul trimis"
3827
 
3828
- #: front-end/class-formbuilder.php:390
3829
  msgid "Add User"
3830
  msgstr "Adaugă utilizator"
3831
 
3832
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3833
  msgid "Update"
3834
  msgstr "Actualizează "
3835
 
3836
- #: front-end/class-formbuilder.php:456
3837
  msgid "Send these credentials via email."
3838
  msgstr "Trimite aceste acreditari prin e-mail."
3839
 
@@ -4047,20 +4601,47 @@ msgstr "Din motive de securitate, trebuie să introduci ip-ul remote în reCAPTC
4047
  msgid "To use reCAPTCHA you must get an API public key from:"
4048
  msgstr "Pentru a folosi reCAPTCHA trebuie să obţii o cheie publică API de la:"
4049
 
4050
- #: modules/modules.php:11
4051
  msgid "Modules"
4052
  msgstr "Module"
4053
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4054
  #: modules/email-customizer/admin-email-customizer.php:11
4055
  #: modules/email-customizer/admin-email-customizer.php:12
 
4056
  msgid "Admin Email Customizer"
4057
  msgstr "Personalizare E-mail Administrator"
4058
 
4059
  #: modules/email-customizer/user-email-customizer.php:11
4060
  #: modules/email-customizer/user-email-customizer.php:12
 
4061
  msgid "User Email Customizer"
4062
  msgstr "Personalizare E-mail Utilizator "
4063
 
 
4064
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4065
  msgid "Save"
4066
  msgstr "Salvează"
@@ -4390,6 +4971,10 @@ msgstr "Alege unul dintre câmpurile acceptate pe care le gestionezi <a href=\""
4390
  msgid "<pre>Title (Type)</pre>"
4391
  msgstr "<pre>Titlu (Tastează)</pre>"
4392
 
 
 
 
 
4393
  #: modules/multiple-forms/register-forms.php:11
4394
  #: modules/multiple-forms/register-forms.php:12
4395
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr ""
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Trebuie să introduci secret key-ul\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Add-On-uri"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>EROARE</strong>: Parola trebuie să aibă complexitatea minimă de %s"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Nume utilizator și e-mail "
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Nume utilizator și e-mail\" - utilizatorii pot să se logheze fie cu numele de utilizator, fie cu e-mail-ul."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Nume utilizator\" - utilizatorii pot să se logheze doar cu numele de utilizator."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"E-mail\" - utilizatorii pot să se logheze doar cu adresa de e-mail."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Specifică extensia/extensiile pe care vrei să le limitezi la upload <br/> Exemplu: .ext1,.ext2,.ext3<br/> Dacă nu se specifică, setările originale sunt: .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Salvează ordinea rolurilor de utilizator din checkbox-urile acestora"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Selectează cel puțin un rol pentru utilizator\n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "Numărul serial a expirat, te rugăm %1$s să reînnoiești licența %2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Adaugă intrare"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "arată"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Pentru a permite utilizatorilor să se înregistreze pe website folosind Profile Builder, mai întâi trebuie activată înregistrarea utilizatorilor. Mergi la %1$s Setări rețea %2$s, și în meniul Setări Înregistrare asigură-te că este bifat “Conturile utilizatorilor pot fi înregistrate”. %3$s Anulează %4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Utilizator pentru editare:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "Parola trebuie să aibă lungimea minimă de %s caractere"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "Tag-uri valide {{reply_to}} și {{site_name}}"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Alege ce rol de utilizator vede bara de admin în front-end-ul website-ului."
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "Introdu o listă de valori separate prin virgulă<br/>Nefiind permisă utilizatorului, poate conține orice, exceptând caractere speciale sau apostrofuri"
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "Numele-meta nu poate fi gol\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Numărul serial al <strong>Profile Builder</strong> este invalid sau lipsește. <br/>Te rugăm %1$sînregistrează copia ta%2$s pentru a primi acces la actualizările automate și la suport. Ai nevoie de o licență? %3$sCumpără una acum%4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Alege"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 articol"
3125
+ msgstr[1] ""
3126
+ msgstr[2] ""
3127
+
3128
  #: features/functions.php:552
3129
  msgid "Very Weak"
3130
  msgstr "Foarte slab"
3157
  msgid "Lost your password?"
3158
  msgstr "Ţi-ai pierdut parola?"
3159
 
3160
+ #: index.php:34
3161
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3162
+ msgstr "este activată. Este nevoie să o dezactivezi înainte de a activa această versiune a plugin-ului. "
3163
+
3164
  #: modules/email-customizer/admin-email-customizer.php:54
3165
  #: modules/email-customizer/user-email-customizer.php:54
3166
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3202
  msgid "Show/Hide the Admin Bar on the Front-End"
3203
  msgstr "Arată/Ascunde Bara Administrator în Front-end "
3204
 
3205
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3206
  msgid "Admin Bar Settings"
3207
  msgstr "Setări Bară Administrator"
3208
 
3209
+ #: admin/admin-bar.php:57
3210
+ msgid "User-Role"
3211
+ msgstr "Rolul Utilizatorului"
3212
+
3213
+ #: admin/admin-bar.php:58
3214
+ msgid "Visibility"
3215
+ msgstr "Vizibilitate"
3216
+
3217
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3218
  #: modules/multiple-forms/register-forms.php:230
3219
  msgid "Default"
3227
  msgid "Hide"
3228
  msgstr "Ascunde"
3229
 
3230
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3231
+ #: admin/register-version.php:95 features/functions.php:697
3232
+ #: modules/modules.php:127
3233
  msgid "Save Changes"
3234
  msgstr "Salvează Modificările"
3235
 
3238
  msgstr "Logarea se realizează folosind adresa de e-mail. Acest câmp NU va apărea în Front-end! ( aceste setări se pot schimba din tab-ul \"%s\" ) "
3239
 
3240
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3241
+ #: admin/general-settings.php:38
3242
  msgid "General Settings"
3243
  msgstr "Setări Generale"
3244
 
3245
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3246
  msgid "Very weak"
3247
  msgstr "Foarte Slab"
3248
 
3249
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3250
+ #: features/functions.php:552
3251
  msgid "Weak"
3252
  msgstr "Slab"
3253
 
3254
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3255
+ #: features/functions.php:552
3256
  msgid "Medium"
3257
  msgstr "Mediu"
3258
 
3259
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3260
+ #: features/functions.php:552
3261
  msgid "Strong"
3262
  msgstr "Puternic"
3263
 
3266
  msgstr "Adaugă Câmp"
3267
 
3268
  #: admin/admin-functions.php:189
3269
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3270
  msgid "Save Settings"
3271
  msgstr "Salvează Setările"
3272
 
3286
  msgid "The best way to add front-end registration, edit profile and login forms."
3287
  msgstr "Cel mai bun mod de a adăuga formulare de înregistrare, login și editare profil din front-end."
3288
 
3289
+ #: admin/basic-info.php:33
3290
+ msgid "For Modern User Interaction"
3291
+ msgstr "Pentru interacțiunea modernă cu utilizatorul"
3292
+
3293
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3294
  msgid "Login"
3295
  msgstr "Logare"
3296
 
3297
+ #: admin/basic-info.php:40
3298
+ msgid "Registration"
3299
+ msgstr "Înregistrare"
3300
+
3301
+ #: admin/basic-info.php:44
3302
+ msgid "Edit Profile"
3303
+ msgstr "Editare Profil"
3304
+
3305
+ #: admin/basic-info.php:51
3306
+ msgid "Extra Features"
3307
+ msgstr "Opțiuni extra"
3308
+
3309
+ #: admin/basic-info.php:52
3310
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3311
+ msgstr "Opțiuni care oferă mai mult control asupra utilizatorilor, cresc securitatea și ajută împotriva spam-ului la înregistrare."
3312
+
3313
+ #: admin/basic-info.php:53
3314
+ msgid "Enable extra features"
3315
+ msgstr "Activează opțiuni extra"
3316
+
3317
+ #: admin/basic-info.php:57
3318
+ msgid "Recover Password"
3319
+ msgstr "Recuperează Parola"
3320
+
3321
+ #: admin/basic-info.php:61
3322
+ msgid "Admin Approval (*)"
3323
+ msgstr "Aprobare Administrator (*)"
3324
+
3325
+ #: admin/basic-info.php:62
3326
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3327
+ msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress."
3328
+
3329
+ #: admin/basic-info.php:65
3330
+ msgid "Email Confirmation"
3331
+ msgstr "Confirmare E-mail"
3332
+
3333
+ #: admin/basic-info.php:66
3334
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3335
+ msgstr "Asigură-te că utilizatorii se înregistrează cu adrese de e-mail autentice. La înregistrare utilizatorii vor primi o notificare de confirmare a adresei de e-mail."
3336
+
3337
+ #: admin/basic-info.php:69
3338
+ msgid "Minimum Password Length and Strength Meter"
3339
+ msgstr "Indicator al lungimii și complexității parolei"
3340
+
3341
+ #: admin/basic-info.php:70
3342
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3343
+ msgstr "Elimină cu totul parolele vulnerabile, prin stabilirea unei lungimi minime și aplicarea unei anumite complexități a parolei."
3344
+
3345
+ #: admin/basic-info.php:73
3346
+ msgid "Login with Email or Username"
3347
+ msgstr "Logare cu E-mail sau Nume Utilizator"
3348
+
3349
+ #: admin/basic-info.php:74
3350
+ msgid "Allow users to log in with their email or username when accessing your site."
3351
+ msgstr "Permite utilizatorilor să se logheze cu E-mail-ul sau Numele Utilizatorului atunci când accesează site-ul tău."
3352
+
3353
+ #: admin/basic-info.php:87
3354
+ msgid "Customize Your Forms The Way You Want (*)"
3355
+ msgstr "Personalizează formularele așa cum dorești (*)"
3356
+
3357
+ #: admin/basic-info.php:88
3358
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3359
+ msgstr "Folosind câmpurile extra din profil poți să creezi exact formularul de înregistrare de care are nevoie proiectul tău. "
3360
+
3361
+ #: admin/basic-info.php:90
3362
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3363
+ msgstr "Câmpurile extra din profil sunt disponibile în versiunile Hobbyist sau PRO"
3364
+
3365
+ #: admin/basic-info.php:92
3366
+ msgid "Get started with extra fields"
3367
+ msgstr "Începe cu câmpuri suplimentare "
3368
+
3369
+ #: admin/basic-info.php:95
3370
+ msgid "Avatar Upload"
3371
+ msgstr "Încarcă Avatar"
3372
+
3373
+ #: admin/basic-info.php:96
3374
+ msgid "Generic Uploads"
3375
+ msgstr "Încărcări generale"
3376
+
3377
+ #: admin/basic-info.php:97
3378
+ msgid "Agree To Terms Checkbox"
3379
+ msgstr "Sunt de acord cu termenii și condițiile Checkbox"
3380
+
3381
+ #: admin/basic-info.php:98
3382
+ msgid "Datepicker"
3383
+ msgstr "Câmp Dată"
3384
+
3385
+ #: admin/basic-info.php:101
3386
+ msgid "reCAPTCHA"
3387
+ msgstr "reCAPTCHA"
3388
+
3389
+ #: admin/basic-info.php:102
3390
+ msgid "Country Select"
3391
+ msgstr "Selectează țara"
3392
+
3393
+ #: admin/basic-info.php:104
3394
+ msgid "Timezone Select"
3395
+ msgstr "Selectează fusul orar"
3396
+
3397
+ #: admin/basic-info.php:108
3398
+ msgid "Input / Hidden Input"
3399
+ msgstr "Adăugare / Ascunde adăugare"
3400
+
3401
+ #: admin/basic-info.php:110
3402
+ msgid "Checkbox"
3403
+ msgstr "Checkbox"
3404
+
3405
+ #: admin/basic-info.php:111
3406
+ msgid "Select"
3407
+ msgstr "Selectează"
3408
+
3409
+ #: admin/basic-info.php:112
3410
+ msgid "Radio Buttons"
3411
+ msgstr "Butoane radio"
3412
+
3413
+ #: admin/basic-info.php:113
3414
+ msgid "Textarea"
3415
+ msgstr "Textarea"
3416
+
3417
+ #: admin/basic-info.php:125
3418
+ msgid "Powerful Modules (**)"
3419
+ msgstr "Module puternice (**)"
3420
+
3421
+ #: admin/basic-info.php:126
3422
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3423
+ msgstr "Tot ce ai nevoie pentru a gestiona utilizatorii este cel mai probabil disponibil folosind Modulele Pro."
3424
+
3425
+ #: admin/basic-info.php:128
3426
+ msgid "Enable your modules"
3427
+ msgstr "Activează modulele"
3428
+
3429
+ #: admin/basic-info.php:131
3430
+ msgid "Find out more about PRO Modules"
3431
+ msgstr "Află mai multe despre Modulele PRO"
3432
+
3433
+ #: admin/basic-info.php:136 modules/modules.php:89
3434
  #: modules/user-listing/userlisting.php:11
3435
  #: modules/user-listing/userlisting.php:12
3436
  #: modules/user-listing/userlisting.php:17
3438
  msgid "User Listing"
3439
  msgstr "Listă utilizatori "
3440
 
3441
+ #: admin/basic-info.php:138
3442
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3443
+ msgstr "Formulare ușor de editat atât pentru afișarea utilizatorilor site-ului tău, cât și pentru a crea pagini individuale pentru utilizatori. Bazat pe shortcode, oferă opțiuni multiple pentru personalizarea modului de afișare."
3444
+
3445
+ #: admin/basic-info.php:144
3446
+ msgid "Email Customizer"
3447
+ msgstr "Personalizare e-mail"
3448
+
3449
+ #: admin/basic-info.php:145
3450
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3451
+ msgstr "Personalizează toate e-mail-urile trimise către utilizatori și administratori. La înregistrare, confirmare e-mail, aprobare / refuz aprobare."
3452
+
3453
+ #: admin/basic-info.php:148
3454
  #: modules/custom-redirects/custom_redirects_admin.php:32
3455
  #: modules/custom-redirects/custom_redirects_admin.php:33
3456
+ #: modules/modules.php:110
3457
  msgid "Custom Redirects"
3458
  msgstr "Redirecționări personalizate "
3459
 
3460
+ #: admin/basic-info.php:149
3461
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3462
+ msgstr "Păstrați utilizatorii în afara dashboard-ului WordPress, redirecționându-i după logare sau înregistrare către prima pagină, iar în felul acesta totul este la câteva click-uri distanță. "
3463
+
3464
+ #: admin/basic-info.php:154 modules/modules.php:75
3465
+ msgid "Multiple Registration Forms"
3466
+ msgstr "Formulare multiple de înregistrare "
3467
+
3468
+ #: admin/basic-info.php:155
3469
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3470
+ msgstr "Configurează formulare de înregistrare multiple, cu câmpuri diferite pentru anumite tipuri de roluri. Surprinde informații diferite pentru tipuri diferite de utilizatori."
3471
+
3472
+ #: admin/basic-info.php:158 modules/modules.php:82
3473
+ msgid "Multiple Edit-profile Forms"
3474
+ msgstr "Formulare editare profil multiple"
3475
+
3476
+ #: admin/basic-info.php:159
3477
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3478
+ msgstr "Permite rolurilor diferite de utilizatori să editeze informațiile lor specifice. Configurează formularele de editare profil multiple cu câmpuri diferite pentru anumite roluri de utilizator."
3479
+
3480
  #: admin/basic-info.php:187
3481
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3482
  msgstr "* disponibil doar pentru versiunile %1$sHobbyist și Pro %2$s"
3485
  msgid "** only available in the %1$sPro version%2$s."
3486
  msgstr "** disponibil doar în versiunea %1$sPro %2$s."
3487
 
3488
+ #: admin/general-settings.php:42
3489
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3490
+ msgstr "Încarcă fișierul CSS al Profile Builder în Front-end:"
3491
+
3492
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3493
+ #: admin/general-settings.php:107
3494
  #: modules/multiple-forms/edit-profile-forms.php:206
3495
  #: modules/multiple-forms/register-forms.php:229
3496
  #: modules/multiple-forms/register-forms.php:230
3502
  msgid "You can find the default file here: %1$s"
3503
  msgstr "Poți găsi fișierul inițial aici: %1$s"
3504
 
3505
+ #: admin/general-settings.php:54
3506
+ msgid "\"Email Confirmation\" Activated:"
3507
+ msgstr "\"Confirmare E-mail\" Activată"
3508
+
3509
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3510
  #: modules/multiple-forms/edit-profile-forms.php:206
3511
  #: modules/multiple-forms/register-forms.php:229
3512
  #: modules/multiple-forms/register-forms.php:230
3517
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3518
  msgstr "Poți găsi o listă cu adresele de e-mail neconfirmate %1$sUsers > All Users > Email Confirmation%2$s."
3519
 
3520
+ #: admin/general-settings.php:72
3521
+ msgid "\"Email Confirmation\" Landing Page:"
3522
+ msgstr "Pagina de destinație \"Confirmare E-mail\": "
3523
+
3524
+ #: admin/general-settings.php:77
3525
+ msgid "Existing Pages"
3526
+ msgstr "Pagini existente"
3527
+
3528
+ #: admin/general-settings.php:92
3529
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3530
+ msgstr "Specifică pagina către care utilizatorii vor fi direcționați atunci când confirmă adresa de e-mail. Aceasta pagină poate să difere de pagina/paginile de înregistrare și poate fi schimbată oricând. În lipsa unei selecții, o pagină simplă de confirmare va fi afișată pentru utilizator. "
3531
+
3532
+ #: admin/general-settings.php:103
3533
+ msgid "\"Admin Approval\" Activated:"
3534
+ msgstr "\"Aprobare Administrator\" Activată"
3535
+
3536
  #: admin/general-settings.php:111
3537
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3538
  msgstr "Poți găsi o lista a utilizatorilor la %1$sUsers > All Users > Admin Approval%2$s."
3539
 
3540
+ #: admin/general-settings.php:149
3541
+ msgid "\"Admin Approval\" Feature:"
3542
+ msgstr "Opțiune \"Aprobare Administrator\":"
3543
+
3544
  #: admin/general-settings.php:152
3545
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3546
  msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress. Activează opțiunea \"Aprobare Administrator\" prin a trece la versiunile %1$sHobbyist sau PRO %2$s."
3547
 
3548
+ #: admin/general-settings.php:159
3549
+ msgid "Allow Users to Log in With:"
3550
+ msgstr "Permite utilizatorilor sa se logheze cu:"
3551
+
3552
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3553
  #: features/admin-approval/class-admin-approval.php:166
3554
  #: features/email-confirmation/class-email-confirmation.php:167
3555
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3562
  msgid "Username"
3563
  msgstr "Nume Utilizator"
3564
 
3565
+ #: admin/general-settings.php:165 front-end/login.php:215
3566
+ #: modules/email-customizer/email-customizer.php:29
3567
  #: modules/user-listing/userlisting.php:736
3568
  #: modules/user-listing/userlisting.php:2153
3569
  msgid "Email"
3570
  msgstr "E-mail"
3571
 
3572
+ #: admin/general-settings.php:177
3573
+ msgid "Minimum Password Length:"
3574
+ msgstr "Lungime minimă a parolei"
3575
+
3576
+ #: admin/general-settings.php:182
3577
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3578
+ msgstr "Introdu numărul minim de caractere pe care parola trebuie să îl conțină. A se lasă liber dacă nu există o limită minimă"
3579
+
3580
+ #: admin/general-settings.php:189
3581
+ msgid "Minimum Password Strength:"
3582
+ msgstr "Complexitate minimă a parolei:"
3583
+
3584
+ #: admin/general-settings.php:193
3585
+ msgid "Disabled"
3586
+ msgstr "Dezactivat"
3587
+
3588
  #: admin/manage-fields.php:12
3589
  msgid "Manage Fields"
3590
  msgstr "Gestionează câmpurile"
3663
  msgid "Date-format"
3664
  msgstr "Format dată"
3665
 
 
 
 
 
3666
  #: admin/manage-fields.php:126
3667
  msgid "Terms of Agreement"
3668
  msgstr "Termenii acordului"
3826
  msgid "Type your password again. "
3827
  msgstr "Tastează parola din nou"
3828
 
3829
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3830
  msgid "You must select a field\n"
3831
  msgstr "Trebuie sa selectezi un câmp \n"
3832
 
3853
  msgid "You must enter a value for the row number\n"
3854
  msgstr "Trebuie să introduci o valoare pentru numărul rândului\n"
3855
 
3856
+ #: admin/manage-fields.php:1033
3857
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3858
  msgstr "Valoarea introdusă pentru Datepicker nu este în format dată valid\n"
3859
 
3860
+ #: admin/manage-fields.php:1036
3861
  msgid "You must enter a value for the date-format\n"
3862
  msgstr "Trebuie să introduci o valoare pentru formatul dată\n"
3863
 
3864
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3865
+ #: admin/manage-fields.php:1083
3866
  msgid "That meta-name is already in use\n"
3867
  msgstr "Acest meta-name este deja în uz\n"
3868
 
3869
+ #: admin/manage-fields.php:1114
3870
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3871
  msgstr "Următoarele opțiuni nu coincid cu cele din lista de opțiuni: %s\n"
3872
 
3873
+ #: admin/manage-fields.php:1118
3874
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3875
  msgstr "Următoarea opțiune nu coincide cu cele din lista de opțiuni: %s\n"
3876
 
3877
+ #: admin/manage-fields.php:1141
3878
  msgid "That field is already added in this form\n"
3879
  msgstr "Câmpul este deja adăugat în acest formular\n"
3880
 
3881
+ #: admin/manage-fields.php:1190
3882
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3883
  msgstr "<pre>Titlu</pre><pre>Tip</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Necesar</pre>"
3884
 
3885
+ #: admin/manage-fields.php:1190
3886
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3887
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3888
  #: features/admin-approval/class-admin-approval.php:108
3889
  #: features/functions.php:718 features/functions.php:725
3890
  #: modules/custom-redirects/custom_redirects_admin.php:179
3895
  msgid "Edit"
3896
  msgstr "Editează"
3897
 
3898
+ #: admin/manage-fields.php:1190
3899
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3900
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3901
  #: features/admin-approval/class-admin-approval.php:113
3902
  #: features/admin-approval/class-admin-approval.php:224
3903
  #: features/email-confirmation/class-email-confirmation.php:120
3910
  msgid "Delete"
3911
  msgstr "Șterge "
3912
 
3913
+ #: admin/manage-fields.php:1205
3914
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3915
+ msgstr "Folosește aceste shortcode-uri pe paginile în care vrei ca formularele să fie afișate:"
3916
+
3917
  #: admin/register-version.php:14
3918
  msgid "Register Your Version"
3919
  msgstr "Înregistrează versiunea proprie"
3922
  msgid "Register Version"
3923
  msgstr "Înregistrează versiunea "
3924
 
3925
+ #: admin/register-version.php:70
3926
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3927
+ msgstr "Dacă înregistrezi această versiune a Profile Builder, vei primi informații legate de upgrade-uri, patch-uri și suport tehnic."
3928
+
3929
+ #: admin/register-version.php:72
3930
+ msgid " Serial Number:"
3931
+ msgstr "Număr serial:"
3932
+
3933
  #: admin/register-version.php:77
3934
  msgid "The serial number was successfully validated!"
3935
  msgstr "Numărul serial a fost validat cu succes!"
3946
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3947
  msgstr "Numărul serial nu a putut fi validat pentru că timpul pentru procesul de validare a expirat. Acest lucru e posibil să se fi întâmplat din cauză că serverul nu funcționează momentan. Te rugăm încearcă din nou mai târziu! "
3948
 
3949
+ #: admin/register-version.php:87
3950
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3951
+ msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3952
+
3953
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3954
  msgid "Content"
3955
  msgstr "Conținut "
3956
 
3957
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3958
+ msgid "Edit this item"
3959
+ msgstr "Editează acest element"
3960
+
3961
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3962
+ msgid "Delete this item"
3963
+ msgstr "Șterge acest element"
3964
+
3965
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3966
+ msgid "Please enter a value for the required field "
3967
+ msgstr "Te rugăm să introduci o valoare pentru câmpul necesar"
3968
+
3969
  #: front-end/extra-fields/upload/upload.php:122
3970
  msgid "Select File"
3971
  msgstr "Selectează fișierul "
3972
 
3973
+ #: assets/lib/wck-api/fields/upload.php:43
3974
  #: front-end/extra-fields/upload/upload.php:112
3975
  msgid "Remove"
3976
  msgstr "Șterge "
3977
 
3978
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3979
+ msgid "You can add the information for the %s after you add a entry"
3980
+ msgstr "Poți să adaugi informația pentru %s după ce adaugi o intrare "
3981
+
3982
+ #: assets/lib/wck-api/fields/upload.php:75
3983
  #: front-end/extra-fields/upload/upload.php:128
3984
  msgid "Upload "
3985
  msgstr "Încarcă "
3986
 
3987
+ #: features/class-list-table.php:184
3988
+ msgid "No items found."
3989
+ msgstr "Nu a fost găsit niciun element."
3990
+
3991
  #: features/class-list-table.php:308
3992
  msgid "Bulk Actions"
3993
  msgstr "Acțiuni în masă"
3996
  msgid "Apply"
3997
  msgstr "Aplică"
3998
 
3999
+ #: features/class-list-table.php:402
4000
+ msgid "Show all dates"
4001
+ msgstr "Arată toate datele "
4002
+
4003
  #: features/class-list-table.php:415
4004
  msgid "%1$s %2$d"
4005
  msgstr "%1$s %2$d"
4016
  msgid "%s pending"
4017
  msgstr "%s în așteptare"
4018
 
4019
+ #: features/class-list-table.php:566
4020
+ msgid "%1$s of %2$s"
4021
+ msgstr "%1$s din %2$s"
4022
+
4023
  #: features/class-list-table.php:713
4024
  msgid "Select All"
4025
  msgstr "Selectează tot"
4029
  msgstr "Indicator complexitate"
4030
 
4031
  #: features/admin-approval/admin-approval.php:14
4032
+ #: features/admin-approval/class-admin-approval.php:453
4033
  msgid "Admin Approval"
4034
  msgstr "Aprobare administrator "
4035
 
4036
+ #: features/admin-approval/admin-approval.php:28
4037
+ #: features/email-confirmation/email-confirmation.php:58
4038
+ msgid "Do you want to"
4039
+ msgstr "Vrei să"
4040
+
4041
  #: features/admin-approval/admin-approval.php:51
4042
  msgid "Your session has expired! Please refresh the page and try again"
4043
  msgstr "Sesiunea a expirat! Te rugăm să actualizezi pagina și să încerci din nou"
4162
  msgid "User-status"
4163
  msgstr "Status utilizator "
4164
 
4165
+ #: features/admin-approval/class-admin-approval.php:252
4166
+ msgid "Do you want to bulk approve the selected users?"
4167
+ msgstr "Vrei să aprobi în masă utilizatorii selectați?"
4168
+
4169
+ #: features/admin-approval/class-admin-approval.php:260
4170
+ msgid "Do you want to bulk unapprove the selected users?"
4171
+ msgstr "Vrei să anulezi în masă aprobările pentru utilizatorii selectați?"
4172
+
4173
+ #: features/admin-approval/class-admin-approval.php:266
4174
+ msgid "Do you want to bulk delete the selected users?"
4175
+ msgstr "Vrei să ștergi în masă utilizatorii selectați?"
4176
+
4177
+ #: features/admin-approval/class-admin-approval.php:274
4178
  #: features/email-confirmation/class-email-confirmation.php:278
4179
  msgid "Sorry, but you don't have permission to do that!"
4180
  msgstr "Îmi pare rău, dar nu ai permisiunea de a face acest lucru!"
4187
  msgid "Unapproved"
4188
  msgstr "Neaprobat "
4189
 
4190
+ #: features/admin-approval/class-admin-approval.php:456
4191
+ #: features/email-confirmation/class-email-confirmation.php:454
4192
+ msgid "All Users"
4193
+ msgstr "Toți utilizatorii"
4194
+
4195
  #: features/email-confirmation/class-email-confirmation.php:120
4196
  msgid "delete this user from the _signups table?"
4197
  msgstr "ștergi acest utilizator din tabelul _signups?"
4230
  msgid "The selected users have had their activation emails resent"
4231
  msgstr "E-mail-urile de activare au fost retrimise către utilizatorii selectați "
4232
 
4233
+ #: features/email-confirmation/class-email-confirmation.php:451
4234
+ #: features/email-confirmation/email-confirmation.php:47
4235
+ msgid "Users with Unconfirmed Email Address"
4236
+ msgstr "Utilizatori cu adrese de e-mail neconfirmate"
4237
+
4238
  #: features/email-confirmation/email-confirmation.php:107
4239
  msgid "There was an error performing that action!"
4240
  msgstr "A apărut o eroare în timp ce se desfășura această acțiune!"
4298
  msgid "Profile Builder Login Widget"
4299
  msgstr "Profile Builder Login Widget"
4300
 
4301
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4302
  msgid "Register"
4303
  msgstr "Înregistrează-te "
4304
 
4305
+ #: features/login-widget/login-widget.php:63
4306
+ msgid "Title:"
4307
+ msgstr "Titlu:"
4308
+
4309
+ #: features/login-widget/login-widget.php:68
4310
+ msgid "After login redirect URL (optional):"
4311
+ msgstr "URL redirecționare după logare (opțional):"
4312
+
4313
+ #: features/login-widget/login-widget.php:73
4314
+ msgid "Register page URL (optional):"
4315
+ msgstr "URL pagină de înregistrare (opțional):"
4316
+
4317
+ #: features/login-widget/login-widget.php:78
4318
+ msgid "Password Recovery page URL (optional):"
4319
+ msgstr "URL pagină recuperare parolă (opțional):"
4320
+
4321
  #: features/upgrades/upgrades-functions.php:91
4322
  #: features/upgrades/upgrades-functions.php:134
4323
  msgid "The usernames cannot be changed."
4359
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4360
  msgstr "În curând vei fi redirecționat automat. Dacă această pagina se poate vizualiza pentru mai mult de %1$d, te rog apasă aici %2$s.%3$s"
4361
 
4362
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4363
  msgid "The account %1s has been successfully created!"
4364
  msgstr "Contul %1s a fost creat cu succes!"
4365
 
4366
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4367
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4368
  msgstr "Înainte de a-ți putea accesa contul %1s, trebuie să confirmi adresa de e-mail. Te rog verifică inbox-ul și apasă pe link-ul de activare."
4369
 
4370
+ #: front-end/class-formbuilder.php:308
4371
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4372
  msgstr "Înainte de a putea accesa contul %1s, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail."
4373
 
4374
+ #: front-end/class-formbuilder.php:331
4375
  msgid "Your profile has been successfully updated!"
4376
  msgstr "Profilul tău a fost actualizat cu succes!"
4377
 
4378
+ #: front-end/class-formbuilder.php:342
4379
  msgid "There was an error in the submitted form"
4380
  msgstr "A apărut o eroare în formularul trimis"
4381
 
4382
+ #: front-end/class-formbuilder.php:399
4383
  msgid "Add User"
4384
  msgstr "Adaugă utilizator"
4385
 
4386
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4387
  msgid "Update"
4388
  msgstr "Actualizează "
4389
 
4390
+ #: front-end/class-formbuilder.php:465
4391
  msgid "Send these credentials via email."
4392
  msgstr "Trimite aceste acreditari prin e-mail."
4393
 
4601
  msgid "To use reCAPTCHA you must get an API public key from:"
4602
  msgstr "Pentru a folosi reCAPTCHA trebuie să obţii o cheie publică API de la:"
4603
 
4604
+ #: modules/modules.php:11 modules/modules.php:58
4605
  msgid "Modules"
4606
  msgstr "Module"
4607
 
4608
+ #: modules/modules.php:59
4609
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4610
+ msgstr "Aici poți activa / dezactiva modulele disponibile pentru Profile Builder."
4611
+
4612
+ #: modules/modules.php:69
4613
+ msgid "Name/Description"
4614
+ msgstr "Nume/Descriere"
4615
+
4616
+ #: modules/modules.php:70
4617
+ msgid "Status"
4618
+ msgstr "Status"
4619
+
4620
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4621
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4622
+ #: modules/modules.php:119
4623
+ msgid "Active"
4624
+ msgstr "Activ"
4625
+
4626
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4627
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4628
+ #: modules/modules.php:120
4629
+ msgid "Inactive"
4630
+ msgstr "Inactiv"
4631
+
4632
  #: modules/email-customizer/admin-email-customizer.php:11
4633
  #: modules/email-customizer/admin-email-customizer.php:12
4634
+ #: modules/modules.php:96
4635
  msgid "Admin Email Customizer"
4636
  msgstr "Personalizare E-mail Administrator"
4637
 
4638
  #: modules/email-customizer/user-email-customizer.php:11
4639
  #: modules/email-customizer/user-email-customizer.php:12
4640
+ #: modules/modules.php:103
4641
  msgid "User Email Customizer"
4642
  msgstr "Personalizare E-mail Utilizator "
4643
 
4644
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4645
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4646
  msgid "Save"
4647
  msgstr "Salvează"
4971
  msgid "<pre>Title (Type)</pre>"
4972
  msgstr "<pre>Titlu (Tastează)</pre>"
4973
 
4974
+ #: modules/multiple-forms/multiple-forms.php:222
4975
+ msgid "You need to specify the title of the form before creating it"
4976
+ msgstr "Trebuie să specifici titlul formularului înainte de crearea lui"
4977
+
4978
  #: modules/multiple-forms/register-forms.php:11
4979
  #: modules/multiple-forms/register-forms.php:12
4980
  msgid "Registration Form"
translation/profile-builder-ru_RU.mo CHANGED
Binary file
translation/profile-builder-ru_RU.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr "Невозможно установить плагин. Попробуй
1065
  msgid "Paid Accounts"
1066
  msgstr "Платные аккаунты"
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr "Плагин активен"
@@ -1077,6 +1189,14 @@ msgstr "Плагин активирован"
1077
  msgid "Plugin has been deactivated."
1078
  msgstr "Плагин деактивирован"
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr "Чтобы активировать вашего пользователя, нажмите на ссылку:<br><br>%s%s%s<br><br>После активации вы получите еще ​​*другой email* с вашим логином ."
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr "Может содержать следующие динамические тэги:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr "Индивидуальные редиректы пользователя"
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr "Выбрать роль пользователя"
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr "Редиректы, основанные на роли пользователя"
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr "Глобальные редиректы"
1168
 
@@ -1203,6 +1326,50 @@ msgstr "<pre>Роль пользователя</pre><pre>Перенаправл
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr "<pre>Перенаправление</pre><pre>URL</pre>"
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr "Разрешить пользователям восстанавлива
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr "Для создания страницы, содержащей пользователей, зарегистрированных на текущем сайте/блоге, вставьте следующий шорткод на странице по вашему выбору: %s."
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr "Выберите, для каких ролей активировать одобрение администратором."
@@ -2501,6 +2672,14 @@ msgstr "Замбия"
2501
  msgid "Zimbabwe"
2502
  msgstr "Зимбабве"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr "Ваш аккаунт был успешно создан!"
@@ -2587,7 +2766,7 @@ msgstr "Вы должны ввести ключ сайта\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Вы должны ввести секретный ключ\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Расширения"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>ОШИБКА</strong>: пароль должен иметь ми
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>ОШИБКА</strong>: пароль должен быть не легче чем %s"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Укажите допущенные к загрузке расширения файлов <br/> Пример: .ext1, .ext2, .ext3 <br/> Если не указано, по умолчанию: .jpg, .jpeg, .gif, .png (. *)"
@@ -2797,7 +2992,7 @@ msgstr "Выбрать роли пользователей"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Сохраните выбранные ролей пользователей"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Пожалуйста, выберите хотя бы одну роль пользователя\n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Ваш серийный номер подходит к концу, по
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "Серийный номер истек, пожалуйста,%1$s продлить лицензию%2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "показать"
@@ -2825,6 +3024,10 @@ msgstr "показать"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Чтобы разрешить пользователям регистрироваться на вашем сайте с помощью профиля Builder, сначала необходимо включить регистрацию пользователя. Перейти на %1$sНастройки сетиs%2$s, и под регистрационным Настройки удостоверьтесь, чтобы проверить \"Учетные записи пользователей могут быть зарегистрированы\". %3$sубрать%4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "Пароль должен быть не менее %s знаков"
@@ -2887,11 +3090,15 @@ msgstr "Пользователь не найден"
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "Существующие тэги {{reply_to}} и {{site_name}}"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "Введите разделенный запятыми список значений <br/> Это может быть что угодно, так как он скрыт от пользователя, но не должен содержать специальные символы или апострофы"
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "Мета-имя не может быть пустым\n"
2897
 
@@ -2903,11 +3110,21 @@ msgstr "Зарегистрируйте приобретённую копию %s
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Ваш <strong>Profile Builder</strong> серийный номер недействительный или отсутствует. <br/>Пожалуйста %1$s зарегистрируйте вашу копию %2$s чтобы иметь возможность автоматического обновления и получения технической поддержки. Нужен лицензионный ключ? %3$s Купите прямо сейчас %4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Выберите"
2910
 
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Очень слабый"
@@ -2940,6 +3157,10 @@ msgstr "электронный адрес"
2940
  msgid "Lost your password?"
2941
  msgstr "Забыли свой пароль?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3202,18 @@ msgstr "Установите число пользователей, которы
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Показать/скрыть панель администратора на внешней части сайта"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Настройки панели администратора"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3227,9 @@ msgstr "Показать"
2998
  msgid "Hide"
2999
  msgstr "Скрыть"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Сохранить изменения"
3004
 
@@ -3007,22 +3238,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "Установлен вход с использованием электронной почты. Это поле НЕ отображается на внешней части сайта (вы можете изменить эти настройки на вкладке \"%s\")"
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Основные настройки"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Очень слабый"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Слабый"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Средний"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Сильный"
3028
 
@@ -3031,6 +3266,7 @@ msgid "Add Field"
3031
  msgstr "Добавить поле"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Сохранить настройки"
3036
 
@@ -3050,10 +3286,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "Лучший способ, чтобы добавить регистрацию на внешней части сайта, формы изменения профиля и пароля."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Войти"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3438,45 @@ msgstr "Войти"
3061
  msgid "User Listing"
3062
  msgstr "Список пользователей"
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Перенаправления пользователей"
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr " * доступно только в %1$sHobbyist и Pro версиях%2$s."
@@ -3074,6 +3485,12 @@ msgstr " * доступно только в %1$sHobbyist и Pro версиях%2
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** доступно только в %1$sPro версии%2$s."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3502,11 @@ msgstr "Да"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "Вы можете найти файл по умолчанию здесь: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3517,39 @@ msgstr "Нет"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "Вы можете найти список неподтверждённых адресов %1$sПользователи > Все пользователи > Подтверждение по электронной почте%2$s."
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "Вы можете найти список пользователей в %1$sПользователи > Все пользователи > Одобреные администратором%2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "Вы сами решаете, кого допустить на свой сайт. Получать уведомления по электронной почте или одобрять несколько пользователей одновременно с WordPress UI. Включить одобрения администратором через обновление до %1$s Hobbyist или PRO версий %2$s."
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3562,29 @@ msgstr "Вы сами решаете, кого допустить на свой
3116
  msgid "Username"
3117
  msgstr "Имя пользователя"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "Электронная почта"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Управление полями"
@@ -3200,10 +3663,6 @@ msgstr "Укажите значение (между 20 и 200) для разме
3200
  msgid "Date-format"
3201
  msgstr "Формат даты"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Укажите формат даты при использовании Выбора даты <br/>Допустимые значения: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/> Если не указано, по умолчанию mm/dd/yy"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Условия соглашения"
@@ -3367,7 +3826,7 @@ msgstr "Повторить пароль"
3367
  msgid "Type your password again. "
3368
  msgstr "Введите свой пароль ещё раз."
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Вы должны выбрать поле\n"
3373
 
@@ -3391,36 +3850,38 @@ msgstr "Введённый номер строки не число \n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "Вы должны задать значение количества строк \n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "Введённое значение в выборе даты имеет некорректный формат \n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "Вам необходимо ввести значение для формата даты \n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "Такое мета-имя уже используется \n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "Следующая опция(и) не совпадает ни с одной из списка опций: %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "Следующая опция не совпадает ни с одной из списка опций: %s \n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "Такое поле уже добавлено в эту форму\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>Название</pre><pre>Тип</pre><pre>Мета имя</pre><pre class=\"wppb-mb-head-required\">Обязательное</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3892,9 @@ msgstr "<pre>Название</pre><pre>Тип</pre><pre>Мета имя</pre><p
3431
  msgid "Edit"
3432
  msgstr "Редактировать"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3907,10 @@ msgstr "Редактировать"
3444
  msgid "Delete"
3445
  msgstr "Удалить"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "Регистрация вашей версии"
@@ -3452,6 +3919,14 @@ msgstr "Регистрация вашей версии"
3452
  msgid "Register Version"
3453
  msgstr "Регистрация версии"
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "Серийный номер успешно проверен!"
@@ -3468,22 +3943,48 @@ msgstr "Серийный номер не может быть подтвержд
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "Серийный номер не может быть подтверждён, так как истекло время проверки. Это возможно из-за проблем на сервере. Пожалуйста, повторите попытку позже!"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Содержимое"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr "Выбрать файл"
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Удалить"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Загрузить"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "Массовые действия"
@@ -3492,6 +3993,10 @@ msgstr "Массовые действия"
3492
  msgid "Apply"
3493
  msgstr "Применить"
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d"
@@ -3508,6 +4013,10 @@ msgstr "Просмотр отрывка"
3508
  msgid "%s pending"
3509
  msgstr "%s в ожидании"
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Выбрать всё"
@@ -3517,9 +4026,15 @@ msgid "Strength indicator"
3517
  msgstr "Индикатор силы"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "Одобрение администратором"
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "Время сеанса истекло! Пожалуйста, обновите страницу и попробуйте еще раз"
@@ -3644,6 +4159,19 @@ msgstr "Зарегистрированный"
3644
  msgid "User-status"
3645
  msgstr "Статус пользователя"
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Извините, но у вас недостаточно прав на это действие!"
@@ -3656,6 +4184,11 @@ msgstr "Утверждено"
3656
  msgid "Unapproved"
3657
  msgstr "Не утверждено"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "удалить этого пользователя из _signups table?"
@@ -3694,6 +4227,11 @@ msgstr "Выбранные пользователи активированы"
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "Выбранным пользователям отправлены письма для активации"
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "При выполнении этого действия произошла ошибка!"
@@ -3757,10 +4295,26 @@ msgstr "Этот виджет авторизации позволит вам д
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Profile Builder Login Widget"
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "Регистрация"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4356,35 @@ msgstr "здесь"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "Вскоре вы будете перенаправлены автоматически. Если вы видите эту страницу более чем %1$d секунд, пожалуйста нажмите %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "Учётная запись %1s была успешно создана!"
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "Прежде чем вы сможете получить доступ к вашей учетной записи %1s, необходимо подтвердить свой адрес электронной почты. Пожалуйста, проверьте свой почтовый ящик и нажмите на ссылку активации."
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Прежде чем вы сможете получить доступ к вашей учетной записи %1s, администратор должен утвердить его. Вы будете уведомлены по электронной почте."
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "Ваш профиль был успешно обновлён!"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "Произошла ошибка в представленной форме"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Добавить пользователя"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Обновить"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Отправить эти учётные данные по электронной почте."
3836
 
@@ -4044,20 +4598,47 @@ msgstr "В целях безопасности вы должны провери
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "Для использования reCAPTCHA вы должны получить API публичный ключ от:"
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Модули"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "Настройщик электронной почты администратора"
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr "Настройщик электронной почты пользователя"
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Сохранить"
@@ -4396,6 +4977,10 @@ msgstr "Выберите одно из поддерживаемых полей,
4396
  msgid "<pre>Title (Type)</pre>"
4397
  msgstr "<pre>Название (тип)</pre>"
4398
 
 
 
 
 
4399
  #: modules/multiple-forms/register-forms.php:11
4400
  #: modules/multiple-forms/register-forms.php:12
4401
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr "Рекомендованные плагины"
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr "Бесплатно"
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr "Принимайте платежи пользователей, создавайте планы подписок и ограничивайте контент на вашем сайте."
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr "Больше деталей"
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr "Платные аккаунты"
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr "Paid Member Subscriptions - бесплатный плагин WordPress"
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr "С новыми полями подписки в Profile Builder ваши регистрационные формы позволят пользователям подписываться на платные аккаунты."
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr "Платные и бесплатные подписки"
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr "Ограничить контент"
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr "Управление членами"
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr "Шаблоны e-mail"
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr "Управление аккаунтами"
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr "Управление подписками"
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr "Управление платежами"
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr "Плагин активен"
1189
  msgid "Plugin has been deactivated."
1190
  msgstr "Плагин деактивирован"
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr "Принимайте платежи пользователей, создавайте планы подписок и ограничивайте содержимое на вашем сайте."
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr "Быстрая пошаговая настройка"
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr "Чтобы активировать вашего пользователя, нажмите на ссылку:<br><br>%s%s%s<br><br>После активации вы получите еще ​​*другой email* с вашим логином ."
1267
  msgstr "Может содержать следующие динамические тэги:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr "Индивидуальные редиректы пользователя"
1273
 
1280
  msgstr "Выбрать роль пользователя"
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr "Редиректы, основанные на роли пользователя"
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr "Глобальные редиректы"
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr "<pre>Перенаправление</pre><pre>URL</pre>"
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr "Эти перенаправления происходят после успешного действия вроде регистрации или успешного входа"
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr "Какое перенаправление происходит, зависит от следующего приоритета:"
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr "Перенаправление стандартных форм и страниц WordPress"
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr "С этим вы сможете перенаправлять различные формы и страницы WordPress на страницы, созданные в Profile Builder."
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr "Доступные тэги для динамических адресов"
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr "Вы используете следующие тэги в ваших адресах для перенаправления пользователей на различные страницы. "
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr "генерирует URL текущей главной страницы сайта."
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr "в WordPress <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>URL сайта</a> может отличаться от URL главной страницы"
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr "ID пользоваткля"
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr "обработанная для URL версия имени пользователя, никнейм может быть безопасно использован в URL-адресах, поскольку он не может содержать специальные символы или пробелы."
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr "URL предыдущей посещенной страницы"
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr "Для создания страницы, содержащей пользователей, зарегистрированных на текущем сайте/блоге, вставьте следующий шорткод на странице по вашему выбору: %s."
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr "\"Одобрение администратором\" в ролях пользователей:"
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr "Выберите, для каких ролей активировать одобрение администратором."
2672
  msgid "Zimbabwe"
2673
  msgstr "Зимбабве"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr "С Profile Builder Pro v2 вы можете отображать различные поля в формах регистрации и редактирования профиля, используя модуль \"Формы множественной регистрации и редактирования профиля\"."
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr "Ваш аккаунт должен быть подтверждён администратором, прожде чем вы сможете войти."
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr "Ваш аккаунт был успешно создан!"
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Вы должны ввести секретный ключ\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Расширения"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>ОШИБКА</strong>: пароль должен быть не легче чем %s"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Логин и Email"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Логин и Email\" - пользователи могут войти и с именем пользователя, и с Email."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Логин\" - пользователи могут Войти только по логину."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"Email\" - пользователи могут Войти только по Email."
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Укажите допущенные к загрузке расширения файлов <br/> Пример: .ext1, .ext2, .ext3 <br/> Если не указано, по умолчанию: .jpg, .jpeg, .gif, .png (. *)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Сохраните выбранные ролей пользователей"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Пожалуйста, выберите хотя бы одну роль пользователя\n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "Серийный номер истек, пожалуйста,%1$s продлить лицензию%2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Добавить запись"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "показать"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Чтобы разрешить пользователям регистрироваться на вашем сайте с помощью профиля Builder, сначала необходимо включить регистрацию пользователя. Перейти на %1$sНастройки сетиs%2$s, и под регистрационным Настройки удостоверьтесь, чтобы проверить \"Учетные записи пользователей могут быть зарегистрированы\". %3$sубрать%4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Редактировать пользователя:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "Пароль должен быть не менее %s знаков"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "Существующие тэги {{reply_to}} и {{site_name}}"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Выберите уровень пользователей, которым будет видна панель администратора на внешней части сайта. "
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "Введите разделенный запятыми список значений <br/> Это может быть что угодно, так как он скрыт от пользователя, но не должен содержать специальные символы или апострофы"
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "Мета-имя не может быть пустым\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Ваш <strong>Profile Builder</strong> серийный номер недействительный или отсутствует. <br/>Пожалуйста %1$s зарегистрируйте вашу копию %2$s чтобы иметь возможность автоматического обновления и получения технической поддержки. Нужен лицензионный ключ? %3$s Купите прямо сейчас %4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Выберите"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 пункт"
3125
+ msgstr[1] ""
3126
+ msgstr[2] ""
3127
+
3128
  #: features/functions.php:552
3129
  msgid "Very Weak"
3130
  msgstr "Очень слабый"
3157
  msgid "Lost your password?"
3158
  msgstr "Забыли свой пароль?"
3159
 
3160
+ #: index.php:34
3161
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3162
+ msgstr "активирован. Вы должны деактивировать его, прежде чем активировать эту версию плагина."
3163
+
3164
  #: modules/email-customizer/admin-email-customizer.php:54
3165
  #: modules/email-customizer/user-email-customizer.php:54
3166
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3202
  msgid "Show/Hide the Admin Bar on the Front-End"
3203
  msgstr "Показать/скрыть панель администратора на внешней части сайта"
3204
 
3205
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3206
  msgid "Admin Bar Settings"
3207
  msgstr "Настройки панели администратора"
3208
 
3209
+ #: admin/admin-bar.php:57
3210
+ msgid "User-Role"
3211
+ msgstr "Статус пользователя"
3212
+
3213
+ #: admin/admin-bar.php:58
3214
+ msgid "Visibility"
3215
+ msgstr "Видимость"
3216
+
3217
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3218
  #: modules/multiple-forms/register-forms.php:230
3219
  msgid "Default"
3227
  msgid "Hide"
3228
  msgstr "Скрыть"
3229
 
3230
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3231
+ #: admin/register-version.php:95 features/functions.php:697
3232
+ #: modules/modules.php:127
3233
  msgid "Save Changes"
3234
  msgstr "Сохранить изменения"
3235
 
3238
  msgstr "Установлен вход с использованием электронной почты. Это поле НЕ отображается на внешней части сайта (вы можете изменить эти настройки на вкладке \"%s\")"
3239
 
3240
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3241
+ #: admin/general-settings.php:38
3242
  msgid "General Settings"
3243
  msgstr "Основные настройки"
3244
 
3245
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3246
  msgid "Very weak"
3247
  msgstr "Очень слабый"
3248
 
3249
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3250
+ #: features/functions.php:552
3251
  msgid "Weak"
3252
  msgstr "Слабый"
3253
 
3254
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3255
+ #: features/functions.php:552
3256
  msgid "Medium"
3257
  msgstr "Средний"
3258
 
3259
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3260
+ #: features/functions.php:552
3261
  msgid "Strong"
3262
  msgstr "Сильный"
3263
 
3266
  msgstr "Добавить поле"
3267
 
3268
  #: admin/admin-functions.php:189
3269
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3270
  msgid "Save Settings"
3271
  msgstr "Сохранить настройки"
3272
 
3286
  msgid "The best way to add front-end registration, edit profile and login forms."
3287
  msgstr "Лучший способ, чтобы добавить регистрацию на внешней части сайта, формы изменения профиля и пароля."
3288
 
3289
+ #: admin/basic-info.php:33
3290
+ msgid "For Modern User Interaction"
3291
+ msgstr "Для современного взаимодействия с пользователем"
3292
+
3293
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3294
  msgid "Login"
3295
  msgstr "Войти"
3296
 
3297
+ #: admin/basic-info.php:40
3298
+ msgid "Registration"
3299
+ msgstr "Регистрация"
3300
+
3301
+ #: admin/basic-info.php:44
3302
+ msgid "Edit Profile"
3303
+ msgstr "Изменить профиль"
3304
+
3305
+ #: admin/basic-info.php:51
3306
+ msgid "Extra Features"
3307
+ msgstr "Дополнительные возможности"
3308
+
3309
+ #: admin/basic-info.php:52
3310
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3311
+ msgstr "Возможности, которые дают вам больше контроля над пользователями, повышенную безопасность и поможет вам бороться со спам-регистрациями пользователей."
3312
+
3313
+ #: admin/basic-info.php:53
3314
+ msgid "Enable extra features"
3315
+ msgstr "Включить дополнительные возможности"
3316
+
3317
+ #: admin/basic-info.php:57
3318
+ msgid "Recover Password"
3319
+ msgstr "Восстановление пароля"
3320
+
3321
+ #: admin/basic-info.php:61
3322
+ msgid "Admin Approval (*)"
3323
+ msgstr "Одобряется администратором (*)"
3324
+
3325
+ #: admin/basic-info.php:62
3326
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3327
+ msgstr "Вы сами решаете, кто пользователь на вашем сайте. Получать уведомление по электронной почте или одобрять несколько пользователей одновременно с WordPress UI."
3328
+
3329
+ #: admin/basic-info.php:65
3330
+ msgid "Email Confirmation"
3331
+ msgstr "Подтверждение по электронной почте"
3332
+
3333
+ #: admin/basic-info.php:66
3334
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3335
+ msgstr "Убедитесь, что пользователи используют реальные электронные адреса. При регистрации пользователи получают уведомление для подтверждения адреса электронной почты."
3336
+
3337
+ #: admin/basic-info.php:69
3338
+ msgid "Minimum Password Length and Strength Meter"
3339
+ msgstr "Минимальная длина пароля и измеритель его силы"
3340
+
3341
+ #: admin/basic-info.php:70
3342
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3343
+ msgstr "Исключите слабые пароли вообще, установив минимальную длину пароля и соблюдение определенной силы пароля."
3344
+
3345
+ #: admin/basic-info.php:73
3346
+ msgid "Login with Email or Username"
3347
+ msgstr "Вход по адресу электронной почты или имени пользователя"
3348
+
3349
+ #: admin/basic-info.php:74
3350
+ msgid "Allow users to log in with their email or username when accessing your site."
3351
+ msgstr "Разрешите пользователям входить на сайт используя адрес электронной почты или имя пользователя."
3352
+
3353
+ #: admin/basic-info.php:87
3354
+ msgid "Customize Your Forms The Way You Want (*)"
3355
+ msgstr "Настройки ваших форм как вам хочется (*)"
3356
+
3357
+ #: admin/basic-info.php:88
3358
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3359
+ msgstr "С дополнительными полями в профиле вы можете создать регистрационную форму в точном соответствии с потребностями вашего проекта."
3360
+
3361
+ #: admin/basic-info.php:90
3362
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3363
+ msgstr "Дополнительные поля в профиле доступны в Hobbyist или PRO версиях"
3364
+
3365
+ #: admin/basic-info.php:92
3366
+ msgid "Get started with extra fields"
3367
+ msgstr "Начните работу с дополнительными полями"
3368
+
3369
+ #: admin/basic-info.php:95
3370
+ msgid "Avatar Upload"
3371
+ msgstr "Загрузка аватара"
3372
+
3373
+ #: admin/basic-info.php:96
3374
+ msgid "Generic Uploads"
3375
+ msgstr "Общие загрузки"
3376
+
3377
+ #: admin/basic-info.php:97
3378
+ msgid "Agree To Terms Checkbox"
3379
+ msgstr "Флажок согласия с условиями"
3380
+
3381
+ #: admin/basic-info.php:98
3382
+ msgid "Datepicker"
3383
+ msgstr "Выбор даты"
3384
+
3385
+ #: admin/basic-info.php:101
3386
+ msgid "reCAPTCHA"
3387
+ msgstr "reCAPTCHA"
3388
+
3389
+ #: admin/basic-info.php:102
3390
+ msgid "Country Select"
3391
+ msgstr "Выбор страны"
3392
+
3393
+ #: admin/basic-info.php:104
3394
+ msgid "Timezone Select"
3395
+ msgstr "Выбор часового пояса"
3396
+
3397
+ #: admin/basic-info.php:108
3398
+ msgid "Input / Hidden Input"
3399
+ msgstr "Ввод / Скрыть ввод"
3400
+
3401
+ #: admin/basic-info.php:110
3402
+ msgid "Checkbox"
3403
+ msgstr "Флажок"
3404
+
3405
+ #: admin/basic-info.php:111
3406
+ msgid "Select"
3407
+ msgstr "Выбрать"
3408
+
3409
+ #: admin/basic-info.php:112
3410
+ msgid "Radio Buttons"
3411
+ msgstr "Переключатели"
3412
+
3413
+ #: admin/basic-info.php:113
3414
+ msgid "Textarea"
3415
+ msgstr "Текстовое поле"
3416
+
3417
+ #: admin/basic-info.php:125
3418
+ msgid "Powerful Modules (**)"
3419
+ msgstr "Мощные модули"
3420
+
3421
+ #: admin/basic-info.php:126
3422
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3423
+ msgstr "Всё что вам надо для управления вашими пользователями возможно уже доступно с помощью Проф модулей."
3424
+
3425
+ #: admin/basic-info.php:128
3426
+ msgid "Enable your modules"
3427
+ msgstr "Включить ваши модули"
3428
+
3429
+ #: admin/basic-info.php:131
3430
+ msgid "Find out more about PRO Modules"
3431
+ msgstr "Узнайте больше о Проф модулях"
3432
+
3433
+ #: admin/basic-info.php:136 modules/modules.php:89
3434
  #: modules/user-listing/userlisting.php:11
3435
  #: modules/user-listing/userlisting.php:12
3436
  #: modules/user-listing/userlisting.php:17
3438
  msgid "User Listing"
3439
  msgstr "Список пользователей"
3440
 
3441
+ #: admin/basic-info.php:138
3442
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3443
+ msgstr "Легко редактировать шаблоны для списка пользователей вашего сайта, а также создавать отдельные страницы пользователей. Основано на шорткодах и предлагает множество опций для настройки ваших записей."
3444
+
3445
+ #: admin/basic-info.php:144
3446
+ msgid "Email Customizer"
3447
+ msgstr "Настройщик электронной почты"
3448
+
3449
+ #: admin/basic-info.php:145
3450
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3451
+ msgstr "Персонализируйте все электронные письма, отправляемые вашим пользователям или администраторам. По регистрации, подтверждению электронной почты, одобрению или неодобрению администратором."
3452
+
3453
+ #: admin/basic-info.php:148
3454
  #: modules/custom-redirects/custom_redirects_admin.php:32
3455
  #: modules/custom-redirects/custom_redirects_admin.php:33
3456
+ #: modules/modules.php:110
3457
  msgid "Custom Redirects"
3458
  msgstr "Перенаправления пользователей"
3459
 
3460
+ #: admin/basic-info.php:149
3461
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3462
+ msgstr "Держать пользователей подальше от панели управления WordPress, перенаправив их на заданную страницу после входа или регистрации, легко - в несколько кликов мышкой."
3463
+
3464
+ #: admin/basic-info.php:154 modules/modules.php:75
3465
+ msgid "Multiple Registration Forms"
3466
+ msgstr "Несколько регистрационных форм"
3467
+
3468
+ #: admin/basic-info.php:155
3469
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3470
+ msgstr "Настройка нескольких регистрационных форм с различными полями для определенных ролей пользователей. Получение различной информации от разных типов пользователей."
3471
+
3472
+ #: admin/basic-info.php:158 modules/modules.php:82
3473
+ msgid "Multiple Edit-profile Forms"
3474
+ msgstr "Редактор профиля нескольких форм"
3475
+
3476
+ #: admin/basic-info.php:159
3477
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3478
+ msgstr "Позволяет пользователям с различными ролями редактировать свою специфическую информацию. Настройка редактора профиля нескольких форм с различными полями для разных ролей пользователей."
3479
+
3480
  #: admin/basic-info.php:187
3481
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3482
  msgstr " * доступно только в %1$sHobbyist и Pro версиях%2$s."
3485
  msgid "** only available in the %1$sPro version%2$s."
3486
  msgstr "** доступно только в %1$sPro версии%2$s."
3487
 
3488
+ #: admin/general-settings.php:42
3489
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3490
+ msgstr "Загрузите собственный Profile Builder's CSS файл с внешней части сайта:"
3491
+
3492
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3493
+ #: admin/general-settings.php:107
3494
  #: modules/multiple-forms/edit-profile-forms.php:206
3495
  #: modules/multiple-forms/register-forms.php:229
3496
  #: modules/multiple-forms/register-forms.php:230
3502
  msgid "You can find the default file here: %1$s"
3503
  msgstr "Вы можете найти файл по умолчанию здесь: %1$s"
3504
 
3505
+ #: admin/general-settings.php:54
3506
+ msgid "\"Email Confirmation\" Activated:"
3507
+ msgstr "\"Подтверждение по электронной почте\" активировано:"
3508
+
3509
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3510
  #: modules/multiple-forms/edit-profile-forms.php:206
3511
  #: modules/multiple-forms/register-forms.php:229
3512
  #: modules/multiple-forms/register-forms.php:230
3517
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3518
  msgstr "Вы можете найти список неподтверждённых адресов %1$sПользователи > Все пользователи > Подтверждение по электронной почте%2$s."
3519
 
3520
+ #: admin/general-settings.php:72
3521
+ msgid "\"Email Confirmation\" Landing Page:"
3522
+ msgstr "Целевая страница \"подтверждения по электронной почте\":"
3523
+
3524
+ #: admin/general-settings.php:77
3525
+ msgid "Existing Pages"
3526
+ msgstr "Существующие страницы"
3527
+
3528
+ #: admin/general-settings.php:92
3529
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3530
+ msgstr "Укажите страницу, куда пользователи будут перенаправлены при подтверждении учетной записи электронной почты. Эта страница может отличаться от страницы (страниц) регистрации и может быть изменена в любое время. Если ничего не выбрано, отображаться будет просто страница подтверждения."
3531
+
3532
+ #: admin/general-settings.php:103
3533
+ msgid "\"Admin Approval\" Activated:"
3534
+ msgstr "\"Одобрение администратором\" активировано:"
3535
+
3536
  #: admin/general-settings.php:111
3537
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3538
  msgstr "Вы можете найти список пользователей в %1$sПользователи > Все пользователи > Одобреные администратором%2$s."
3539
 
3540
+ #: admin/general-settings.php:149
3541
+ msgid "\"Admin Approval\" Feature:"
3542
+ msgstr "\"Одобрение администратором\" особенность:"
3543
+
3544
  #: admin/general-settings.php:152
3545
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3546
  msgstr "Вы сами решаете, кого допустить на свой сайт. Получать уведомления по электронной почте или одобрять несколько пользователей одновременно с WordPress UI. Включить одобрения администратором через обновление до %1$s Hobbyist или PRO версий %2$s."
3547
 
3548
+ #: admin/general-settings.php:159
3549
+ msgid "Allow Users to Log in With:"
3550
+ msgstr "Разрешить пользователям входить в систему с:"
3551
+
3552
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3553
  #: features/admin-approval/class-admin-approval.php:166
3554
  #: features/email-confirmation/class-email-confirmation.php:167
3555
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3562
  msgid "Username"
3563
  msgstr "Имя пользователя"
3564
 
3565
+ #: admin/general-settings.php:165 front-end/login.php:215
3566
+ #: modules/email-customizer/email-customizer.php:29
3567
  #: modules/user-listing/userlisting.php:736
3568
  #: modules/user-listing/userlisting.php:2153
3569
  msgid "Email"
3570
  msgstr "Электронная почта"
3571
 
3572
+ #: admin/general-settings.php:177
3573
+ msgid "Minimum Password Length:"
3574
+ msgstr "Минимальная длинна пароля:"
3575
+
3576
+ #: admin/general-settings.php:182
3577
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3578
+ msgstr "Обозначьте минимальное количество знаков, которое должен иметь пароль. Оставьте пустым чтобы не ограничивать минимальный предел."
3579
+
3580
+ #: admin/general-settings.php:189
3581
+ msgid "Minimum Password Strength:"
3582
+ msgstr "Минимальная сила пароля:"
3583
+
3584
+ #: admin/general-settings.php:193
3585
+ msgid "Disabled"
3586
+ msgstr "Отключено"
3587
+
3588
  #: admin/manage-fields.php:12
3589
  msgid "Manage Fields"
3590
  msgstr "Управление полями"
3663
  msgid "Date-format"
3664
  msgstr "Формат даты"
3665
 
 
 
 
 
3666
  #: admin/manage-fields.php:126
3667
  msgid "Terms of Agreement"
3668
  msgstr "Условия соглашения"
3826
  msgid "Type your password again. "
3827
  msgstr "Введите свой пароль ещё раз."
3828
 
3829
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3830
  msgid "You must select a field\n"
3831
  msgstr "Вы должны выбрать поле\n"
3832
 
3850
  msgid "You must enter a value for the row number\n"
3851
  msgstr "Вы должны задать значение количества строк \n"
3852
 
3853
+ #: admin/manage-fields.php:1033
3854
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3855
  msgstr "Введённое значение в выборе даты имеет некорректный формат \n"
3856
 
3857
+ #: admin/manage-fields.php:1036
3858
  msgid "You must enter a value for the date-format\n"
3859
  msgstr "Вам необходимо ввести значение для формата даты \n"
3860
 
3861
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3862
+ #: admin/manage-fields.php:1083
3863
  msgid "That meta-name is already in use\n"
3864
  msgstr "Такое мета-имя уже используется \n"
3865
 
3866
+ #: admin/manage-fields.php:1114
3867
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3868
  msgstr "Следующая опция(и) не совпадает ни с одной из списка опций: %s\n"
3869
 
3870
+ #: admin/manage-fields.php:1118
3871
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3872
  msgstr "Следующая опция не совпадает ни с одной из списка опций: %s \n"
3873
 
3874
+ #: admin/manage-fields.php:1141
3875
  msgid "That field is already added in this form\n"
3876
  msgstr "Такое поле уже добавлено в эту форму\n"
3877
 
3878
+ #: admin/manage-fields.php:1190
3879
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3880
  msgstr "<pre>Название</pre><pre>Тип</pre><pre>Мета имя</pre><pre class=\"wppb-mb-head-required\">Обязательное</pre>"
3881
 
3882
+ #: admin/manage-fields.php:1190
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3884
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3885
  #: features/admin-approval/class-admin-approval.php:108
3886
  #: features/functions.php:718 features/functions.php:725
3887
  #: modules/custom-redirects/custom_redirects_admin.php:179
3892
  msgid "Edit"
3893
  msgstr "Редактировать"
3894
 
3895
+ #: admin/manage-fields.php:1190
3896
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3897
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3898
  #: features/admin-approval/class-admin-approval.php:113
3899
  #: features/admin-approval/class-admin-approval.php:224
3900
  #: features/email-confirmation/class-email-confirmation.php:120
3907
  msgid "Delete"
3908
  msgstr "Удалить"
3909
 
3910
+ #: admin/manage-fields.php:1205
3911
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3912
+ msgstr "Используйте эти шорткоды на страницах, где бы вы хотели, чтобы формы отображались:"
3913
+
3914
  #: admin/register-version.php:14
3915
  msgid "Register Your Version"
3916
  msgstr "Регистрация вашей версии"
3919
  msgid "Register Version"
3920
  msgstr "Регистрация версии"
3921
 
3922
+ #: admin/register-version.php:70
3923
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3924
+ msgstr "Если вы зарегистрируете эту версию Profile Builder, вы будете получать информацию, касающуюся обновлений, исправлений и техническую поддержку."
3925
+
3926
+ #: admin/register-version.php:72
3927
+ msgid " Serial Number:"
3928
+ msgstr "Серийный номер:"
3929
+
3930
  #: admin/register-version.php:77
3931
  msgid "The serial number was successfully validated!"
3932
  msgstr "Серийный номер успешно проверен!"
3943
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3944
  msgstr "Серийный номер не может быть подтверждён, так как истекло время проверки. Это возможно из-за проблем на сервере. Пожалуйста, повторите попытку позже!"
3945
 
3946
+ #: admin/register-version.php:87
3947
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3948
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3949
+
3950
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3951
  msgid "Content"
3952
  msgstr "Содержимое"
3953
 
3954
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3955
+ msgid "Edit this item"
3956
+ msgstr "Редактировать этот пункт"
3957
+
3958
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3959
+ msgid "Delete this item"
3960
+ msgstr "Удалить этот пункт"
3961
+
3962
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3963
+ msgid "Please enter a value for the required field "
3964
+ msgstr "Пожалуйста, введите значение для обязательного поля"
3965
+
3966
  #: front-end/extra-fields/upload/upload.php:122
3967
  msgid "Select File"
3968
  msgstr "Выбрать файл"
3969
 
3970
+ #: assets/lib/wck-api/fields/upload.php:43
3971
  #: front-end/extra-fields/upload/upload.php:112
3972
  msgid "Remove"
3973
  msgstr "Удалить"
3974
 
3975
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3976
+ msgid "You can add the information for the %s after you add a entry"
3977
+ msgstr "Вы можете добавить информацию для %s после добавления записи"
3978
+
3979
+ #: assets/lib/wck-api/fields/upload.php:75
3980
  #: front-end/extra-fields/upload/upload.php:128
3981
  msgid "Upload "
3982
  msgstr "Загрузить"
3983
 
3984
+ #: features/class-list-table.php:184
3985
+ msgid "No items found."
3986
+ msgstr "Никаких элементов не найдено."
3987
+
3988
  #: features/class-list-table.php:308
3989
  msgid "Bulk Actions"
3990
  msgstr "Массовые действия"
3993
  msgid "Apply"
3994
  msgstr "Применить"
3995
 
3996
+ #: features/class-list-table.php:402
3997
+ msgid "Show all dates"
3998
+ msgstr "Показать все даты"
3999
+
4000
  #: features/class-list-table.php:415
4001
  msgid "%1$s %2$d"
4002
  msgstr "%1$s %2$d"
4013
  msgid "%s pending"
4014
  msgstr "%s в ожидании"
4015
 
4016
+ #: features/class-list-table.php:566
4017
+ msgid "%1$s of %2$s"
4018
+ msgstr "%1$s of %2$s"
4019
+
4020
  #: features/class-list-table.php:713
4021
  msgid "Select All"
4022
  msgstr "Выбрать всё"
4026
  msgstr "Индикатор силы"
4027
 
4028
  #: features/admin-approval/admin-approval.php:14
4029
+ #: features/admin-approval/class-admin-approval.php:453
4030
  msgid "Admin Approval"
4031
  msgstr "Одобрение администратором"
4032
 
4033
+ #: features/admin-approval/admin-approval.php:28
4034
+ #: features/email-confirmation/email-confirmation.php:58
4035
+ msgid "Do you want to"
4036
+ msgstr "Вы хотите, чтобы"
4037
+
4038
  #: features/admin-approval/admin-approval.php:51
4039
  msgid "Your session has expired! Please refresh the page and try again"
4040
  msgstr "Время сеанса истекло! Пожалуйста, обновите страницу и попробуйте еще раз"
4159
  msgid "User-status"
4160
  msgstr "Статус пользователя"
4161
 
4162
+ #: features/admin-approval/class-admin-approval.php:252
4163
+ msgid "Do you want to bulk approve the selected users?"
4164
+ msgstr "Вы хотите массово утвердить выбранных пользователей?"
4165
+
4166
+ #: features/admin-approval/class-admin-approval.php:260
4167
+ msgid "Do you want to bulk unapprove the selected users?"
4168
+ msgstr "Вы хотите массово не утвердить выбранных пользователей?"
4169
+
4170
+ #: features/admin-approval/class-admin-approval.php:266
4171
+ msgid "Do you want to bulk delete the selected users?"
4172
+ msgstr "Вы хотите массово удалить выбранных пользователей?"
4173
+
4174
+ #: features/admin-approval/class-admin-approval.php:274
4175
  #: features/email-confirmation/class-email-confirmation.php:278
4176
  msgid "Sorry, but you don't have permission to do that!"
4177
  msgstr "Извините, но у вас недостаточно прав на это действие!"
4184
  msgid "Unapproved"
4185
  msgstr "Не утверждено"
4186
 
4187
+ #: features/admin-approval/class-admin-approval.php:456
4188
+ #: features/email-confirmation/class-email-confirmation.php:454
4189
+ msgid "All Users"
4190
+ msgstr "Все пользователи"
4191
+
4192
  #: features/email-confirmation/class-email-confirmation.php:120
4193
  msgid "delete this user from the _signups table?"
4194
  msgstr "удалить этого пользователя из _signups table?"
4227
  msgid "The selected users have had their activation emails resent"
4228
  msgstr "Выбранным пользователям отправлены письма для активации"
4229
 
4230
+ #: features/email-confirmation/class-email-confirmation.php:451
4231
+ #: features/email-confirmation/email-confirmation.php:47
4232
+ msgid "Users with Unconfirmed Email Address"
4233
+ msgstr "Пользователи с неподтверждёнными адресами электронной почты"
4234
+
4235
  #: features/email-confirmation/email-confirmation.php:107
4236
  msgid "There was an error performing that action!"
4237
  msgstr "При выполнении этого действия произошла ошибка!"
4295
  msgid "Profile Builder Login Widget"
4296
  msgstr "Profile Builder Login Widget"
4297
 
4298
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4299
  msgid "Register"
4300
  msgstr "Регистрация"
4301
 
4302
+ #: features/login-widget/login-widget.php:63
4303
+ msgid "Title:"
4304
+ msgstr "Название:"
4305
+
4306
+ #: features/login-widget/login-widget.php:68
4307
+ msgid "After login redirect URL (optional):"
4308
+ msgstr "После входа перенаправить на адрес (опционно):"
4309
+
4310
+ #: features/login-widget/login-widget.php:73
4311
+ msgid "Register page URL (optional):"
4312
+ msgstr "Адрес страницы регистрации (опционно):"
4313
+
4314
+ #: features/login-widget/login-widget.php:78
4315
+ msgid "Password Recovery page URL (optional):"
4316
+ msgstr "Адрес страницы восстановления пароля (опционно):"
4317
+
4318
  #: features/upgrades/upgrades-functions.php:91
4319
  #: features/upgrades/upgrades-functions.php:134
4320
  msgid "The usernames cannot be changed."
4356
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4357
  msgstr "Вскоре вы будете перенаправлены автоматически. Если вы видите эту страницу более чем %1$d секунд, пожалуйста нажмите %2$s.%3$s"
4358
 
4359
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4360
  msgid "The account %1s has been successfully created!"
4361
  msgstr "Учётная запись %1s была успешно создана!"
4362
 
4363
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4364
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4365
  msgstr "Прежде чем вы сможете получить доступ к вашей учетной записи %1s, необходимо подтвердить свой адрес электронной почты. Пожалуйста, проверьте свой почтовый ящик и нажмите на ссылку активации."
4366
 
4367
+ #: front-end/class-formbuilder.php:308
4368
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4369
  msgstr "Прежде чем вы сможете получить доступ к вашей учетной записи %1s, администратор должен утвердить его. Вы будете уведомлены по электронной почте."
4370
 
4371
+ #: front-end/class-formbuilder.php:331
4372
  msgid "Your profile has been successfully updated!"
4373
  msgstr "Ваш профиль был успешно обновлён!"
4374
 
4375
+ #: front-end/class-formbuilder.php:342
4376
  msgid "There was an error in the submitted form"
4377
  msgstr "Произошла ошибка в представленной форме"
4378
 
4379
+ #: front-end/class-formbuilder.php:399
4380
  msgid "Add User"
4381
  msgstr "Добавить пользователя"
4382
 
4383
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4384
  msgid "Update"
4385
  msgstr "Обновить"
4386
 
4387
+ #: front-end/class-formbuilder.php:465
4388
  msgid "Send these credentials via email."
4389
  msgstr "Отправить эти учётные данные по электронной почте."
4390
 
4598
  msgid "To use reCAPTCHA you must get an API public key from:"
4599
  msgstr "Для использования reCAPTCHA вы должны получить API публичный ключ от:"
4600
 
4601
+ #: modules/modules.php:11 modules/modules.php:58
4602
  msgid "Modules"
4603
  msgstr "Модули"
4604
 
4605
+ #: modules/modules.php:59
4606
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4607
+ msgstr "Здесь вы можете активировать / деактивировать доступные модули Profile Builder."
4608
+
4609
+ #: modules/modules.php:69
4610
+ msgid "Name/Description"
4611
+ msgstr "Название / Описание"
4612
+
4613
+ #: modules/modules.php:70
4614
+ msgid "Status"
4615
+ msgstr "Статус"
4616
+
4617
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4618
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4619
+ #: modules/modules.php:119
4620
+ msgid "Active"
4621
+ msgstr "Активный"
4622
+
4623
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4624
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4625
+ #: modules/modules.php:120
4626
+ msgid "Inactive"
4627
+ msgstr "Не активный"
4628
+
4629
  #: modules/email-customizer/admin-email-customizer.php:11
4630
  #: modules/email-customizer/admin-email-customizer.php:12
4631
+ #: modules/modules.php:96
4632
  msgid "Admin Email Customizer"
4633
  msgstr "Настройщик электронной почты администратора"
4634
 
4635
  #: modules/email-customizer/user-email-customizer.php:11
4636
  #: modules/email-customizer/user-email-customizer.php:12
4637
+ #: modules/modules.php:103
4638
  msgid "User Email Customizer"
4639
  msgstr "Настройщик электронной почты пользователя"
4640
 
4641
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4642
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4643
  msgid "Save"
4644
  msgstr "Сохранить"
4977
  msgid "<pre>Title (Type)</pre>"
4978
  msgstr "<pre>Название (тип)</pre>"
4979
 
4980
+ #: modules/multiple-forms/multiple-forms.php:222
4981
+ msgid "You need to specify the title of the form before creating it"
4982
+ msgstr "Вы должны указать название формы, прежде чем создавать её"
4983
+
4984
  #: modules/multiple-forms/register-forms.php:11
4985
  #: modules/multiple-forms/register-forms.php:12
4986
  msgid "Registration Form"
translation/profile-builder-sl_SL.mo CHANGED
Binary file
translation/profile-builder-sl_SL.po CHANGED
@@ -10,6 +10,22 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: admin/register-version.php:251
14
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
15
  msgstr ""
@@ -87,6 +103,46 @@ msgstr ""
87
  msgid "Learn More"
88
  msgstr ""
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  #: admin/manage-fields.php:118
91
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
92
  msgstr ""
@@ -703,14 +759,18 @@ msgstr ""
703
  msgid "Zimbabwe Dollar"
704
  msgstr ""
705
 
706
- #: admin/manage-fields.php:1091
707
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
708
  msgstr ""
709
 
710
- #: admin/manage-fields.php:1308
711
  msgid "Search Location"
712
  msgstr ""
713
 
 
 
 
 
714
  #: features/admin-approval/class-admin-approval.php:461
715
  #: features/email-confirmation/class-email-confirmation.php:460
716
  msgid "Search Users"
@@ -724,7 +784,7 @@ msgstr ""
724
  msgid "Conditional Rules"
725
  msgstr ""
726
 
727
- #: features/conditional-fields/conditional-fields.php:435
728
  msgid "This field has conditional logic enabled."
729
  msgstr ""
730
 
@@ -1047,6 +1107,22 @@ msgstr ""
1047
  msgid "Search Settings"
1048
  msgstr ""
1049
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1051
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1052
  msgid "Plugin is <strong>inactive</strong>"
@@ -1065,6 +1141,42 @@ msgstr ""
1065
  msgid "Paid Accounts"
1066
  msgstr ""
1067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
  #: admin/pms-cross-promotion.php:83
1069
  msgid "Plugin is Active"
1070
  msgstr ""
@@ -1077,6 +1189,14 @@ msgstr ""
1077
  msgid "Plugin has been deactivated."
1078
  msgstr ""
1079
 
 
 
 
 
 
 
 
 
1080
  #: features/email-confirmation/email-confirmation.php:400
1081
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1082
  msgstr ""
@@ -1147,6 +1267,7 @@ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_i
1147
  msgstr ""
1148
 
1149
  #: modules/custom-redirects/custom_redirects_admin.php:71
 
1150
  msgid "Individual User Redirects"
1151
  msgstr ""
1152
 
@@ -1159,10 +1280,12 @@ msgid "Select a user role."
1159
  msgstr ""
1160
 
1161
  #: modules/custom-redirects/custom_redirects_admin.php:101
 
1162
  msgid "User Role based Redirects"
1163
  msgstr ""
1164
 
1165
  #: modules/custom-redirects/custom_redirects_admin.php:120
 
1166
  msgid "Global Redirects"
1167
  msgstr ""
1168
 
@@ -1203,6 +1326,50 @@ msgstr ""
1203
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1204
  msgstr ""
1205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1206
  #: modules/custom-redirects/custom_redirects_admin.php:340
1207
  #: modules/custom-redirects/custom_redirects_admin.php:346
1208
  #: modules/custom-redirects/custom_redirects_admin.php:352
@@ -1233,6 +1400,10 @@ msgstr ""
1233
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1234
  msgstr ""
1235
 
 
 
 
 
1236
  #: admin/general-settings.php:137
1237
  msgid "Select on what user roles to activate Admin Approval."
1238
  msgstr ""
@@ -2501,6 +2672,14 @@ msgstr "Zambia"
2501
  msgid "Zimbabwe"
2502
  msgstr "Zimbabwe"
2503
 
 
 
 
 
 
 
 
 
2504
  #: features/admin-approval/admin-approval.php:214
2505
  msgid "Your account has been successfully created!"
2506
  msgstr ""
@@ -2587,7 +2766,7 @@ msgstr "Vnesti morate ključ spletne strani\n"
2587
  msgid "You must enter the secret key\n"
2588
  msgstr "Vnesti morate skrivni ključ\n"
2589
 
2590
- #: admin/add-ons.php:10
2591
  msgid "Add-Ons"
2592
  msgstr "Dodatki"
2593
 
@@ -2773,6 +2952,22 @@ msgstr "<strong>NAPAKA</strong>: Geslo mora vsebovati najmanj %s znakov"
2773
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2774
  msgstr "<strong>NAPAKA</strong>: Geslo mora biti najmanj %s v težavnosti"
2775
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2776
  #: admin/manage-fields.php:122
2777
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2778
  msgstr "Določite končnice na katere hočete omejiti naložene datoteke<br/>Primer: .ext1,.ext2,.ext3<br/>Če niso določene, so privzete končnice: .jpg,.jpeg,.gif,.png (.*)"
@@ -2797,7 +2992,7 @@ msgstr "Vrstni red vlog uporabnikov"
2797
  msgid "Save the user role order from the user roles checkboxes"
2798
  msgstr "Shranite vrstni red vlog uporabnikov s pomočjo potrditvenih polj"
2799
 
2800
- #: admin/manage-fields.php:1122
2801
  msgid "Please select at least one user role\n"
2802
  msgstr "Prosimo izberite vsaj eno vlogo uporabnika\n"
2803
 
@@ -2817,6 +3012,10 @@ msgstr "Vaša serijska številka bo kmalu potekla, prosimo %1$sObnovite vašo li
2817
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2818
  msgstr "Vaša serijska številka je potekla, prosimo %1$sObnovite vašo licenco%2$s."
2819
 
 
 
 
 
2820
  #: features/email-confirmation/class-email-confirmation.php:91
2821
  msgid "show"
2822
  msgstr "prikaži"
@@ -2825,6 +3024,10 @@ msgstr "prikaži"
2825
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
2826
  msgstr "Da se bodo uporabniki lahko registrirali na vaši strani preko Profile Builder vtičnika, morate najprej omogočiti registracijo uporabnikov. Pojdite na %1$sNastavitve omrežja%2$s, in pod Registracijske nastavitve označite “Uporabniški računi so lahko registrirani”. %3$sSkrij%4$s"
2827
 
 
 
 
 
2828
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
2829
  msgid "The password must have the minimum length of %s characters"
2830
  msgstr "Geslo mora imeti najmanj %s znakov"
@@ -2887,11 +3090,15 @@ msgstr "Uporabnik ni bil najden"
2887
  msgid "Valid tags {{reply_to}} and {{site_name}}"
2888
  msgstr "Veljavni oznaki {{reply_to}} in {{site_name}}"
2889
 
 
 
 
 
2890
  #: admin/manage-fields.php:127
2891
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
2892
  msgstr "Vnesite seznam vrednosti ločenih z vejico<br/>To je lahko karkoli, ker je skrito pred uporabniki, ampak ne sme vsebovati posebnih znakov ali opuščajev (apostrofov)."
2893
 
2894
- #: admin/manage-fields.php:1049
2895
  msgid "The meta-name cannot be empty\n"
2896
  msgstr "Meta-ime ne more biti prazno\n"
2897
 
@@ -2903,11 +3110,22 @@ msgstr "Sedaj ko ste pridobili svoj izvod %s, si vzamite čas in ga registrirajt
2903
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
2904
  msgstr "<p>Your <strong>Profile Builder</strong> serijska številka je neveljavna ali manjkajoča. <br/>Prosimo %1$sregistrirajte svoj izvod%2$s, da dobite dostop do samodejnih posodobitev in podpore. Potrebujete licenčni ključ? %3$sKupite sedaj%4$s</p>"
2905
 
2906
- #: front-end/extra-fields/select-cpt/select-cpt.php:36
 
 
 
2907
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
2908
  msgid "...Choose"
2909
  msgstr "...Izberite"
2910
 
 
 
 
 
 
 
 
 
2911
  #: features/functions.php:552
2912
  msgid "Very Weak"
2913
  msgstr "Zelo slabo"
@@ -2940,6 +3158,10 @@ msgstr "e-naslov"
2940
  msgid "Lost your password?"
2941
  msgstr "Izgubljeno geslo?"
2942
 
 
 
 
 
2943
  #: modules/email-customizer/admin-email-customizer.php:54
2944
  #: modules/email-customizer/user-email-customizer.php:54
2945
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
@@ -2981,10 +3203,18 @@ msgstr "Nastavi število uporabnikov, ki se jih prikaže na vsaki oštevilčeni
2981
  msgid "Show/Hide the Admin Bar on the Front-End"
2982
  msgstr "Prikaži/skrij Admin Bar na sprednji strani (Front-End)"
2983
 
2984
- #: admin/admin-bar.php:10
2985
  msgid "Admin Bar Settings"
2986
  msgstr "Admin Bar nastavitve"
2987
 
 
 
 
 
 
 
 
 
2988
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
2989
  #: modules/multiple-forms/register-forms.php:230
2990
  msgid "Default"
@@ -2998,7 +3228,9 @@ msgstr "Prikaži"
2998
  msgid "Hide"
2999
  msgstr "Skrij"
3000
 
3001
- #: features/functions.php:697
 
 
3002
  msgid "Save Changes"
3003
  msgstr "Shrani spremembe"
3004
 
@@ -3007,22 +3239,26 @@ msgid "Login is set to be done using the E-mail. This field will NOT appear in t
3007
  msgstr "Prijava je nastavljena na uporabo z e-naslovom. To polje se NE bo prikazalo na sprednji strani (Front-End)! ( te nastavitve lahko spremenite pod zavihkom \"%s\" )"
3008
 
3009
  #: admin/admin-functions.php:37 admin/general-settings.php:10
 
3010
  msgid "General Settings"
3011
  msgstr "Splošne nastavitve"
3012
 
3013
- #: admin/admin-functions.php:137
3014
  msgid "Very weak"
3015
  msgstr "Zelo slabo"
3016
 
3017
- #: admin/admin-functions.php:137 features/functions.php:552
 
3018
  msgid "Weak"
3019
  msgstr "Slabo"
3020
 
3021
- #: admin/admin-functions.php:137 features/functions.php:552
 
3022
  msgid "Medium"
3023
  msgstr "Srednje"
3024
 
3025
- #: admin/admin-functions.php:137 features/functions.php:552
 
3026
  msgid "Strong"
3027
  msgstr "Močno"
3028
 
@@ -3031,6 +3267,7 @@ msgid "Add Field"
3031
  msgstr "Dodaj polje"
3032
 
3033
  #: admin/admin-functions.php:189
 
3034
  msgid "Save Settings"
3035
  msgstr "Shrani nastavitve"
3036
 
@@ -3050,10 +3287,151 @@ msgstr "<strong>Profile Builder </strong>"
3050
  msgid "The best way to add front-end registration, edit profile and login forms."
3051
  msgstr "Najboljši način za registracijo na sprednji strani (Front-End), urejanje profila in obrazce za prijavo."
3052
 
3053
- #: features/login-widget/login-widget.php:59
 
 
 
 
3054
  msgid "Login"
3055
  msgstr "Prijava"
3056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3057
  #: modules/user-listing/userlisting.php:11
3058
  #: modules/user-listing/userlisting.php:12
3059
  #: modules/user-listing/userlisting.php:17
@@ -3061,11 +3439,45 @@ msgstr "Prijava"
3061
  msgid "User Listing"
3062
  msgstr "Seznam uporabnikov"
3063
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
  #: modules/custom-redirects/custom_redirects_admin.php:32
3065
  #: modules/custom-redirects/custom_redirects_admin.php:33
 
3066
  msgid "Custom Redirects"
3067
  msgstr "Preusmeritve po meri"
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  #: admin/basic-info.php:187
3070
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3071
  msgstr "* na voljo samo v %1$sHobbyist in Pro različicah%2$s."
@@ -3074,6 +3486,12 @@ msgstr "* na voljo samo v %1$sHobbyist in Pro različicah%2$s."
3074
  msgid "** only available in the %1$sPro version%2$s."
3075
  msgstr "** na voljo samo v %1$sPro različici%2$s."
3076
 
 
 
 
 
 
 
3077
  #: modules/multiple-forms/edit-profile-forms.php:206
3078
  #: modules/multiple-forms/register-forms.php:229
3079
  #: modules/multiple-forms/register-forms.php:230
@@ -3085,6 +3503,11 @@ msgstr "Da"
3085
  msgid "You can find the default file here: %1$s"
3086
  msgstr "Originalno datoteko lahko najdete tu: %1$s"
3087
 
 
 
 
 
 
3088
  #: modules/multiple-forms/edit-profile-forms.php:206
3089
  #: modules/multiple-forms/register-forms.php:229
3090
  #: modules/multiple-forms/register-forms.php:230
@@ -3095,15 +3518,39 @@ msgstr "Ne"
3095
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3096
  msgstr "Seznam nepotrjenih e-naslovov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditvena e-pošta%2$s."
3097
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  #: admin/general-settings.php:111
3099
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3100
  msgstr "Seznam e-naslovov uporabnikov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditve skrbnikov strani%2$s."
3101
 
 
 
 
 
3102
  #: admin/general-settings.php:152
3103
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3104
  msgstr "Vi določite kdo bo uporabnik na vaši strani. Prejmite obvestilo po e-pošti ali odobrite več uporabnikov hkrati preko WordPress UI. Omogočite Odobritev skrbnikov Strani z nadgradnjo na %1$sHobbyist ali PRO različico%2$s."
3105
 
3106
- #: admin/manage-fields.php:198
 
 
 
 
3107
  #: features/admin-approval/class-admin-approval.php:166
3108
  #: features/email-confirmation/class-email-confirmation.php:167
3109
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
@@ -3116,12 +3563,29 @@ msgstr "Vi določite kdo bo uporabnik na vaši strani. Prejmite obvestilo po e-p
3116
  msgid "Username"
3117
  msgstr "Uporabniško ime"
3118
 
3119
- #: front-end/login.php:215 modules/email-customizer/email-customizer.php:29
 
3120
  #: modules/user-listing/userlisting.php:736
3121
  #: modules/user-listing/userlisting.php:2153
3122
  msgid "Email"
3123
  msgstr "E-naslov"
3124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3125
  #: admin/manage-fields.php:12
3126
  msgid "Manage Fields"
3127
  msgstr "Upravljajte s polji"
@@ -3200,10 +3664,6 @@ msgstr "Vnesite vrednost (med 20 in 200) za velikost prikazne slike<br/>Če ni d
3200
  msgid "Date-format"
3201
  msgstr "Format datuma"
3202
 
3203
- #: admin/manage-fields.php:125
3204
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3205
- msgstr "Določite obliko zapisa datuma pri uporabi vmesnika za izbiro datuma (Datepicker)<br/>Veljavne možnosti: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Če ni določena oblika zapisa, je privzeta vrednost mm/dd/yy"
3206
-
3207
  #: admin/manage-fields.php:126
3208
  msgid "Terms of Agreement"
3209
  msgstr "Splošni pogoji"
@@ -3367,7 +3827,7 @@ msgstr "Ponovite geslo"
3367
  msgid "Type your password again. "
3368
  msgstr "Ponovno vpišite geslo."
3369
 
3370
- #: admin/manage-fields.php:977 admin/manage-fields.php:1131
3371
  msgid "You must select a field\n"
3372
  msgstr "Izbrati morate polje\n"
3373
 
@@ -3391,36 +3851,38 @@ msgstr "Vnešena vrednost za vrstico ni numerična\n"
3391
  msgid "You must enter a value for the row number\n"
3392
  msgstr "Vnesti morate vrednost za številko vrstice\n"
3393
 
3394
- #: admin/manage-fields.php:1030
3395
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3396
  msgstr "Vnešena vrednost za datumski vmesnik ni v veljavnem formatu datuma\n"
3397
 
3398
- #: admin/manage-fields.php:1033
3399
  msgid "You must enter a value for the date-format\n"
3400
  msgstr "Vnesti morate vrednost za format datuma\n"
3401
 
3402
- #: admin/manage-fields.php:1061 admin/manage-fields.php:1069
3403
- #: admin/manage-fields.php:1080
3404
  msgid "That meta-name is already in use\n"
3405
  msgstr "To meta-ime je že v uporabi\n"
3406
 
3407
- #: admin/manage-fields.php:1111
3408
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3409
  msgstr "Sledeče možnosti niso sovpadale s tistimi iz seznama možnosti: %s\n"
3410
 
3411
- #: admin/manage-fields.php:1115
3412
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3413
  msgstr "Sledeča možnost ni sovpadale s tistimi iz seznama možnosti: %s\n"
3414
 
3415
- #: admin/manage-fields.php:1138
3416
  msgid "That field is already added in this form\n"
3417
  msgstr "To polje je že v tem obrazcu\n"
3418
 
3419
- #: admin/manage-fields.php:1187
3420
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3421
  msgstr "<pre>Naslov</pre><pre>Tip</pre><pre>Meta Ime</pre><pre class=\"wppb-mb-head-required\">Zahtevano</pre>"
3422
 
3423
- #: admin/manage-fields.php:1187
 
 
3424
  #: features/admin-approval/class-admin-approval.php:108
3425
  #: features/functions.php:718 features/functions.php:725
3426
  #: modules/custom-redirects/custom_redirects_admin.php:179
@@ -3431,7 +3893,9 @@ msgstr "<pre>Naslov</pre><pre>Tip</pre><pre>Meta Ime</pre><pre class=\"wppb-mb-h
3431
  msgid "Edit"
3432
  msgstr "Uredi"
3433
 
3434
- #: admin/manage-fields.php:1187
 
 
3435
  #: features/admin-approval/class-admin-approval.php:113
3436
  #: features/admin-approval/class-admin-approval.php:224
3437
  #: features/email-confirmation/class-email-confirmation.php:120
@@ -3444,6 +3908,10 @@ msgstr "Uredi"
3444
  msgid "Delete"
3445
  msgstr "Izbriši"
3446
 
 
 
 
 
3447
  #: admin/register-version.php:14
3448
  msgid "Register Your Version"
3449
  msgstr "Registrirajte vašo različico"
@@ -3452,6 +3920,14 @@ msgstr "Registrirajte vašo različico"
3452
  msgid "Register Version"
3453
  msgstr "Registrirajte različico"
3454
 
 
 
 
 
 
 
 
 
3455
  #: admin/register-version.php:77
3456
  msgid "The serial number was successfully validated!"
3457
  msgstr "Serijska številka je bila uspešno validirana!"
@@ -3468,22 +3944,48 @@ msgstr "Serisjke številke ni bilo možno validirati, ker je potekla!"
3468
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3469
  msgstr "Serijske številke ni bilo možno validirati, ker je proces naletel na časovno omejitev. To se lahko zgodi zaradi napake v strežniku. Prosimo poizkusite ponovno kasneje!"
3470
 
3471
- #: features/functions.php:725
 
 
 
 
3472
  msgid "Content"
3473
  msgstr "Vsebina"
3474
 
 
 
 
 
 
 
 
 
 
 
 
 
3475
  #: front-end/extra-fields/upload/upload.php:122
3476
  msgid "Select File"
3477
  msgstr ""
3478
 
 
3479
  #: front-end/extra-fields/upload/upload.php:112
3480
  msgid "Remove"
3481
  msgstr "Odstrani"
3482
 
 
 
 
 
 
3483
  #: front-end/extra-fields/upload/upload.php:128
3484
  msgid "Upload "
3485
  msgstr "Naloži"
3486
 
 
 
 
 
3487
  #: features/class-list-table.php:308
3488
  msgid "Bulk Actions"
3489
  msgstr "Več dejanj hkrati"
@@ -3492,6 +3994,10 @@ msgstr "Več dejanj hkrati"
3492
  msgid "Apply"
3493
  msgstr "Uporabite"
3494
 
 
 
 
 
3495
  #: features/class-list-table.php:415
3496
  msgid "%1$s %2$d"
3497
  msgstr "%1$s %2$d"
@@ -3508,6 +4014,10 @@ msgstr "Pogled izvlečka"
3508
  msgid "%s pending"
3509
  msgstr "%s v čakanju"
3510
 
 
 
 
 
3511
  #: features/class-list-table.php:713
3512
  msgid "Select All"
3513
  msgstr "Izberi vse"
@@ -3517,9 +4027,15 @@ msgid "Strength indicator"
3517
  msgstr "Indikator moči gesla"
3518
 
3519
  #: features/admin-approval/admin-approval.php:14
 
3520
  msgid "Admin Approval"
3521
  msgstr "Odobritev skrbnika strani"
3522
 
 
 
 
 
 
3523
  #: features/admin-approval/admin-approval.php:51
3524
  msgid "Your session has expired! Please refresh the page and try again"
3525
  msgstr "Vaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovno"
@@ -3644,6 +4160,19 @@ msgstr "Registriran"
3644
  msgid "User-status"
3645
  msgstr "Status uporabnika"
3646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  #: features/email-confirmation/class-email-confirmation.php:278
3648
  msgid "Sorry, but you don't have permission to do that!"
3649
  msgstr "Oprostite, ampak nimate pravic za dokočnanje tega dejanja!"
@@ -3656,6 +4185,11 @@ msgstr "Odobren"
3656
  msgid "Unapproved"
3657
  msgstr "Neodobren"
3658
 
 
 
 
 
 
3659
  #: features/email-confirmation/class-email-confirmation.php:120
3660
  msgid "delete this user from the _signups table?"
3661
  msgstr "izbriši tega uporabnika iz _signups tabele?"
@@ -3694,6 +4228,11 @@ msgstr "Izbrani uporabniki so bili aktivirani"
3694
  msgid "The selected users have had their activation emails resent"
3695
  msgstr "Izbranim uporabnikom so bile ponovno poslane potrditvene e-pošte"
3696
 
 
 
 
 
 
3697
  #: features/email-confirmation/email-confirmation.php:107
3698
  msgid "There was an error performing that action!"
3699
  msgstr "Prišlo je do napake pri zadnjem dejanju!"
@@ -3757,10 +4296,26 @@ msgstr "Ta prijavni gradnik vam omogoča dodajanje prijavnega obrazca v stransko
3757
  msgid "Profile Builder Login Widget"
3758
  msgstr "Prijavni gradnik Profile Builder"
3759
 
3760
- #: front-end/class-formbuilder.php:390 front-end/login.php:250
3761
  msgid "Register"
3762
  msgstr "Registriraj se"
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: features/upgrades/upgrades-functions.php:91
3765
  #: features/upgrades/upgrades-functions.php:134
3766
  msgid "The usernames cannot be changed."
@@ -3802,35 +4357,35 @@ msgstr "tukaj"
3802
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3803
  msgstr "Kmalu boste samodejno preusmerjeni. Če ostanete na tej strani več kot %1$d sekund, prosimo kliknite %2$s.%3$s"
3804
 
3805
- #: front-end/class-formbuilder.php:290 front-end/class-formbuilder.php:297
3806
  msgid "The account %1s has been successfully created!"
3807
  msgstr "Račun %1s je bil uspećno ustvarjen!"
3808
 
3809
- #: front-end/class-formbuilder.php:293 front-end/class-formbuilder.php:303
3810
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3811
  msgstr "Preden lahko uporabljate svoj račun %1s morate potrditi svoj e-poštni naslov. Prosimo preverite vašo mapo s prejeto e-pošto in kliknite na aktivacijsko povezavo."
3812
 
3813
- #: front-end/class-formbuilder.php:299
3814
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3815
  msgstr "Preden lahko uporabljate svoj račun %1s ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti."
3816
 
3817
- #: front-end/class-formbuilder.php:322
3818
  msgid "Your profile has been successfully updated!"
3819
  msgstr "Vaš profil je bil uspešno posodobljen!"
3820
 
3821
- #: front-end/class-formbuilder.php:333
3822
  msgid "There was an error in the submitted form"
3823
  msgstr "Prišlo je do napake pri oddaji obrazca"
3824
 
3825
- #: front-end/class-formbuilder.php:390
3826
  msgid "Add User"
3827
  msgstr "Dodaj uporabnika"
3828
 
3829
- #: admin/add-ons.php:170 front-end/class-formbuilder.php:393
3830
  msgid "Update"
3831
  msgstr "Posodobi"
3832
 
3833
- #: front-end/class-formbuilder.php:456
3834
  msgid "Send these credentials via email."
3835
  msgstr "Pošlji te vpisne podatke po e-pošti."
3836
 
@@ -4044,20 +4599,47 @@ msgstr "Zavoljo varnostnih razlogov, morate priskrbeti oddaljeni ip za reCAPTCHA
4044
  msgid "To use reCAPTCHA you must get an API public key from:"
4045
  msgstr "Za uporabo reCAPTCHA morate pridobiti API javni ključ od:"
4046
 
4047
- #: modules/modules.php:11
4048
  msgid "Modules"
4049
  msgstr "Moduli"
4050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
  #: modules/email-customizer/admin-email-customizer.php:11
4052
  #: modules/email-customizer/admin-email-customizer.php:12
 
4053
  msgid "Admin Email Customizer"
4054
  msgstr "Oblikovalec Skrbniškega E-naslova"
4055
 
4056
  #: modules/email-customizer/user-email-customizer.php:11
4057
  #: modules/email-customizer/user-email-customizer.php:12
 
4058
  msgid "User Email Customizer"
4059
  msgstr " Oblikovalec Uporabniškega E-naslova"
4060
 
 
4061
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4062
  msgid "Save"
4063
  msgstr "Shrani"
@@ -4383,6 +4965,10 @@ msgstr "Izberite eno izmed podprtih polj, s katerimi upravljate <a href=\""
4383
  msgid "<pre>Title (Type)</pre>"
4384
  msgstr "<pre>Naslov (Tip)</pre>"
4385
 
 
 
 
 
4386
  #: modules/multiple-forms/register-forms.php:11
4387
  #: modules/multiple-forms/register-forms.php:12
4388
  msgid "Registration Form"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
15
+ msgstr ""
16
+
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
19
+ msgstr ""
20
+
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
+ msgstr ""
24
+
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
+ msgstr ""
28
+
29
  #: admin/register-version.php:251
30
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
+ msgid "Timepicker"
108
+ msgstr ""
109
+
110
+ #: admin/basic-info.php:100
111
+ msgid "Colorpicker"
112
+ msgstr ""
113
+
114
+ #: admin/basic-info.php:103
115
+ msgid "Currency Select"
116
+ msgstr ""
117
+
118
+ #: admin/basic-info.php:109
119
+ msgid "Number"
120
+ msgstr ""
121
+
122
+ #: admin/basic-info.php:114
123
+ msgid "Validation"
124
+ msgstr ""
125
+
126
+ #: admin/basic-info.php:115
127
+ msgid "Map"
128
+ msgstr ""
129
+
130
+ #: admin/basic-info.php:116
131
+ msgid "HTML"
132
+ msgstr ""
133
+
134
+ #: admin/basic-info.php:162 modules/modules.php:117
135
+ msgid "Repeater Fields"
136
+ msgstr ""
137
+
138
+ #: admin/basic-info.php:163
139
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
+ msgstr ""
141
+
142
+ #: admin/general-settings.php:62
143
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
+ msgstr ""
145
+
146
  #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
+ msgid "You are not allowed to do this."
772
+ msgstr ""
773
+
774
  #: features/admin-approval/class-admin-approval.php:461
775
  #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
1111
+ msgid "Recommended Plugins"
1112
+ msgstr ""
1113
+
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
1115
+ msgid "Free"
1116
+ msgstr ""
1117
+
1118
+ #: admin/add-ons.php:221
1119
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
+ msgstr ""
1121
+
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
1123
+ msgid "More Details"
1124
+ msgstr ""
1125
+
1126
  #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
  #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
1128
  msgid "Plugin is <strong>inactive</strong>"
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
+ msgstr ""
1147
+
1148
+ #: admin/pms-cross-promotion.php:37
1149
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
+ msgstr ""
1151
+
1152
+ #: admin/pms-cross-promotion.php:40
1153
+ msgid "Paid & Free Subscriptions"
1154
+ msgstr ""
1155
+
1156
+ #: admin/pms-cross-promotion.php:41
1157
+ msgid "Restrict Content"
1158
+ msgstr ""
1159
+
1160
+ #: admin/pms-cross-promotion.php:42
1161
+ msgid "Member Management"
1162
+ msgstr ""
1163
+
1164
+ #: admin/pms-cross-promotion.php:43
1165
+ msgid "Email Templates"
1166
+ msgstr ""
1167
+
1168
+ #: admin/pms-cross-promotion.php:44
1169
+ msgid "Account Management"
1170
+ msgstr ""
1171
+
1172
+ #: admin/pms-cross-promotion.php:45
1173
+ msgid "Subscription Management"
1174
+ msgstr ""
1175
+
1176
+ #: admin/pms-cross-promotion.php:46
1177
+ msgid "Payment Management"
1178
+ msgstr ""
1179
+
1180
  #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
+ msgstr ""
1195
+
1196
+ #: admin/pms-cross-promotion.php:155
1197
+ msgid "Step by Step Quick Setup"
1198
+ msgstr ""
1199
+
1200
  #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1267
  msgstr ""
1268
 
1269
  #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1280
  msgstr ""
1281
 
1282
  #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
  #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
+ msgstr ""
1332
+
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
+ msgid "Which redirect happens depends on the following priority:"
1335
+ msgstr ""
1336
+
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
1338
+ msgid "Redirect Default WordPress forms and pages"
1339
+ msgstr ""
1340
+
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
+ msgstr ""
1344
+
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
+ msgid "Available tags for dynamic URLs"
1347
+ msgstr ""
1348
+
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1351
+ msgstr ""
1352
+
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
+ msgid "generates a url of the current website homepage."
1355
+ msgstr ""
1356
+
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
+ msgstr ""
1360
+
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
+ msgid "the ID of the user"
1363
+ msgstr ""
1364
+
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
+ msgstr ""
1368
+
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
+ msgid "the URL of the previously visited page"
1371
+ msgstr ""
1372
+
1373
  #: modules/custom-redirects/custom_redirects_admin.php:340
1374
  #: modules/custom-redirects/custom_redirects_admin.php:346
1375
  #: modules/custom-redirects/custom_redirects_admin.php:352
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
+ msgid "\"Admin Approval\" on User Role:"
1405
+ msgstr ""
1406
+
1407
  #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
+ msgstr ""
2678
+
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2681
+ msgstr ""
2682
+
2683
  #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2766
  msgid "You must enter the secret key\n"
2767
  msgstr "Vnesti morate skrivni ključ\n"
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
2770
  msgid "Add-Ons"
2771
  msgstr "Dodatki"
2772
 
2952
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2953
  msgstr "<strong>NAPAKA</strong>: Geslo mora biti najmanj %s v težavnosti"
2954
 
2955
+ #: admin/general-settings.php:163
2956
+ msgid "Username and Email"
2957
+ msgstr "Uporabniško ime in e-naslov"
2958
+
2959
+ #: admin/general-settings.php:168
2960
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
2961
+ msgstr "\"Uporabniško ime in e-naslov\" - uporabnik se lahko prijavi tako z uporabniškim imenom kot tudi z e-naslovom."
2962
+
2963
+ #: admin/general-settings.php:169
2964
+ msgid "\"Username\" - users can Log In only with Username."
2965
+ msgstr "\"Uporabniško ime\" - uporabniki se lahko prijavijo le z njihovim uporabniškim imenom."
2966
+
2967
+ #: admin/general-settings.php:170
2968
+ msgid "\"Email\" - users can Log In only with Email."
2969
+ msgstr "\"E-naslov\" - uporabniki se lahko prijavijo samo z e-poštnim naslovom"
2970
+
2971
  #: admin/manage-fields.php:122
2972
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2973
  msgstr "Določite končnice na katere hočete omejiti naložene datoteke<br/>Primer: .ext1,.ext2,.ext3<br/>Če niso določene, so privzete končnice: .jpg,.jpeg,.gif,.png (.*)"
2992
  msgid "Save the user role order from the user roles checkboxes"
2993
  msgstr "Shranite vrstni red vlog uporabnikov s pomočjo potrditvenih polj"
2994
 
2995
+ #: admin/manage-fields.php:1125
2996
  msgid "Please select at least one user role\n"
2997
  msgstr "Prosimo izberite vsaj eno vlogo uporabnika\n"
2998
 
3012
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3013
  msgstr "Vaša serijska številka je potekla, prosimo %1$sObnovite vašo licenco%2$s."
3014
 
3015
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3016
+ msgid "Add Entry"
3017
+ msgstr "Dodaj vnos"
3018
+
3019
  #: features/email-confirmation/class-email-confirmation.php:91
3020
  msgid "show"
3021
  msgstr "prikaži"
3024
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3025
  msgstr "Da se bodo uporabniki lahko registrirali na vaši strani preko Profile Builder vtičnika, morate najprej omogočiti registracijo uporabnikov. Pojdite na %1$sNastavitve omrežja%2$s, in pod Registracijske nastavitve označite “Uporabniški računi so lahko registrirani”. %3$sSkrij%4$s"
3026
 
3027
+ #: front-end/class-formbuilder.php:643
3028
+ msgid "User to edit:"
3029
+ msgstr "Uporabnik, ki ga urejate:"
3030
+
3031
  #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
3032
  msgid "The password must have the minimum length of %s characters"
3033
  msgstr "Geslo mora imeti najmanj %s znakov"
3090
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3091
  msgstr "Veljavni oznaki {{reply_to}} in {{site_name}}"
3092
 
3093
+ #: admin/admin-bar.php:48
3094
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3095
+ msgstr "Izberite katere vloge uporabnikov (user roles) vidijo Admin Bar na sprednji strani (Front-End) spletne strani."
3096
+
3097
  #: admin/manage-fields.php:127
3098
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3099
  msgstr "Vnesite seznam vrednosti ločenih z vejico<br/>To je lahko karkoli, ker je skrito pred uporabniki, ampak ne sme vsebovati posebnih znakov ali opuščajev (apostrofov)."
3100
 
3101
+ #: admin/manage-fields.php:1052
3102
  msgid "The meta-name cannot be empty\n"
3103
  msgstr "Meta-ime ne more biti prazno\n"
3104
 
3110
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3111
  msgstr "<p>Your <strong>Profile Builder</strong> serijska številka je neveljavna ali manjkajoča. <br/>Prosimo %1$sregistrirajte svoj izvod%2$s, da dobite dostop do samodejnih posodobitev in podpore. Potrebujete licenčni ključ? %3$sKupite sedaj%4$s</p>"
3112
 
3113
+ #: assets/lib/wck-api/fields/country select.php:14
3114
+ #: assets/lib/wck-api/fields/cpt select.php:17
3115
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3116
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3117
  #: front-end/extra-fields/select-cpt/select-cpt.php:60
3118
  msgid "...Choose"
3119
  msgstr "...Izberite"
3120
 
3121
+ #: features/class-list-table.php:526 features/class-list-table.php:942
3122
+ msgid "1 item"
3123
+ msgid_plural "%s items"
3124
+ msgstr[0] "1 element"
3125
+ msgstr[1] ""
3126
+ msgstr[2] ""
3127
+ msgstr[3] ""
3128
+
3129
  #: features/functions.php:552
3130
  msgid "Very Weak"
3131
  msgstr "Zelo slabo"
3158
  msgid "Lost your password?"
3159
  msgstr "Izgubljeno geslo?"
3160
 
3161
+ #: index.php:34
3162
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3163
+ msgstr "je tudi aktiviran. Za aktivacijo te različice vtičnika morate najprej deaktivirati trenutnega."
3164
+
3165
  #: modules/email-customizer/admin-email-customizer.php:54
3166
  #: modules/email-customizer/user-email-customizer.php:54
3167
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3203
  msgid "Show/Hide the Admin Bar on the Front-End"
3204
  msgstr "Prikaži/skrij Admin Bar na sprednji strani (Front-End)"
3205
 
3206
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
3207
  msgid "Admin Bar Settings"
3208
  msgstr "Admin Bar nastavitve"
3209
 
3210
+ #: admin/admin-bar.php:57
3211
+ msgid "User-Role"
3212
+ msgstr "Vloga uporabnika"
3213
+
3214
+ #: admin/admin-bar.php:58
3215
+ msgid "Visibility"
3216
+ msgstr "Vidnost"
3217
+
3218
  #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3219
  #: modules/multiple-forms/register-forms.php:230
3220
  msgid "Default"
3228
  msgid "Hide"
3229
  msgstr "Skrij"
3230
 
3231
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3232
+ #: admin/register-version.php:95 features/functions.php:697
3233
+ #: modules/modules.php:127
3234
  msgid "Save Changes"
3235
  msgstr "Shrani spremembe"
3236
 
3239
  msgstr "Prijava je nastavljena na uporabo z e-naslovom. To polje se NE bo prikazalo na sprednji strani (Front-End)! ( te nastavitve lahko spremenite pod zavihkom \"%s\" )"
3240
 
3241
  #: admin/admin-functions.php:37 admin/general-settings.php:10
3242
+ #: admin/general-settings.php:38
3243
  msgid "General Settings"
3244
  msgstr "Splošne nastavitve"
3245
 
3246
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
3247
  msgid "Very weak"
3248
  msgstr "Zelo slabo"
3249
 
3250
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3251
+ #: features/functions.php:552
3252
  msgid "Weak"
3253
  msgstr "Slabo"
3254
 
3255
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3256
+ #: features/functions.php:552
3257
  msgid "Medium"
3258
  msgstr "Srednje"
3259
 
3260
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3261
+ #: features/functions.php:552
3262
  msgid "Strong"
3263
  msgstr "Močno"
3264
 
3267
  msgstr "Dodaj polje"
3268
 
3269
  #: admin/admin-functions.php:189
3270
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3271
  msgid "Save Settings"
3272
  msgstr "Shrani nastavitve"
3273
 
3287
  msgid "The best way to add front-end registration, edit profile and login forms."
3288
  msgstr "Najboljši način za registracijo na sprednji strani (Front-End), urejanje profila in obrazce za prijavo."
3289
 
3290
+ #: admin/basic-info.php:33
3291
+ msgid "For Modern User Interaction"
3292
+ msgstr "Interakcija za moderne uporabnike"
3293
+
3294
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
3295
  msgid "Login"
3296
  msgstr "Prijava"
3297
 
3298
+ #: admin/basic-info.php:40
3299
+ msgid "Registration"
3300
+ msgstr "Registracija"
3301
+
3302
+ #: admin/basic-info.php:44
3303
+ msgid "Edit Profile"
3304
+ msgstr "Uredi profil"
3305
+
3306
+ #: admin/basic-info.php:51
3307
+ msgid "Extra Features"
3308
+ msgstr "Dodatne funkcije"
3309
+
3310
+ #: admin/basic-info.php:52
3311
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3312
+ msgstr "Funkcije, ki vam dajo več nadzora nad vašimi uporabniki, povečano varnost in pomagajo pri borbi proti nezaželenim prijavam."
3313
+
3314
+ #: admin/basic-info.php:53
3315
+ msgid "Enable extra features"
3316
+ msgstr "Omogoči dodatne funkcije"
3317
+
3318
+ #: admin/basic-info.php:57
3319
+ msgid "Recover Password"
3320
+ msgstr "Obnovitev gesla"
3321
+
3322
+ #: admin/basic-info.php:61
3323
+ msgid "Admin Approval (*)"
3324
+ msgstr "Odobritev skrbnikov strani (*)"
3325
+
3326
+ #: admin/basic-info.php:62
3327
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3328
+ msgstr "Vi določite kdo bo postal uporabnik vaše strani. Prejmite obvestilo preko e-pošte ali odobrite več uporabnikov iz WordPress-a."
3329
+
3330
+ #: admin/basic-info.php:65
3331
+ msgid "Email Confirmation"
3332
+ msgstr "Potrditev e-naslova"
3333
+
3334
+ #: admin/basic-info.php:66
3335
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3336
+ msgstr "Poskrbite, da se vaši uporabniki prijavljajo s pristnimi e-naslovi. Pri registraciji prejmejo uporabniki na e-naslov obvestilo, v katerem morajo potrditi svoj e-naslov."
3337
+
3338
+ #: admin/basic-info.php:69
3339
+ msgid "Minimum Password Length and Strength Meter"
3340
+ msgstr "Najmanjša dolžina gesla ter prikaz težavnosti gesla"
3341
+
3342
+ #: admin/basic-info.php:70
3343
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3344
+ msgstr "V celoti onemogočite slaba gesla z nastavitvijo najmanjše dolžine gesla in z zahtevo močnih gesel."
3345
+
3346
+ #: admin/basic-info.php:73
3347
+ msgid "Login with Email or Username"
3348
+ msgstr "Prijava z e-naslovom ali uporabniškim imenom"
3349
+
3350
+ #: admin/basic-info.php:74
3351
+ msgid "Allow users to log in with their email or username when accessing your site."
3352
+ msgstr "Dovolite uporabnikom, da se prijavijo z njihovim e-naslovom ali uporabniškim imenom pri prijavi na vašo stran."
3353
+
3354
+ #: admin/basic-info.php:87
3355
+ msgid "Customize Your Forms The Way You Want (*)"
3356
+ msgstr "Prilagodite vaše obrazce po svojih željah (*)"
3357
+
3358
+ #: admin/basic-info.php:88
3359
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3360
+ msgstr "Z dodatnimi profilnimi polji lahko ustvarite registracijski obrazec po vaši meri."
3361
+
3362
+ #: admin/basic-info.php:90
3363
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3364
+ msgstr "Dodatna profilna polja so na voljo v različicah Hobbyist ali PRO"
3365
+
3366
+ #: admin/basic-info.php:92
3367
+ msgid "Get started with extra fields"
3368
+ msgstr "Začnite z uporabo dodatnih polj"
3369
+
3370
+ #: admin/basic-info.php:95
3371
+ msgid "Avatar Upload"
3372
+ msgstr "Nastavitev prikazne slike"
3373
+
3374
+ #: admin/basic-info.php:96
3375
+ msgid "Generic Uploads"
3376
+ msgstr "Splošni upload-i"
3377
+
3378
+ #: admin/basic-info.php:97
3379
+ msgid "Agree To Terms Checkbox"
3380
+ msgstr "Strinjam se s pogoji uporabe Checkbox"
3381
+
3382
+ #: admin/basic-info.php:98
3383
+ msgid "Datepicker"
3384
+ msgstr "Izbira datuma z vmesnikom"
3385
+
3386
+ #: admin/basic-info.php:101
3387
+ msgid "reCAPTCHA"
3388
+ msgstr "reCAPTCHA"
3389
+
3390
+ #: admin/basic-info.php:102
3391
+ msgid "Country Select"
3392
+ msgstr "Izbira države"
3393
+
3394
+ #: admin/basic-info.php:104
3395
+ msgid "Timezone Select"
3396
+ msgstr "Izbira časovnega pasa"
3397
+
3398
+ #: admin/basic-info.php:108
3399
+ msgid "Input / Hidden Input"
3400
+ msgstr "Vnosno polje / skrito vnosno polje"
3401
+
3402
+ #: admin/basic-info.php:110
3403
+ msgid "Checkbox"
3404
+ msgstr "Checkbox"
3405
+
3406
+ #: admin/basic-info.php:111
3407
+ msgid "Select"
3408
+ msgstr "Select"
3409
+
3410
+ #: admin/basic-info.php:112
3411
+ msgid "Radio Buttons"
3412
+ msgstr "Izbirni gumbi (radio buttons)"
3413
+
3414
+ #: admin/basic-info.php:113
3415
+ msgid "Textarea"
3416
+ msgstr "Textarea"
3417
+
3418
+ #: admin/basic-info.php:125
3419
+ msgid "Powerful Modules (**)"
3420
+ msgstr "Zmogljivi moduli (**)"
3421
+
3422
+ #: admin/basic-info.php:126
3423
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3424
+ msgstr "Vse kar boste kadarkoli potrebovali za upravljanje z vašimi uporabniki je verjetno že na voljo v naboru Pro modulov."
3425
+
3426
+ #: admin/basic-info.php:128
3427
+ msgid "Enable your modules"
3428
+ msgstr "Omogočite vaše module"
3429
+
3430
+ #: admin/basic-info.php:131
3431
+ msgid "Find out more about PRO Modules"
3432
+ msgstr "Izvedite več o PRO modulih"
3433
+
3434
+ #: admin/basic-info.php:136 modules/modules.php:89
3435
  #: modules/user-listing/userlisting.php:11
3436
  #: modules/user-listing/userlisting.php:12
3437
  #: modules/user-listing/userlisting.php:17
3439
  msgid "User Listing"
3440
  msgstr "Seznam uporabnikov"
3441
 
3442
+ #: admin/basic-info.php:138
3443
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3444
+ msgstr "Predloge z enostavnim urejanjem za ustvarjanje seznamov uporabnikov kot tudi za ustvarjanje strani za posamezne uporabnike. Temelječa na kratki kodi (shortcode), ta opcija ponuja veliko možnosti za upravljanje z vašimi seznami."
3445
+
3446
+ #: admin/basic-info.php:144
3447
+ msgid "Email Customizer"
3448
+ msgstr "Spremenite e-poštna sporočila"
3449
+
3450
+ #: admin/basic-info.php:145
3451
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3452
+ msgstr "Naredite vso e-pošto, ki je poslana vašim uporabnikom ter skrbnikom strani, bolj osebno. Registracija, potrditvena e-pošta, odobritev / zavrnitev skrbnika strani."
3453
+
3454
+ #: admin/basic-info.php:148
3455
  #: modules/custom-redirects/custom_redirects_admin.php:32
3456
  #: modules/custom-redirects/custom_redirects_admin.php:33
3457
+ #: modules/modules.php:110
3458
  msgid "Custom Redirects"
3459
  msgstr "Preusmeritve po meri"
3460
 
3461
+ #: admin/basic-info.php:149
3462
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3463
+ msgstr "Ne dovolite, da vaši uporabniki vidijo WordPress nadzorno ploščo, preusmerite jih na sprednjo stran (Front-End) po prijavi ali registraciji - vse samo nekaj klikov stran."
3464
+
3465
+ #: admin/basic-info.php:154 modules/modules.php:75
3466
+ msgid "Multiple Registration Forms"
3467
+ msgstr "Več registracijskih obrazcev"
3468
+
3469
+ #: admin/basic-info.php:155
3470
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3471
+ msgstr "Postavite več registracijskih obrazcev z različnimi polji za določene vloge uporabnikov. Zajemite več različnih informacij od različnih tipov uporabnikov."
3472
+
3473
+ #: admin/basic-info.php:158 modules/modules.php:82
3474
+ msgid "Multiple Edit-profile Forms"
3475
+ msgstr "Več obrazcev za urejanje profila"
3476
+
3477
+ #: admin/basic-info.php:159
3478
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3479
+ msgstr "Dovolite različnim vlogam uporabnikov urejanje njihovih specifičnih informacij. Postavite več obrazcev za urejanje profila z različnimi polji za različne tipe uporabnikov."
3480
+
3481
  #: admin/basic-info.php:187
3482
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3483
  msgstr "* na voljo samo v %1$sHobbyist in Pro različicah%2$s."
3486
  msgid "** only available in the %1$sPro version%2$s."
3487
  msgstr "** na voljo samo v %1$sPro različici%2$s."
3488
 
3489
+ #: admin/general-settings.php:42
3490
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3491
+ msgstr "Naložite lastno Profile Builder CSS datoteko na sprednji strani (Front-End):"
3492
+
3493
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3494
+ #: admin/general-settings.php:107
3495
  #: modules/multiple-forms/edit-profile-forms.php:206
3496
  #: modules/multiple-forms/register-forms.php:229
3497
  #: modules/multiple-forms/register-forms.php:230
3503
  msgid "You can find the default file here: %1$s"
3504
  msgstr "Originalno datoteko lahko najdete tu: %1$s"
3505
 
3506
+ #: admin/general-settings.php:54
3507
+ msgid "\"Email Confirmation\" Activated:"
3508
+ msgstr "\"Potrditvena e-pošta\" aktivirana:"
3509
+
3510
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3511
  #: modules/multiple-forms/edit-profile-forms.php:206
3512
  #: modules/multiple-forms/register-forms.php:229
3513
  #: modules/multiple-forms/register-forms.php:230
3518
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3519
  msgstr "Seznam nepotrjenih e-naslovov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditvena e-pošta%2$s."
3520
 
3521
+ #: admin/general-settings.php:72
3522
+ msgid "\"Email Confirmation\" Landing Page:"
3523
+ msgstr "Ciljna stran za \"Potrditveno e-pošto\""
3524
+
3525
+ #: admin/general-settings.php:77
3526
+ msgid "Existing Pages"
3527
+ msgstr "Obstoječe strani"
3528
+
3529
+ #: admin/general-settings.php:92
3530
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3531
+ msgstr "Določite stran, kamor bodo uporabniki preusmerjeni po potrditvi svojega e-naslova. Ta stran se lahko razlikuje od strani za registracijo in je lahko spremenjena kadarkoli. Če ni izbrana nobena stran, se bo uporabniku prikazala preprosta potrditvena stran."
3532
+
3533
+ #: admin/general-settings.php:103
3534
+ msgid "\"Admin Approval\" Activated:"
3535
+ msgstr "\"Odobritev s strani skrbnikov\" je bila aktivirana:"
3536
+
3537
  #: admin/general-settings.php:111
3538
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3539
  msgstr "Seznam e-naslovov uporabnikov lahko najdete na %1$sUporabniki > Vsi uporabniki > Potrditve skrbnikov strani%2$s."
3540
 
3541
+ #: admin/general-settings.php:149
3542
+ msgid "\"Admin Approval\" Feature:"
3543
+ msgstr "\"Odobritev s strani skrbnikov\" možnost:"
3544
+
3545
  #: admin/general-settings.php:152
3546
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3547
  msgstr "Vi določite kdo bo uporabnik na vaši strani. Prejmite obvestilo po e-pošti ali odobrite več uporabnikov hkrati preko WordPress UI. Omogočite Odobritev skrbnikov Strani z nadgradnjo na %1$sHobbyist ali PRO različico%2$s."
3548
 
3549
+ #: admin/general-settings.php:159
3550
+ msgid "Allow Users to Log in With:"
3551
+ msgstr "Dovolite uporabnikom, da se prijavijo z:"
3552
+
3553
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3554
  #: features/admin-approval/class-admin-approval.php:166
3555
  #: features/email-confirmation/class-email-confirmation.php:167
3556
  #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3563
  msgid "Username"
3564
  msgstr "Uporabniško ime"
3565
 
3566
+ #: admin/general-settings.php:165 front-end/login.php:215
3567
+ #: modules/email-customizer/email-customizer.php:29
3568
  #: modules/user-listing/userlisting.php:736
3569
  #: modules/user-listing/userlisting.php:2153
3570
  msgid "Email"
3571
  msgstr "E-naslov"
3572
 
3573
+ #: admin/general-settings.php:177
3574
+ msgid "Minimum Password Length:"
3575
+ msgstr "Najmanjša dolžina gesla:"
3576
+
3577
+ #: admin/general-settings.php:182
3578
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3579
+ msgstr "Vnesite minimalno št., ki jih mora imeti geslo. Pustite prazno za brez omejitve"
3580
+
3581
+ #: admin/general-settings.php:189
3582
+ msgid "Minimum Password Strength:"
3583
+ msgstr "Najmanjša težavnost gesla:"
3584
+
3585
+ #: admin/general-settings.php:193
3586
+ msgid "Disabled"
3587
+ msgstr "Onemogočeno"
3588
+
3589
  #: admin/manage-fields.php:12
3590
  msgid "Manage Fields"
3591
  msgstr "Upravljajte s polji"
3664
  msgid "Date-format"
3665
  msgstr "Format datuma"
3666
 
 
 
 
 
3667
  #: admin/manage-fields.php:126
3668
  msgid "Terms of Agreement"
3669
  msgstr "Splošni pogoji"
3827
  msgid "Type your password again. "
3828
  msgstr "Ponovno vpišite geslo."
3829
 
3830
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
3831
  msgid "You must select a field\n"
3832
  msgstr "Izbrati morate polje\n"
3833
 
3851
  msgid "You must enter a value for the row number\n"
3852
  msgstr "Vnesti morate vrednost za številko vrstice\n"
3853
 
3854
+ #: admin/manage-fields.php:1033
3855
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3856
  msgstr "Vnešena vrednost za datumski vmesnik ni v veljavnem formatu datuma\n"
3857
 
3858
+ #: admin/manage-fields.php:1036
3859
  msgid "You must enter a value for the date-format\n"
3860
  msgstr "Vnesti morate vrednost za format datuma\n"
3861
 
3862
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3863
+ #: admin/manage-fields.php:1083
3864
  msgid "That meta-name is already in use\n"
3865
  msgstr "To meta-ime je že v uporabi\n"
3866
 
3867
+ #: admin/manage-fields.php:1114
3868
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3869
  msgstr "Sledeče možnosti niso sovpadale s tistimi iz seznama možnosti: %s\n"
3870
 
3871
+ #: admin/manage-fields.php:1118
3872
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3873
  msgstr "Sledeča možnost ni sovpadale s tistimi iz seznama možnosti: %s\n"
3874
 
3875
+ #: admin/manage-fields.php:1141
3876
  msgid "That field is already added in this form\n"
3877
  msgstr "To polje je že v tem obrazcu\n"
3878
 
3879
+ #: admin/manage-fields.php:1190
3880
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3881
  msgstr "<pre>Naslov</pre><pre>Tip</pre><pre>Meta Ime</pre><pre class=\"wppb-mb-head-required\">Zahtevano</pre>"
3882
 
3883
+ #: admin/manage-fields.php:1190
3884
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3885
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3886
  #: features/admin-approval/class-admin-approval.php:108
3887
  #: features/functions.php:718 features/functions.php:725
3888
  #: modules/custom-redirects/custom_redirects_admin.php:179
3893
  msgid "Edit"
3894
  msgstr "Uredi"
3895
 
3896
+ #: admin/manage-fields.php:1190
3897
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3898
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3899
  #: features/admin-approval/class-admin-approval.php:113
3900
  #: features/admin-approval/class-admin-approval.php:224
3901
  #: features/email-confirmation/class-email-confirmation.php:120
3908
  msgid "Delete"
3909
  msgstr "Izbriši"
3910
 
3911
+ #: admin/manage-fields.php:1205
3912
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3913
+ msgstr "Uporabite te kratke kode (shortcode) na straneh, kjer hočete, da se prikažejo obrazci:"
3914
+
3915
  #: admin/register-version.php:14
3916
  msgid "Register Your Version"
3917
  msgstr "Registrirajte vašo različico"
3920
  msgid "Register Version"
3921
  msgstr "Registrirajte različico"
3922
 
3923
+ #: admin/register-version.php:70
3924
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3925
+ msgstr "Če registrirate to različico Profile Builder, boste deležni informacij o posodobitvah, popravkih in tehnične podpore."
3926
+
3927
+ #: admin/register-version.php:72
3928
+ msgid " Serial Number:"
3929
+ msgstr "Serijska številka:"
3930
+
3931
  #: admin/register-version.php:77
3932
  msgid "The serial number was successfully validated!"
3933
  msgstr "Serijska številka je bila uspešno validirana!"
3944
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3945
  msgstr "Serijske številke ni bilo možno validirati, ker je proces naletel na časovno omejitev. To se lahko zgodi zaradi napake v strežniku. Prosimo poizkusite ponovno kasneje!"
3946
 
3947
+ #: admin/register-version.php:87
3948
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3949
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3950
+
3951
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
3952
  msgid "Content"
3953
  msgstr "Vsebina"
3954
 
3955
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3956
+ msgid "Edit this item"
3957
+ msgstr "Uredi ta element"
3958
+
3959
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3960
+ msgid "Delete this item"
3961
+ msgstr "Izbriši ta element"
3962
+
3963
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3964
+ msgid "Please enter a value for the required field "
3965
+ msgstr "Prosimo vnesite vrednost za zahtevano polje"
3966
+
3967
  #: front-end/extra-fields/upload/upload.php:122
3968
  msgid "Select File"
3969
  msgstr ""
3970
 
3971
+ #: assets/lib/wck-api/fields/upload.php:43
3972
  #: front-end/extra-fields/upload/upload.php:112
3973
  msgid "Remove"
3974
  msgstr "Odstrani"
3975
 
3976
+ #: assets/lib/wck-api/fields/nested repeater.php:8
3977
+ msgid "You can add the information for the %s after you add a entry"
3978
+ msgstr "Informacije za %s lahko dodate šele ko dodate vnos"
3979
+
3980
+ #: assets/lib/wck-api/fields/upload.php:75
3981
  #: front-end/extra-fields/upload/upload.php:128
3982
  msgid "Upload "
3983
  msgstr "Naloži"
3984
 
3985
+ #: features/class-list-table.php:184
3986
+ msgid "No items found."
3987
+ msgstr "Ni najdenih elementov."
3988
+
3989
  #: features/class-list-table.php:308
3990
  msgid "Bulk Actions"
3991
  msgstr "Več dejanj hkrati"
3994
  msgid "Apply"
3995
  msgstr "Uporabite"
3996
 
3997
+ #: features/class-list-table.php:402
3998
+ msgid "Show all dates"
3999
+ msgstr "Prikaži vse datume"
4000
+
4001
  #: features/class-list-table.php:415
4002
  msgid "%1$s %2$d"
4003
  msgstr "%1$s %2$d"
4014
  msgid "%s pending"
4015
  msgstr "%s v čakanju"
4016
 
4017
+ #: features/class-list-table.php:566
4018
+ msgid "%1$s of %2$s"
4019
+ msgstr "%1$s od %2$s"
4020
+
4021
  #: features/class-list-table.php:713
4022
  msgid "Select All"
4023
  msgstr "Izberi vse"
4027
  msgstr "Indikator moči gesla"
4028
 
4029
  #: features/admin-approval/admin-approval.php:14
4030
+ #: features/admin-approval/class-admin-approval.php:453
4031
  msgid "Admin Approval"
4032
  msgstr "Odobritev skrbnika strani"
4033
 
4034
+ #: features/admin-approval/admin-approval.php:28
4035
+ #: features/email-confirmation/email-confirmation.php:58
4036
+ msgid "Do you want to"
4037
+ msgstr "Ali hočete"
4038
+
4039
  #: features/admin-approval/admin-approval.php:51
4040
  msgid "Your session has expired! Please refresh the page and try again"
4041
  msgstr "Vaša seja je potekla! Prosimo ponovno naložite stran in poizkusite ponovno"
4160
  msgid "User-status"
4161
  msgstr "Status uporabnika"
4162
 
4163
+ #: features/admin-approval/class-admin-approval.php:252
4164
+ msgid "Do you want to bulk approve the selected users?"
4165
+ msgstr "Ali hočete odobriti vse izbrane uporabnike?"
4166
+
4167
+ #: features/admin-approval/class-admin-approval.php:260
4168
+ msgid "Do you want to bulk unapprove the selected users?"
4169
+ msgstr "Ali hočete neodobriti vse izbrane uporabnike?"
4170
+
4171
+ #: features/admin-approval/class-admin-approval.php:266
4172
+ msgid "Do you want to bulk delete the selected users?"
4173
+ msgstr "Ali hočete izbrisati vse izbrane uporabnike?"
4174
+
4175
+ #: features/admin-approval/class-admin-approval.php:274
4176
  #: features/email-confirmation/class-email-confirmation.php:278
4177
  msgid "Sorry, but you don't have permission to do that!"
4178
  msgstr "Oprostite, ampak nimate pravic za dokočnanje tega dejanja!"
4185
  msgid "Unapproved"
4186
  msgstr "Neodobren"
4187
 
4188
+ #: features/admin-approval/class-admin-approval.php:456
4189
+ #: features/email-confirmation/class-email-confirmation.php:454
4190
+ msgid "All Users"
4191
+ msgstr "Vsi uporabniki"
4192
+
4193
  #: features/email-confirmation/class-email-confirmation.php:120
4194
  msgid "delete this user from the _signups table?"
4195
  msgstr "izbriši tega uporabnika iz _signups tabele?"
4228
  msgid "The selected users have had their activation emails resent"
4229
  msgstr "Izbranim uporabnikom so bile ponovno poslane potrditvene e-pošte"
4230
 
4231
+ #: features/email-confirmation/class-email-confirmation.php:451
4232
+ #: features/email-confirmation/email-confirmation.php:47
4233
+ msgid "Users with Unconfirmed Email Address"
4234
+ msgstr "Uporabniki z nepotrjenimi e-naslovi"
4235
+
4236
  #: features/email-confirmation/email-confirmation.php:107
4237
  msgid "There was an error performing that action!"
4238
  msgstr "Prišlo je do napake pri zadnjem dejanju!"
4296
  msgid "Profile Builder Login Widget"
4297
  msgstr "Prijavni gradnik Profile Builder"
4298
 
4299
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
4300
  msgid "Register"
4301
  msgstr "Registriraj se"
4302
 
4303
+ #: features/login-widget/login-widget.php:63
4304
+ msgid "Title:"
4305
+ msgstr "Naslov:"
4306
+
4307
+ #: features/login-widget/login-widget.php:68
4308
+ msgid "After login redirect URL (optional):"
4309
+ msgstr "Preusmeritvena povezava po prijavi (opcijsko):"
4310
+
4311
+ #: features/login-widget/login-widget.php:73
4312
+ msgid "Register page URL (optional):"
4313
+ msgstr "Registrirajte spletni naslov strani (izbirno):"
4314
+
4315
+ #: features/login-widget/login-widget.php:78
4316
+ msgid "Password Recovery page URL (optional):"
4317
+ msgstr "Spletni naslov strani za obnovitev gesla (izbirno):"
4318
+
4319
  #: features/upgrades/upgrades-functions.php:91
4320
  #: features/upgrades/upgrades-functions.php:134
4321
  msgid "The usernames cannot be changed."
4357
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4358
  msgstr "Kmalu boste samodejno preusmerjeni. Če ostanete na tej strani več kot %1$d sekund, prosimo kliknite %2$s.%3$s"
4359
 
4360
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
4361
  msgid "The account %1s has been successfully created!"
4362
  msgstr "Račun %1s je bil uspećno ustvarjen!"
4363
 
4364
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
4365
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4366
  msgstr "Preden lahko uporabljate svoj račun %1s morate potrditi svoj e-poštni naslov. Prosimo preverite vašo mapo s prejeto e-pošto in kliknite na aktivacijsko povezavo."
4367
 
4368
+ #: front-end/class-formbuilder.php:308
4369
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4370
  msgstr "Preden lahko uporabljate svoj račun %1s ga mora odobriti skrbnik strani. Obveščeni boste po e-pošti."
4371
 
4372
+ #: front-end/class-formbuilder.php:331
4373
  msgid "Your profile has been successfully updated!"
4374
  msgstr "Vaš profil je bil uspešno posodobljen!"
4375
 
4376
+ #: front-end/class-formbuilder.php:342
4377
  msgid "There was an error in the submitted form"
4378
  msgstr "Prišlo je do napake pri oddaji obrazca"
4379
 
4380
+ #: front-end/class-formbuilder.php:399
4381
  msgid "Add User"
4382
  msgstr "Dodaj uporabnika"
4383
 
4384
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
4385
  msgid "Update"
4386
  msgstr "Posodobi"
4387
 
4388
+ #: front-end/class-formbuilder.php:465
4389
  msgid "Send these credentials via email."
4390
  msgstr "Pošlji te vpisne podatke po e-pošti."
4391
 
4599
  msgid "To use reCAPTCHA you must get an API public key from:"
4600
  msgstr "Za uporabo reCAPTCHA morate pridobiti API javni ključ od:"
4601
 
4602
+ #: modules/modules.php:11 modules/modules.php:58
4603
  msgid "Modules"
4604
  msgstr "Moduli"
4605
 
4606
+ #: modules/modules.php:59
4607
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4608
+ msgstr "Tukaj lahko aktivirate / deaktivirate module, ki so na voljo za Profile Builder"
4609
+
4610
+ #: modules/modules.php:69
4611
+ msgid "Name/Description"
4612
+ msgstr "Ime/Opis"
4613
+
4614
+ #: modules/modules.php:70
4615
+ msgid "Status"
4616
+ msgstr "Status"
4617
+
4618
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4619
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4620
+ #: modules/modules.php:119
4621
+ msgid "Active"
4622
+ msgstr "Aktiven"
4623
+
4624
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4625
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4626
+ #: modules/modules.php:120
4627
+ msgid "Inactive"
4628
+ msgstr "Neaktiven"
4629
+
4630
  #: modules/email-customizer/admin-email-customizer.php:11
4631
  #: modules/email-customizer/admin-email-customizer.php:12
4632
+ #: modules/modules.php:96
4633
  msgid "Admin Email Customizer"
4634
  msgstr "Oblikovalec Skrbniškega E-naslova"
4635
 
4636
  #: modules/email-customizer/user-email-customizer.php:11
4637
  #: modules/email-customizer/user-email-customizer.php:12
4638
+ #: modules/modules.php:103
4639
  msgid "User Email Customizer"
4640
  msgstr " Oblikovalec Uporabniškega E-naslova"
4641
 
4642
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4643
  #: modules/class-mustache-templates/class-mustache-templates.php:253
4644
  msgid "Save"
4645
  msgstr "Shrani"
4965
  msgid "<pre>Title (Type)</pre>"
4966
  msgstr "<pre>Naslov (Tip)</pre>"
4967
 
4968
+ #: modules/multiple-forms/multiple-forms.php:222
4969
+ msgid "You need to specify the title of the form before creating it"
4970
+ msgstr "Navesti morate naslov obrazca preden ga lahko ustvarite"
4971
+
4972
  #: modules/multiple-forms/register-forms.php:11
4973
  #: modules/multiple-forms/register-forms.php:12
4974
  msgid "Registration Form"
translation/profile-builder-zh_CN.mo CHANGED
Binary file
translation/profile-builder-zh_CN.po CHANGED
@@ -10,3040 +10,2890 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
- msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
- msgstr ""
16
-
17
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
- msgstr ""
20
-
21
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
- msgid "View Map"
23
  msgstr ""
24
 
25
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
- #: pb-add-on-woocommerce/index.php:493
28
- msgid "Address line 2"
29
  msgstr ""
30
 
31
- #: pb-add-on-woocommerce/index.php:256
32
- msgid "Billing Fields"
33
  msgstr ""
34
 
35
- #: pb-add-on-woocommerce/index.php:256
36
- msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
  msgstr ""
38
 
39
- #: pb-add-on-woocommerce/index.php:257
40
- msgid "Billing Fields Order"
41
  msgstr ""
42
 
43
- #: pb-add-on-woocommerce/index.php:257
44
- msgid "Save the billing fields order from the billing fields checkboxes"
45
  msgstr ""
46
 
47
- #: pb-add-on-woocommerce/index.php:258
48
- msgid "Billing Fields Name"
49
  msgstr ""
50
 
51
- #: pb-add-on-woocommerce/index.php:258
52
- msgid "Save the billing fields names"
53
  msgstr ""
54
 
55
- #: pb-add-on-woocommerce/index.php:275
56
- msgid "Shipping Fields"
57
  msgstr ""
58
 
59
- #: pb-add-on-woocommerce/index.php:275
60
- msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
  msgstr ""
62
 
63
- #: pb-add-on-woocommerce/index.php:276
64
- msgid "Shipping Fields Order"
65
  msgstr ""
66
 
67
- #: pb-add-on-woocommerce/index.php:276
68
- msgid "Save the shipping fields order from the billing fields checkboxes"
69
  msgstr ""
70
 
71
- #: pb-add-on-woocommerce/index.php:277
72
- msgid "Shipping Fields Name"
73
  msgstr ""
74
 
75
- #: pb-add-on-woocommerce/index.php:277
76
- msgid "Save the shipping fields names"
77
  msgstr ""
78
 
79
- #: pb-add-on-woocommerce/index.php:305
80
- msgid "Field Name"
 
81
  msgstr ""
82
 
83
- #: pb-add-on-woocommerce/index.php:369
84
- msgid "Click to edit "
85
  msgstr ""
86
 
87
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
- msgid "is not a valid phone number."
89
  msgstr ""
90
 
91
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
- msgid "is not a number."
93
- msgstr ""
94
-
95
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
- msgid "must be a multiplier of "
97
  msgstr ""
98
 
99
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
- msgid "must be a greater than or equal to "
101
  msgstr ""
102
 
103
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
- msgid "must be less than or equal to "
105
  msgstr ""
106
 
107
- #: profile-builder-2.0/admin/add-ons.php:103
108
  msgid "Available in Hobbyist and Pro Versions"
109
  msgstr ""
110
 
111
- #: profile-builder-2.0/admin/add-ons.php:105
112
  msgid "Available in All Versions"
113
  msgstr ""
114
 
115
- #: profile-builder-2.0/admin/add-ons.php:148
116
  msgid "Learn More"
117
  msgstr ""
118
 
119
- #: profile-builder-2.0/admin/basic-info.php:99
120
  msgid "Timepicker"
121
  msgstr ""
122
 
123
- #: profile-builder-2.0/admin/basic-info.php:100
124
  msgid "Colorpicker"
125
  msgstr ""
126
 
127
- #: profile-builder-2.0/admin/basic-info.php:103
128
  msgid "Currency Select"
129
  msgstr ""
130
 
131
- #: profile-builder-2.0/admin/basic-info.php:109
132
  msgid "Number"
133
  msgstr ""
134
 
135
- #: profile-builder-2.0/admin/basic-info.php:114
136
  msgid "Validation"
137
  msgstr ""
138
 
139
- #: profile-builder-2.0/admin/basic-info.php:115
140
  msgid "Map"
141
  msgstr ""
142
 
143
- #: profile-builder-2.0/admin/basic-info.php:116
144
  msgid "HTML"
145
  msgstr ""
146
 
147
- #: profile-builder-2.0/admin/basic-info.php:162
148
- #: profile-builder-2.0/modules/modules.php:117
149
  msgid "Repeater Fields"
150
  msgstr ""
151
 
152
- #: profile-builder-2.0/admin/basic-info.php:163
153
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
  msgstr ""
155
 
156
- #: profile-builder-2.0/admin/general-settings.php:62
157
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
  msgstr ""
159
 
160
- #: profile-builder-2.0/admin/manage-fields.php:115
161
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
162
  msgstr ""
163
 
164
- #: profile-builder-2.0/admin/manage-fields.php:138
165
  msgid "Show Currency Symbol"
166
  msgstr ""
167
 
168
- #: profile-builder-2.0/admin/manage-fields.php:138
169
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
  msgstr ""
171
 
172
- #: profile-builder-2.0/admin/manage-fields.php:139
173
  msgid "Show Post Type"
174
  msgstr ""
175
 
176
- #: profile-builder-2.0/admin/manage-fields.php:139
177
  msgid "Posts from what post type will be displayed in the select."
178
  msgstr ""
179
 
180
- #: profile-builder-2.0/admin/manage-fields.php:140
181
  msgid "Allowable Values"
182
  msgstr ""
183
 
184
- #: profile-builder-2.0/admin/manage-fields.php:140
185
  msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
  msgstr ""
187
 
188
- #: profile-builder-2.0/admin/manage-fields.php:141
189
  msgid "Error Message"
190
  msgstr ""
191
 
192
- #: profile-builder-2.0/admin/manage-fields.php:141
193
  msgid "Set a custom error message that will be displayed to the user."
194
  msgstr ""
195
 
196
- #: profile-builder-2.0/admin/manage-fields.php:142
197
  msgid "Time Format"
198
  msgstr ""
199
 
200
- #: profile-builder-2.0/admin/manage-fields.php:142
201
  msgid "Specify the time format."
202
  msgstr ""
203
 
204
- #: profile-builder-2.0/admin/manage-fields.php:143
205
  msgid "Google Maps API Key"
206
  msgstr ""
207
 
208
- #: profile-builder-2.0/admin/manage-fields.php:143
209
  msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
  msgstr ""
211
 
212
- #: profile-builder-2.0/admin/manage-fields.php:144
213
  msgid "Default Latitude"
214
  msgstr ""
215
 
216
- #: profile-builder-2.0/admin/manage-fields.php:144
217
  msgid "The latitude at which the map should be displayed when no pins are attached."
218
  msgstr ""
219
 
220
- #: profile-builder-2.0/admin/manage-fields.php:145
221
  msgid "Default Longitude"
222
  msgstr ""
223
 
224
- #: profile-builder-2.0/admin/manage-fields.php:145
225
  msgid "The longitude at which the map should be displayed when no pins are attached."
226
  msgstr ""
227
 
228
- #: profile-builder-2.0/admin/manage-fields.php:146
229
  msgid "Default Zoom Level"
230
  msgstr ""
231
 
232
- #: profile-builder-2.0/admin/manage-fields.php:146
233
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
  msgstr ""
235
 
236
- #: profile-builder-2.0/admin/manage-fields.php:147
237
  msgid "Map Height"
238
  msgstr ""
239
 
240
- #: profile-builder-2.0/admin/manage-fields.php:147
241
  msgid "The height of the map."
242
  msgstr ""
243
 
244
- #: profile-builder-2.0/admin/manage-fields.php:149
245
  msgid "HTML Content"
246
  msgstr ""
247
 
248
- #: profile-builder-2.0/admin/manage-fields.php:149
249
  msgid "Add your HTML (or text) content"
250
  msgstr ""
251
 
252
- #: profile-builder-2.0/admin/manage-fields.php:150
253
  msgid "Phone Format"
254
  msgstr ""
255
 
256
- #: profile-builder-2.0/admin/manage-fields.php:150
257
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
  msgstr ""
259
 
260
- #: profile-builder-2.0/admin/manage-fields.php:150
261
  msgid "Eg. (###) ###-####"
262
  msgstr ""
263
 
264
- #: profile-builder-2.0/admin/manage-fields.php:150
265
  msgid "Empty field won't check for correct phone number."
266
  msgstr ""
267
 
268
- #: profile-builder-2.0/admin/manage-fields.php:151
269
  msgid "Heading Tag"
270
  msgstr ""
271
 
272
- #: profile-builder-2.0/admin/manage-fields.php:151
273
  msgid "Change heading field size on front-end forms"
274
  msgstr ""
275
 
276
- #: profile-builder-2.0/admin/manage-fields.php:152
277
  msgid "Min Number Value"
278
  msgstr ""
279
 
280
- #: profile-builder-2.0/admin/manage-fields.php:152
281
  msgid "Min allowed number value (0 to allow only positive numbers)"
282
  msgstr ""
283
 
284
- #: profile-builder-2.0/admin/manage-fields.php:152
285
  msgid "Leave it empty for no min value"
286
  msgstr ""
287
 
288
- #: profile-builder-2.0/admin/manage-fields.php:153
289
  msgid "Max Number Value"
290
  msgstr ""
291
 
292
- #: profile-builder-2.0/admin/manage-fields.php:153
293
  msgid "Max allowed number value (0 to allow only negative numbers)"
294
  msgstr ""
295
 
296
- #: profile-builder-2.0/admin/manage-fields.php:153
297
  msgid "Leave it empty for no max value"
298
  msgstr ""
299
 
300
- #: profile-builder-2.0/admin/manage-fields.php:154
301
  msgid "Number Step Value"
302
  msgstr ""
303
 
304
- #: profile-builder-2.0/admin/manage-fields.php:154
305
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
  msgstr ""
307
 
308
- #: profile-builder-2.0/admin/manage-fields.php:154
309
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
  msgstr ""
311
 
312
- #: profile-builder-2.0/admin/manage-fields.php:154
313
  msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
  msgstr ""
315
 
316
- #: profile-builder-2.0/admin/manage-fields.php:154
317
  msgid "Leave it empty for no restriction"
318
  msgstr ""
319
 
320
- #: profile-builder-2.0/admin/manage-fields.php:555
321
  msgid "Albania Lek"
322
  msgstr ""
323
 
324
- #: profile-builder-2.0/admin/manage-fields.php:556
325
  msgid "Afghanistan Afghani"
326
  msgstr ""
327
 
328
- #: profile-builder-2.0/admin/manage-fields.php:557
329
  msgid "Argentina Peso"
330
  msgstr ""
331
 
332
- #: profile-builder-2.0/admin/manage-fields.php:558
333
  msgid "Aruba Guilder"
334
  msgstr ""
335
 
336
- #: profile-builder-2.0/admin/manage-fields.php:559
337
  msgid "Australia Dollar"
338
  msgstr ""
339
 
340
- #: profile-builder-2.0/admin/manage-fields.php:560
341
  msgid "Azerbaijan New Manat"
342
  msgstr ""
343
 
344
- #: profile-builder-2.0/admin/manage-fields.php:561
345
  msgid "Bahamas Dollar"
346
  msgstr ""
347
 
348
- #: profile-builder-2.0/admin/manage-fields.php:562
349
  msgid "Barbados Dollar"
350
  msgstr ""
351
 
352
- #: profile-builder-2.0/admin/manage-fields.php:563
353
  msgid "Bangladeshi taka"
354
  msgstr ""
355
 
356
- #: profile-builder-2.0/admin/manage-fields.php:564
357
  msgid "Belarus Ruble"
358
  msgstr ""
359
 
360
- #: profile-builder-2.0/admin/manage-fields.php:565
361
  msgid "Belize Dollar"
362
  msgstr ""
363
 
364
- #: profile-builder-2.0/admin/manage-fields.php:566
365
  msgid "Bermuda Dollar"
366
  msgstr ""
367
 
368
- #: profile-builder-2.0/admin/manage-fields.php:567
369
  msgid "Bolivia Boliviano"
370
  msgstr ""
371
 
372
- #: profile-builder-2.0/admin/manage-fields.php:568
373
  msgid "Bosnia and Herzegovina Convertible Marka"
374
  msgstr ""
375
 
376
- #: profile-builder-2.0/admin/manage-fields.php:569
377
  msgid "Botswana Pula"
378
  msgstr ""
379
 
380
- #: profile-builder-2.0/admin/manage-fields.php:570
381
  msgid "Bulgaria Lev"
382
  msgstr ""
383
 
384
- #: profile-builder-2.0/admin/manage-fields.php:571
385
  msgid "Brazil Real"
386
  msgstr ""
387
 
388
- #: profile-builder-2.0/admin/manage-fields.php:572
389
  msgid "Brunei Darussalam Dollar"
390
  msgstr ""
391
 
392
- #: profile-builder-2.0/admin/manage-fields.php:573
393
  msgid "Cambodia Riel"
394
  msgstr ""
395
 
396
- #: profile-builder-2.0/admin/manage-fields.php:574
397
  msgid "Canada Dollar"
398
  msgstr ""
399
 
400
- #: profile-builder-2.0/admin/manage-fields.php:575
401
  msgid "Cayman Islands Dollar"
402
  msgstr ""
403
 
404
- #: profile-builder-2.0/admin/manage-fields.php:576
405
  msgid "Chile Peso"
406
  msgstr ""
407
 
408
- #: profile-builder-2.0/admin/manage-fields.php:577
409
  msgid "China Yuan Renminbi"
410
  msgstr ""
411
 
412
- #: profile-builder-2.0/admin/manage-fields.php:578
413
  msgid "Colombia Peso"
414
  msgstr ""
415
 
416
- #: profile-builder-2.0/admin/manage-fields.php:579
417
  msgid "Costa Rica Colon"
418
  msgstr ""
419
 
420
- #: profile-builder-2.0/admin/manage-fields.php:580
421
  msgid "Croatia Kuna"
422
  msgstr ""
423
 
424
- #: profile-builder-2.0/admin/manage-fields.php:581
425
  msgid "Cuba Peso"
426
  msgstr ""
427
 
428
- #: profile-builder-2.0/admin/manage-fields.php:582
429
  msgid "Czech Republic Koruna"
430
  msgstr ""
431
 
432
- #: profile-builder-2.0/admin/manage-fields.php:583
433
  msgid "Denmark Krone"
434
  msgstr ""
435
 
436
- #: profile-builder-2.0/admin/manage-fields.php:584
437
  msgid "Dominican Republic Peso"
438
  msgstr ""
439
 
440
- #: profile-builder-2.0/admin/manage-fields.php:585
441
  msgid "East Caribbean Dollar"
442
  msgstr ""
443
 
444
- #: profile-builder-2.0/admin/manage-fields.php:586
445
  msgid "Egypt Pound"
446
  msgstr ""
447
 
448
- #: profile-builder-2.0/admin/manage-fields.php:587
449
  msgid "El Salvador Colon"
450
  msgstr ""
451
 
452
- #: profile-builder-2.0/admin/manage-fields.php:588
453
  msgid "Estonia Kroon"
454
  msgstr ""
455
 
456
- #: profile-builder-2.0/admin/manage-fields.php:589
457
  msgid "Euro"
458
  msgstr ""
459
 
460
- #: profile-builder-2.0/admin/manage-fields.php:590
461
  msgid "Falkland Islands (Malvinas) Pound"
462
  msgstr ""
463
 
464
- #: profile-builder-2.0/admin/manage-fields.php:591
465
  msgid "Fiji Dollar"
466
  msgstr ""
467
 
468
- #: profile-builder-2.0/admin/manage-fields.php:592
469
  msgid "Ghana Cedis"
470
  msgstr ""
471
 
472
- #: profile-builder-2.0/admin/manage-fields.php:593
473
  msgid "Gibraltar Pound"
474
  msgstr ""
475
 
476
- #: profile-builder-2.0/admin/manage-fields.php:594
477
  msgid "Guatemala Quetzal"
478
  msgstr ""
479
 
480
- #: profile-builder-2.0/admin/manage-fields.php:595
481
  msgid "Guernsey Pound"
482
  msgstr ""
483
 
484
- #: profile-builder-2.0/admin/manage-fields.php:596
485
  msgid "Guyana Dollar"
486
  msgstr ""
487
 
488
- #: profile-builder-2.0/admin/manage-fields.php:597
489
  msgid "Honduras Lempira"
490
  msgstr ""
491
 
492
- #: profile-builder-2.0/admin/manage-fields.php:598
493
  msgid "Hong Kong Dollar"
494
  msgstr ""
495
 
496
- #: profile-builder-2.0/admin/manage-fields.php:599
497
  msgid "Hungary Forint"
498
  msgstr ""
499
 
500
- #: profile-builder-2.0/admin/manage-fields.php:600
501
  msgid "Iceland Krona"
502
  msgstr ""
503
 
504
- #: profile-builder-2.0/admin/manage-fields.php:601
505
  msgid "India Rupee"
506
  msgstr ""
507
 
508
- #: profile-builder-2.0/admin/manage-fields.php:602
509
  msgid "Indonesia Rupiah"
510
  msgstr ""
511
 
512
- #: profile-builder-2.0/admin/manage-fields.php:603
513
  msgid "Iran Rial"
514
  msgstr ""
515
 
516
- #: profile-builder-2.0/admin/manage-fields.php:604
517
  msgid "Isle of Man Pound"
518
  msgstr ""
519
 
520
- #: profile-builder-2.0/admin/manage-fields.php:605
521
  msgid "Israel Shekel"
522
  msgstr ""
523
 
524
- #: profile-builder-2.0/admin/manage-fields.php:606
525
  msgid "Jamaica Dollar"
526
  msgstr ""
527
 
528
- #: profile-builder-2.0/admin/manage-fields.php:607
529
  msgid "Japan Yen"
530
  msgstr ""
531
 
532
- #: profile-builder-2.0/admin/manage-fields.php:608
533
  msgid "Jersey Pound"
534
  msgstr ""
535
 
536
- #: profile-builder-2.0/admin/manage-fields.php:609
537
  msgid "Kazakhstan Tenge"
538
  msgstr ""
539
 
540
- #: profile-builder-2.0/admin/manage-fields.php:610
541
  msgid "Korea (North) Won"
542
  msgstr ""
543
 
544
- #: profile-builder-2.0/admin/manage-fields.php:611
545
  msgid "Korea (South) Won"
546
  msgstr ""
547
 
548
- #: profile-builder-2.0/admin/manage-fields.php:612
549
  msgid "Kyrgyzstan Som"
550
  msgstr ""
551
 
552
- #: profile-builder-2.0/admin/manage-fields.php:613
553
  msgid "Laos Kip"
554
  msgstr ""
555
 
556
- #: profile-builder-2.0/admin/manage-fields.php:614
557
  msgid "Latvia Lat"
558
  msgstr ""
559
 
560
- #: profile-builder-2.0/admin/manage-fields.php:615
561
  msgid "Lebanon Pound"
562
  msgstr ""
563
 
564
- #: profile-builder-2.0/admin/manage-fields.php:616
565
  msgid "Liberia Dollar"
566
  msgstr ""
567
 
568
- #: profile-builder-2.0/admin/manage-fields.php:617
569
  msgid "Lithuania Litas"
570
  msgstr ""
571
 
572
- #: profile-builder-2.0/admin/manage-fields.php:618
573
  msgid "Macedonia Denar"
574
  msgstr ""
575
 
576
- #: profile-builder-2.0/admin/manage-fields.php:619
577
  msgid "Malaysia Ringgit"
578
  msgstr ""
579
 
580
- #: profile-builder-2.0/admin/manage-fields.php:620
581
  msgid "Mauritius Rupee"
582
  msgstr ""
583
 
584
- #: profile-builder-2.0/admin/manage-fields.php:621
585
  msgid "Mexico Peso"
586
  msgstr ""
587
 
588
- #: profile-builder-2.0/admin/manage-fields.php:622
589
  msgid "Mongolia Tughrik"
590
  msgstr ""
591
 
592
- #: profile-builder-2.0/admin/manage-fields.php:623
593
  msgid "Mozambique Metical"
594
  msgstr ""
595
 
596
- #: profile-builder-2.0/admin/manage-fields.php:624
597
  msgid "Namibia Dollar"
598
  msgstr ""
599
 
600
- #: profile-builder-2.0/admin/manage-fields.php:625
601
  msgid "Nepal Rupee"
602
  msgstr ""
603
 
604
- #: profile-builder-2.0/admin/manage-fields.php:626
605
  msgid "Netherlands Antilles Guilder"
606
  msgstr ""
607
 
608
- #: profile-builder-2.0/admin/manage-fields.php:627
609
  msgid "New Zealand Dollar"
610
  msgstr ""
611
 
612
- #: profile-builder-2.0/admin/manage-fields.php:628
613
  msgid "Nicaragua Cordoba"
614
  msgstr ""
615
 
616
- #: profile-builder-2.0/admin/manage-fields.php:629
617
  msgid "Nigeria Naira"
618
  msgstr ""
619
 
620
- #: profile-builder-2.0/admin/manage-fields.php:630
621
  msgid "Norway Krone"
622
  msgstr ""
623
 
624
- #: profile-builder-2.0/admin/manage-fields.php:631
625
  msgid "Oman Rial"
626
  msgstr ""
627
 
628
- #: profile-builder-2.0/admin/manage-fields.php:632
629
  msgid "Pakistan Rupee"
630
  msgstr ""
631
 
632
- #: profile-builder-2.0/admin/manage-fields.php:633
633
  msgid "Panama Balboa"
634
  msgstr ""
635
 
636
- #: profile-builder-2.0/admin/manage-fields.php:634
637
  msgid "Paraguay Guarani"
638
  msgstr ""
639
 
640
- #: profile-builder-2.0/admin/manage-fields.php:635
641
  msgid "Peru Nuevo Sol"
642
  msgstr ""
643
 
644
- #: profile-builder-2.0/admin/manage-fields.php:636
645
  msgid "Philippines Peso"
646
  msgstr ""
647
 
648
- #: profile-builder-2.0/admin/manage-fields.php:637
649
  msgid "Poland Zloty"
650
  msgstr ""
651
 
652
- #: profile-builder-2.0/admin/manage-fields.php:638
653
  msgid "Qatar Riyal"
654
  msgstr ""
655
 
656
- #: profile-builder-2.0/admin/manage-fields.php:639
657
  msgid "Romania New Leu"
658
  msgstr ""
659
 
660
- #: profile-builder-2.0/admin/manage-fields.php:640
661
  msgid "Russia Ruble"
662
  msgstr ""
663
 
664
- #: profile-builder-2.0/admin/manage-fields.php:641
665
  msgid "Saint Helena Pound"
666
  msgstr ""
667
 
668
- #: profile-builder-2.0/admin/manage-fields.php:642
669
  msgid "Saudi Arabia Riyal"
670
  msgstr ""
671
 
672
- #: profile-builder-2.0/admin/manage-fields.php:643
673
  msgid "Serbia Dinar"
674
  msgstr ""
675
 
676
- #: profile-builder-2.0/admin/manage-fields.php:644
677
  msgid "Seychelles Rupee"
678
  msgstr ""
679
 
680
- #: profile-builder-2.0/admin/manage-fields.php:645
681
  msgid "Singapore Dollar"
682
  msgstr ""
683
 
684
- #: profile-builder-2.0/admin/manage-fields.php:646
685
  msgid "Solomon Islands Dollar"
686
  msgstr ""
687
 
688
- #: profile-builder-2.0/admin/manage-fields.php:647
689
  msgid "Somalia Shilling"
690
  msgstr ""
691
 
692
- #: profile-builder-2.0/admin/manage-fields.php:648
693
  msgid "South Africa Rand"
694
  msgstr ""
695
 
696
- #: profile-builder-2.0/admin/manage-fields.php:649
697
  msgid "Sri Lanka Rupee"
698
  msgstr ""
699
 
700
- #: profile-builder-2.0/admin/manage-fields.php:650
701
  msgid "Sweden Krona"
702
  msgstr ""
703
 
704
- #: profile-builder-2.0/admin/manage-fields.php:651
705
  msgid "Switzerland Franc"
706
  msgstr ""
707
 
708
- #: profile-builder-2.0/admin/manage-fields.php:652
709
  msgid "Suriname Dollar"
710
  msgstr ""
711
 
712
- #: profile-builder-2.0/admin/manage-fields.php:653
713
  msgid "Syria Pound"
714
  msgstr ""
715
 
716
- #: profile-builder-2.0/admin/manage-fields.php:654
717
  msgid "Taiwan New Dollar"
718
  msgstr ""
719
 
720
- #: profile-builder-2.0/admin/manage-fields.php:655
721
  msgid "Thailand Baht"
722
  msgstr ""
723
 
724
- #: profile-builder-2.0/admin/manage-fields.php:656
725
  msgid "Trinidad and Tobago Dollar"
726
  msgstr ""
727
 
728
- #: profile-builder-2.0/admin/manage-fields.php:657
729
- #: profile-builder-2.0/admin/manage-fields.php:658
730
  msgid "Turkey Lira"
731
  msgstr ""
732
 
733
- #: profile-builder-2.0/admin/manage-fields.php:659
734
  msgid "Tuvalu Dollar"
735
  msgstr ""
736
 
737
- #: profile-builder-2.0/admin/manage-fields.php:660
738
  msgid "Ukraine Hryvna"
739
  msgstr ""
740
 
741
- #: profile-builder-2.0/admin/manage-fields.php:661
742
  msgid "United Kingdom Pound"
743
  msgstr ""
744
 
745
- #: profile-builder-2.0/admin/manage-fields.php:662
746
  msgid "Uganda Shilling"
747
  msgstr ""
748
 
749
- #: profile-builder-2.0/admin/manage-fields.php:663
750
  msgid "US Dollar"
751
  msgstr ""
752
 
753
- #: profile-builder-2.0/admin/manage-fields.php:664
754
  msgid "Uruguay Peso"
755
  msgstr ""
756
 
757
- #: profile-builder-2.0/admin/manage-fields.php:665
758
  msgid "Uzbekistan Som"
759
  msgstr ""
760
 
761
- #: profile-builder-2.0/admin/manage-fields.php:666
762
  msgid "Venezuela Bolivar"
763
  msgstr ""
764
 
765
- #: profile-builder-2.0/admin/manage-fields.php:667
766
  msgid "Viet Nam Dong"
767
  msgstr ""
768
 
769
- #: profile-builder-2.0/admin/manage-fields.php:668
770
  msgid "Yemen Rial"
771
  msgstr ""
772
 
773
- #: profile-builder-2.0/admin/manage-fields.php:669
774
  msgid "Zimbabwe Dollar"
775
  msgstr ""
776
 
777
- #: profile-builder-2.0/admin/manage-fields.php:1080
778
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
  msgstr ""
780
 
781
- #: profile-builder-2.0/admin/manage-fields.php:1296
782
  msgid "Search Location"
783
  msgstr ""
784
 
785
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
  msgid "You are not allowed to do this."
787
  msgstr ""
788
 
789
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
  msgid "Search Users"
792
  msgstr ""
793
 
794
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
  msgid "Conditional Logic"
796
  msgstr ""
797
 
798
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
  msgid "Conditional Rules"
800
  msgstr ""
801
 
802
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
  msgid "This field has conditional logic enabled."
804
  msgstr ""
805
 
806
- #: profile-builder-2.0/features/functions.php:712
807
  msgid "Incorrect phone number"
808
  msgstr ""
809
 
810
- #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
  msgstr ""
813
 
814
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
  msgid "Please add the Google Maps API key for this field."
817
  msgstr ""
818
 
819
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
  msgid "Something went wrong. Please try again."
821
  msgstr ""
822
 
823
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
  msgid "Please enter numbers only"
825
  msgstr ""
826
 
827
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
  msgid "Value must be a multiplier of %1$s"
829
  msgstr ""
830
 
831
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
  msgid "Value must be greater than or equal to %1$s"
833
  msgstr ""
834
 
835
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
  msgid "Value must be less than or equal to %1$s"
837
  msgstr ""
838
 
839
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
  msgid "Required phone number format: "
841
  msgstr ""
842
 
843
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Bolivia, __( Plurinational State of"
845
  msgstr ""
846
 
847
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Bonaire, __( Sint Eustatius and Saba"
849
  msgstr ""
850
 
851
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Brunei Darussalam"
853
  msgstr ""
854
 
855
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cabo Verde"
857
  msgstr ""
858
 
859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Cocos (Keeling) Islands"
861
  msgstr ""
862
 
863
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Congo"
865
  msgstr ""
866
 
867
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Congo, __( the Democratic Republic of the"
869
  msgstr ""
870
 
871
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Cote dIvoire"
873
  msgstr ""
874
 
875
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Falkland Islands (Malvinas)"
877
  msgstr ""
878
 
879
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Holy See (Vatican City State)"
881
  msgstr ""
882
 
883
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Iran, __( Islamic Republic of"
885
  msgstr ""
886
 
887
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Korea, __( Democratic Peoples Republic of"
889
  msgstr ""
890
 
891
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Korea, __( Republic of"
893
  msgstr ""
894
 
895
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Lao Peoples Democratic Republic"
897
  msgstr ""
898
 
899
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Macedonia, __( the former Yugoslav Republic of"
901
  msgstr ""
902
 
903
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Micronesia, __( Federated States of"
905
  msgstr ""
906
 
907
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Moldova, __( Republic of"
909
  msgstr ""
910
 
911
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Palestine, __( State of"
913
  msgstr ""
914
 
915
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Russian Federation"
917
  msgstr ""
918
 
919
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
  msgstr ""
922
 
923
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Saint Martin (French part)"
925
  msgstr ""
926
 
927
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Sint Maarten (Dutch part)"
929
  msgstr ""
930
 
931
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Syrian Arab Republic"
933
  msgstr ""
934
 
935
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Taiwan, __( Province of China"
937
  msgstr ""
938
 
939
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Tanzania, __( United Republic of"
941
  msgstr ""
942
 
943
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Timor-Leste"
945
  msgstr ""
946
 
947
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
  msgid "Venezuela, __( Bolivarian Republic of"
949
  msgstr ""
950
 
951
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
  msgid "Viet Nam"
953
  msgstr ""
954
 
955
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
  msgid "Virgin Islands, __( British"
957
  msgstr ""
958
 
959
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
  msgid "Virgin Islands, __( U.S."
961
  msgstr ""
962
 
963
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
- #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
  msgid "User Fields Tags"
966
  msgstr ""
967
 
968
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
  msgid "The users selected password at signup"
970
  msgstr ""
971
 
972
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
  msgid "[{{site_name}}] Notice of Email Change"
974
  msgstr ""
975
 
976
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
  msgid "Changed Email Address Notification"
978
  msgstr ""
979
 
980
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
  msgid "Limit"
982
  msgstr ""
983
 
984
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
  msgstr ""
987
 
988
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
  msgid "General Limit"
990
  msgstr ""
991
 
992
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
  msgstr ""
995
 
996
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
  msgid "Limit reached message"
998
  msgstr ""
999
 
1000
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
  msgid "The maximum number of fields has been reached."
1002
  msgstr ""
1003
 
1004
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
  msgid "The popup message to display when the limit of repeater groups is reached."
1006
  msgstr ""
1007
 
1008
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
  msgid "Limit per Role"
1010
  msgstr ""
1011
 
1012
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
  msgid "Leave 0 for unlimited."
1014
  msgstr ""
1015
 
1016
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
  msgid "Repeated field group"
1018
  msgstr ""
1019
 
1020
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
  msgid "Manage field or group of fields that will be repeatable."
1022
  msgstr ""
1023
 
1024
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
  msgid "Edit field group"
1026
  msgstr ""
1027
 
1028
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
  msgid "Repeatable fields saved!"
1030
  msgstr ""
1031
 
1032
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
  msgid "Please enter a unique field title.\n"
1035
  msgstr ""
1036
 
1037
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
  msgid "Are you sure you want to delete this?"
1039
  msgstr ""
1040
 
1041
- #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
  msgid "Sort Tags"
1043
  msgstr ""
1044
 
1045
- #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
  msgid "Faceted Menus"
1048
  msgstr ""
1049
 
1050
- #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
  msgid "User Count"
1052
  msgstr ""
1053
 
1054
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
  msgid "Show All"
1056
  msgstr ""
1057
 
1058
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
  msgid "No options available"
1062
  msgstr ""
1063
 
1064
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
  msgid "Remove All Filters"
1066
  msgstr ""
1067
 
1068
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
  msgid "Label"
1070
  msgstr ""
1071
 
1072
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
  msgid "Choose the facet name that appears on the frontend"
1074
  msgstr ""
1075
 
1076
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
  msgid "Facet Type"
1078
  msgstr ""
1079
 
1080
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
  msgid "Choose the facet menu type"
1082
  msgstr ""
1083
 
1084
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
  msgid "Facet Meta"
1086
  msgstr ""
1087
 
1088
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
  msgid "Choose the meta field for the facet menu"
1090
  msgstr ""
1091
 
1092
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
  msgid "Behaviour"
1094
  msgstr ""
1095
 
1096
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
  msgid "Narrow the results"
1098
  msgstr ""
1099
 
1100
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
  msgid "Expand the results"
1102
  msgstr ""
1103
 
1104
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
  msgid "Choose how multiple selections affect the results"
1106
  msgstr ""
1107
 
1108
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
  msgid "Visible choices"
1110
  msgstr ""
1111
 
1112
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
  msgid "Show a toggle link after this many choices. Leave blank for all"
1114
  msgstr ""
1115
 
1116
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
  msgid "Search Fields"
1118
  msgstr ""
1119
 
1120
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
  msgid "Choose the fields in which the Search Field will look in"
1122
  msgstr ""
1123
 
1124
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
  msgid "Search Settings"
1126
  msgstr ""
1127
 
1128
- #: pb-add-on-woocommerce/billing-fields.php:8
1129
- #: pb-add-on-woocommerce/shipping-fields.php:8
1130
- msgid "Company Name"
1131
- msgstr ""
1132
-
1133
- #: pb-add-on-woocommerce/billing-fields.php:9
1134
- #: pb-add-on-woocommerce/shipping-fields.php:9
1135
- msgid "Address"
1136
- msgstr ""
1137
-
1138
- #: pb-add-on-woocommerce/billing-fields.php:5
1139
- #: pb-add-on-woocommerce/shipping-fields.php:5
1140
- msgid "Country"
1141
- msgstr ""
1142
-
1143
- #: pb-add-on-woocommerce/billing-fields.php:11
1144
- #: pb-add-on-woocommerce/shipping-fields.php:11
1145
- msgid "Town / City"
1146
- msgstr ""
1147
-
1148
- #: pb-add-on-woocommerce/billing-fields.php:12
1149
- #: pb-add-on-woocommerce/shipping-fields.php:12
1150
- msgid "State / County"
1151
- msgstr ""
1152
-
1153
- #: pb-add-on-woocommerce/billing-fields.php:13
1154
- #: pb-add-on-woocommerce/shipping-fields.php:13
1155
- msgid "Postcode / Zip"
1156
- msgstr ""
1157
-
1158
- #: pb-add-on-woocommerce/billing-fields.php:14
1159
- msgid "Email Address"
1160
- msgstr ""
1161
-
1162
- #: pb-add-on-woocommerce/billing-fields.php:15
1163
- msgid "Phone"
1164
- msgstr ""
1165
-
1166
- #: pb-add-on-woocommerce/billing-fields.php:278
1167
- msgid "Ship to a different address?"
1168
- msgstr ""
1169
-
1170
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
- msgid "Billing Address"
1172
- msgstr ""
1173
-
1174
- #: pb-add-on-woocommerce/index.php:169
1175
- msgid "Displays customer billing fields in front-end. "
1176
- msgstr ""
1177
-
1178
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
- msgid "Shipping Address"
1180
- msgstr ""
1181
-
1182
- #: pb-add-on-woocommerce/index.php:173
1183
- msgid "Displays customer shipping fields in front-end. "
1184
- msgstr ""
1185
-
1186
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
- msgid "Display on WooCommerce Checkout"
1188
- msgstr ""
1189
-
1190
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1191
- msgid "Whether the field should be added to the WooCommerce checkout form or not"
1192
- msgstr ""
1193
-
1194
- #: pb-add-on-woocommerce/index.php:541
1195
- msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1196
- msgstr ""
1197
-
1198
- #: pb-add-on-woocommerce/woosync-page.php:23
1199
- #: pb-add-on-woocommerce/woosync-page.php:70
1200
- msgid "WooCommerce Sync"
1201
- msgstr ""
1202
-
1203
- #: pb-add-on-woocommerce/woosync-page.php:76
1204
- msgid "Choose Register form to display on My Account page:"
1205
- msgstr ""
1206
-
1207
- #: pb-add-on-woocommerce/woosync-page.php:81
1208
- msgid "Default Register"
1209
- msgstr ""
1210
-
1211
- #: pb-add-on-woocommerce/woosync-page.php:103
1212
- msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1213
- msgstr ""
1214
-
1215
- #: pb-add-on-woocommerce/woosync-page.php:110
1216
- msgid "Choose Edit Profile form to display on My Account page:"
1217
- msgstr ""
1218
-
1219
- #: pb-add-on-woocommerce/woosync-page.php:115
1220
- msgid "Default Edit Profile"
1221
- msgstr ""
1222
-
1223
- #: pb-add-on-woocommerce/woosync-page.php:137
1224
- msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1225
- msgstr ""
1226
-
1227
- #: profile-builder-2.0/admin/add-ons.php:190
1228
  msgid "Recommended Plugins"
1229
  msgstr ""
1230
 
1231
- #: profile-builder-2.0/admin/add-ons.php:219
1232
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1233
  msgid "Free"
1234
  msgstr ""
1235
 
1236
- #: profile-builder-2.0/admin/add-ons.php:221
1237
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1238
  msgstr ""
1239
 
1240
- #: profile-builder-2.0/admin/add-ons.php:222
1241
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1242
  msgid "More Details"
1243
  msgstr ""
1244
 
1245
- #: profile-builder-2.0/admin/add-ons.php:240
1246
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1247
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1248
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1249
  msgid "Plugin is <strong>inactive</strong>"
1250
  msgstr ""
1251
 
1252
- #: profile-builder-2.0/admin/add-ons.php:242
1253
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1254
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1255
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1256
  msgid "Plugin is <strong>active</strong>"
1257
  msgstr ""
1258
 
1259
- #: profile-builder-2.0/admin/add-ons.php:256
1260
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1261
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1262
  msgstr ""
1263
 
1264
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1265
  msgid "Paid Accounts"
1266
  msgstr ""
1267
 
1268
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1269
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1270
  msgstr ""
1271
 
1272
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1273
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1274
  msgstr ""
1275
 
1276
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1277
  msgid "Paid & Free Subscriptions"
1278
  msgstr ""
1279
 
1280
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1281
  msgid "Restrict Content"
1282
  msgstr ""
1283
 
1284
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1285
  msgid "Member Management"
1286
  msgstr ""
1287
 
1288
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1289
  msgid "Email Templates"
1290
  msgstr ""
1291
 
1292
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1293
  msgid "Account Management"
1294
  msgstr ""
1295
 
1296
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1297
  msgid "Subscription Management"
1298
  msgstr ""
1299
 
1300
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1301
  msgid "Payment Management"
1302
  msgstr ""
1303
 
1304
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1305
  msgid "Plugin is Active"
1306
  msgstr ""
1307
 
1308
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1309
  msgid "Plugin has been activated"
1310
  msgstr ""
1311
 
1312
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1313
  msgid "Plugin has been deactivated."
1314
  msgstr ""
1315
 
1316
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1317
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1318
  msgstr ""
1319
 
1320
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1321
  msgid "Step by Step Quick Setup"
1322
  msgstr ""
1323
 
1324
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1325
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1326
  msgstr ""
1327
 
1328
- #: profile-builder-2.0/front-end/register.php:133
1329
- msgid "You will soon be redirected automatically."
1330
- msgstr ""
1331
-
1332
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1333
  msgid "After Login"
1334
  msgstr ""
1335
 
1336
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1337
  msgid "After Logout"
1338
  msgstr ""
1339
 
1340
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1341
  msgid "After Registration"
1342
  msgstr ""
1343
 
1344
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1345
  msgid "After Edit Profile"
1346
  msgstr ""
1347
 
1348
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1349
  msgid "After Successful Email Confirmation"
1350
  msgstr ""
1351
 
1352
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1353
  msgid "After Successful Password Reset"
1354
  msgstr ""
1355
 
1356
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1357
  msgid "Dashboard (redirect users from accessing the dashboard)"
1358
  msgstr ""
1359
 
1360
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1361
  msgid "User ID"
1362
  msgstr ""
1363
 
1364
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1365
  msgid "User ID or Username"
1366
  msgstr ""
1367
 
1368
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1369
  msgid "User ID / Username"
1370
  msgstr ""
1371
 
1372
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1373
  msgid "Please select and enter the ID or username of your user."
1374
  msgstr ""
1375
 
1376
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1377
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1378
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1379
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1380
  msgid "Redirect Type"
1381
  msgstr ""
1382
 
1383
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1384
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1385
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1386
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1387
  msgid "Redirect URL"
1388
  msgstr ""
1389
 
1390
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1391
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1392
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1393
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1394
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1395
  msgstr ""
1396
 
1397
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1398
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
1399
  msgid "Individual User Redirects"
1400
  msgstr ""
1401
 
1402
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1403
  msgid "... Choose"
1404
  msgstr ""
1405
 
1406
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1407
  msgid "Select a user role."
1408
  msgstr ""
1409
 
1410
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1411
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1412
  msgid "User Role based Redirects"
1413
  msgstr ""
1414
 
1415
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1416
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1417
  msgid "Global Redirects"
1418
  msgstr ""
1419
 
1420
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1421
  msgid "Login ( wp_login.php )"
1422
  msgstr ""
1423
 
1424
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1425
  msgid "Register ( wp-login.php?action=register )"
1426
  msgstr ""
1427
 
1428
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1429
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1430
  msgstr ""
1431
 
1432
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1433
  msgid "Author Archive ( http://sitename.com/author/admin )"
1434
  msgstr ""
1435
 
1436
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1437
  msgid "Redirect Default WordPress Forms and Pages"
1438
  msgstr ""
1439
 
1440
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1441
  msgid "How does this work?"
1442
  msgstr ""
1443
 
1444
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1445
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1446
  msgstr ""
1447
 
1448
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1449
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1450
  msgstr ""
1451
 
1452
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1453
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1454
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1455
  msgstr ""
1456
 
1457
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1458
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1459
  msgstr ""
1460
 
1461
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1462
  msgid "Which redirect happens depends on the following priority:"
1463
  msgstr ""
1464
 
1465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1466
- msgid "Individual redirects defined in shortcodes or in the Multiple Registration and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects)"
1467
- msgstr ""
1468
-
1469
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
1470
  msgid "Redirect Default WordPress forms and pages"
1471
  msgstr ""
1472
 
1473
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1474
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1475
  msgstr ""
1476
 
1477
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:249
1478
  msgid "Available tags for dynamic URLs"
1479
  msgstr ""
1480
 
1481
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1482
  msgid "You use the following tags in your URLs to redirect users to various pages."
1483
  msgstr ""
1484
 
1485
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
1486
  msgid "generates a url of the current website homepage."
1487
  msgstr ""
1488
 
1489
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1490
  msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1491
  msgstr ""
1492
 
1493
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1494
  msgid "the ID of the user"
1495
  msgstr ""
1496
 
1497
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1498
  msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1499
  msgstr ""
1500
 
1501
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1502
  msgid "the URL of the previously visited page"
1503
  msgstr ""
1504
 
1505
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:339
1506
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:345
1507
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:351
1508
  msgid "You can't add duplicate redirects!"
1509
  msgstr ""
1510
 
1511
- #: profile-builder-2.0/admin/admin-functions.php:40
1512
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1513
  msgstr ""
1514
 
1515
- #: profile-builder-2.0/admin/basic-info.php:37
1516
  msgid "Friction-less login using %s shortcode or a widget."
1517
  msgstr ""
1518
 
1519
- #: profile-builder-2.0/admin/basic-info.php:41
1520
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1521
  msgstr ""
1522
 
1523
- #: profile-builder-2.0/admin/basic-info.php:45
1524
  msgid "Straight forward edit profile forms using %s shortcode."
1525
  msgstr ""
1526
 
1527
- #: profile-builder-2.0/admin/basic-info.php:58
1528
  msgid "Allow users to recover their password in the front-end using the %s."
1529
  msgstr ""
1530
 
1531
- #: profile-builder-2.0/admin/basic-info.php:140
1532
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1533
  msgstr ""
1534
 
1535
- #: profile-builder-2.0/admin/general-settings.php:118
1536
  msgid "\"Admin Approval\" on User Role:"
1537
  msgstr ""
1538
 
1539
- #: profile-builder-2.0/admin/general-settings.php:137
1540
  msgid "Select on what user roles to activate Admin Approval."
1541
  msgstr ""
1542
 
1543
- #: profile-builder-2.0/admin/manage-fields.php:128
1544
  msgid "Display on PB forms"
1545
  msgstr ""
1546
 
1547
- #: profile-builder-2.0/admin/manage-fields.php:128
1548
  msgid "PB Login"
1549
  msgstr ""
1550
 
1551
- #: profile-builder-2.0/admin/manage-fields.php:128
1552
  msgid "PB Register"
1553
  msgstr ""
1554
 
1555
- #: profile-builder-2.0/admin/manage-fields.php:128
1556
  msgid "PB Recover Password"
1557
  msgstr ""
1558
 
1559
- #: profile-builder-2.0/admin/manage-fields.php:128
1560
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1561
  msgstr ""
1562
 
1563
- #: profile-builder-2.0/admin/manage-fields.php:129
1564
  msgid "Display on default WP forms"
1565
  msgstr ""
1566
 
1567
- #: profile-builder-2.0/admin/manage-fields.php:129
1568
  msgid "Default WP Login"
1569
  msgstr ""
1570
 
1571
- #: profile-builder-2.0/admin/manage-fields.php:129
1572
  msgid "Default WP Register"
1573
  msgstr ""
1574
 
1575
- #: profile-builder-2.0/admin/manage-fields.php:129
1576
  msgid "Default WP Recover Password"
1577
  msgstr ""
1578
 
1579
- #: profile-builder-2.0/admin/manage-fields.php:129
1580
  msgid "Select on which default WP forms to display reCAPTCHA"
1581
  msgstr ""
1582
 
1583
- #: profile-builder-2.0/admin/manage-fields.php:135
1584
- #: profile-builder-2.0/admin/manage-fields.php:136
1585
- #: profile-builder-2.0/admin/manage-fields.php:137
1586
  msgid "Default option of the field"
1587
  msgstr ""
1588
 
1589
- #: profile-builder-2.0/admin/manage-fields.php:273
1590
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1591
  msgid "Afghanistan"
1592
  msgstr "Afghanistan"
1593
 
1594
- #: profile-builder-2.0/admin/manage-fields.php:274
1595
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Aland Islands"
1597
  msgstr "Aland Islands"
1598
 
1599
- #: profile-builder-2.0/admin/manage-fields.php:275
1600
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Albania"
1602
  msgstr "Albania"
1603
 
1604
- #: profile-builder-2.0/admin/manage-fields.php:276
1605
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Algeria"
1607
  msgstr "Algeria"
1608
 
1609
- #: profile-builder-2.0/admin/manage-fields.php:277
1610
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "American Samoa"
1612
  msgstr "American Samoa"
1613
 
1614
- #: profile-builder-2.0/admin/manage-fields.php:278
1615
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "Andorra"
1617
  msgstr "Andorra"
1618
 
1619
- #: profile-builder-2.0/admin/manage-fields.php:279
1620
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1621
  msgid "Angola"
1622
  msgstr "Angola"
1623
 
1624
- #: profile-builder-2.0/admin/manage-fields.php:280
1625
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1626
  msgid "Anguilla"
1627
  msgstr "Anguilla"
1628
 
1629
- #: profile-builder-2.0/admin/manage-fields.php:281
1630
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1631
  msgid "Antarctica"
1632
  msgstr "Antarctica"
1633
 
1634
- #: profile-builder-2.0/admin/manage-fields.php:282
1635
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1636
  msgid "Antigua and Barbuda"
1637
  msgstr "Antigua and Barbuda"
1638
 
1639
- #: profile-builder-2.0/admin/manage-fields.php:283
1640
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1641
  msgid "Argentina"
1642
  msgstr "Argentina"
1643
 
1644
- #: profile-builder-2.0/admin/manage-fields.php:284
1645
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1646
  msgid "Armenia"
1647
  msgstr "Armenia"
1648
 
1649
- #: profile-builder-2.0/admin/manage-fields.php:285
1650
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1651
  msgid "Aruba"
1652
  msgstr "Aruba"
1653
 
1654
- #: profile-builder-2.0/admin/manage-fields.php:286
1655
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1656
  msgid "Australia"
1657
  msgstr "Australia"
1658
 
1659
- #: profile-builder-2.0/admin/manage-fields.php:287
1660
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1661
  msgid "Austria"
1662
  msgstr "Austria"
1663
 
1664
- #: profile-builder-2.0/admin/manage-fields.php:288
1665
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
  msgid "Azerbaijan"
1667
  msgstr "Azerbaijan"
1668
 
1669
- #: profile-builder-2.0/admin/manage-fields.php:289
1670
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
  msgid "Bahamas"
1672
  msgstr "Bahamas"
1673
 
1674
- #: profile-builder-2.0/admin/manage-fields.php:290
1675
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
  msgid "Bahrain"
1677
  msgstr "Bahrain"
1678
 
1679
- #: profile-builder-2.0/admin/manage-fields.php:291
1680
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
  msgid "Bangladesh"
1682
  msgstr "Bangladesh"
1683
 
1684
- #: profile-builder-2.0/admin/manage-fields.php:292
1685
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
  msgid "Barbados"
1687
  msgstr "Barbados"
1688
 
1689
- #: profile-builder-2.0/admin/manage-fields.php:293
1690
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
  msgid "Belarus"
1692
  msgstr "Belarus"
1693
 
1694
- #: profile-builder-2.0/admin/manage-fields.php:294
1695
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
  msgid "Belgium"
1697
  msgstr "Belgium"
1698
 
1699
- #: profile-builder-2.0/admin/manage-fields.php:295
1700
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
  msgid "Belize"
1702
  msgstr "Belize"
1703
 
1704
- #: profile-builder-2.0/admin/manage-fields.php:296
1705
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
  msgid "Benin"
1707
  msgstr "Benin"
1708
 
1709
- #: profile-builder-2.0/admin/manage-fields.php:297
1710
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
  msgid "Bermuda"
1712
  msgstr "Bermuda"
1713
 
1714
- #: profile-builder-2.0/admin/manage-fields.php:298
1715
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
  msgid "Bhutan"
1717
  msgstr "Bhutan"
1718
 
1719
- #: profile-builder-2.0/admin/manage-fields.php:299
1720
  msgid "Bolivia"
1721
  msgstr "Bolivia"
1722
 
1723
- #: profile-builder-2.0/admin/manage-fields.php:300
1724
  msgid "Bonaire, Saint Eustatius and Saba"
1725
  msgstr "Bonaire, Saint Eustatius and Saba"
1726
 
1727
- #: profile-builder-2.0/admin/manage-fields.php:301
1728
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1729
  msgid "Bosnia and Herzegovina"
1730
  msgstr "Bosnia and Herzegovina"
1731
 
1732
- #: profile-builder-2.0/admin/manage-fields.php:302
1733
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1734
  msgid "Botswana"
1735
  msgstr "Botswana"
1736
 
1737
- #: profile-builder-2.0/admin/manage-fields.php:303
1738
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1739
  msgid "Bouvet Island"
1740
  msgstr "Bouvet Island"
1741
 
1742
- #: profile-builder-2.0/admin/manage-fields.php:304
1743
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1744
  msgid "Brazil"
1745
  msgstr "Brazil"
1746
 
1747
- #: profile-builder-2.0/admin/manage-fields.php:305
1748
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1749
  msgid "British Indian Ocean Territory"
1750
  msgstr "British Indian Ocean Territory"
1751
 
1752
- #: profile-builder-2.0/admin/manage-fields.php:306
1753
  msgid "British Virgin Islands"
1754
  msgstr "British Virgin Islands"
1755
 
1756
- #: profile-builder-2.0/admin/manage-fields.php:307
1757
  msgid "Brunei"
1758
  msgstr "Brunei"
1759
 
1760
- #: profile-builder-2.0/admin/manage-fields.php:308
1761
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1762
  msgid "Bulgaria"
1763
  msgstr "Bulgaria"
1764
 
1765
- #: profile-builder-2.0/admin/manage-fields.php:309
1766
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1767
  msgid "Burkina Faso"
1768
  msgstr "Burkina Faso"
1769
 
1770
- #: profile-builder-2.0/admin/manage-fields.php:310
1771
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1772
  msgid "Burundi"
1773
  msgstr "Burundi"
1774
 
1775
- #: profile-builder-2.0/admin/manage-fields.php:311
1776
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1777
  msgid "Cambodia"
1778
  msgstr "Cambodia"
1779
 
1780
- #: profile-builder-2.0/admin/manage-fields.php:312
1781
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1782
  msgid "Cameroon"
1783
  msgstr "Cameroon"
1784
 
1785
- #: profile-builder-2.0/admin/manage-fields.php:313
1786
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1787
  msgid "Canada"
1788
  msgstr "Canada"
1789
 
1790
- #: profile-builder-2.0/admin/manage-fields.php:314
1791
  msgid "Cape Verde"
1792
  msgstr "Cape Verde"
1793
 
1794
- #: profile-builder-2.0/admin/manage-fields.php:315
1795
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1796
  msgid "Cayman Islands"
1797
  msgstr "Cayman Islands"
1798
 
1799
- #: profile-builder-2.0/admin/manage-fields.php:316
1800
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1801
  msgid "Central African Republic"
1802
  msgstr "Central African Republic"
1803
 
1804
- #: profile-builder-2.0/admin/manage-fields.php:317
1805
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
  msgid "Chad"
1807
  msgstr "Chad"
1808
 
1809
- #: profile-builder-2.0/admin/manage-fields.php:318
1810
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
  msgid "Chile"
1812
  msgstr "Chile"
1813
 
1814
- #: profile-builder-2.0/admin/manage-fields.php:319
1815
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1816
  msgid "China"
1817
  msgstr "China"
1818
 
1819
- #: profile-builder-2.0/admin/manage-fields.php:320
1820
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
  msgid "Christmas Island"
1822
  msgstr "Christmas Island"
1823
 
1824
- #: profile-builder-2.0/admin/manage-fields.php:321
1825
  msgid "Cocos Islands"
1826
  msgstr "Cocos Islands"
1827
 
1828
- #: profile-builder-2.0/admin/manage-fields.php:322
1829
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1830
  msgid "Colombia"
1831
  msgstr "Colombia"
1832
 
1833
- #: profile-builder-2.0/admin/manage-fields.php:323
1834
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1835
  msgid "Comoros"
1836
  msgstr "Comoros"
1837
 
1838
- #: profile-builder-2.0/admin/manage-fields.php:324
1839
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1840
  msgid "Cook Islands"
1841
  msgstr "Cook Islands"
1842
 
1843
- #: profile-builder-2.0/admin/manage-fields.php:325
1844
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1845
  msgid "Costa Rica"
1846
  msgstr "Costa Rica"
1847
 
1848
- #: profile-builder-2.0/admin/manage-fields.php:326
1849
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1850
  msgid "Croatia"
1851
  msgstr "Croatia"
1852
 
1853
- #: profile-builder-2.0/admin/manage-fields.php:327
1854
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1855
  msgid "Cuba"
1856
  msgstr "Cuba"
1857
 
1858
- #: profile-builder-2.0/admin/manage-fields.php:328
1859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1860
  msgid "Curacao"
1861
  msgstr "Curacao"
1862
 
1863
- #: profile-builder-2.0/admin/manage-fields.php:329
1864
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1865
  msgid "Cyprus"
1866
  msgstr "Cyprus"
1867
 
1868
- #: profile-builder-2.0/admin/manage-fields.php:330
1869
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1870
  msgid "Czech Republic"
1871
  msgstr "Czech Republic"
1872
 
1873
- #: profile-builder-2.0/admin/manage-fields.php:331
1874
  msgid "Democratic Republic of the Congo"
1875
  msgstr "Democratic Republic of the Congo"
1876
 
1877
- #: profile-builder-2.0/admin/manage-fields.php:332
1878
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Denmark"
1880
  msgstr "Denmark"
1881
 
1882
- #: profile-builder-2.0/admin/manage-fields.php:333
1883
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Djibouti"
1885
  msgstr "Djibouti"
1886
 
1887
- #: profile-builder-2.0/admin/manage-fields.php:334
1888
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Dominica"
1890
  msgstr "Dominica"
1891
 
1892
- #: profile-builder-2.0/admin/manage-fields.php:335
1893
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Dominican Republic"
1895
  msgstr "Dominican Republic"
1896
 
1897
- #: profile-builder-2.0/admin/manage-fields.php:336
1898
  msgid "East Timor"
1899
  msgstr "East Timor"
1900
 
1901
- #: profile-builder-2.0/admin/manage-fields.php:337
1902
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1903
  msgid "Ecuador"
1904
  msgstr "Ecuador"
1905
 
1906
- #: profile-builder-2.0/admin/manage-fields.php:338
1907
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1908
  msgid "Egypt"
1909
  msgstr "Egypt"
1910
 
1911
- #: profile-builder-2.0/admin/manage-fields.php:339
1912
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1913
  msgid "El Salvador"
1914
  msgstr "El Salvador"
1915
 
1916
- #: profile-builder-2.0/admin/manage-fields.php:340
1917
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1918
  msgid "Equatorial Guinea"
1919
  msgstr "Equatorial Guinea"
1920
 
1921
- #: profile-builder-2.0/admin/manage-fields.php:341
1922
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1923
  msgid "Eritrea"
1924
  msgstr "Eritrea"
1925
 
1926
- #: profile-builder-2.0/admin/manage-fields.php:342
1927
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1928
  msgid "Estonia"
1929
  msgstr "Estonia"
1930
 
1931
- #: profile-builder-2.0/admin/manage-fields.php:343
1932
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1933
  msgid "Ethiopia"
1934
  msgstr "Ethiopia"
1935
 
1936
- #: profile-builder-2.0/admin/manage-fields.php:344
1937
  msgid "Falkland Islands"
1938
  msgstr "Falkland Islands"
1939
 
1940
- #: profile-builder-2.0/admin/manage-fields.php:345
1941
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
  msgid "Faroe Islands"
1943
  msgstr "Faroe Islands"
1944
 
1945
- #: profile-builder-2.0/admin/manage-fields.php:346
1946
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1947
  msgid "Fiji"
1948
  msgstr "Fiji"
1949
 
1950
- #: profile-builder-2.0/admin/manage-fields.php:347
1951
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1952
  msgid "Finland"
1953
  msgstr "Finland"
1954
 
1955
- #: profile-builder-2.0/admin/manage-fields.php:348
1956
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1957
  msgid "France"
1958
  msgstr "France"
1959
 
1960
- #: profile-builder-2.0/admin/manage-fields.php:349
1961
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1962
  msgid "French Guiana"
1963
  msgstr "French Guiana"
1964
 
1965
- #: profile-builder-2.0/admin/manage-fields.php:350
1966
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1967
  msgid "French Polynesia"
1968
  msgstr "French Polynesia"
1969
 
1970
- #: profile-builder-2.0/admin/manage-fields.php:351
1971
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1972
  msgid "French Southern Territories"
1973
  msgstr "French Southern Territories"
1974
 
1975
- #: profile-builder-2.0/admin/manage-fields.php:352
1976
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1977
  msgid "Gabon"
1978
  msgstr "Gabon"
1979
 
1980
- #: profile-builder-2.0/admin/manage-fields.php:353
1981
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1982
  msgid "Gambia"
1983
  msgstr "Gambia"
1984
 
1985
- #: profile-builder-2.0/admin/manage-fields.php:354
1986
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1987
  msgid "Georgia"
1988
  msgstr "Georgia"
1989
 
1990
- #: profile-builder-2.0/admin/manage-fields.php:355
1991
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1992
  msgid "Germany"
1993
  msgstr "Germany"
1994
 
1995
- #: profile-builder-2.0/admin/manage-fields.php:356
1996
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Ghana"
1998
  msgstr "Ghana"
1999
 
2000
- #: profile-builder-2.0/admin/manage-fields.php:357
2001
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Gibraltar"
2003
  msgstr "Gibraltar"
2004
 
2005
- #: profile-builder-2.0/admin/manage-fields.php:358
2006
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Greece"
2008
  msgstr "Greece"
2009
 
2010
- #: profile-builder-2.0/admin/manage-fields.php:359
2011
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Greenland"
2013
  msgstr "Greenland"
2014
 
2015
- #: profile-builder-2.0/admin/manage-fields.php:360
2016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Grenada"
2018
  msgstr "Grenada"
2019
 
2020
- #: profile-builder-2.0/admin/manage-fields.php:361
2021
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Guadeloupe"
2023
  msgstr "Guadeloupe"
2024
 
2025
- #: profile-builder-2.0/admin/manage-fields.php:362
2026
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Guam"
2028
  msgstr "Guam"
2029
 
2030
- #: profile-builder-2.0/admin/manage-fields.php:363
2031
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
  msgid "Guatemala"
2033
  msgstr "Guatemala"
2034
 
2035
- #: profile-builder-2.0/admin/manage-fields.php:364
2036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
  msgid "Guernsey"
2038
  msgstr "Guernsey"
2039
 
2040
- #: profile-builder-2.0/admin/manage-fields.php:365
2041
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
  msgid "Guinea"
2043
  msgstr "Guinea"
2044
 
2045
- #: profile-builder-2.0/admin/manage-fields.php:366
2046
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
  msgid "Guinea-Bissau"
2048
  msgstr "Guinea-Bissau"
2049
 
2050
- #: profile-builder-2.0/admin/manage-fields.php:367
2051
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
  msgid "Guyana"
2053
  msgstr "Guyana"
2054
 
2055
- #: profile-builder-2.0/admin/manage-fields.php:368
2056
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
  msgid "Haiti"
2058
  msgstr "Haiti"
2059
 
2060
- #: profile-builder-2.0/admin/manage-fields.php:369
2061
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
  msgid "Heard Island and McDonald Islands"
2063
  msgstr "Heard Island and McDonald Islands"
2064
 
2065
- #: profile-builder-2.0/admin/manage-fields.php:370
2066
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
  msgid "Honduras"
2068
  msgstr "Honduras"
2069
 
2070
- #: profile-builder-2.0/admin/manage-fields.php:371
2071
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
  msgid "Hong Kong"
2073
  msgstr "Hong Kong"
2074
 
2075
- #: profile-builder-2.0/admin/manage-fields.php:372
2076
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
  msgid "Hungary"
2078
  msgstr "Hungary"
2079
 
2080
- #: profile-builder-2.0/admin/manage-fields.php:373
2081
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
  msgid "Iceland"
2083
  msgstr "Iceland"
2084
 
2085
- #: profile-builder-2.0/admin/manage-fields.php:374
2086
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
  msgid "India"
2088
  msgstr "India"
2089
 
2090
- #: profile-builder-2.0/admin/manage-fields.php:375
2091
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
  msgid "Indonesia"
2093
  msgstr "Indonesia"
2094
 
2095
- #: profile-builder-2.0/admin/manage-fields.php:376
2096
  msgid "Iran"
2097
  msgstr "Iran"
2098
 
2099
- #: profile-builder-2.0/admin/manage-fields.php:377
2100
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2101
  msgid "Iraq"
2102
  msgstr "Iraq"
2103
 
2104
- #: profile-builder-2.0/admin/manage-fields.php:378
2105
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2106
  msgid "Ireland"
2107
  msgstr "Ireland"
2108
 
2109
- #: profile-builder-2.0/admin/manage-fields.php:379
2110
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2111
  msgid "Isle of Man"
2112
  msgstr "Isle of Man"
2113
 
2114
- #: profile-builder-2.0/admin/manage-fields.php:380
2115
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2116
  msgid "Israel"
2117
  msgstr "Israel"
2118
 
2119
- #: profile-builder-2.0/admin/manage-fields.php:381
2120
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2121
  msgid "Italy"
2122
  msgstr "Italy"
2123
 
2124
- #: profile-builder-2.0/admin/manage-fields.php:382
2125
  msgid "Ivory Coast"
2126
  msgstr "Ivory Coast"
2127
 
2128
- #: profile-builder-2.0/admin/manage-fields.php:383
2129
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2130
  msgid "Jamaica"
2131
  msgstr "Jamaica"
2132
 
2133
- #: profile-builder-2.0/admin/manage-fields.php:384
2134
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2135
  msgid "Japan"
2136
  msgstr "Japan"
2137
 
2138
- #: profile-builder-2.0/admin/manage-fields.php:385
2139
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2140
  msgid "Jersey"
2141
  msgstr "Jersey"
2142
 
2143
- #: profile-builder-2.0/admin/manage-fields.php:386
2144
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2145
  msgid "Jordan"
2146
  msgstr "Jordan"
2147
 
2148
- #: profile-builder-2.0/admin/manage-fields.php:387
2149
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2150
  msgid "Kazakhstan"
2151
  msgstr "Kazakhstan"
2152
 
2153
- #: profile-builder-2.0/admin/manage-fields.php:388
2154
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2155
  msgid "Kenya"
2156
  msgstr "Kenya"
2157
 
2158
- #: profile-builder-2.0/admin/manage-fields.php:389
2159
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2160
  msgid "Kiribati"
2161
  msgstr "Kiribati"
2162
 
2163
- #: profile-builder-2.0/admin/manage-fields.php:390
2164
  msgid "Kosovo"
2165
  msgstr "Kosovo"
2166
 
2167
- #: profile-builder-2.0/admin/manage-fields.php:391
2168
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
  msgid "Kuwait"
2170
  msgstr "Kuwait"
2171
 
2172
- #: profile-builder-2.0/admin/manage-fields.php:392
2173
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2174
  msgid "Kyrgyzstan"
2175
  msgstr "Kyrgyzstan"
2176
 
2177
- #: profile-builder-2.0/admin/manage-fields.php:393
2178
  msgid "Laos"
2179
  msgstr "Laos"
2180
 
2181
- #: profile-builder-2.0/admin/manage-fields.php:394
2182
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
  msgid "Latvia"
2184
  msgstr "Latvia"
2185
 
2186
- #: profile-builder-2.0/admin/manage-fields.php:395
2187
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
  msgid "Lebanon"
2189
  msgstr "Lebanon"
2190
 
2191
- #: profile-builder-2.0/admin/manage-fields.php:396
2192
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2193
  msgid "Lesotho"
2194
  msgstr "Lesotho"
2195
 
2196
- #: profile-builder-2.0/admin/manage-fields.php:397
2197
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2198
  msgid "Liberia"
2199
  msgstr "Liberia"
2200
 
2201
- #: profile-builder-2.0/admin/manage-fields.php:398
2202
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
  msgid "Libya"
2204
  msgstr "Libya"
2205
 
2206
- #: profile-builder-2.0/admin/manage-fields.php:399
2207
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2208
  msgid "Liechtenstein"
2209
  msgstr "Liechtenstein"
2210
 
2211
- #: profile-builder-2.0/admin/manage-fields.php:400
2212
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
  msgid "Lithuania"
2214
  msgstr "Lithuania"
2215
 
2216
- #: profile-builder-2.0/admin/manage-fields.php:401
2217
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
  msgid "Luxembourg"
2219
  msgstr "Luxembourg"
2220
 
2221
- #: profile-builder-2.0/admin/manage-fields.php:402
2222
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2223
  msgid "Macao"
2224
  msgstr "Macao"
2225
 
2226
- #: profile-builder-2.0/admin/manage-fields.php:403
2227
  msgid "Macedonia"
2228
  msgstr "Macedonia"
2229
 
2230
- #: profile-builder-2.0/admin/manage-fields.php:404
2231
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Madagascar"
2233
  msgstr "Madagascar"
2234
 
2235
- #: profile-builder-2.0/admin/manage-fields.php:405
2236
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2237
  msgid "Malawi"
2238
  msgstr "Malawi"
2239
 
2240
- #: profile-builder-2.0/admin/manage-fields.php:406
2241
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Malaysia"
2243
  msgstr "Malaysia"
2244
 
2245
- #: profile-builder-2.0/admin/manage-fields.php:407
2246
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Maldives"
2248
  msgstr "Maldives"
2249
 
2250
- #: profile-builder-2.0/admin/manage-fields.php:408
2251
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2252
  msgid "Mali"
2253
  msgstr "Mali"
2254
 
2255
- #: profile-builder-2.0/admin/manage-fields.php:409
2256
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2257
  msgid "Malta"
2258
  msgstr "Malta"
2259
 
2260
- #: profile-builder-2.0/admin/manage-fields.php:410
2261
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2262
  msgid "Marshall Islands"
2263
  msgstr "Marshall Islands"
2264
 
2265
- #: profile-builder-2.0/admin/manage-fields.php:411
2266
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2267
  msgid "Martinique"
2268
  msgstr "Martinique"
2269
 
2270
- #: profile-builder-2.0/admin/manage-fields.php:412
2271
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2272
  msgid "Mauritania"
2273
  msgstr "Mauritania"
2274
 
2275
- #: profile-builder-2.0/admin/manage-fields.php:413
2276
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2277
  msgid "Mauritius"
2278
  msgstr "Mauritius"
2279
 
2280
- #: profile-builder-2.0/admin/manage-fields.php:414
2281
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2282
  msgid "Mayotte"
2283
  msgstr "Mayotte"
2284
 
2285
- #: profile-builder-2.0/admin/manage-fields.php:415
2286
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2287
  msgid "Mexico"
2288
  msgstr "Mexico"
2289
 
2290
- #: profile-builder-2.0/admin/manage-fields.php:416
2291
  msgid "Micronesia"
2292
  msgstr "Micronesia"
2293
 
2294
- #: profile-builder-2.0/admin/manage-fields.php:417
2295
  msgid "Moldova"
2296
  msgstr "Moldova"
2297
 
2298
- #: profile-builder-2.0/admin/manage-fields.php:418
2299
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2300
  msgid "Monaco"
2301
  msgstr "Monaco"
2302
 
2303
- #: profile-builder-2.0/admin/manage-fields.php:419
2304
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Mongolia"
2306
  msgstr "Mongolia"
2307
 
2308
- #: profile-builder-2.0/admin/manage-fields.php:420
2309
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2310
  msgid "Montenegro"
2311
  msgstr "Montenegro"
2312
 
2313
- #: profile-builder-2.0/admin/manage-fields.php:421
2314
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2315
  msgid "Montserrat"
2316
  msgstr "Montserrat"
2317
 
2318
- #: profile-builder-2.0/admin/manage-fields.php:422
2319
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Morocco"
2321
  msgstr "Morocco"
2322
 
2323
- #: profile-builder-2.0/admin/manage-fields.php:423
2324
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2325
  msgid "Mozambique"
2326
  msgstr "Mozambique"
2327
 
2328
- #: profile-builder-2.0/admin/manage-fields.php:424
2329
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2330
  msgid "Myanmar"
2331
  msgstr "Myanmar"
2332
 
2333
- #: profile-builder-2.0/admin/manage-fields.php:425
2334
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Namibia"
2336
  msgstr "Namibia"
2337
 
2338
- #: profile-builder-2.0/admin/manage-fields.php:426
2339
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2340
  msgid "Nauru"
2341
  msgstr "Nauru"
2342
 
2343
- #: profile-builder-2.0/admin/manage-fields.php:427
2344
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2345
  msgid "Nepal"
2346
  msgstr "Nepal"
2347
 
2348
- #: profile-builder-2.0/admin/manage-fields.php:428
2349
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2350
  msgid "Netherlands"
2351
  msgstr "Netherlands"
2352
 
2353
- #: profile-builder-2.0/admin/manage-fields.php:429
2354
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2355
  msgid "New Caledonia"
2356
  msgstr "New Caledonia"
2357
 
2358
- #: profile-builder-2.0/admin/manage-fields.php:430
2359
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2360
  msgid "New Zealand"
2361
  msgstr "New Zealand"
2362
 
2363
- #: profile-builder-2.0/admin/manage-fields.php:431
2364
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2365
  msgid "Nicaragua"
2366
  msgstr "Nicaragua"
2367
 
2368
- #: profile-builder-2.0/admin/manage-fields.php:432
2369
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2370
  msgid "Niger"
2371
  msgstr "Niger"
2372
 
2373
- #: profile-builder-2.0/admin/manage-fields.php:433
2374
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
  msgid "Nigeria"
2376
  msgstr "Nigeria"
2377
 
2378
- #: profile-builder-2.0/admin/manage-fields.php:434
2379
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
  msgid "Niue"
2381
  msgstr "Niue"
2382
 
2383
- #: profile-builder-2.0/admin/manage-fields.php:435
2384
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
  msgid "Norfolk Island"
2386
  msgstr "Norfolk Island"
2387
 
2388
- #: profile-builder-2.0/admin/manage-fields.php:436
2389
  msgid "North Korea"
2390
  msgstr "North Korea"
2391
 
2392
- #: profile-builder-2.0/admin/manage-fields.php:437
2393
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2394
  msgid "Northern Mariana Islands"
2395
  msgstr "Northern Mariana Islands"
2396
 
2397
- #: profile-builder-2.0/admin/manage-fields.php:438
2398
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2399
  msgid "Norway"
2400
  msgstr "Norway"
2401
 
2402
- #: profile-builder-2.0/admin/manage-fields.php:439
2403
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2404
  msgid "Oman"
2405
  msgstr "Oman"
2406
 
2407
- #: profile-builder-2.0/admin/manage-fields.php:440
2408
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2409
  msgid "Pakistan"
2410
  msgstr "Pakistan"
2411
 
2412
- #: profile-builder-2.0/admin/manage-fields.php:441
2413
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2414
  msgid "Palau"
2415
  msgstr "Palau"
2416
 
2417
- #: profile-builder-2.0/admin/manage-fields.php:442
2418
  msgid "Palestinian Territory"
2419
  msgstr "Palestinian Territory"
2420
 
2421
- #: profile-builder-2.0/admin/manage-fields.php:443
2422
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2423
  msgid "Panama"
2424
  msgstr "Panama"
2425
 
2426
- #: profile-builder-2.0/admin/manage-fields.php:444
2427
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2428
  msgid "Papua New Guinea"
2429
  msgstr "Papua New Guinea"
2430
 
2431
- #: profile-builder-2.0/admin/manage-fields.php:445
2432
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2433
  msgid "Paraguay"
2434
  msgstr "Paraguay"
2435
 
2436
- #: profile-builder-2.0/admin/manage-fields.php:446
2437
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2438
  msgid "Peru"
2439
  msgstr "Peru"
2440
 
2441
- #: profile-builder-2.0/admin/manage-fields.php:447
2442
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2443
  msgid "Philippines"
2444
  msgstr "Philippines"
2445
 
2446
- #: profile-builder-2.0/admin/manage-fields.php:448
2447
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2448
  msgid "Pitcairn"
2449
  msgstr "Pitcairn"
2450
 
2451
- #: profile-builder-2.0/admin/manage-fields.php:449
2452
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2453
  msgid "Poland"
2454
  msgstr "Poland"
2455
 
2456
- #: profile-builder-2.0/admin/manage-fields.php:450
2457
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2458
  msgid "Portugal"
2459
  msgstr "Portugal"
2460
 
2461
- #: profile-builder-2.0/admin/manage-fields.php:451
2462
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2463
  msgid "Puerto Rico"
2464
  msgstr "Puerto Rico"
2465
 
2466
- #: profile-builder-2.0/admin/manage-fields.php:452
2467
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2468
  msgid "Qatar"
2469
  msgstr "Qatar"
2470
 
2471
- #: profile-builder-2.0/admin/manage-fields.php:453
2472
  msgid "Republic of the Congo"
2473
  msgstr "Republic of the Congo"
2474
 
2475
- #: profile-builder-2.0/admin/manage-fields.php:454
2476
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2477
  msgid "Reunion"
2478
  msgstr "Reunion"
2479
 
2480
- #: profile-builder-2.0/admin/manage-fields.php:455
2481
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2482
  msgid "Romania"
2483
  msgstr "Romania"
2484
 
2485
- #: profile-builder-2.0/admin/manage-fields.php:456
2486
  msgid "Russia"
2487
  msgstr "Russia"
2488
 
2489
- #: profile-builder-2.0/admin/manage-fields.php:457
2490
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2491
  msgid "Rwanda"
2492
  msgstr "Rwanda"
2493
 
2494
- #: profile-builder-2.0/admin/manage-fields.php:458
2495
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2496
  msgid "Saint Barthelemy"
2497
  msgstr "Saint Barthelemy"
2498
 
2499
- #: profile-builder-2.0/admin/manage-fields.php:459
2500
  msgid "Saint Helena"
2501
  msgstr "Saint Helena"
2502
 
2503
- #: profile-builder-2.0/admin/manage-fields.php:460
2504
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2505
  msgid "Saint Kitts and Nevis"
2506
  msgstr "Saint Kitts and Nevis"
2507
 
2508
- #: profile-builder-2.0/admin/manage-fields.php:461
2509
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2510
  msgid "Saint Lucia"
2511
  msgstr "Saint Lucia"
2512
 
2513
- #: profile-builder-2.0/admin/manage-fields.php:462
2514
  msgid "Saint Martin"
2515
  msgstr "Saint Martin"
2516
 
2517
- #: profile-builder-2.0/admin/manage-fields.php:463
2518
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Saint Pierre and Miquelon"
2520
  msgstr "Saint Pierre and Miquelon"
2521
 
2522
- #: profile-builder-2.0/admin/manage-fields.php:464
2523
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2524
  msgid "Saint Vincent and the Grenadines"
2525
  msgstr "Saint Vincent and the Grenadines"
2526
 
2527
- #: profile-builder-2.0/admin/manage-fields.php:465
2528
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2529
  msgid "Samoa"
2530
  msgstr "Samoa"
2531
 
2532
- #: profile-builder-2.0/admin/manage-fields.php:466
2533
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2534
  msgid "San Marino"
2535
  msgstr "San Marino"
2536
 
2537
- #: profile-builder-2.0/admin/manage-fields.php:467
2538
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2539
  msgid "Sao Tome and Principe"
2540
  msgstr "Sao Tome and Principe"
2541
 
2542
- #: profile-builder-2.0/admin/manage-fields.php:468
2543
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2544
  msgid "Saudi Arabia"
2545
  msgstr "Saudi Arabia"
2546
 
2547
- #: profile-builder-2.0/admin/manage-fields.php:469
2548
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2549
  msgid "Senegal"
2550
  msgstr "Senegal"
2551
 
2552
- #: profile-builder-2.0/admin/manage-fields.php:470
2553
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2554
  msgid "Serbia"
2555
  msgstr "Serbia"
2556
 
2557
- #: profile-builder-2.0/admin/manage-fields.php:471
2558
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2559
  msgid "Seychelles"
2560
  msgstr "Seychelles"
2561
 
2562
- #: profile-builder-2.0/admin/manage-fields.php:472
2563
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2564
  msgid "Sierra Leone"
2565
  msgstr "Sierra Leone"
2566
 
2567
- #: profile-builder-2.0/admin/manage-fields.php:473
2568
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2569
  msgid "Singapore"
2570
  msgstr "Singapore"
2571
 
2572
- #: profile-builder-2.0/admin/manage-fields.php:474
2573
  msgid "Sint Maarten"
2574
  msgstr "Sint Maarten"
2575
 
2576
- #: profile-builder-2.0/admin/manage-fields.php:475
2577
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2578
  msgid "Slovakia"
2579
  msgstr "Slovakia"
2580
 
2581
- #: profile-builder-2.0/admin/manage-fields.php:476
2582
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2583
  msgid "Slovenia"
2584
  msgstr "Slovenia"
2585
 
2586
- #: profile-builder-2.0/admin/manage-fields.php:477
2587
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2588
  msgid "Solomon Islands"
2589
  msgstr "Solomon Islands"
2590
 
2591
- #: profile-builder-2.0/admin/manage-fields.php:478
2592
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2593
  msgid "Somalia"
2594
  msgstr "Somalia"
2595
 
2596
- #: profile-builder-2.0/admin/manage-fields.php:479
2597
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2598
  msgid "South Africa"
2599
  msgstr "South Africa"
2600
 
2601
- #: profile-builder-2.0/admin/manage-fields.php:480
2602
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2603
  msgid "South Georgia and the South Sandwich Islands"
2604
  msgstr "South Georgia and the South Sandwich Islands"
2605
 
2606
- #: profile-builder-2.0/admin/manage-fields.php:481
2607
  msgid "South Korea"
2608
  msgstr "South Korea"
2609
 
2610
- #: profile-builder-2.0/admin/manage-fields.php:482
2611
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2612
  msgid "South Sudan"
2613
  msgstr "South Sudan"
2614
 
2615
- #: profile-builder-2.0/admin/manage-fields.php:483
2616
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2617
  msgid "Spain"
2618
  msgstr "Spain"
2619
 
2620
- #: profile-builder-2.0/admin/manage-fields.php:484
2621
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2622
  msgid "Sri Lanka"
2623
  msgstr "Sri Lanka"
2624
 
2625
- #: profile-builder-2.0/admin/manage-fields.php:485
2626
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2627
  msgid "Sudan"
2628
  msgstr "Sudan"
2629
 
2630
- #: profile-builder-2.0/admin/manage-fields.php:486
2631
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2632
  msgid "Suriname"
2633
  msgstr "Suriname"
2634
 
2635
- #: profile-builder-2.0/admin/manage-fields.php:487
2636
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2637
  msgid "Svalbard and Jan Mayen"
2638
  msgstr "Svalbard and Jan Mayen"
2639
 
2640
- #: profile-builder-2.0/admin/manage-fields.php:488
2641
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2642
  msgid "Swaziland"
2643
  msgstr "Swaziland"
2644
 
2645
- #: profile-builder-2.0/admin/manage-fields.php:489
2646
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2647
  msgid "Sweden"
2648
  msgstr "Sweden"
2649
 
2650
- #: profile-builder-2.0/admin/manage-fields.php:490
2651
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Switzerland"
2653
  msgstr "Switzerland"
2654
 
2655
- #: profile-builder-2.0/admin/manage-fields.php:491
2656
  msgid "Syria"
2657
  msgstr "Syria"
2658
 
2659
- #: profile-builder-2.0/admin/manage-fields.php:492
2660
  msgid "Taiwan"
2661
  msgstr "Taiwan"
2662
 
2663
- #: profile-builder-2.0/admin/manage-fields.php:493
2664
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2665
  msgid "Tajikistan"
2666
  msgstr "Tajikistan"
2667
 
2668
- #: profile-builder-2.0/admin/manage-fields.php:494
2669
  msgid "Tanzania"
2670
  msgstr "Tanzania"
2671
 
2672
- #: profile-builder-2.0/admin/manage-fields.php:495
2673
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2674
  msgid "Thailand"
2675
  msgstr "Thailand"
2676
 
2677
- #: profile-builder-2.0/admin/manage-fields.php:496
2678
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2679
  msgid "Togo"
2680
  msgstr "Togo"
2681
 
2682
- #: profile-builder-2.0/admin/manage-fields.php:497
2683
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2684
  msgid "Tokelau"
2685
  msgstr "Tokelau"
2686
 
2687
- #: profile-builder-2.0/admin/manage-fields.php:498
2688
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2689
  msgid "Tonga"
2690
  msgstr "Tonga"
2691
 
2692
- #: profile-builder-2.0/admin/manage-fields.php:499
2693
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2694
  msgid "Trinidad and Tobago"
2695
  msgstr "Trinidad and Tobago"
2696
 
2697
- #: profile-builder-2.0/admin/manage-fields.php:500
2698
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
  msgid "Tunisia"
2700
  msgstr "Tunisia"
2701
 
2702
- #: profile-builder-2.0/admin/manage-fields.php:501
2703
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2704
  msgid "Turkey"
2705
  msgstr "Turkey"
2706
 
2707
- #: profile-builder-2.0/admin/manage-fields.php:502
2708
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2709
  msgid "Turkmenistan"
2710
  msgstr "Turkmenistan"
2711
 
2712
- #: profile-builder-2.0/admin/manage-fields.php:503
2713
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2714
  msgid "Turks and Caicos Islands"
2715
  msgstr "Turks and Caicos Islands"
2716
 
2717
- #: profile-builder-2.0/admin/manage-fields.php:504
2718
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2719
  msgid "Tuvalu"
2720
  msgstr "Tuvalu"
2721
 
2722
- #: profile-builder-2.0/admin/manage-fields.php:505
2723
  msgid "U.S. Virgin Islands"
2724
  msgstr "U.S. Virgin Islands"
2725
 
2726
- #: profile-builder-2.0/admin/manage-fields.php:506
2727
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2728
  msgid "Uganda"
2729
  msgstr "Uganda"
2730
 
2731
- #: profile-builder-2.0/admin/manage-fields.php:507
2732
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2733
  msgid "Ukraine"
2734
  msgstr "Ukraine"
2735
 
2736
- #: profile-builder-2.0/admin/manage-fields.php:508
2737
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2738
  msgid "United Arab Emirates"
2739
  msgstr "United Arab Emirates"
2740
 
2741
- #: profile-builder-2.0/admin/manage-fields.php:509
2742
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2743
  msgid "United Kingdom"
2744
  msgstr "United Kingdom"
2745
 
2746
- #: profile-builder-2.0/admin/manage-fields.php:510
2747
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2748
  msgid "United States"
2749
  msgstr "United States"
2750
 
2751
- #: profile-builder-2.0/admin/manage-fields.php:511
2752
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2753
  msgid "United States Minor Outlying Islands"
2754
  msgstr "United States Minor Outlying Islands"
2755
 
2756
- #: profile-builder-2.0/admin/manage-fields.php:512
2757
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2758
  msgid "Uruguay"
2759
  msgstr "Uruguay"
2760
 
2761
- #: profile-builder-2.0/admin/manage-fields.php:513
2762
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2763
  msgid "Uzbekistan"
2764
  msgstr "Uzbekistan"
2765
 
2766
- #: profile-builder-2.0/admin/manage-fields.php:514
2767
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2768
  msgid "Vanuatu"
2769
  msgstr "Vanuatu"
2770
 
2771
- #: profile-builder-2.0/admin/manage-fields.php:515
2772
  msgid "Vatican"
2773
  msgstr "Vatican"
2774
 
2775
- #: profile-builder-2.0/admin/manage-fields.php:516
2776
  msgid "Venezuela"
2777
  msgstr "Venezuela"
2778
 
2779
- #: profile-builder-2.0/admin/manage-fields.php:517
2780
  msgid "Vietnam"
2781
  msgstr "Vietnam"
2782
 
2783
- #: profile-builder-2.0/admin/manage-fields.php:518
2784
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2785
  msgid "Wallis and Futuna"
2786
  msgstr "Wallis and Futuna"
2787
 
2788
- #: profile-builder-2.0/admin/manage-fields.php:519
2789
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2790
  msgid "Western Sahara"
2791
  msgstr "Western Sahara"
2792
 
2793
- #: profile-builder-2.0/admin/manage-fields.php:520
2794
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2795
  msgid "Yemen"
2796
  msgstr "Yemen"
2797
 
2798
- #: profile-builder-2.0/admin/manage-fields.php:521
2799
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2800
  msgid "Zambia"
2801
  msgstr "Zambia"
2802
 
2803
- #: profile-builder-2.0/admin/manage-fields.php:522
2804
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2805
  msgid "Zimbabwe"
2806
  msgstr "Zimbabwe"
2807
 
2808
- #: profile-builder-2.0/admin/manage-fields.php:1202
2809
  msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2810
  msgstr ""
2811
 
2812
- #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:241
2813
  msgid "Your account has to be confirmed by an administrator before you can log in."
2814
  msgstr ""
2815
 
2816
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:210
2817
  msgid "Your account has been successfully created!"
2818
  msgstr ""
2819
 
2820
- #: profile-builder-2.0/features/functions.php:705
2821
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:374
2822
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:379
2823
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2824
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:458
2825
  msgid "Please enter a (valid) reCAPTCHA value"
2826
  msgstr ""
2827
 
2828
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2829
  msgid "Click the BACK button on your browser, and try again."
2830
  msgstr ""
2831
 
2832
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2833
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2834
  msgid "Sorry, you cannot upload this file type for this field."
2835
  msgstr ""
2836
 
2837
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2838
  msgid "An error occurred, please try again later."
2839
  msgstr ""
2840
 
2841
- #: profile-builder-2.0/modules/user-listing/userlisting.php:273
2842
  msgid "More"
2843
  msgstr ""
2844
 
2845
- #: profile-builder-2.0/modules/user-listing/userlisting.php:367
2846
  msgid "You do not have permission to view this user list."
2847
  msgstr ""
2848
 
2849
- #: profile-builder-2.0/modules/user-listing/userlisting.php:380
2850
  msgid "You do not have the required user role to view this user list."
2851
  msgstr ""
2852
 
2853
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2127
2854
  msgid "Ascending"
2855
  msgstr ""
2856
 
2857
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2128
2858
  msgid "Descending"
2859
  msgstr ""
2860
 
2861
- #: profile-builder-2.0/admin/add-ons.php:148
2862
- #: profile-builder-2.0/admin/add-ons.php:248
2863
- #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2864
- #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2865
  msgid "Download Now"
2866
  msgstr "现在下载"
2867
 
2868
- #: profile-builder-2.0/admin/admin-functions.php:197
2869
  msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2870
  msgstr ""
2871
 
2872
- #: profile-builder-2.0/admin/manage-fields.php:77
2873
  msgid "Choose one of the supported field types"
2874
  msgstr "请选择其中一个支持的类型"
2875
 
2876
- #: profile-builder-2.0/admin/manage-fields.php:79
2877
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2878
  msgstr "网站秘钥"
2879
 
2880
- #: profile-builder-2.0/admin/manage-fields.php:126
2881
  msgid "Site Key"
2882
  msgstr "网站秘钥"
2883
 
2884
- #: profile-builder-2.0/admin/manage-fields.php:126
2885
  msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2886
  msgstr "网站秘钥"
2887
 
2888
- #: profile-builder-2.0/admin/manage-fields.php:127
2889
  msgid "Secret Key"
2890
  msgstr ""
2891
 
2892
- #: profile-builder-2.0/admin/manage-fields.php:127
2893
  msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2894
  msgstr ""
2895
 
2896
- #: profile-builder-2.0/admin/manage-fields.php:1009
2897
  msgid "You must enter the site key\n"
2898
  msgstr ""
2899
 
2900
- #: profile-builder-2.0/admin/manage-fields.php:1011
2901
  msgid "You must enter the secret key\n"
2902
  msgstr ""
2903
 
2904
- #: profile-builder-2.0/admin/add-ons.php:10
2905
- #: profile-builder-2.0/admin/add-ons.php:32
2906
  msgid "Add-Ons"
2907
  msgstr "插件"
2908
 
2909
- #: profile-builder-2.0/admin/add-ons.php:34
2910
- #: profile-builder-2.0/admin/add-ons.php:129
2911
- #: profile-builder-2.0/admin/add-ons.php:231
2912
- #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2913
- #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2914
- #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2915
  msgid "Activate"
2916
  msgstr "激活"
2917
 
2918
- #: profile-builder-2.0/admin/add-ons.php:36
2919
- #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2920
  msgid "Downloading and installing..."
2921
  msgstr "正在下载并安装..."
2922
 
2923
- #: profile-builder-2.0/admin/add-ons.php:37
2924
- #: profile-builder-2.0/admin/pms-cross-promotion.php:81
2925
  msgid "Installation complete"
2926
  msgstr "安装完成"
2927
 
2928
- #: profile-builder-2.0/admin/add-ons.php:39
2929
  msgid "Add-On is Active"
2930
  msgstr "插件已激活"
2931
 
2932
- #: profile-builder-2.0/admin/add-ons.php:40
2933
  msgid "Add-On has been activated"
2934
  msgstr "插件已激活"
2935
 
2936
- #: profile-builder-2.0/admin/add-ons.php:41
2937
- #: profile-builder-2.0/admin/pms-cross-promotion.php:85
2938
  msgid "Retry Install"
2939
  msgstr "重新安装"
2940
 
2941
- #: profile-builder-2.0/admin/add-ons.php:43
2942
- #: profile-builder-2.0/admin/add-ons.php:140
2943
  msgid "Add-On is <strong>active</strong>"
2944
  msgstr ""
2945
 
2946
- #: profile-builder-2.0/admin/add-ons.php:44
2947
- #: profile-builder-2.0/admin/add-ons.php:138
2948
  msgid "Add-On is <strong>inactive</strong>"
2949
  msgstr ""
2950
 
2951
- #: profile-builder-2.0/admin/add-ons.php:46
2952
- #: profile-builder-2.0/admin/add-ons.php:133
2953
- #: profile-builder-2.0/admin/add-ons.php:235
2954
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
2955
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
2956
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
2957
  msgid "Deactivate"
2958
  msgstr "未启用"
2959
 
2960
- #: profile-builder-2.0/admin/add-ons.php:47
2961
  msgid "Add-On has been deactivated."
2962
  msgstr "插件已关闭"
2963
 
2964
- #: profile-builder-2.0/admin/add-ons.php:59
2965
  msgid "Something went wrong, we could not connect to the server. Please try again later."
2966
  msgstr "现在无法连接服务器,请稍候重试"
2967
 
2968
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
2969
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
2970
  msgid "Install Now"
2971
  msgstr "立即安装"
2972
 
2973
- #: profile-builder-2.0/admin/add-ons.php:153
2974
- #: profile-builder-2.0/admin/add-ons.php:251
2975
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
2976
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
2977
  msgid "Compatible with your version of Profile Builder."
2978
  msgstr "与您现版本的Profile Builder兼容"
2979
 
2980
- #: profile-builder-2.0/admin/add-ons.php:162
2981
  msgid "Upgrade Profile Builder"
2982
  msgstr "更新Profile Builder"
2983
 
2984
- #: profile-builder-2.0/admin/add-ons.php:163
2985
  msgid "Not compatible with Profile Builder"
2986
  msgstr "与Profile Builder不兼容"
2987
 
2988
- #: profile-builder-2.0/admin/add-ons.php:171
2989
  msgid "Not compatible with your version of Profile Builder."
2990
  msgstr "于您现版本的Profile Builder不兼容"
2991
 
2992
- #: profile-builder-2.0/admin/add-ons.php:172
2993
  msgid "Minimum required Profile Builder version:"
2994
  msgstr "所需Profile Builder最低版本"
2995
 
2996
- #: profile-builder-2.0/admin/add-ons.php:177
2997
  msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2998
  msgstr "无法安装插件,请重试或 <a href=\"%s\" target=\"_blank\">install manually</a>."
2999
 
3000
- #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3001
  msgid "You must enter a valid email address."
3002
  msgstr "请输入有效的邮箱地址"
3003
 
3004
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3005
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3006
  msgid "This username is invalid because it uses illegal characters."
3007
  msgstr "用户名无效,因为含有非法字符"
3008
 
3009
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3010
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3011
  msgid "Please enter a valid username."
3012
  msgstr "请输入有效的用户名"
3013
 
3014
- #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:72
3015
- #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:85
3016
  msgid "Only administrators can see this field on edit profile forms."
3017
  msgstr "只有管理员才能看到编辑信息的表格项"
3018
 
3019
- #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:81
3020
  msgid "As an administrator you cannot change your role."
3021
  msgstr "作为管理员,您无法改变您的角色"
3022
 
3023
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3024
  msgid ""
3025
  "\n"
3026
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3027
  "<p>His/her new password is: {{password}}</p>\n"
3028
  msgstr ""
3029
 
3030
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3031
  msgid "Admin Notification for User Password Reset"
3032
  msgstr ""
3033
 
3034
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
3035
  msgid "Reset Key"
3036
  msgstr ""
3037
 
3038
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:43
3039
  msgid "Reset Url"
3040
  msgstr ""
3041
 
3042
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:44
3043
  msgid "Reset Link"
3044
  msgstr ""
3045
 
3046
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3047
  msgid ""
3048
  "\n"
3049
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
@@ -3053,1875 +2903,1763 @@ msgid ""
3053
  "{{{reset_link}}}</p>\n"
3054
  msgstr ""
3055
 
3056
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3057
  msgid "[{{site_name}}] Password Reset"
3058
  msgstr ""
3059
 
3060
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3061
  msgid "Password Reset Email"
3062
  msgstr "密码重设邮件"
3063
 
3064
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3065
  msgid ""
3066
  "\n"
3067
  "<p>You have successfully reset your password to: {{password}}</p>\n"
3068
  msgstr ""
3069
 
3070
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3071
  msgid "[{{site_name}}] Password Reset Successfully"
3072
  msgstr ""
3073
 
3074
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3075
  msgid "Password Reset Success Email"
3076
  msgstr "密码重设成功确认邮件"
3077
 
3078
- #: profile-builder-2.0/modules/user-listing/userlisting.php:152
3079
  msgid "User Nicename"
3080
  msgstr "用户昵称"
3081
 
3082
- #: pb-add-on-woocommerce/woosync-page.php:80
3083
- #: pb-add-on-woocommerce/woosync-page.php:114
3084
- #: profile-builder-2.0/modules/user-listing/userlisting.php:486
3085
  msgid "None"
3086
  msgstr ""
3087
 
3088
- #: profile-builder-2.0/admin/admin-functions.php:128
3089
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3090
  msgstr "<strong>错误</strong>: 密码必须有 %s 个字符"
3091
 
3092
- #: profile-builder-2.0/admin/admin-functions.php:145
3093
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3094
  msgstr "<strong>错误</strong>: 密码必须满足强度 %s"
3095
 
3096
- #: profile-builder-2.0/admin/general-settings.php:163
3097
  msgid "Username and Email"
3098
  msgstr "用户名和邮箱"
3099
 
3100
- #: profile-builder-2.0/admin/general-settings.php:168
3101
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
3102
  msgstr "\"用户名和邮箱\" - 同时以用户名和邮箱登陆"
3103
 
3104
- #: profile-builder-2.0/admin/general-settings.php:169
3105
  msgid "\"Username\" - users can Log In only with Username."
3106
  msgstr "\"用户名\" - 只能以用户名登陆"
3107
 
3108
- #: profile-builder-2.0/admin/general-settings.php:170
3109
  msgid "\"Email\" - users can Log In only with Email."
3110
  msgstr "\"邮箱\" - 用户只能用邮箱登陆"
3111
 
3112
- #: profile-builder-2.0/admin/manage-fields.php:119
3113
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3114
  msgstr "指定你想限制的文件后缀<br/>例如: .ext1,.ext2,.ext3<br/>如果不指定,默认为: .jpg,.jpeg,.gif,.png (.*)"
3115
 
3116
- #: profile-builder-2.0/admin/manage-fields.php:120
3117
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3118
  msgstr "指定你想限制的文件后缀<br/>例如: .ext1,.ext2,.ext3<br/>如果不指定,默认为Wordpress所允许的全部文件后缀"
3119
 
3120
- #: profile-builder-2.0/admin/manage-fields.php:130
3121
  msgid "User Roles"
3122
  msgstr "用户角色"
3123
 
3124
- #: profile-builder-2.0/admin/manage-fields.php:130
3125
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3126
  msgstr "请选择要对用户显示哪个角色(可拖拽排序)"
3127
 
3128
- #: profile-builder-2.0/admin/manage-fields.php:131
3129
  msgid "User Roles Order"
3130
  msgstr "用户角色排序"
3131
 
3132
- #: profile-builder-2.0/admin/manage-fields.php:131
3133
  msgid "Save the user role order from the user roles checkboxes"
3134
  msgstr "从角色选择框来保存角色排序"
3135
 
3136
- #: profile-builder-2.0/admin/manage-fields.php:1111
3137
  msgid "Please select at least one user role\n"
3138
  msgstr "请至少选择一个用户角色\n"
3139
 
3140
- #: profile-builder-2.0/admin/register-version.php:22
3141
  msgid "Profile Builder Register"
3142
  msgstr "Profile Builder 注册"
3143
 
3144
- #: profile-builder-2.0/admin/register-version.php:81
3145
  msgid "The serial number is about to expire soon!"
3146
  msgstr "序列号即将到期"
3147
 
3148
- #: profile-builder-2.0/admin/register-version.php:81
3149
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3150
  msgstr "您的序列号即将到期, 请 %1$s 更新您的许可 %2$s."
3151
 
3152
- #: profile-builder-2.0/admin/register-version.php:83
3153
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3154
  msgstr "您的序列号已经过期, 请 %1$s 更新您的许可 %2$s. "
3155
 
3156
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
3157
  msgid "Add Entry"
3158
  msgstr "增加条目"
3159
 
3160
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3161
  msgid "show"
3162
  msgstr "显示"
3163
 
3164
- #: profile-builder-2.0/features/functions.php:763
3165
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3166
  msgstr "为使用户可以通过Profile Builder注册,您首先需要开启“用户注册”。去到%1$s网络设置%2$s,常规,确保”任何人都可以注册“这个选项已被勾选。%3$s忽略%4$s"
3167
 
3168
- #: profile-builder-2.0/front-end/class-formbuilder.php:681
3169
  msgid "User to edit:"
3170
  msgstr "要编辑的用户"
3171
 
3172
- #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3173
- #: profile-builder-2.0/front-end/recover.php:251
3174
  msgid "The password must have the minimum length of %s characters"
3175
  msgstr "密码至少应包括%s个字符"
3176
 
3177
- #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3178
- #: profile-builder-2.0/front-end/recover.php:255
3179
  msgid "The password must have a minimum strength of %s"
3180
  msgstr "密码至少满足强度 %s"
3181
 
3182
- #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:118
3183
  msgid "You cannot register this user role"
3184
  msgstr "您不可以注册这个用户组"
3185
 
3186
- #: profile-builder-2.0/front-end/login.php:153
3187
  msgid "username or email"
3188
  msgstr "用户名或邮件"
3189
 
3190
- #: profile-builder-2.0/front-end/login.php:229
3191
  msgid "Username or Email"
3192
  msgstr "用户名或邮件"
3193
 
3194
- #: profile-builder-2.0/front-end/logout.php:15
3195
  msgid "You are currently logged in as %s. "
3196
  msgstr "您现在的登陆名为 %s"
3197
 
3198
- #: profile-builder-2.0/front-end/logout.php:15
3199
  msgid "Log out &raquo;"
3200
  msgstr "登出&raquo;"
3201
 
3202
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3203
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3204
  msgid "User Role"
3205
  msgstr "用户角色"
3206
 
3207
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2046
3208
  msgid "View all extra shortcode parameters"
3209
  msgstr "查看其他的断码参数"
3210
 
3211
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2060
3212
  msgid "displays only the users that you specified the user_id for"
3213
  msgstr "仅向指定用户ID显示"
3214
 
3215
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2066
3216
  msgid "displays all users except the ones you specified the user_id for"
3217
  msgstr "向除了指定用户ID之外的所有用户显示"
3218
 
3219
- #: profile-builder-2.0/features/functions.php:593
3220
  msgid "Minimum length of %d characters"
3221
  msgstr "最少%d个字符"
3222
 
3223
- #: profile-builder-2.0/front-end/class-formbuilder.php:171
3224
- #: profile-builder-2.0/front-end/class-formbuilder.php:174
3225
  msgid "This message is only visible by administrators"
3226
  msgstr "只有管理员可以查看该信息"
3227
 
3228
- #: profile-builder-2.0/modules/user-listing/userlisting.php:404
3229
  msgid "User not found"
3230
  msgstr "找不到用户"
3231
 
3232
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3233
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3234
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3235
  msgstr ""
3236
 
3237
- #: profile-builder-2.0/admin/admin-bar.php:48
3238
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3239
  msgstr "选择哪个用户角色可以产看网站前台的管理员工具栏"
3240
 
3241
- #: profile-builder-2.0/admin/manage-fields.php:124
3242
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3243
  msgstr "因为用户无法看到您所输入的字符,您可以输入任意字符并以逗号“,\" 隔开,但这些字符不能包括特殊符号"
3244
 
3245
- #: profile-builder-2.0/admin/manage-fields.php:1038
3246
  msgid "The meta-name cannot be empty\n"
3247
  msgstr ""
3248
 
3249
- #: profile-builder-2.0/admin/register-version.php:69
3250
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3251
  msgstr ""
3252
 
3253
- #: profile-builder-2.0/admin/register-version.php:243
3254
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3255
  msgstr ""
3256
 
3257
- #: profile-builder-2.0/admin/register-version.php:246
3258
- msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %5$sDismiss%6$s</p>"
3259
- msgstr ""
3260
-
3261
- #: profile-builder-2.0/admin/register-version.php:251
3262
- msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50&#37; off %4$s %6$sDismiss%7$s</p>"
3263
- msgstr ""
3264
-
3265
- #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3266
- #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3267
- #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3268
- #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3269
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:32
3270
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:54
3271
  msgid "...Choose"
3272
  msgstr "请选择"
3273
 
3274
- #: profile-builder-2.0/features/class-list-table.php:526
3275
- #: profile-builder-2.0/features/class-list-table.php:942
3276
  msgid "1 item"
3277
- msgstr ""
 
3278
 
3279
- #: profile-builder-2.0/features/functions.php:579
3280
  msgid "Very Weak"
3281
  msgstr "非常弱"
3282
 
3283
- #: profile-builder-2.0/features/functions.php:667
3284
  msgid "This field is required"
3285
  msgstr "必填选项"
3286
 
3287
- #: profile-builder-2.0/features/functions.php:731
3288
  msgid "Cancel"
3289
  msgstr "取消"
3290
 
3291
- #: profile-builder-2.0/features/functions.php:767
3292
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3293
  msgstr ""
3294
 
3295
- #: profile-builder-2.0/front-end/login.php:144
3296
  msgid "Invalid username."
3297
  msgstr "不正确的用户名"
3298
 
3299
- #: profile-builder-2.0/front-end/login.php:149
3300
- #: profile-builder-2.0/front-end/login.php:153
3301
  msgid "username"
3302
  msgstr "用户名"
3303
 
3304
- #: profile-builder-2.0/front-end/login.php:149
3305
  msgid "email"
3306
  msgstr "邮件"
3307
 
3308
- #: profile-builder-2.0/front-end/login.php:263
3309
  msgid "Lost your password?"
3310
  msgstr "忘记密码?"
3311
 
3312
- #: profile-builder-2.0/index.php:34
3313
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3314
  msgstr ""
3315
 
3316
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3317
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3318
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3319
  msgstr ""
3320
 
3321
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:565
3322
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3323
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:470
3324
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:477
3325
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:491
3326
  msgid "Your selected password at signup"
3327
  msgstr "您在注册时输入的密码"
3328
 
3329
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3330
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3331
  msgstr ""
3332
 
3333
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3334
  msgid "This form is empty."
3335
  msgstr "这个表格是空的"
3336
 
3337
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3338
  msgid "Delete all items"
3339
  msgstr "删除所有条目"
3340
 
3341
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3342
  msgid "Delete all"
3343
  msgstr "全部删除"
3344
 
3345
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3346
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1551
3347
  msgid "Choose..."
3348
  msgstr "请选择"
3349
 
3350
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
3351
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3352
  msgstr ""
3353
 
3354
- #: profile-builder-2.0/admin/admin-bar.php:10
3355
  msgid "Show/Hide the Admin Bar on the Front-End"
3356
  msgstr "显示/隐藏管理员工具栏在前端"
3357
 
3358
- #: profile-builder-2.0/admin/admin-bar.php:10
3359
- #: profile-builder-2.0/admin/admin-bar.php:47
3360
  msgid "Admin Bar Settings"
3361
  msgstr "管理员工具栏设置"
3362
 
3363
- #: profile-builder-2.0/admin/admin-bar.php:57
3364
  msgid "User-Role"
3365
  msgstr "用户角色"
3366
 
3367
- #: profile-builder-2.0/admin/admin-bar.php:58
3368
  msgid "Visibility"
3369
  msgstr "可见"
3370
 
3371
- #: profile-builder-2.0/admin/admin-bar.php:73
 
3372
  msgid "Default"
3373
  msgstr "默认"
3374
 
3375
- #: profile-builder-2.0/admin/admin-bar.php:74
3376
  msgid "Show"
3377
  msgstr "显示"
3378
 
3379
- #: profile-builder-2.0/admin/admin-bar.php:75
3380
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1496
3381
  msgid "Hide"
3382
  msgstr "隐藏"
3383
 
3384
- #: pb-add-on-woocommerce/woosync-page.php:147
3385
- #: profile-builder-2.0/admin/admin-bar.php:86
3386
- #: profile-builder-2.0/admin/general-settings.php:208
3387
- #: profile-builder-2.0/admin/register-version.php:95
3388
- #: profile-builder-2.0/features/functions.php:724
3389
- #: profile-builder-2.0/modules/modules.php:127
3390
  msgid "Save Changes"
3391
  msgstr "保存更改"
3392
 
3393
- #: profile-builder-2.0/admin/admin-functions.php:34
3394
  msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3395
  msgstr "登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 \"%s\" 选项卡中 )"
3396
 
3397
- #: profile-builder-2.0/admin/admin-functions.php:34
3398
- #: profile-builder-2.0/admin/general-settings.php:10
3399
- #: profile-builder-2.0/admin/general-settings.php:38
3400
  msgid "General Settings"
3401
  msgstr "常规设置"
3402
 
3403
- #: profile-builder-2.0/admin/admin-functions.php:134
3404
- #: profile-builder-2.0/admin/general-settings.php:194
3405
  msgid "Very weak"
3406
  msgstr "非常弱"
3407
 
3408
- #: profile-builder-2.0/admin/admin-functions.php:134
3409
- #: profile-builder-2.0/admin/general-settings.php:195
3410
- #: profile-builder-2.0/features/functions.php:579
3411
  msgid "Weak"
3412
  msgstr "弱"
3413
 
3414
- #: profile-builder-2.0/admin/admin-functions.php:134
3415
- #: profile-builder-2.0/admin/general-settings.php:196
3416
- #: profile-builder-2.0/features/functions.php:579
3417
  msgid "Medium"
3418
  msgstr "中"
3419
 
3420
- #: profile-builder-2.0/admin/admin-functions.php:134
3421
- #: profile-builder-2.0/admin/general-settings.php:197
3422
- #: profile-builder-2.0/features/functions.php:579
3423
  msgid "Strong"
3424
  msgstr "强"
3425
 
3426
- #: profile-builder-2.0/admin/admin-functions.php:184
3427
  msgid "Add Field"
3428
  msgstr "添加字段"
3429
 
3430
- #: profile-builder-2.0/admin/admin-functions.php:186
3431
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3432
  msgid "Save Settings"
3433
  msgstr "保存设置"
3434
 
3435
- #: profile-builder-2.0/admin/basic-info.php:10
3436
  msgid "Basic Information"
3437
  msgstr "基本信息"
3438
 
3439
- #: profile-builder-2.0/admin/basic-info.php:29
3440
  msgid "Version %s"
3441
  msgstr "版本 %s"
3442
 
3443
- #: profile-builder-2.0/admin/basic-info.php:30
3444
  msgid "<strong>Profile Builder </strong>"
3445
  msgstr "<strong>Profile Builder </strong>"
3446
 
3447
- #: profile-builder-2.0/admin/basic-info.php:31
3448
  msgid "The best way to add front-end registration, edit profile and login forms."
3449
  msgstr "最好的前端注册、编辑个人资料与登陆表单的实现方式。"
3450
 
3451
- #: profile-builder-2.0/admin/basic-info.php:33
3452
  msgid "For Modern User Interaction"
3453
  msgstr "新颖的用户交互。"
3454
 
3455
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3456
- #: profile-builder-2.0/admin/basic-info.php:36
3457
- #: profile-builder-2.0/features/login-widget/login-widget.php:59
3458
  msgid "Login"
3459
  msgstr "登陆"
3460
 
3461
- #: profile-builder-2.0/admin/basic-info.php:40
3462
  msgid "Registration"
3463
  msgstr "注册"
3464
 
3465
- #: profile-builder-2.0/admin/basic-info.php:44
3466
  msgid "Edit Profile"
3467
  msgstr "编辑个人资料"
3468
 
3469
- #: profile-builder-2.0/admin/basic-info.php:51
3470
  msgid "Extra Features"
3471
  msgstr "额外字段"
3472
 
3473
- #: profile-builder-2.0/admin/basic-info.php:52
3474
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3475
  msgstr "特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。"
3476
 
3477
- #: profile-builder-2.0/admin/basic-info.php:53
3478
  msgid "Enable extra features"
3479
  msgstr "启用额外功能"
3480
 
3481
- #: profile-builder-2.0/admin/basic-info.php:57
3482
  msgid "Recover Password"
3483
  msgstr "恢复密码"
3484
 
3485
- #: profile-builder-2.0/admin/basic-info.php:61
3486
  msgid "Admin Approval (*)"
3487
  msgstr "管理员审批 (*)"
3488
 
3489
- #: profile-builder-2.0/admin/basic-info.php:62
3490
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3491
  msgstr "你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。"
3492
 
3493
- #: profile-builder-2.0/admin/basic-info.php:65
3494
  msgid "Email Confirmation"
3495
  msgstr "电子邮件确认"
3496
 
3497
- #: profile-builder-2.0/admin/basic-info.php:66
3498
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3499
  msgstr "确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。"
3500
 
3501
- #: profile-builder-2.0/admin/basic-info.php:69
3502
  msgid "Minimum Password Length and Strength Meter"
3503
  msgstr "最小密码长度和强度表"
3504
 
3505
- #: profile-builder-2.0/admin/basic-info.php:70
3506
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3507
  msgstr "消除弱密码最小密码长度,并强制执行设定的密码强度。"
3508
 
3509
- #: profile-builder-2.0/admin/basic-info.php:73
3510
  msgid "Login with Email or Username"
3511
  msgstr "通过电子邮件或用户名登录"
3512
 
3513
- #: profile-builder-2.0/admin/basic-info.php:74
3514
  msgid "Allow users to log in with their email or username when accessing your site."
3515
  msgstr "当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。"
3516
 
3517
- #: profile-builder-2.0/admin/basic-info.php:87
3518
  msgid "Customize Your Forms The Way You Want (*)"
3519
  msgstr "自定义表格用你想要的方式(*)"
3520
 
3521
- #: profile-builder-2.0/admin/basic-info.php:88
3522
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3523
  msgstr "额外个人资料字段,根据您的项目需求你可以创建精确的登注册表单。"
3524
 
3525
- #: profile-builder-2.0/admin/basic-info.php:90
3526
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3527
  msgstr "额外个人资料字段需要激活 Hobbyist 或者 PRO 版本才可用"
3528
 
3529
- #: profile-builder-2.0/admin/basic-info.php:92
3530
  msgid "Get started with extra fields"
3531
  msgstr "开始使用额外字段"
3532
 
3533
- #: profile-builder-2.0/admin/basic-info.php:95
3534
  msgid "Avatar Upload"
3535
  msgstr "头像上传"
3536
 
3537
- #: profile-builder-2.0/admin/basic-info.php:96
3538
  msgid "Generic Uploads"
3539
  msgstr "常规上传"
3540
 
3541
- #: profile-builder-2.0/admin/basic-info.php:97
3542
  msgid "Agree To Terms Checkbox"
3543
  msgstr "同意使用条款"
3544
 
3545
- #: profile-builder-2.0/admin/basic-info.php:98
3546
  msgid "Datepicker"
3547
  msgstr "日期选择器"
3548
 
3549
- #: profile-builder-2.0/admin/basic-info.php:101
3550
  msgid "reCAPTCHA"
3551
  msgstr "reCAPTCHA"
3552
 
3553
- #: profile-builder-2.0/admin/basic-info.php:102
3554
  msgid "Country Select"
3555
  msgstr "国家选择"
3556
 
3557
- #: profile-builder-2.0/admin/basic-info.php:104
3558
  msgid "Timezone Select"
3559
  msgstr "时区选择"
3560
 
3561
- #: profile-builder-2.0/admin/basic-info.php:108
3562
  msgid "Input / Hidden Input"
3563
  msgstr "输入/隐藏输入"
3564
 
3565
- #: profile-builder-2.0/admin/basic-info.php:110
3566
  msgid "Checkbox"
3567
  msgstr "复选框"
3568
 
3569
- #: profile-builder-2.0/admin/basic-info.php:111
3570
  msgid "Select"
3571
  msgstr "选择"
3572
 
3573
- #: profile-builder-2.0/admin/basic-info.php:112
3574
  msgid "Radio Buttons"
3575
  msgstr "单选按钮"
3576
 
3577
- #: profile-builder-2.0/admin/basic-info.php:113
3578
  msgid "Textarea"
3579
  msgstr "文本框"
3580
 
3581
- #: profile-builder-2.0/admin/basic-info.php:125
3582
  msgid "Powerful Modules (**)"
3583
  msgstr "强大的模块(**)"
3584
 
3585
- #: profile-builder-2.0/admin/basic-info.php:126
3586
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3587
  msgstr "使用一切你需要的工具,用于管理你的用户的模块。"
3588
 
3589
- #: profile-builder-2.0/admin/basic-info.php:128
3590
  msgid "Enable your modules"
3591
  msgstr "启用你的模块"
3592
 
3593
- #: profile-builder-2.0/admin/basic-info.php:131
3594
  msgid "Find out more about PRO Modules"
3595
  msgstr "了解关于专业版模块的更多内容"
3596
 
3597
- #: profile-builder-2.0/admin/basic-info.php:136
3598
- #: profile-builder-2.0/modules/modules.php:89
3599
- #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3600
- #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3601
- #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3602
- #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3603
  msgid "User Listing"
3604
  msgstr "用户列表"
3605
 
3606
- #: profile-builder-2.0/admin/basic-info.php:138
3607
  msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3608
  msgstr "易于编辑模列表您的网站用户,以及创建单用户页面模板。基于简码,提供了许多选项来定制您的列表。"
3609
 
3610
- #: profile-builder-2.0/admin/basic-info.php:144
3611
  msgid "Email Customizer"
3612
  msgstr "电子邮件定制"
3613
 
3614
- #: profile-builder-2.0/admin/basic-info.php:145
3615
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3616
  msgstr "个性化邮件发送到你的用户或管理员。注册,电子邮件确认,管理员批准/拒绝。"
3617
 
3618
- #: profile-builder-2.0/admin/basic-info.php:148
3619
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3620
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3621
- #: profile-builder-2.0/modules/modules.php:110
3622
  msgid "Custom Redirects"
3623
  msgstr "自定义重定向"
3624
 
3625
- #: profile-builder-2.0/admin/basic-info.php:149
3626
  msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3627
  msgstr "让你的用户离开 WordPress 仪表盘,重定向到他们的前端页面,登录注册一切都只需几个点击。"
3628
 
3629
- #: profile-builder-2.0/admin/basic-info.php:154
3630
- #: profile-builder-2.0/modules/modules.php:75
3631
  msgid "Multiple Registration Forms"
3632
  msgstr "多个注册形式"
3633
 
3634
- #: profile-builder-2.0/admin/basic-info.php:155
3635
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3636
  msgstr "设置多个注册表单为某些用户角色不同的字段。获取来自不同类型的用户不同的信息。"
3637
 
3638
- #: profile-builder-2.0/admin/basic-info.php:158
3639
- #: profile-builder-2.0/modules/modules.php:82
3640
  msgid "Multiple Edit-profile Forms"
3641
  msgstr "多个编辑个人资料形式"
3642
 
3643
- #: profile-builder-2.0/admin/basic-info.php:159
3644
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3645
  msgstr "允许不同的用户角色去编辑他们的具体信息。设置多个编辑表单一不同的作用字段。"
3646
 
3647
- #: profile-builder-2.0/admin/basic-info.php:187
3648
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3649
  msgstr " * 仅获得在 %1$sHobbyist 与专业版本 %2$s."
3650
 
3651
- #: profile-builder-2.0/admin/basic-info.php:188
3652
  msgid "** only available in the %1$sPro version%2$s."
3653
  msgstr "** 仅激活在 %1$s专业版本 %2$s."
3654
 
3655
- #: profile-builder-2.0/admin/general-settings.php:42
3656
  msgid "Load Profile Builder's own CSS file in the front-end:"
3657
  msgstr "在前端载入 Profile Builder 的CSS文件:"
3658
 
3659
- #: profile-builder-2.0/admin/general-settings.php:45
3660
- #: profile-builder-2.0/admin/general-settings.php:58
3661
- #: profile-builder-2.0/admin/general-settings.php:107
3662
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3663
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3664
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
3665
  msgid "Yes"
3666
  msgstr "是"
3667
 
3668
- #: profile-builder-2.0/admin/general-settings.php:47
3669
  msgid "You can find the default file here: %1$s"
3670
  msgstr "你可以在这里找到默认的文件: %1$s"
3671
 
3672
- #: profile-builder-2.0/admin/general-settings.php:54
3673
  msgid "\"Email Confirmation\" Activated:"
3674
  msgstr "\"邮件确认\" 激活:"
3675
 
3676
- #: profile-builder-2.0/admin/general-settings.php:59
3677
- #: profile-builder-2.0/admin/general-settings.php:108
3678
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3679
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3680
  msgid "No"
3681
  msgstr "不"
3682
 
3683
- #: profile-builder-2.0/admin/general-settings.php:64
3684
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3685
  msgstr "您可以找到还没确认邮箱地址的列表 %1$s用户 > 所有用户 > 邮箱确认%2$s."
3686
 
3687
- #: profile-builder-2.0/admin/general-settings.php:72
3688
  msgid "\"Email Confirmation\" Landing Page:"
3689
  msgstr "\"邮件确认\" 登陆页面:"
3690
 
3691
- #: profile-builder-2.0/admin/general-settings.php:77
3692
  msgid "Existing Pages"
3693
  msgstr "现有页面"
3694
 
3695
- #: profile-builder-2.0/admin/general-settings.php:92
3696
  msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3697
  msgstr "指定供用户确认邮件的转向页面。此页面可不同于注册页面(s)并且可随时改变。如果没有指定,将显示给用户一个简单确认页。"
3698
 
3699
- #: profile-builder-2.0/admin/general-settings.php:103
3700
  msgid "\"Admin Approval\" Activated:"
3701
  msgstr "\"管理员审批\" 激活:"
3702
 
3703
- #: profile-builder-2.0/admin/general-settings.php:111
3704
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3705
  msgstr "您可以找到用户在 %1$s用户 > 所有用户 > 管理员审批%2$s."
3706
 
3707
- #: profile-builder-2.0/admin/general-settings.php:149
3708
  msgid "\"Admin Approval\" Feature:"
3709
  msgstr "\"管理员审批\" 功能 :"
3710
 
3711
- #: profile-builder-2.0/admin/general-settings.php:152
3712
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3713
  msgstr "您控制您的用户在网站上的角色。获得游戏通知或者一次性批量审批多用户。启用管理审批功能需要升级到 %1$sHobbyist 或者 专业版本%2$s。"
3714
 
3715
- #: profile-builder-2.0/admin/general-settings.php:159
3716
  msgid "Allow Users to Log in With:"
3717
  msgstr "允许用户使用什么登陆:"
3718
 
3719
- #: profile-builder-2.0/admin/general-settings.php:164
3720
- #: profile-builder-2.0/admin/manage-fields.php:195
3721
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3722
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3723
- #: profile-builder-2.0/front-end/login.php:85
3724
- #: profile-builder-2.0/front-end/login.php:99
3725
- #: profile-builder-2.0/front-end/login.php:225
3726
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3727
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3728
- #: profile-builder-2.0/modules/user-listing/userlisting.php:101
3729
- #: profile-builder-2.0/modules/user-listing/userlisting.php:268
3730
- #: profile-builder-2.0/modules/user-listing/userlisting.php:704
3731
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2098
3732
  msgid "Username"
3733
  msgstr "姓名"
3734
 
3735
- #: profile-builder-2.0/admin/general-settings.php:165
3736
- #: profile-builder-2.0/front-end/login.php:222
3737
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3738
- #: profile-builder-2.0/modules/user-listing/userlisting.php:710
3739
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2099
3740
  msgid "Email"
3741
  msgstr "电子邮件"
3742
 
3743
- #: profile-builder-2.0/admin/general-settings.php:177
3744
  msgid "Minimum Password Length:"
3745
  msgstr "最小密码长度:"
3746
 
3747
- #: profile-builder-2.0/admin/general-settings.php:182
3748
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3749
  msgstr "输入密码必须最少字符。留空为没有限制"
3750
 
3751
- #: profile-builder-2.0/admin/general-settings.php:189
3752
  msgid "Minimum Password Strength:"
3753
  msgstr "最小密码强度:"
3754
 
3755
- #: profile-builder-2.0/admin/general-settings.php:193
3756
  msgid "Disabled"
3757
  msgstr "关闭"
3758
 
3759
- #: profile-builder-2.0/admin/manage-fields.php:12
3760
  msgid "Manage Fields"
3761
  msgstr "管理字段"
3762
 
3763
- #: profile-builder-2.0/admin/manage-fields.php:13
3764
  msgid "Manage Default and Extra Fields"
3765
  msgstr "管理默认与额外字段"
3766
 
3767
- #: profile-builder-2.0/admin/manage-fields.php:113
3768
  msgid "Field Title"
3769
  msgstr "字段标题"
3770
 
3771
- #: profile-builder-2.0/admin/manage-fields.php:113
3772
  msgid "Title of the field"
3773
  msgstr "字段的标题"
3774
 
3775
- #: profile-builder-2.0/admin/manage-fields.php:114
3776
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3777
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3778
  msgid "Field"
3779
  msgstr "字段"
3780
 
3781
- #: profile-builder-2.0/admin/manage-fields.php:115
3782
  msgid "Meta-name"
3783
  msgstr "Meta-name"
3784
 
3785
- #: profile-builder-2.0/admin/manage-fields.php:116
3786
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3787
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3788
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3789
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3790
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3791
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3792
  msgid "ID"
3793
  msgstr "编号"
3794
 
3795
- #: profile-builder-2.0/admin/manage-fields.php:116
3796
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3797
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3798
  msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3799
  msgstr "一个独特的、为特定的字段自动生成ID<br/>如果需要可以使用过滤器调用这个目标<br/>不能编辑"
3800
 
3801
- #: profile-builder-2.0/admin/manage-fields.php:117
3802
  msgid "Description"
3803
  msgstr "描述"
3804
 
3805
- #: profile-builder-2.0/admin/manage-fields.php:117
3806
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3807
  msgstr "输入(详细)的最终用户阅读选项的描述<br/>可选"
3808
 
3809
- #: profile-builder-2.0/admin/manage-fields.php:118
3810
  msgid "Row Count"
3811
  msgstr "行数"
3812
 
3813
- #: profile-builder-2.0/admin/manage-fields.php:118
3814
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3815
  msgstr "指定 'Textarea' 字段的行数<br/>如果没有指定,缺省为5"
3816
 
3817
- #: profile-builder-2.0/admin/manage-fields.php:119
3818
  msgid "Allowed Image Extensions"
3819
  msgstr "允许的图像扩展"
3820
 
3821
- #: profile-builder-2.0/admin/manage-fields.php:120
3822
  msgid "Allowed Upload Extensions"
3823
  msgstr "允许的上传扩展"
3824
 
3825
- #: profile-builder-2.0/admin/manage-fields.php:121
3826
  msgid "Avatar Size"
3827
  msgstr "头像大小"
3828
 
3829
- #: profile-builder-2.0/admin/manage-fields.php:121
3830
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3831
  msgstr "输入 '头像' 大小数值 ( 20 与 200 之间 ) <br/>如果没指定,默认是100"
3832
 
3833
- #: profile-builder-2.0/admin/manage-fields.php:122
3834
  msgid "Date-format"
3835
  msgstr "日期格式"
3836
 
3837
- #: profile-builder-2.0/admin/manage-fields.php:122
3838
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
3839
- msgstr "当使用日期选择器指定日期格式<br/>有效选项: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>如无指定,默认是 mm/dd/yy"
3840
-
3841
- #: profile-builder-2.0/admin/manage-fields.php:123
3842
  msgid "Terms of Agreement"
3843
  msgstr "协议条款"
3844
 
3845
- #: profile-builder-2.0/admin/manage-fields.php:123
3846
  msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3847
  msgstr "输入一个供用户查看的协议内容。<br/> 连接可以使用 HTML 语法,例如:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3848
 
3849
- #: profile-builder-2.0/admin/manage-fields.php:124
3850
  msgid "Options"
3851
  msgstr "选项"
3852
 
3853
- #: profile-builder-2.0/admin/manage-fields.php:125
3854
  msgid "Labels"
3855
  msgstr "标签"
3856
 
3857
- #: profile-builder-2.0/admin/manage-fields.php:125
3858
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
3859
  msgstr "输入一个逗号分隔标签 <br/> 对用户可见的"
3860
 
3861
- #: profile-builder-2.0/admin/manage-fields.php:132
3862
  msgid "Default Value"
3863
  msgstr "默认值"
3864
 
3865
- #: profile-builder-2.0/admin/manage-fields.php:132
3866
  msgid "Default value of the field"
3867
  msgstr "该字段的默认值"
3868
 
3869
- #: profile-builder-2.0/admin/manage-fields.php:133
3870
- #: profile-builder-2.0/admin/manage-fields.php:135
3871
- #: profile-builder-2.0/admin/manage-fields.php:136
3872
- #: profile-builder-2.0/admin/manage-fields.php:137
3873
  msgid "Default Option"
3874
  msgstr "默认选项"
3875
 
3876
- #: profile-builder-2.0/admin/manage-fields.php:133
3877
  msgid "Specify the option which should be selected by default"
3878
  msgstr "指定选项的默认选择值"
3879
 
3880
- #: profile-builder-2.0/admin/manage-fields.php:134
3881
  msgid "Default Option(s)"
3882
  msgstr "默认选项(s)"
3883
 
3884
- #: profile-builder-2.0/admin/manage-fields.php:134
3885
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3886
  msgstr "指定选项默认是否勾选<br/>如果有多个值的选项,使用“,”分开(逗号)"
3887
 
3888
- #: profile-builder-2.0/admin/manage-fields.php:148
3889
  msgid "Default Content"
3890
  msgstr "默认内容"
3891
 
3892
- #: profile-builder-2.0/admin/manage-fields.php:148
3893
  msgid "Default value of the textarea"
3894
  msgstr "文本默认值"
3895
 
3896
- #: pb-add-on-woocommerce/index.php:306
3897
- #: profile-builder-2.0/admin/manage-fields.php:155
3898
  msgid "Required"
3899
  msgstr "必须"
3900
 
3901
- #: profile-builder-2.0/admin/manage-fields.php:155
3902
  msgid "Whether the field is required or not"
3903
  msgstr "该字段是否必须"
3904
 
3905
- #: profile-builder-2.0/admin/manage-fields.php:156
3906
  msgid "Overwrite Existing"
3907
  msgstr "覆盖现有"
3908
 
3909
- #: profile-builder-2.0/admin/manage-fields.php:156
3910
  msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3911
  msgstr "选择“是”将增加字段到列表中,但将覆盖在数据库中具有相同名称的任何其他领域的 meta-name<br/>使用需自己承担风险"
3912
 
3913
- #: profile-builder-2.0/admin/manage-fields.php:162
3914
  msgid "Field Properties"
3915
  msgstr "字段属性"
3916
 
3917
- #: profile-builder-2.0/admin/manage-fields.php:175
3918
  msgid "Registration & Edit Profile"
3919
  msgstr "注册与编辑资料"
3920
 
3921
- #: profile-builder-2.0/admin/manage-fields.php:194
3922
  msgid "Name"
3923
  msgstr "姓名"
3924
 
3925
- #: profile-builder-2.0/admin/manage-fields.php:195
3926
  msgid "Usernames cannot be changed."
3927
  msgstr " 用户名不可更改。"
3928
 
3929
- #: pb-add-on-woocommerce/billing-fields.php:6
3930
- #: pb-add-on-woocommerce/shipping-fields.php:6
3931
- #: profile-builder-2.0/admin/manage-fields.php:196
3932
  msgid "First Name"
3933
  msgstr "名字"
3934
 
3935
- #: pb-add-on-woocommerce/billing-fields.php:7
3936
- #: pb-add-on-woocommerce/shipping-fields.php:7
3937
- #: profile-builder-2.0/admin/manage-fields.php:197
3938
  msgid "Last Name"
3939
  msgstr "姓氏"
3940
 
3941
- #: profile-builder-2.0/admin/manage-fields.php:198
3942
- #: profile-builder-2.0/modules/user-listing/userlisting.php:743
3943
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2106
3944
  msgid "Nickname"
3945
  msgstr "昵称"
3946
 
3947
- #: profile-builder-2.0/admin/manage-fields.php:199
3948
  msgid "Display name publicly as"
3949
  msgstr "公开显示为"
3950
 
3951
- #: profile-builder-2.0/admin/manage-fields.php:200
3952
  msgid "Contact Info"
3953
  msgstr "联系信息"
3954
 
3955
- #: profile-builder-2.0/admin/manage-fields.php:201
3956
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
3957
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
3958
- #: profile-builder-2.0/modules/user-listing/userlisting.php:107
3959
  msgid "E-mail"
3960
  msgstr "电子邮件"
3961
 
3962
- #: profile-builder-2.0/admin/manage-fields.php:202
3963
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
3964
- #: profile-builder-2.0/modules/user-listing/userlisting.php:110
3965
- #: profile-builder-2.0/modules/user-listing/userlisting.php:725
3966
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2100
3967
  msgid "Website"
3968
  msgstr "站点"
3969
 
3970
- #: profile-builder-2.0/admin/manage-fields.php:206
3971
  msgid "AIM"
3972
  msgstr "AIM"
3973
 
3974
- #: profile-builder-2.0/admin/manage-fields.php:207
3975
  msgid "Yahoo IM"
3976
  msgstr "雅虎通讯"
3977
 
3978
- #: profile-builder-2.0/admin/manage-fields.php:208
3979
  msgid "Jabber / Google Talk"
3980
  msgstr "Jabber / Google Talk"
3981
 
3982
- #: profile-builder-2.0/admin/manage-fields.php:211
3983
  msgid "About Yourself"
3984
  msgstr "关于您自己"
3985
 
3986
- #: profile-builder-2.0/admin/manage-fields.php:212
3987
- #: profile-builder-2.0/modules/user-listing/userlisting.php:113
3988
- #: profile-builder-2.0/modules/user-listing/userlisting.php:728
3989
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2101
3990
  msgid "Biographical Info"
3991
  msgstr "个人说明"
3992
 
3993
- #: profile-builder-2.0/admin/manage-fields.php:212
3994
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
3995
  msgstr "分享关于您的一些信息。可能会被公开。"
3996
 
3997
- #: profile-builder-2.0/admin/manage-fields.php:213
3998
- #: profile-builder-2.0/front-end/recover.php:73
3999
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4000
  msgid "Password"
4001
  msgstr "新密码"
4002
 
4003
- #: profile-builder-2.0/admin/manage-fields.php:213
4004
  msgid "Type your password."
4005
  msgstr "重复新密码"
4006
 
4007
- #: profile-builder-2.0/admin/manage-fields.php:214
4008
- #: profile-builder-2.0/front-end/recover.php:74
4009
  msgid "Repeat Password"
4010
  msgstr "重复新密码"
4011
 
4012
- #: profile-builder-2.0/admin/manage-fields.php:214
4013
  msgid "Type your password again. "
4014
  msgstr "再输入一遍新密码。"
4015
 
4016
- #: profile-builder-2.0/admin/manage-fields.php:966
4017
- #: profile-builder-2.0/admin/manage-fields.php:1120
4018
  msgid "You must select a field\n"
4019
  msgstr "你必须选择一个字段\n"
4020
 
4021
- #: profile-builder-2.0/admin/manage-fields.php:976
4022
  msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4023
  msgstr "请选择一个不同的字段类型,这个已经存在你的表格(必须是唯一的)\n"
4024
 
4025
- #: profile-builder-2.0/admin/manage-fields.php:987
4026
  msgid "The entered avatar size is not between 20 and 200\n"
4027
  msgstr "输入的头像大小不是20与200之间 \n"
4028
 
4029
- #: profile-builder-2.0/admin/manage-fields.php:990
4030
  msgid "The entered avatar size is not numerical\n"
4031
  msgstr "输入的头像大小不是数值\n"
4032
 
4033
- #: profile-builder-2.0/admin/manage-fields.php:998
4034
  msgid "The entered row number is not numerical\n"
4035
  msgstr "输入的行数不是数值\n"
4036
 
4037
- #: profile-builder-2.0/admin/manage-fields.php:1001
4038
  msgid "You must enter a value for the row number\n"
4039
  msgstr "您必须输入一个值的行数\n"
4040
 
4041
- #: profile-builder-2.0/admin/manage-fields.php:1019
4042
  msgid "The entered value for the Datepicker is not a valid date-format\n"
4043
  msgstr "日期选择器输入的值不是有效的日期格式\n"
4044
 
4045
- #: profile-builder-2.0/admin/manage-fields.php:1022
4046
  msgid "You must enter a value for the date-format\n"
4047
  msgstr "您必须输入一个日期格式的值\n"
4048
 
4049
- #: profile-builder-2.0/admin/manage-fields.php:1050
4050
- #: profile-builder-2.0/admin/manage-fields.php:1058
4051
- #: profile-builder-2.0/admin/manage-fields.php:1069
4052
  msgid "That meta-name is already in use\n"
4053
  msgstr "meta-name 已在使用\n"
4054
 
4055
- #: profile-builder-2.0/admin/manage-fields.php:1100
4056
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4057
  msgstr "下列选项(s)不符合的选项清单: %s\n"
4058
 
4059
- #: profile-builder-2.0/admin/manage-fields.php:1104
4060
  msgid "The following option did not coincide with the ones in the options list: %s\n"
4061
  msgstr "下列选项不符合的选项清单: %s\n"
4062
 
4063
- #: profile-builder-2.0/admin/manage-fields.php:1127
4064
  msgid "That field is already added in this form\n"
4065
  msgstr "这个字段已经加入这个\n"
4066
 
4067
- #: profile-builder-2.0/admin/manage-fields.php:1176
4068
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4069
  msgstr "<pre>标题</pre><pre>类型</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">必须</pre>"
4070
 
4071
- #: profile-builder-2.0/admin/manage-fields.php:1176
4072
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4073
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4074
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4075
- #: profile-builder-2.0/features/functions.php:745
4076
- #: profile-builder-2.0/features/functions.php:752
4077
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4078
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4079
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4080
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4081
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4082
  msgid "Edit"
4083
  msgstr "编辑"
4084
 
4085
- #: profile-builder-2.0/admin/manage-fields.php:1176
4086
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4087
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4088
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4089
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4090
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4091
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4092
- #: profile-builder-2.0/features/functions.php:738
4093
- #: profile-builder-2.0/features/functions.php:752
4094
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4095
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4096
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4097
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4098
  msgid "Delete"
4099
  msgstr "删除"
4100
 
4101
- #: profile-builder-2.0/admin/manage-fields.php:1191
4102
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4103
  msgstr "使用这些简码在页面中你想要的形式显示:"
4104
 
4105
- #: profile-builder-2.0/admin/manage-fields.php:1200
4106
- msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
4107
- msgstr "如果你对注册、编辑资料时显示不同字段感兴趣,请使用多个注册和编辑资料形式的模块。"
4108
-
4109
- #: profile-builder-2.0/admin/register-version.php:14
4110
  msgid "Register Your Version"
4111
  msgstr "注册您的版本"
4112
 
4113
- #: profile-builder-2.0/admin/register-version.php:14
4114
  msgid "Register Version"
4115
  msgstr "注册版本"
4116
 
4117
- #: profile-builder-2.0/admin/register-version.php:70
4118
  msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4119
  msgstr "如果您注册这个版本的 Profile Builder ,您将收到有关升级,补丁,和技术支持。"
4120
 
4121
- #: profile-builder-2.0/admin/register-version.php:72
4122
  msgid " Serial Number:"
4123
  msgstr "序号:"
4124
 
4125
- #: profile-builder-2.0/admin/register-version.php:77
4126
  msgid "The serial number was successfully validated!"
4127
  msgstr "序号成功验证!"
4128
 
4129
- #: profile-builder-2.0/admin/register-version.php:79
4130
  msgid "The serial number entered couldn't be validated!"
4131
  msgstr "序号无法验证!"
4132
 
4133
- #: profile-builder-2.0/admin/register-version.php:83
4134
  msgid "The serial number couldn't be validated because it expired!"
4135
  msgstr "序号无法验证,因已过期!"
4136
 
4137
- #: profile-builder-2.0/admin/register-version.php:85
4138
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4139
  msgstr "序号无法验证,因为连接超时。这可能是由于服务器维护。请稍后再试!"
4140
 
4141
- #: profile-builder-2.0/admin/register-version.php:87
4142
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4143
  msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4144
 
4145
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4146
- #: profile-builder-2.0/features/functions.php:752
4147
  msgid "Content"
4148
  msgstr "内容"
4149
 
4150
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4151
  msgid "Edit this item"
4152
  msgstr "编辑此项目"
4153
 
4154
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4155
  msgid "Delete this item"
4156
  msgstr "删除此项目"
4157
 
4158
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4159
  msgid "Please enter a value for the required field "
4160
  msgstr "请为这个字段输入所需的值"
4161
 
4162
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4163
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4164
  msgid "Select File"
4165
  msgstr "选择文件"
4166
 
4167
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4168
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4169
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4170
  msgid "Remove"
4171
  msgstr "移除"
4172
 
4173
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1253
4174
- msgid "Syncronize WCK"
4175
- msgstr "同步 WCK"
4176
-
4177
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1265
4178
- msgid "Syncronize WCK Translation"
4179
- msgstr "同步 WCK 翻译"
4180
-
4181
- #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4182
  msgid "You can add the information for the %s after you add a entry"
4183
  msgstr "您可以添加信息到 %s"
4184
 
4185
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4186
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4187
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4188
  msgid "Upload "
4189
  msgstr "上传"
4190
 
4191
- #: profile-builder-2.0/features/class-list-table.php:184
4192
  msgid "No items found."
4193
  msgstr "找不到项目。"
4194
 
4195
- #: profile-builder-2.0/features/class-list-table.php:308
4196
  msgid "Bulk Actions"
4197
  msgstr "批量动作"
4198
 
4199
- #: profile-builder-2.0/features/class-list-table.php:318
4200
  msgid "Apply"
4201
  msgstr "应用"
4202
 
4203
- #: profile-builder-2.0/features/class-list-table.php:402
4204
  msgid "Show all dates"
4205
  msgstr "显示所有日期"
4206
 
4207
- #: profile-builder-2.0/features/class-list-table.php:415
4208
  msgid "%1$s %2$d"
4209
  msgstr "%1$s %2$d"
4210
 
4211
- #: profile-builder-2.0/features/class-list-table.php:431
4212
  msgid "List View"
4213
  msgstr "列表查看"
4214
 
4215
- #: profile-builder-2.0/features/class-list-table.php:432
4216
  msgid "Excerpt View"
4217
  msgstr "摘录查看"
4218
 
4219
- #: profile-builder-2.0/features/class-list-table.php:458
4220
  msgid "%s pending"
4221
  msgstr "%s 等待中"
4222
 
4223
- #: profile-builder-2.0/features/class-list-table.php:566
4224
  msgid "%1$s of %2$s"
4225
  msgstr "%1$s 的 %2$s"
4226
 
4227
- #: profile-builder-2.0/features/class-list-table.php:713
4228
  msgid "Select All"
4229
  msgstr "选择所有"
4230
 
4231
- #: profile-builder-2.0/features/functions.php:304
4232
- msgid "The user-validation has failed - the avatar was not deleted!"
4233
- msgstr "用户验证失败 - 头像没有被删除!"
4234
-
4235
- #: profile-builder-2.0/features/functions.php:315
4236
- msgid "The user-validation has failed - the attachment was not deleted!"
4237
- msgstr "用户验证失败 - 附件没有被删除!"
4238
-
4239
- #: profile-builder-2.0/features/functions.php:554
4240
  msgid "Strength indicator"
4241
  msgstr "强度指标"
4242
 
4243
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4244
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4245
  msgid "Admin Approval"
4246
  msgstr "管理员审批"
4247
 
4248
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4249
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4250
  msgid "Do you want to"
4251
  msgstr "您想要"
4252
 
4253
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4254
  msgid "Your session has expired! Please refresh the page and try again"
4255
  msgstr "您的会话已过期!请刷新页面重试"
4256
 
4257
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:62
4258
  msgid "User successfully approved!"
4259
  msgstr "用户成功批准!"
4260
 
4261
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:70
4262
  msgid "User successfully unapproved!"
4263
  msgstr "用户成功拒绝!"
4264
 
4265
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:76
4266
  msgid "User successfully deleted!"
4267
  msgstr "用户成功删除!"
4268
 
4269
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:81
4270
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:125
4271
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:135
4272
  msgid "You either don't have permission for that action or there was an error!"
4273
  msgstr "你没有权限操作,或出现一个错误!"
4274
 
4275
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:92
4276
  msgid "Your session has expired! Please refresh the page and try again."
4277
  msgstr "您的会话已过期!请刷新页面重试"
4278
 
4279
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:104
4280
  msgid "Users successfully approved!"
4281
  msgstr "用户成功批准!"
4282
 
4283
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:113
4284
  msgid "Users successfully unapproved!"
4285
  msgstr "用户成功拒绝!"
4286
 
4287
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:121
4288
  msgid "Users successfully deleted!"
4289
  msgstr "用户成功删除!"
4290
 
4291
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:141
4292
  msgid "Your account on %1$s has been approved!"
4293
  msgstr "您在 %1$s 的帐号成功通过!"
4294
 
4295
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:142
4296
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:145
4297
  msgid "approved"
4298
  msgstr "已批准"
4299
 
4300
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:144
4301
  msgid "An administrator has just approved your account on %1$s (%2$s)."
4302
  msgstr "管理员已经批准您在 %1$s (%2$s) 的帐号。"
4303
 
4304
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:149
4305
  msgid "Your account on %1$s has been unapproved!"
4306
  msgstr "您在 %1$s 的帐号被拒绝!"
4307
 
4308
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4309
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:153
4310
  msgid "unapproved"
4311
  msgstr "已拒绝"
4312
 
4313
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:152
4314
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4315
  msgstr "管理员已拒绝您在 %1$s (%2$s) 的帐号。"
4316
 
4317
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:171
4318
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4319
  msgstr "<strong>错误</strong>: 您的帐号需要管理员批准后才能登陆使用。"
4320
 
4321
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:183
4322
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4323
  msgstr "您的帐号在管理员确认前可以使用 \"密码找回\" 功能."
4324
 
4325
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4326
  msgid "delete this user?"
4327
  msgstr "删除这个用户?"
4328
 
4329
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4330
  msgid "unapprove this user?"
4331
  msgstr "拒绝这个用户?"
4332
 
4333
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4334
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4335
  msgid "Unapprove"
4336
  msgstr "拒绝"
4337
 
4338
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4339
  msgid "approve this user?"
4340
  msgstr "允许这个用户?"
4341
 
4342
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4343
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4344
  msgid "Approve"
4345
  msgstr "允许"
4346
 
4347
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4348
- #: profile-builder-2.0/modules/user-listing/userlisting.php:269
4349
- #: profile-builder-2.0/modules/user-listing/userlisting.php:716
4350
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2103
4351
  msgid "Firstname"
4352
  msgstr "名子"
4353
 
4354
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4355
- #: profile-builder-2.0/modules/user-listing/userlisting.php:719
4356
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2104
4357
  msgid "Lastname"
4358
  msgstr "姓氏"
4359
 
4360
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4361
- #: profile-builder-2.0/modules/user-listing/userlisting.php:142
4362
- #: profile-builder-2.0/modules/user-listing/userlisting.php:270
4363
- #: profile-builder-2.0/modules/user-listing/userlisting.php:746
4364
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2108
4365
  msgid "Role"
4366
  msgstr "角色"
4367
 
4368
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4369
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4370
  msgid "Registered"
4371
  msgstr "已注册"
4372
 
4373
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4374
  msgid "User-status"
4375
  msgstr "用户状态"
4376
 
4377
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4378
  msgid "Do you want to bulk approve the selected users?"
4379
  msgstr "你想批量允许所选用户?"
4380
 
4381
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4382
  msgid "Do you want to bulk unapprove the selected users?"
4383
  msgstr "你想批量拒绝所选用户?"
4384
 
4385
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4386
  msgid "Do you want to bulk delete the selected users?"
4387
  msgstr "你想批量删除所选用户?"
4388
 
4389
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4390
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4391
  msgid "Sorry, but you don't have permission to do that!"
4392
  msgstr "抱歉,您没有相应的操作权限!"
4393
 
4394
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4395
  msgid "Approved"
4396
  msgstr "已允许"
4397
 
4398
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4399
  msgid "Unapproved"
4400
  msgstr "已拒绝"
4401
 
4402
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4403
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4404
  msgid "All Users"
4405
  msgstr "所有用户"
4406
 
4407
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4408
  msgid "delete this user from the _signups table?"
4409
  msgstr "在 the _signups 表单中 删除这个用户?"
4410
 
4411
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4412
  msgid "confirm this email yourself?"
4413
  msgstr "确认自己的电子邮件?"
4414
 
4415
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4416
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4417
  msgid "Confirm Email"
4418
  msgstr "确认电子邮件"
4419
 
4420
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4421
  msgid "resend the activation link?"
4422
  msgstr "重新发送激活链接?"
4423
 
4424
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4425
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4426
  msgid "Resend Activation Email"
4427
  msgstr "发送激活邮件"
4428
 
4429
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4430
  msgid "%s couldn't be deleted"
4431
  msgstr "%s 不能删除"
4432
 
4433
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4434
  msgid "All users have been successfully deleted"
4435
  msgstr "所有的用户已成功删除"
4436
 
4437
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4438
  msgid "The selected users have been activated"
4439
  msgstr "所选的用户已被激活"
4440
 
4441
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4442
  msgid "The selected users have had their activation emails resent"
4443
  msgstr "所选用户已经重新发送激活电子邮件"
4444
 
4445
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4446
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4447
  msgid "Users with Unconfirmed Email Address"
4448
  msgstr "没经确认邮箱的用户"
4449
 
4450
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:110
4451
  msgid "There was an error performing that action!"
4452
  msgstr "执行操作时出错!"
4453
 
4454
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:118
4455
  msgid "The selected user couldn't be deleted"
4456
  msgstr "所选用户不能删除"
4457
 
4458
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
4459
  msgid "Email notification resent to user"
4460
  msgstr "电子邮件通知重发给用户"
4461
 
4462
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:389
4463
  msgid "[%1$s] Activate %2$s"
4464
  msgstr "[%1$s] 激活 %2$s"
4465
 
4466
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:433
4467
- #: profile-builder-2.0/front-end/register.php:70
4468
  msgid "Could not create user!"
4469
  msgstr "无法创建用户!"
4470
 
4471
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:436
4472
  msgid "That username is already activated!"
4473
  msgstr "用户名已经被激活!"
4474
 
4475
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:459
4476
  msgid "There was an error while trying to activate the user"
4477
  msgstr "试图激活用户时出现一个错误"
4478
 
4479
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:507
4480
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4481
  msgid "A new subscriber has (been) registered!"
4482
  msgstr "一个新的用户已经(被)注册!"
4483
 
4484
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:510
4485
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4486
  msgstr "新用户在 %1$s.<br/><br/>用户名:%2$s<br/>邮箱:%3$s<br/>"
4487
 
4488
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:625
4489
  msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4490
  msgstr "管理员审批”的功能是注册时激活,所以请记住,你必须批准该用户,他/她才能进行登录!"
4491
 
4492
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:561
4493
  msgid "[%1$s] Your new account information"
4494
  msgstr "[%1$s] 您的新帐户信息"
4495
 
4496
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:572
4497
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4498
  msgstr "欢迎来到 %1$s!<br/><br/><br/>您的用户名是:%2$s 密码是:%3$s"
4499
 
4500
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:633
4501
- #: profile-builder-2.0/front-end/register.php:130
4502
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4503
  msgstr "需要管理员审核通过才能访问您的帐户。您将收到一封电子邮件。"
4504
 
4505
- #: profile-builder-2.0/features/login-widget/login-widget.php:10
4506
  msgid "This login widget lets you add a login form in the sidebar."
4507
  msgstr "该登录控件是允许您添加在侧边栏的登录表单。"
4508
 
4509
- #: profile-builder-2.0/features/login-widget/login-widget.php:15
4510
  msgid "Profile Builder Login Widget"
4511
  msgstr "Profile Builder 登陆小工具"
4512
 
4513
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4514
- #: profile-builder-2.0/front-end/class-formbuilder.php:420
4515
- #: profile-builder-2.0/front-end/login.php:257
4516
  msgid "Register"
4517
  msgstr "注册"
4518
 
4519
- #: profile-builder-2.0/features/login-widget/login-widget.php:63
4520
  msgid "Title:"
4521
  msgstr "标题:"
4522
 
4523
- #: profile-builder-2.0/features/login-widget/login-widget.php:68
4524
  msgid "After login redirect URL (optional):"
4525
  msgstr "登录后的重定向URL(可选):"
4526
 
4527
- #: profile-builder-2.0/features/login-widget/login-widget.php:73
4528
  msgid "Register page URL (optional):"
4529
  msgstr "注册页面URL(可选):"
4530
 
4531
- #: profile-builder-2.0/features/login-widget/login-widget.php:78
4532
  msgid "Password Recovery page URL (optional):"
4533
  msgstr "密码恢复页URL(可选):"
4534
 
4535
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4536
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4537
  msgid "The usernames cannot be changed."
4538
  msgstr "用户名不可更改。"
4539
 
4540
- #: profile-builder-2.0/front-end/class-formbuilder.php:161
4541
  msgid "Only an administrator can add new users."
4542
  msgstr "只有管理员可以添加新用户。"
4543
 
4544
- #: profile-builder-2.0/front-end/class-formbuilder.php:171
4545
  msgid "Users can register themselves or you can manually create users here."
4546
  msgstr "用户可以注册自己注册,或您可以在这里手动创建用户。"
4547
 
4548
- #: profile-builder-2.0/front-end/class-formbuilder.php:174
4549
  msgid "Users cannot currently register themselves, but you can manually create users here."
4550
  msgstr "用户无法自己注册,但你可以在这里手动创建用户。"
4551
 
4552
- #: profile-builder-2.0/front-end/class-formbuilder.php:196
4553
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4554
  msgstr "您当前登陆为 %1s。您不需要其它帐号。 %2s"
4555
 
4556
- #: profile-builder-2.0/front-end/class-formbuilder.php:196
4557
  msgid "Log out of this account."
4558
  msgstr "退出这个帐号。"
4559
 
4560
- #: profile-builder-2.0/front-end/class-formbuilder.php:196
4561
  msgid "Logout"
4562
  msgstr "退出"
4563
 
4564
- #: profile-builder-2.0/front-end/class-formbuilder.php:203
4565
  msgid "You must be logged in to edit your profile."
4566
  msgstr "您必须在登陆状态下编辑个人资料。"
4567
 
4568
- #: profile-builder-2.0/front-end/class-formbuilder.php:230
4569
- #: profile-builder-2.0/front-end/class-formbuilder.php:277
4570
  msgid "here"
4571
  msgstr "这里"
4572
 
4573
- #: profile-builder-2.0/front-end/class-formbuilder.php:232
4574
- #: profile-builder-2.0/front-end/class-formbuilder.php:277
4575
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4576
  msgstr "您很快将会自动重定向。如果你看到这个页面超过 %1$d 秒,请点击 %2$s.%3$s"
4577
 
4578
- #: profile-builder-2.0/front-end/class-formbuilder.php:330
4579
- #: profile-builder-2.0/front-end/class-formbuilder.php:337
4580
  msgid "The account %1s has been successfully created!"
4581
  msgstr "帐号 %1s 创建成功!"
4582
 
4583
- #: profile-builder-2.0/front-end/class-formbuilder.php:333
4584
- #: profile-builder-2.0/front-end/class-formbuilder.php:343
4585
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4586
  msgstr "访问您的帐号 %1s 前,您需要确认您的邮箱地址。请检查您的邮箱并点击激活连接。"
4587
 
4588
- #: profile-builder-2.0/front-end/class-formbuilder.php:339
4589
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4590
  msgstr "访问您的帐号 %1s 前,需要管理员审批通过。您将收到邮件。"
4591
 
4592
- #: profile-builder-2.0/front-end/class-formbuilder.php:353
4593
  msgid "Your profile has been successfully updated!"
4594
  msgstr "个人资料已更新!"
4595
 
4596
- #: profile-builder-2.0/front-end/class-formbuilder.php:363
4597
  msgid "There was an error in the submitted form"
4598
  msgstr "在递交表单时出错"
4599
 
4600
- #: profile-builder-2.0/front-end/class-formbuilder.php:420
4601
  msgid "Add User"
4602
  msgstr "所有用户"
4603
 
4604
- #: profile-builder-2.0/admin/add-ons.php:170
4605
- #: profile-builder-2.0/front-end/class-formbuilder.php:423
4606
  msgid "Update"
4607
  msgstr "更新个人资料"
4608
 
4609
- #: profile-builder-2.0/front-end/class-formbuilder.php:482
4610
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:47
4611
- msgid "The avatar was successfully deleted!"
4612
- msgstr "头像成功删除!"
4613
-
4614
- #: profile-builder-2.0/front-end/class-formbuilder.php:482
4615
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:49
4616
- msgid "The following attachment was successfully deleted:"
4617
- msgstr "成功删除以下附件:"
4618
-
4619
- #: profile-builder-2.0/front-end/class-formbuilder.php:494
4620
  msgid "Send these credentials via email."
4621
  msgstr "通过电子邮件发送这些凭据。"
4622
 
4623
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:111
4624
- #: profile-builder-2.0/front-end/login.php:137
4625
- #: profile-builder-2.0/front-end/login.php:144
4626
- #: profile-builder-2.0/front-end/login.php:158
4627
- #: profile-builder-2.0/front-end/recover.php:17
4628
- #: profile-builder-2.0/front-end/recover.php:234
4629
  msgid "ERROR"
4630
  msgstr "错误"
4631
 
4632
- #: profile-builder-2.0/front-end/login.php:137
4633
  msgid "The password you entered is incorrect."
4634
  msgstr "你输入的密码不正确。"
4635
 
4636
- #: profile-builder-2.0/front-end/login.php:138
4637
- #: profile-builder-2.0/front-end/login.php:145
4638
  msgid "Password Lost and Found."
4639
  msgstr "密码遗失。"
4640
 
4641
- #: profile-builder-2.0/front-end/login.php:138
4642
- #: profile-builder-2.0/front-end/login.php:145
4643
  msgid "Lost your password"
4644
  msgstr "忘记您的密码"
4645
 
4646
- #: profile-builder-2.0/front-end/login.php:158
4647
  msgid "Both fields are empty."
4648
  msgstr "字段均空"
4649
 
4650
- #: profile-builder-2.0/front-end/login.php:308
4651
  msgid "You are currently logged in as %1$s. %2$s"
4652
  msgstr "您当前登录为 %1$s. %2$s"
4653
 
4654
- #: profile-builder-2.0/front-end/login.php:307
4655
- #: profile-builder-2.0/front-end/logout.php:29
4656
  msgid "Log out of this account"
4657
  msgstr "退出这个帐户"
4658
 
4659
- #: profile-builder-2.0/front-end/login.php:307
4660
  msgid "Log out"
4661
  msgstr "退出"
4662
 
4663
- #: profile-builder-2.0/front-end/recover.php:17
4664
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4665
  msgstr "您的帐户需被管理员审批后才可使用 \"密码重置\" 功能。"
4666
 
4667
- #: profile-builder-2.0/front-end/recover.php:94
4668
  msgid "Reset Password"
4669
  msgstr "重置密码"
4670
 
4671
- #: profile-builder-2.0/front-end/recover.php:114
4672
  msgid "Please enter your username or email address."
4673
  msgstr "请输入您的用户名或电子邮件地址。"
4674
 
4675
- #: profile-builder-2.0/front-end/recover.php:115
4676
  msgid "You will receive a link to create a new password via email."
4677
  msgstr "你将收到一封创建一个新密码连接的电子邮件。"
4678
 
4679
- #: profile-builder-2.0/front-end/recover.php:120
4680
  msgid "Username or E-mail"
4681
  msgstr "用户或邮箱地址"
4682
 
4683
- #: profile-builder-2.0/front-end/recover.php:130
4684
  msgid "Get New Password"
4685
  msgstr "获取新密码"
4686
 
4687
- #: profile-builder-2.0/front-end/recover.php:172
4688
  msgid "The username entered wasn't found in the database!"
4689
  msgstr "输入的用户名不存在数据库中!"
4690
 
4691
- #: profile-builder-2.0/front-end/recover.php:172
4692
  msgid "Please check that you entered the correct username."
4693
  msgstr "请检查您已输入正确的用户名。"
4694
 
4695
- #: profile-builder-2.0/front-end/recover.php:187
4696
  msgid "Check your e-mail for the confirmation link."
4697
  msgstr "检查你的邮件中的确认链接。"
4698
 
4699
- #: profile-builder-2.0/front-end/recover.php:222
4700
  msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4701
  msgstr "有人要求以下帐号密码进行重置: <b>%1$s</b><br/>如果不是您自己的操作,请忽略。<br/>需要重置您的密码的话,请点击 :%2$s"
4702
 
4703
- #: profile-builder-2.0/front-end/recover.php:225
4704
  msgid "Password Reset from \"%1$s\""
4705
  msgstr "从 \"%1$s\" 密码重置"
4706
 
4707
- #: profile-builder-2.0/front-end/recover.php:234
4708
  msgid "There was an error while trying to send the activation link to %1$s!"
4709
  msgstr "发送激活链接时出现错误 %1$s!"
4710
 
4711
- #: profile-builder-2.0/front-end/recover.php:194
4712
  msgid "The email address entered wasn't found in the database!"
4713
  msgstr "邮箱地址无法在数据库中找到"
4714
 
4715
- #: profile-builder-2.0/front-end/recover.php:194
4716
  msgid "Please check that you entered the correct email address."
4717
  msgstr "请检查您输入(正确)电子邮件地址。"
4718
 
4719
- #: profile-builder-2.0/front-end/recover.php:262
4720
  msgid "Your password has been successfully changed!"
4721
  msgstr "您已经成功地更改密码!"
4722
 
4723
- #: profile-builder-2.0/front-end/recover.php:281
4724
  msgid "You have successfully reset your password to: %1$s"
4725
  msgstr "您已经成功地将密码更改成:%1$s"
4726
 
4727
- #: profile-builder-2.0/front-end/recover.php:284
4728
- #: profile-builder-2.0/front-end/recover.php:298
4729
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4730
  msgstr "密码成功重置 %1$s 在 \"%2$s\""
4731
 
4732
- #: profile-builder-2.0/front-end/recover.php:295
4733
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4734
  msgstr "%1$s 请求通过密码重置功能修改密码。<br/>他的密码是:%2$s"
4735
 
4736
- #: profile-builder-2.0/front-end/recover.php:314
4737
  msgid "The entered passwords don't match!"
4738
  msgstr "输入的密码不匹配!"
4739
 
4740
- #: profile-builder-2.0/front-end/recover.php:381
4741
  msgid "ERROR:"
4742
  msgstr "错误:"
4743
 
4744
- #: profile-builder-2.0/front-end/recover.php:381
4745
  msgid "Invalid key!"
4746
  msgstr "无效密钥!"
4747
 
4748
- #: profile-builder-2.0/front-end/register.php:55
4749
  msgid "Invalid activation key!"
4750
  msgstr "无效的激活密钥!"
4751
 
4752
- #: profile-builder-2.0/front-end/register.php:59
4753
  msgid "This username is now active!"
4754
  msgstr "这个用户名现在被激活!"
4755
 
4756
- #: profile-builder-2.0/front-end/register.php:73
4757
  msgid "This username is already activated!"
4758
  msgstr "这个用户名已经被激活!"
4759
 
4760
- #: profile-builder-2.0/front-end/register.php:129
4761
  msgid "Your email was successfully confirmed."
4762
  msgstr "您的电子邮件已确认。"
4763
 
4764
- #: profile-builder-2.0/front-end/register.php:163
4765
  msgid "There was an error while trying to activate the user."
4766
  msgstr "尝试激活用户时出现一个错误。"
4767
 
4768
- #: pb-add-on-woocommerce/index.php:393
4769
- #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4770
  msgid "The email you entered is not a valid email address."
4771
  msgstr "您输入的电子邮件不是一个有效的电子邮件地址。"
4772
 
4773
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4774
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4775
  msgid "This email is already reserved to be used soon."
4776
  msgstr "此邮箱地址已被保留使用。"
4777
 
4778
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4779
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4780
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4781
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4782
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4783
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4784
  msgid "Please try a different one!"
4785
  msgstr "请尝试一个不同的!"
4786
 
4787
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4788
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4789
  msgid "This email is already in use."
4790
  msgstr "电子邮件已被使用。"
4791
 
4792
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4793
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4794
  msgid "The passwords do not match"
4795
  msgstr "密码不匹配"
4796
 
4797
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4798
  msgid "This username already exists."
4799
  msgstr "用户名已经存在。"
4800
 
4801
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4802
  msgid "This username is already reserved to be used soon."
4803
  msgstr "这个用户名已经被保留。"
4804
 
4805
- #: profile-builder-2.0/modules/user-listing/userlisting.php:267
4806
  msgid "Avatar"
4807
  msgstr "头像"
4808
 
4809
- #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4810
- #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4811
- #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4812
- #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4813
- #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4814
- #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4815
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4816
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4817
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4818
- #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4819
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:46
4820
- #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4821
- #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4822
- #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4823
- #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4824
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4825
- #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4826
  msgid "required"
4827
  msgstr "必须"
4828
 
4829
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:48
4830
  msgid "To use reCAPTCHA you must get an API key from"
4831
  msgstr "使用 reCAPTCHA 你必须获得一个API密钥"
4832
 
4833
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:131
4834
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4835
  msgstr "安全原因,您必须通过远程IP到reCAPTCHA!"
4836
 
4837
- #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:192
4838
  msgid "To use reCAPTCHA you must get an API public key from:"
4839
  msgstr "使用reCAPTCHA,你必须得到一个API公开密钥:"
4840
 
4841
- #: profile-builder-2.0/modules/modules.php:11
4842
- #: profile-builder-2.0/modules/modules.php:58
4843
  msgid "Modules"
4844
  msgstr "模块"
4845
 
4846
- #: profile-builder-2.0/modules/modules.php:59
4847
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4848
  msgstr "在这里你可以激活/停用 Profile Builder 模块。"
4849
 
4850
- #: profile-builder-2.0/modules/modules.php:69
4851
  msgid "Name/Description"
4852
  msgstr "名称/描述"
4853
 
4854
- #: profile-builder-2.0/modules/modules.php:70
4855
  msgid "Status"
4856
  msgstr "状态"
4857
 
4858
- #: profile-builder-2.0/modules/modules.php:77
4859
- #: profile-builder-2.0/modules/modules.php:84
4860
- #: profile-builder-2.0/modules/modules.php:91
4861
- #: profile-builder-2.0/modules/modules.php:98
4862
- #: profile-builder-2.0/modules/modules.php:105
4863
- #: profile-builder-2.0/modules/modules.php:112
4864
- #: profile-builder-2.0/modules/modules.php:119
4865
  msgid "Active"
4866
  msgstr "激活"
4867
 
4868
- #: profile-builder-2.0/modules/modules.php:78
4869
- #: profile-builder-2.0/modules/modules.php:85
4870
- #: profile-builder-2.0/modules/modules.php:92
4871
- #: profile-builder-2.0/modules/modules.php:99
4872
- #: profile-builder-2.0/modules/modules.php:106
4873
- #: profile-builder-2.0/modules/modules.php:113
4874
- #: profile-builder-2.0/modules/modules.php:120
4875
  msgid "Inactive"
4876
  msgstr "关闭"
4877
 
4878
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4879
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4880
- #: profile-builder-2.0/modules/modules.php:96
4881
  msgid "Admin Email Customizer"
4882
  msgstr "管理员邮件定制"
4883
 
4884
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4885
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4886
- #: profile-builder-2.0/modules/modules.php:103
4887
  msgid "User Email Customizer"
4888
  msgstr "用户邮件定制"
4889
 
4890
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
4891
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:254
4892
  msgid "Save"
4893
  msgstr "保存"
4894
 
4895
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4896
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4897
  msgid "Redirect"
4898
  msgstr "重定向"
4899
 
4900
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4901
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4902
  msgid "URL"
4903
  msgstr "网址"
4904
 
4905
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4906
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4907
  msgstr "这些设置也复制在\"用户邮件定制\" 设置页中保存。"
4908
 
4909
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4910
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4911
  msgid "From (name)"
4912
  msgstr "来自(名子)"
4913
 
4914
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4915
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4916
  msgid "From (reply-to email)"
4917
  msgstr "来自(回复邮件)"
4918
 
4919
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4920
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4921
  msgid "Common Settings"
4922
  msgstr "常用设置"
4923
 
4924
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4925
  msgid ""
4926
  "\n"
4927
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4933,25 +4671,25 @@ msgstr ""
4933
  "<p>用户名:{{username}}</p>\n"
4934
  "<p>邮箱:{{user_email}}</p>\n"
4935
 
4936
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4937
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4938
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4939
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4940
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4941
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4942
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4943
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4944
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4945
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4946
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4947
  msgid "Email Subject"
4948
  msgstr "邮件主题"
4949
 
4950
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4951
  msgid "Default Registration & Registration with Email Confirmation"
4952
  msgstr "默认注册与邮件确认注册"
4953
 
4954
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
4955
  msgid ""
4956
  "\n"
4957
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4967,50 +4705,50 @@ msgstr ""
4967
  "<p>管理审核功能已被激活,\n"
4968
  "请记住,您需要批准这个用户,他才能登陆!</p>\n"
4969
 
4970
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
4971
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
4972
  msgid "Registration with Admin Approval"
4973
  msgstr "注册需管理员审批"
4974
 
4975
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
4976
  msgid "Available Tags"
4977
  msgstr "可用标签"
4978
 
4979
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
4980
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
4981
  msgid "User Meta"
4982
  msgstr "User Meta"
4983
 
4984
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
4985
  msgid "Site Url"
4986
  msgstr "网站地址"
4987
 
4988
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
4989
  msgid "Site Name"
4990
  msgstr "网站名称"
4991
 
4992
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
4993
- #: profile-builder-2.0/modules/user-listing/userlisting.php:151
4994
  msgid "User Id"
4995
  msgstr "用户名称"
4996
 
4997
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
4998
  msgid "Reply To"
4999
  msgstr "回复"
5000
 
5001
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
5002
  msgid "Activation Key"
5003
  msgstr "激活密钥"
5004
 
5005
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:37
5006
  msgid "Activation Url"
5007
  msgstr "激活URL"
5008
 
5009
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:38
5010
  msgid "Activation Link"
5011
  msgstr "激活链接"
5012
 
5013
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5014
  msgid ""
5015
  "\n"
5016
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -5020,11 +4758,11 @@ msgstr ""
5020
  "<h3>欢迎来到 {{site_name}}!</h3>\n"
5021
  "<p>您的用户名是:{{username}} 密码是:{{password}}</p>\n"
5022
 
5023
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5024
  msgid "Default Registration"
5025
  msgstr "默认注册"
5026
 
5027
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5028
  msgid ""
5029
  "\n"
5030
  "<p>To activate your user, please click the following link:<br/>\n"
@@ -5036,15 +4774,15 @@ msgstr ""
5036
  "{{{activation_link}}}</p>\n"
5037
  "<p>在您激活完成后,将会收到另外一封凭据邮件。</p>\n"
5038
 
5039
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5040
  msgid "[{{site_name}}] Activate {{username}}"
5041
  msgstr "[{{site_name}}] 激活 {{username}}"
5042
 
5043
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5044
  msgid "Registration with Email Confirmation"
5045
  msgstr "电子邮件确认注册"
5046
 
5047
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5048
  msgid ""
5049
  "\n"
5050
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -5056,11 +4794,11 @@ msgstr ""
5056
  "<p>您的用户名:{{username}} 密码:{{password}}</p>\n"
5057
  "<p>在您访问您的帐号前,需要管理审批。您将会收邮件通知。</p>\n"
5058
 
5059
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5060
  msgid "A new account has been created for you on {{site_name}}"
5061
  msgstr "一个新的帐号在您的 {{site_name}} 上建立"
5062
 
5063
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5064
  msgid ""
5065
  "\n"
5066
  "<h3>Good News!</h3>\n"
@@ -5070,15 +4808,15 @@ msgstr ""
5070
  "<h3>好消息 !</h3>\n"
5071
  "<p>管理员已经批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
5072
 
5073
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5074
  msgid "Your account on {{site_name}} has been approved!"
5075
  msgstr "您在 {{site_name}} 的帐号已经被通过!"
5076
 
5077
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5078
  msgid "User Approval Notification"
5079
  msgstr "用户批准通知"
5080
 
5081
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5082
  msgid ""
5083
  "\n"
5084
  "<h3>Hello,</h3>\n"
@@ -5088,463 +4826,463 @@ msgstr ""
5088
  "<h3>您好,</h3>\n"
5089
  "<p>抱歉,管理员未批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
5090
 
5091
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5092
  msgid "Your account on {{site_name}} has been unapproved!"
5093
  msgstr "您在 {{site_name}} 的帐号被拒绝!"
5094
 
5095
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5096
  msgid "Unapproved User Notification"
5097
  msgstr "被拒绝的用户通知"
5098
 
5099
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5100
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5101
  msgid "Edit-profile Form"
5102
  msgstr "编辑资料表单"
5103
 
5104
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5105
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5106
- #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5107
  msgid "Add New"
5108
  msgstr "新增加"
5109
 
5110
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5111
  msgid "Add new Edit-profile Form"
5112
  msgstr "添加新的编辑资料表单"
5113
 
5114
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5115
  msgid "Edit the Edit-profile Forms"
5116
  msgstr "编辑的编辑个人资料表单"
5117
 
5118
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5119
  msgid "New Edit-profile Form"
5120
  msgstr "新的编辑资料表单"
5121
 
5122
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5123
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5124
  msgid "Edit-profile Forms"
5125
  msgstr "编辑资料表单"
5126
 
5127
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5128
  msgid "View the Edit-profile Form"
5129
  msgstr "查看编辑资料表单"
5130
 
5131
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5132
  msgid "Search the Edit-profile Forms"
5133
  msgstr "搜索编辑资料表单"
5134
 
5135
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5136
  msgid "No Edit-profile Form found"
5137
  msgstr "没有编辑个人资料表单"
5138
 
5139
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5140
  msgid "No Edit-profile Forms found in trash"
5141
  msgstr "在回收站中没有编辑个人资料表单"
5142
 
5143
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5144
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5145
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1994
5146
  msgid "Shortcode"
5147
  msgstr "简码"
5148
 
5149
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5150
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5151
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2015
5152
  msgid "(no title)"
5153
  msgstr "(没有标题)"
5154
 
5155
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5156
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5157
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2035
5158
  msgid "The shortcode will be available after you publish this form."
5159
  msgstr "简码将在您发布表单后可用。"
5160
 
5161
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5162
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5163
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2037
5164
  msgid "Use this shortcode on the page you want the form to be displayed:"
5165
  msgstr "使用这个简码在页面上,将会获得您想要的表单显示效果:"
5166
 
5167
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5168
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5169
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2041
5170
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5171
  msgstr "<span style=\"color:red;\">注意:</span> 改变表单标题也将改变简码!"
5172
 
5173
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5174
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5175
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2074
5176
  msgid "Form Shortcode"
5177
  msgstr "表单简码"
5178
 
5179
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5180
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5181
  msgid "Whether to redirect the user to a specific page or not"
5182
  msgstr "是否将用户重定向到特定页"
5183
 
5184
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5185
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5186
  msgid "Display Messages"
5187
  msgstr "显示消息"
5188
 
5189
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5190
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5191
  msgid "Allowed time to display any success messages (in seconds)"
5192
  msgstr "允许用时间去显示成功信息提示(秒)"
5193
 
5194
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5195
  msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5196
  msgstr "指定页面用于用户一旦更新他们的资料使用这个表单转向<br/>使用这种格式: http://www.mysite.com"
5197
 
5198
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5199
  msgid "After Profile Update..."
5200
  msgstr "档案更新后…"
5201
 
5202
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5203
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5204
  msgid "Add New Field to the List"
5205
  msgstr "添加新字段到列表"
5206
 
5207
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5208
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5209
  msgid "Choose one of the supported fields you manage <a href=\""
5210
  msgstr "选择一个支持字段去管理 <a href=\""
5211
 
5212
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5213
  msgid "<pre>Title (Type)</pre>"
5214
  msgstr "<pre>标题 (类型)</pre>"
5215
 
5216
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5217
  msgid "You need to specify the title of the form before creating it"
5218
  msgstr "你需要在创建前指定表单的标题"
5219
 
5220
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5221
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5222
  msgid "Registration Form"
5223
  msgstr "注册表单"
5224
 
5225
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5226
  msgid "Add new Registration Form"
5227
  msgstr "增加新的注册表单"
5228
 
5229
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5230
  msgid "Edit the Registration Forms"
5231
  msgstr "编缉注册表单"
5232
 
5233
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5234
  msgid "New Registration Form"
5235
  msgstr "新注册表单"
5236
 
5237
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5238
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5239
  msgid "Registration Forms"
5240
  msgstr "注册表单"
5241
 
5242
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5243
  msgid "View the Registration Form"
5244
  msgstr "查看注册表单"
5245
 
5246
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5247
  msgid "Search the Registration Forms"
5248
  msgstr "搜索注册表单"
5249
 
5250
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5251
  msgid "No Registration Form found"
5252
  msgstr "没有找到注册表单"
5253
 
5254
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5255
  msgid "No Registration Forms found in trash"
5256
  msgstr "在回收站没有找到注册表单"
5257
 
5258
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5259
  msgid "Default Role"
5260
  msgstr "默认角色"
5261
 
5262
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5263
  msgid "Set Role"
5264
  msgstr "设置角色"
5265
 
5266
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5267
  msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5268
  msgstr "选择用户注册后的角色<br/>如无指定,将默认使用 WordPress 的设定"
5269
 
5270
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5271
  msgid "Automatically Log In"
5272
  msgstr "自动登录"
5273
 
5274
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5275
  msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5276
  msgstr "是否记录用户新注册 <br/> 只使用于单网站,并且没有开启 \"管理员审批\" 与 \"邮箱确认\" 功能 <br/>警告:缓存注册表单会让自动登录不正常"
5277
 
5278
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5279
  msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5280
  msgstr "指定用户注册页面地址将被重定向<br/>使用下列格式: http://www.mysite.com"
5281
 
5282
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5283
  msgid "After Registration..."
5284
  msgstr "注册后…"
5285
 
5286
- #: profile-builder-2.0/modules/user-listing/userlisting.php:987
5287
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1429
5288
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1832
5289
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2294
5290
  msgid "Search Users by All Fields"
5291
  msgstr "在所有字段中搜索用户"
5292
 
5293
- #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5294
  msgid "Add new User Listing"
5295
  msgstr "增加新的用户列表"
5296
 
5297
- #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5298
  msgid "Edit the User Listing"
5299
  msgstr "编辑用户列表"
5300
 
5301
- #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5302
  msgid "New User Listing"
5303
  msgstr "新的用户列表"
5304
 
5305
- #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5306
  msgid "View the User Listing"
5307
  msgstr "查看用户列表"
5308
 
5309
- #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5310
  msgid "Search the User Listing"
5311
  msgstr "搜索用户列表"
5312
 
5313
- #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5314
  msgid "No User Listing found"
5315
  msgstr "没有找到用户列表"
5316
 
5317
- #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5318
  msgid "No User Listing found in trash"
5319
  msgstr "没有在回收站找到用户列表"
5320
 
5321
- #: profile-builder-2.0/modules/user-listing/userlisting.php:104
5322
  msgid "Display name as"
5323
  msgstr "显示名称为"
5324
 
5325
- #: profile-builder-2.0/modules/user-listing/userlisting.php:143
5326
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2102
5327
  msgid "Registration Date"
5328
  msgstr "注册日期"
5329
 
5330
- #: profile-builder-2.0/modules/user-listing/userlisting.php:144
5331
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2107
5332
  msgid "Number of Posts"
5333
  msgstr "帖子数"
5334
 
5335
- #: profile-builder-2.0/modules/user-listing/userlisting.php:148
5336
  msgid "More Info"
5337
  msgstr "更多信息"
5338
 
5339
- #: profile-builder-2.0/modules/user-listing/userlisting.php:149
5340
  msgid "More Info Url"
5341
  msgstr "更多信息网址"
5342
 
5343
- #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5344
  msgid "Avatar or Gravatar"
5345
  msgstr "头像或 Gravatar"
5346
 
5347
- #: profile-builder-2.0/modules/user-listing/userlisting.php:189
5348
- #: profile-builder-2.0/modules/user-listing/userlisting.php:218
5349
  msgid "Extra Functions"
5350
  msgstr "额外功能"
5351
 
5352
- #: profile-builder-2.0/modules/user-listing/userlisting.php:191
5353
  msgid "Pagination"
5354
  msgstr "分页"
5355
 
5356
- #: profile-builder-2.0/modules/user-listing/userlisting.php:192
5357
  msgid "Search all Fields"
5358
  msgstr "搜索所有字段"
5359
 
5360
- #: profile-builder-2.0/modules/user-listing/userlisting.php:220
5361
  msgid "Go Back Link"
5362
  msgstr "返回链接"
5363
 
5364
- #: profile-builder-2.0/modules/user-listing/userlisting.php:238
5365
  msgid "All-userlisting Template"
5366
  msgstr "所有用户列表模板"
5367
 
5368
- #: profile-builder-2.0/modules/user-listing/userlisting.php:241
5369
  msgid "Single-userlisting Template"
5370
  msgstr "单用户列表模板"
5371
 
5372
- #: profile-builder-2.0/modules/user-listing/userlisting.php:707
5373
  msgid "First/Lastname"
5374
  msgstr "名字/姓氏"
5375
 
5376
- #: profile-builder-2.0/modules/user-listing/userlisting.php:272
5377
- #: profile-builder-2.0/modules/user-listing/userlisting.php:713
5378
  msgid "Sign-up Date"
5379
  msgstr "注册日期"
5380
 
5381
- #: profile-builder-2.0/modules/user-listing/userlisting.php:722
5382
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2105
5383
  msgid "Display Name"
5384
  msgstr "显示名称"
5385
 
5386
- #: profile-builder-2.0/modules/user-listing/userlisting.php:271
5387
- #: profile-builder-2.0/modules/user-listing/userlisting.php:731
5388
  msgid "Posts"
5389
  msgstr "帖子"
5390
 
5391
- #: profile-builder-2.0/modules/user-listing/userlisting.php:734
5392
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2112
5393
  msgid "Aim"
5394
  msgstr "Aim"
5395
 
5396
- #: profile-builder-2.0/modules/user-listing/userlisting.php:737
5397
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2113
5398
  msgid "Yim"
5399
  msgstr "Yim"
5400
 
5401
- #: profile-builder-2.0/modules/user-listing/userlisting.php:740
5402
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2114
5403
  msgid "Jabber"
5404
  msgstr "Jabber"
5405
 
5406
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1239
5407
  msgid "Click here to see more information about this user"
5408
  msgstr "点击这里查看此用户的更多信息"
5409
 
5410
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1239
5411
  msgid "More..."
5412
  msgstr "更多..."
5413
 
5414
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1242
5415
  msgid "Click here to see more information about this user."
5416
  msgstr "点击这里查看此用户的更多信息。"
5417
 
5418
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1383
5419
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1386
5420
  msgid "Click here to go back"
5421
  msgstr "点击这里返回"
5422
 
5423
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1383
5424
  msgid "Back"
5425
  msgstr "返回"
5426
 
5427
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1416
5428
  msgid "&laquo;&laquo; First"
5429
  msgstr "&laquo;&laquo; 首页"
5430
 
5431
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1417
5432
  msgid "&laquo; Prev"
5433
  msgstr "&laquo; 上一页"
5434
 
5435
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1418
5436
  msgid "Next &raquo; "
5437
  msgstr "下一页 &raquo; "
5438
 
5439
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1419
5440
  msgid "Last &raquo;&raquo;"
5441
  msgstr "最后 &raquo;&raquo;"
5442
 
5443
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1448
5444
  msgid "You don't have any pagination settings on this userlisting!"
5445
  msgstr "您不需在用户列表中设置分页"
5446
 
5447
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1849
5448
  msgid "Search"
5449
  msgstr "搜索"
5450
 
5451
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1850
5452
  msgid "Clear Results"
5453
  msgstr "清除结果"
5454
 
5455
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2044
5456
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2048
5457
  msgid "Extra shortcode parameters"
5458
  msgstr "额外简码参数"
5459
 
5460
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2051
5461
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5462
  msgstr "显示用户在某一(额外)元字段(meta-field)"
5463
 
5464
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2052
5465
  msgid "Example:"
5466
  msgstr "例子:"
5467
 
5468
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2054
5469
  msgid "Remember though, that the field-value combination must exist in the database."
5470
  msgstr "记住,该字段值的组合必须存在于数据库中。"
5471
 
5472
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2124
5473
  msgid "Random (very slow on large databases > 10K user)"
5474
  msgstr "随机 (在大于 10K 的用户数据库中将会很慢 )"
5475
 
5476
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5477
  msgid "Roles to Display"
5478
  msgstr "角色显示:"
5479
 
5480
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5481
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5482
  msgstr "限制用户列表中的特定角色<br/>如果没有指定,默认为全部现有的角色"
5483
 
5484
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
5485
  msgid "Number of Users/Page"
5486
  msgstr "用户/页面数"
5487
 
5488
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2138
5489
  msgid "Default Sorting Criteria"
5490
  msgstr "默认分类标准"
5491
 
5492
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2138
5493
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5494
  msgstr "设置默认的排序标准<br/>这可以暂时被每一个新的会话更改"
5495
 
5496
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2139
5497
  msgid "Default Sorting Order"
5498
  msgstr "默认排列顺序"
5499
 
5500
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2139
5501
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5502
  msgstr "设置默认排列顺序<br/>这可以在每个新会话时被改变"
5503
 
5504
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2140
5505
  msgid "Avatar Size (All-userlisting)"
5506
  msgstr "头像大小(所有用户列表)"
5507
 
5508
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2140
5509
  msgid "Set the avatar size on the all-userlisting only"
5510
  msgstr "设置在所有用户列表的头像大小"
5511
 
5512
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2141
5513
  msgid "Avatar Size (Single-userlisting)"
5514
  msgstr "头像大小(单用户列表)"
5515
 
5516
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2141
5517
  msgid "Set the avatar size on the single-userlisting only"
5518
  msgstr "设置在单用户列表的头像大小"
5519
 
5520
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
5521
  msgid "Visible only to logged in users?"
5522
  msgstr "只有登录用户可见的?"
5523
 
5524
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
5525
  msgid "The userlisting will only be visible only to the logged in users"
5526
  msgstr "用户列表只有登录用户可见的"
5527
 
5528
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2143
5529
  msgid "Visible to following Roles"
5530
  msgstr "以下角色可见"
5531
 
5532
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2143
5533
  msgid "The userlisting will only be visible to the following roles"
5534
  msgstr "用户列表只允许以下角色可见"
5535
 
5536
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2149
5537
  msgid "Userlisting Settings"
5538
  msgstr "用户列表设置"
5539
 
5540
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2270
5541
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5542
  msgstr "您需要激活用户列表功能在 \"模块\" 选项卡!"
5543
 
5544
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2270
5545
  msgid "You can find it in the Profile Builder menu."
5546
  msgstr "你可以在 Profile Builder 菜单中找到它。"
5547
 
5548
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2433
5549
  msgid "No results found!"
5550
  msgstr "无任何结果!"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
 
 
 
 
 
 
 
 
15
  msgstr ""
16
 
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
 
 
19
  msgstr ""
20
 
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
  msgstr ""
24
 
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
  msgstr ""
28
 
29
+ #: admin/register-version.php:251
30
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
32
 
33
+ #: admin/register-version.php:246
34
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
35
  msgstr ""
36
 
37
+ #: front-end/recover.php:151
38
+ msgid "You are already logged in. You can change your password on the edit profile form."
39
  msgstr ""
40
 
41
+ #: front-end/default-fields/blog-details/blog-details.php:70
42
+ msgid "Your site url will look like this:<br>"
43
  msgstr ""
44
 
45
+ #: features/functions.php:909
46
+ msgid "<br><br>You can visit your site at "
47
  msgstr ""
48
 
49
+ #: features/functions.php:896
50
+ msgid "<br><br>Also, you will be able to visit your site at "
51
  msgstr ""
52
 
53
+ #: front-end/default-fields/blog-details/blog-details.php:138
54
+ msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
55
  msgstr ""
56
 
57
+ #: front-end/default-fields/blog-details/blog-details.php:116
58
+ msgid "Site Title"
59
  msgstr ""
60
 
61
+ #: front-end/default-fields/blog-details/blog-details.php:93
62
+ msgid "Site URL slug"
63
  msgstr ""
64
 
65
+ #: front-end/default-fields/blog-details/blog-details.php:63
66
+ msgid "Yes, I'd like to create a new site"
67
  msgstr ""
68
 
69
+ #: modules/email-customizer/email-customizer.php:36
70
+ #: modules/user-listing/userlisting.php:118
71
+ msgid "Blog URL"
72
  msgstr ""
73
 
74
+ #: admin/admin-functions.php:44
75
+ msgid "Blog Details - only appears on the Registration page!"
76
  msgstr ""
77
 
78
+ #: admin/manage-fields.php:219
79
+ msgid "Blog Details"
80
  msgstr ""
81
 
82
+ #: admin/pms-cross-promotion.php:239
83
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
 
 
 
 
84
  msgstr ""
85
 
86
+ #: features/email-confirmation/email-confirmation.php:578
87
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
88
  msgstr ""
89
 
90
+ #: modules/user-listing/userlisting.php:1303
91
+ msgid "View Map"
92
  msgstr ""
93
 
94
+ #: admin/add-ons.php:103
95
  msgid "Available in Hobbyist and Pro Versions"
96
  msgstr ""
97
 
98
+ #: admin/add-ons.php:105
99
  msgid "Available in All Versions"
100
  msgstr ""
101
 
102
+ #: admin/add-ons.php:148
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
  msgid "Timepicker"
108
  msgstr ""
109
 
110
+ #: admin/basic-info.php:100
111
  msgid "Colorpicker"
112
  msgstr ""
113
 
114
+ #: admin/basic-info.php:103
115
  msgid "Currency Select"
116
  msgstr ""
117
 
118
+ #: admin/basic-info.php:109
119
  msgid "Number"
120
  msgstr ""
121
 
122
+ #: admin/basic-info.php:114
123
  msgid "Validation"
124
  msgstr ""
125
 
126
+ #: admin/basic-info.php:115
127
  msgid "Map"
128
  msgstr ""
129
 
130
+ #: admin/basic-info.php:116
131
  msgid "HTML"
132
  msgstr ""
133
 
134
+ #: admin/basic-info.php:162 modules/modules.php:117
 
135
  msgid "Repeater Fields"
136
  msgstr ""
137
 
138
+ #: admin/basic-info.php:163
139
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
  msgstr ""
141
 
142
+ #: admin/general-settings.php:62
143
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
  msgstr ""
145
 
146
+ #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
149
 
150
+ #: admin/manage-fields.php:141
151
  msgid "Show Currency Symbol"
152
  msgstr ""
153
 
154
+ #: admin/manage-fields.php:141
155
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
156
  msgstr ""
157
 
158
+ #: admin/manage-fields.php:142
159
  msgid "Show Post Type"
160
  msgstr ""
161
 
162
+ #: admin/manage-fields.php:142
163
  msgid "Posts from what post type will be displayed in the select."
164
  msgstr ""
165
 
166
+ #: admin/manage-fields.php:143
167
  msgid "Allowable Values"
168
  msgstr ""
169
 
170
+ #: admin/manage-fields.php:143
171
  msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
172
  msgstr ""
173
 
174
+ #: admin/manage-fields.php:144
175
  msgid "Error Message"
176
  msgstr ""
177
 
178
+ #: admin/manage-fields.php:144
179
  msgid "Set a custom error message that will be displayed to the user."
180
  msgstr ""
181
 
182
+ #: admin/manage-fields.php:145
183
  msgid "Time Format"
184
  msgstr ""
185
 
186
+ #: admin/manage-fields.php:145
187
  msgid "Specify the time format."
188
  msgstr ""
189
 
190
+ #: admin/manage-fields.php:146
191
  msgid "Google Maps API Key"
192
  msgstr ""
193
 
194
+ #: admin/manage-fields.php:146
195
  msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
196
  msgstr ""
197
 
198
+ #: admin/manage-fields.php:147
199
  msgid "Default Latitude"
200
  msgstr ""
201
 
202
+ #: admin/manage-fields.php:147
203
  msgid "The latitude at which the map should be displayed when no pins are attached."
204
  msgstr ""
205
 
206
+ #: admin/manage-fields.php:148
207
  msgid "Default Longitude"
208
  msgstr ""
209
 
210
+ #: admin/manage-fields.php:148
211
  msgid "The longitude at which the map should be displayed when no pins are attached."
212
  msgstr ""
213
 
214
+ #: admin/manage-fields.php:149
215
  msgid "Default Zoom Level"
216
  msgstr ""
217
 
218
+ #: admin/manage-fields.php:149
219
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
220
  msgstr ""
221
 
222
+ #: admin/manage-fields.php:150
223
  msgid "Map Height"
224
  msgstr ""
225
 
226
+ #: admin/manage-fields.php:150
227
  msgid "The height of the map."
228
  msgstr ""
229
 
230
+ #: admin/manage-fields.php:152
231
  msgid "HTML Content"
232
  msgstr ""
233
 
234
+ #: admin/manage-fields.php:152
235
  msgid "Add your HTML (or text) content"
236
  msgstr ""
237
 
238
+ #: admin/manage-fields.php:153
239
  msgid "Phone Format"
240
  msgstr ""
241
 
242
+ #: admin/manage-fields.php:153
243
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
244
  msgstr ""
245
 
246
+ #: admin/manage-fields.php:153
247
  msgid "Eg. (###) ###-####"
248
  msgstr ""
249
 
250
+ #: admin/manage-fields.php:153
251
  msgid "Empty field won't check for correct phone number."
252
  msgstr ""
253
 
254
+ #: admin/manage-fields.php:154
255
  msgid "Heading Tag"
256
  msgstr ""
257
 
258
+ #: admin/manage-fields.php:154
259
  msgid "Change heading field size on front-end forms"
260
  msgstr ""
261
 
262
+ #: admin/manage-fields.php:155
263
  msgid "Min Number Value"
264
  msgstr ""
265
 
266
+ #: admin/manage-fields.php:155
267
  msgid "Min allowed number value (0 to allow only positive numbers)"
268
  msgstr ""
269
 
270
+ #: admin/manage-fields.php:155
271
  msgid "Leave it empty for no min value"
272
  msgstr ""
273
 
274
+ #: admin/manage-fields.php:156
275
  msgid "Max Number Value"
276
  msgstr ""
277
 
278
+ #: admin/manage-fields.php:156
279
  msgid "Max allowed number value (0 to allow only negative numbers)"
280
  msgstr ""
281
 
282
+ #: admin/manage-fields.php:156
283
  msgid "Leave it empty for no max value"
284
  msgstr ""
285
 
286
+ #: admin/manage-fields.php:157
287
  msgid "Number Step Value"
288
  msgstr ""
289
 
290
+ #: admin/manage-fields.php:157
291
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
292
  msgstr ""
293
 
294
+ #: admin/manage-fields.php:157
295
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
296
  msgstr ""
297
 
298
+ #: admin/manage-fields.php:157
299
  msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
300
  msgstr ""
301
 
302
+ #: admin/manage-fields.php:157
303
  msgid "Leave it empty for no restriction"
304
  msgstr ""
305
 
306
+ #: admin/manage-fields.php:561
307
  msgid "Albania Lek"
308
  msgstr ""
309
 
310
+ #: admin/manage-fields.php:562
311
  msgid "Afghanistan Afghani"
312
  msgstr ""
313
 
314
+ #: admin/manage-fields.php:563
315
  msgid "Argentina Peso"
316
  msgstr ""
317
 
318
+ #: admin/manage-fields.php:564
319
  msgid "Aruba Guilder"
320
  msgstr ""
321
 
322
+ #: admin/manage-fields.php:565
323
  msgid "Australia Dollar"
324
  msgstr ""
325
 
326
+ #: admin/manage-fields.php:566
327
  msgid "Azerbaijan New Manat"
328
  msgstr ""
329
 
330
+ #: admin/manage-fields.php:567
331
  msgid "Bahamas Dollar"
332
  msgstr ""
333
 
334
+ #: admin/manage-fields.php:568
335
  msgid "Barbados Dollar"
336
  msgstr ""
337
 
338
+ #: admin/manage-fields.php:569
339
  msgid "Bangladeshi taka"
340
  msgstr ""
341
 
342
+ #: admin/manage-fields.php:570
343
  msgid "Belarus Ruble"
344
  msgstr ""
345
 
346
+ #: admin/manage-fields.php:571
347
  msgid "Belize Dollar"
348
  msgstr ""
349
 
350
+ #: admin/manage-fields.php:572
351
  msgid "Bermuda Dollar"
352
  msgstr ""
353
 
354
+ #: admin/manage-fields.php:573
355
  msgid "Bolivia Boliviano"
356
  msgstr ""
357
 
358
+ #: admin/manage-fields.php:574
359
  msgid "Bosnia and Herzegovina Convertible Marka"
360
  msgstr ""
361
 
362
+ #: admin/manage-fields.php:575
363
  msgid "Botswana Pula"
364
  msgstr ""
365
 
366
+ #: admin/manage-fields.php:576
367
  msgid "Bulgaria Lev"
368
  msgstr ""
369
 
370
+ #: admin/manage-fields.php:577
371
  msgid "Brazil Real"
372
  msgstr ""
373
 
374
+ #: admin/manage-fields.php:578
375
  msgid "Brunei Darussalam Dollar"
376
  msgstr ""
377
 
378
+ #: admin/manage-fields.php:579
379
  msgid "Cambodia Riel"
380
  msgstr ""
381
 
382
+ #: admin/manage-fields.php:580
383
  msgid "Canada Dollar"
384
  msgstr ""
385
 
386
+ #: admin/manage-fields.php:581
387
  msgid "Cayman Islands Dollar"
388
  msgstr ""
389
 
390
+ #: admin/manage-fields.php:582
391
  msgid "Chile Peso"
392
  msgstr ""
393
 
394
+ #: admin/manage-fields.php:583
395
  msgid "China Yuan Renminbi"
396
  msgstr ""
397
 
398
+ #: admin/manage-fields.php:584
399
  msgid "Colombia Peso"
400
  msgstr ""
401
 
402
+ #: admin/manage-fields.php:585
403
  msgid "Costa Rica Colon"
404
  msgstr ""
405
 
406
+ #: admin/manage-fields.php:586
407
  msgid "Croatia Kuna"
408
  msgstr ""
409
 
410
+ #: admin/manage-fields.php:587
411
  msgid "Cuba Peso"
412
  msgstr ""
413
 
414
+ #: admin/manage-fields.php:588
415
  msgid "Czech Republic Koruna"
416
  msgstr ""
417
 
418
+ #: admin/manage-fields.php:589
419
  msgid "Denmark Krone"
420
  msgstr ""
421
 
422
+ #: admin/manage-fields.php:590
423
  msgid "Dominican Republic Peso"
424
  msgstr ""
425
 
426
+ #: admin/manage-fields.php:591
427
  msgid "East Caribbean Dollar"
428
  msgstr ""
429
 
430
+ #: admin/manage-fields.php:592
431
  msgid "Egypt Pound"
432
  msgstr ""
433
 
434
+ #: admin/manage-fields.php:593
435
  msgid "El Salvador Colon"
436
  msgstr ""
437
 
438
+ #: admin/manage-fields.php:594
439
  msgid "Estonia Kroon"
440
  msgstr ""
441
 
442
+ #: admin/manage-fields.php:595
443
  msgid "Euro"
444
  msgstr ""
445
 
446
+ #: admin/manage-fields.php:596
447
  msgid "Falkland Islands (Malvinas) Pound"
448
  msgstr ""
449
 
450
+ #: admin/manage-fields.php:597
451
  msgid "Fiji Dollar"
452
  msgstr ""
453
 
454
+ #: admin/manage-fields.php:598
455
  msgid "Ghana Cedis"
456
  msgstr ""
457
 
458
+ #: admin/manage-fields.php:599
459
  msgid "Gibraltar Pound"
460
  msgstr ""
461
 
462
+ #: admin/manage-fields.php:600
463
  msgid "Guatemala Quetzal"
464
  msgstr ""
465
 
466
+ #: admin/manage-fields.php:601
467
  msgid "Guernsey Pound"
468
  msgstr ""
469
 
470
+ #: admin/manage-fields.php:602
471
  msgid "Guyana Dollar"
472
  msgstr ""
473
 
474
+ #: admin/manage-fields.php:603
475
  msgid "Honduras Lempira"
476
  msgstr ""
477
 
478
+ #: admin/manage-fields.php:604
479
  msgid "Hong Kong Dollar"
480
  msgstr ""
481
 
482
+ #: admin/manage-fields.php:605
483
  msgid "Hungary Forint"
484
  msgstr ""
485
 
486
+ #: admin/manage-fields.php:606
487
  msgid "Iceland Krona"
488
  msgstr ""
489
 
490
+ #: admin/manage-fields.php:607
491
  msgid "India Rupee"
492
  msgstr ""
493
 
494
+ #: admin/manage-fields.php:608
495
  msgid "Indonesia Rupiah"
496
  msgstr ""
497
 
498
+ #: admin/manage-fields.php:609
499
  msgid "Iran Rial"
500
  msgstr ""
501
 
502
+ #: admin/manage-fields.php:610
503
  msgid "Isle of Man Pound"
504
  msgstr ""
505
 
506
+ #: admin/manage-fields.php:611
507
  msgid "Israel Shekel"
508
  msgstr ""
509
 
510
+ #: admin/manage-fields.php:612
511
  msgid "Jamaica Dollar"
512
  msgstr ""
513
 
514
+ #: admin/manage-fields.php:613
515
  msgid "Japan Yen"
516
  msgstr ""
517
 
518
+ #: admin/manage-fields.php:614
519
  msgid "Jersey Pound"
520
  msgstr ""
521
 
522
+ #: admin/manage-fields.php:615
523
  msgid "Kazakhstan Tenge"
524
  msgstr ""
525
 
526
+ #: admin/manage-fields.php:616
527
  msgid "Korea (North) Won"
528
  msgstr ""
529
 
530
+ #: admin/manage-fields.php:617
531
  msgid "Korea (South) Won"
532
  msgstr ""
533
 
534
+ #: admin/manage-fields.php:618
535
  msgid "Kyrgyzstan Som"
536
  msgstr ""
537
 
538
+ #: admin/manage-fields.php:619
539
  msgid "Laos Kip"
540
  msgstr ""
541
 
542
+ #: admin/manage-fields.php:620
543
  msgid "Latvia Lat"
544
  msgstr ""
545
 
546
+ #: admin/manage-fields.php:621
547
  msgid "Lebanon Pound"
548
  msgstr ""
549
 
550
+ #: admin/manage-fields.php:622
551
  msgid "Liberia Dollar"
552
  msgstr ""
553
 
554
+ #: admin/manage-fields.php:623
555
  msgid "Lithuania Litas"
556
  msgstr ""
557
 
558
+ #: admin/manage-fields.php:624
559
  msgid "Macedonia Denar"
560
  msgstr ""
561
 
562
+ #: admin/manage-fields.php:625
563
  msgid "Malaysia Ringgit"
564
  msgstr ""
565
 
566
+ #: admin/manage-fields.php:626
567
  msgid "Mauritius Rupee"
568
  msgstr ""
569
 
570
+ #: admin/manage-fields.php:627
571
  msgid "Mexico Peso"
572
  msgstr ""
573
 
574
+ #: admin/manage-fields.php:628
575
  msgid "Mongolia Tughrik"
576
  msgstr ""
577
 
578
+ #: admin/manage-fields.php:629
579
  msgid "Mozambique Metical"
580
  msgstr ""
581
 
582
+ #: admin/manage-fields.php:630
583
  msgid "Namibia Dollar"
584
  msgstr ""
585
 
586
+ #: admin/manage-fields.php:631
587
  msgid "Nepal Rupee"
588
  msgstr ""
589
 
590
+ #: admin/manage-fields.php:632
591
  msgid "Netherlands Antilles Guilder"
592
  msgstr ""
593
 
594
+ #: admin/manage-fields.php:633
595
  msgid "New Zealand Dollar"
596
  msgstr ""
597
 
598
+ #: admin/manage-fields.php:634
599
  msgid "Nicaragua Cordoba"
600
  msgstr ""
601
 
602
+ #: admin/manage-fields.php:635
603
  msgid "Nigeria Naira"
604
  msgstr ""
605
 
606
+ #: admin/manage-fields.php:636
607
  msgid "Norway Krone"
608
  msgstr ""
609
 
610
+ #: admin/manage-fields.php:637
611
  msgid "Oman Rial"
612
  msgstr ""
613
 
614
+ #: admin/manage-fields.php:638
615
  msgid "Pakistan Rupee"
616
  msgstr ""
617
 
618
+ #: admin/manage-fields.php:639
619
  msgid "Panama Balboa"
620
  msgstr ""
621
 
622
+ #: admin/manage-fields.php:640
623
  msgid "Paraguay Guarani"
624
  msgstr ""
625
 
626
+ #: admin/manage-fields.php:641
627
  msgid "Peru Nuevo Sol"
628
  msgstr ""
629
 
630
+ #: admin/manage-fields.php:642
631
  msgid "Philippines Peso"
632
  msgstr ""
633
 
634
+ #: admin/manage-fields.php:643
635
  msgid "Poland Zloty"
636
  msgstr ""
637
 
638
+ #: admin/manage-fields.php:644
639
  msgid "Qatar Riyal"
640
  msgstr ""
641
 
642
+ #: admin/manage-fields.php:645
643
  msgid "Romania New Leu"
644
  msgstr ""
645
 
646
+ #: admin/manage-fields.php:646
647
  msgid "Russia Ruble"
648
  msgstr ""
649
 
650
+ #: admin/manage-fields.php:647
651
  msgid "Saint Helena Pound"
652
  msgstr ""
653
 
654
+ #: admin/manage-fields.php:648
655
  msgid "Saudi Arabia Riyal"
656
  msgstr ""
657
 
658
+ #: admin/manage-fields.php:649
659
  msgid "Serbia Dinar"
660
  msgstr ""
661
 
662
+ #: admin/manage-fields.php:650
663
  msgid "Seychelles Rupee"
664
  msgstr ""
665
 
666
+ #: admin/manage-fields.php:651
667
  msgid "Singapore Dollar"
668
  msgstr ""
669
 
670
+ #: admin/manage-fields.php:652
671
  msgid "Solomon Islands Dollar"
672
  msgstr ""
673
 
674
+ #: admin/manage-fields.php:653
675
  msgid "Somalia Shilling"
676
  msgstr ""
677
 
678
+ #: admin/manage-fields.php:654
679
  msgid "South Africa Rand"
680
  msgstr ""
681
 
682
+ #: admin/manage-fields.php:655
683
  msgid "Sri Lanka Rupee"
684
  msgstr ""
685
 
686
+ #: admin/manage-fields.php:656
687
  msgid "Sweden Krona"
688
  msgstr ""
689
 
690
+ #: admin/manage-fields.php:657
691
  msgid "Switzerland Franc"
692
  msgstr ""
693
 
694
+ #: admin/manage-fields.php:658
695
  msgid "Suriname Dollar"
696
  msgstr ""
697
 
698
+ #: admin/manage-fields.php:659
699
  msgid "Syria Pound"
700
  msgstr ""
701
 
702
+ #: admin/manage-fields.php:660
703
  msgid "Taiwan New Dollar"
704
  msgstr ""
705
 
706
+ #: admin/manage-fields.php:661
707
  msgid "Thailand Baht"
708
  msgstr ""
709
 
710
+ #: admin/manage-fields.php:662
711
  msgid "Trinidad and Tobago Dollar"
712
  msgstr ""
713
 
714
+ #: admin/manage-fields.php:663 admin/manage-fields.php:664
 
715
  msgid "Turkey Lira"
716
  msgstr ""
717
 
718
+ #: admin/manage-fields.php:665
719
  msgid "Tuvalu Dollar"
720
  msgstr ""
721
 
722
+ #: admin/manage-fields.php:666
723
  msgid "Ukraine Hryvna"
724
  msgstr ""
725
 
726
+ #: admin/manage-fields.php:667
727
  msgid "United Kingdom Pound"
728
  msgstr ""
729
 
730
+ #: admin/manage-fields.php:668
731
  msgid "Uganda Shilling"
732
  msgstr ""
733
 
734
+ #: admin/manage-fields.php:669
735
  msgid "US Dollar"
736
  msgstr ""
737
 
738
+ #: admin/manage-fields.php:670
739
  msgid "Uruguay Peso"
740
  msgstr ""
741
 
742
+ #: admin/manage-fields.php:671
743
  msgid "Uzbekistan Som"
744
  msgstr ""
745
 
746
+ #: admin/manage-fields.php:672
747
  msgid "Venezuela Bolivar"
748
  msgstr ""
749
 
750
+ #: admin/manage-fields.php:673
751
  msgid "Viet Nam Dong"
752
  msgstr ""
753
 
754
+ #: admin/manage-fields.php:674
755
  msgid "Yemen Rial"
756
  msgstr ""
757
 
758
+ #: admin/manage-fields.php:675
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
  msgid "You are not allowed to do this."
772
  msgstr ""
773
 
774
+ #: features/admin-approval/class-admin-approval.php:461
775
+ #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
777
  msgstr ""
778
 
779
+ #: features/conditional-fields/conditional-fields.php:78
780
  msgid "Conditional Logic"
781
  msgstr ""
782
 
783
+ #: features/conditional-fields/conditional-fields.php:79
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
791
+ #: features/functions.php:685
792
  msgid "Incorrect phone number"
793
  msgstr ""
794
 
795
+ #: front-end/class-formbuilder.php:113
796
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
797
  msgstr ""
798
 
799
+ #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
 
800
  msgid "Please add the Google Maps API key for this field."
801
  msgstr ""
802
 
803
+ #: front-end/extra-fields/map/map.php:134
804
  msgid "Something went wrong. Please try again."
805
  msgstr ""
806
 
807
+ #: front-end/extra-fields/number/number.php:69
808
  msgid "Please enter numbers only"
809
  msgstr ""
810
 
811
+ #: front-end/extra-fields/number/number.php:73
812
  msgid "Value must be a multiplier of %1$s"
813
  msgstr ""
814
 
815
+ #: front-end/extra-fields/number/number.php:77
816
  msgid "Value must be greater than or equal to %1$s"
817
  msgstr ""
818
 
819
+ #: front-end/extra-fields/number/number.php:81
820
  msgid "Value must be less than or equal to %1$s"
821
  msgstr ""
822
 
823
+ #: front-end/extra-fields/phone/phone.php:22
824
  msgid "Required phone number format: "
825
  msgstr ""
826
 
827
+ #: front-end/extra-fields/select-country/select-country.php:10
828
  msgid "Bolivia, __( Plurinational State of"
829
  msgstr ""
830
 
831
+ #: front-end/extra-fields/select-country/select-country.php:10
832
  msgid "Bonaire, __( Sint Eustatius and Saba"
833
  msgstr ""
834
 
835
+ #: front-end/extra-fields/select-country/select-country.php:10
836
  msgid "Brunei Darussalam"
837
  msgstr ""
838
 
839
+ #: front-end/extra-fields/select-country/select-country.php:10
840
  msgid "Cabo Verde"
841
  msgstr ""
842
 
843
+ #: front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Cocos (Keeling) Islands"
845
  msgstr ""
846
 
847
+ #: front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Congo"
849
  msgstr ""
850
 
851
+ #: front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Congo, __( the Democratic Republic of the"
853
  msgstr ""
854
 
855
+ #: front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cote dIvoire"
857
  msgstr ""
858
 
859
+ #: front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Falkland Islands (Malvinas)"
861
  msgstr ""
862
 
863
+ #: front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Holy See (Vatican City State)"
865
  msgstr ""
866
 
867
+ #: front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Iran, __( Islamic Republic of"
869
  msgstr ""
870
 
871
+ #: front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Korea, __( Democratic Peoples Republic of"
873
  msgstr ""
874
 
875
+ #: front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Korea, __( Republic of"
877
  msgstr ""
878
 
879
+ #: front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Lao Peoples Democratic Republic"
881
  msgstr ""
882
 
883
+ #: front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Macedonia, __( the former Yugoslav Republic of"
885
  msgstr ""
886
 
887
+ #: front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Micronesia, __( Federated States of"
889
  msgstr ""
890
 
891
+ #: front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Moldova, __( Republic of"
893
  msgstr ""
894
 
895
+ #: front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Palestine, __( State of"
897
  msgstr ""
898
 
899
+ #: front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Russian Federation"
901
  msgstr ""
902
 
903
+ #: front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
905
  msgstr ""
906
 
907
+ #: front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Saint Martin (French part)"
909
  msgstr ""
910
 
911
+ #: front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Sint Maarten (Dutch part)"
913
  msgstr ""
914
 
915
+ #: front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Syrian Arab Republic"
917
  msgstr ""
918
 
919
+ #: front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Taiwan, __( Province of China"
921
  msgstr ""
922
 
923
+ #: front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Tanzania, __( United Republic of"
925
  msgstr ""
926
 
927
+ #: front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Timor-Leste"
929
  msgstr ""
930
 
931
+ #: front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Venezuela, __( Bolivarian Republic of"
933
  msgstr ""
934
 
935
+ #: front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Viet Nam"
937
  msgstr ""
938
 
939
+ #: front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Virgin Islands, __( British"
941
  msgstr ""
942
 
943
+ #: front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Virgin Islands, __( U.S."
945
  msgstr ""
946
 
947
+ #: modules/email-customizer/email-customizer.php:11
948
+ #: modules/user-listing/userlisting.php:186
949
  msgid "User Fields Tags"
950
  msgstr ""
951
 
952
+ #: modules/email-customizer/email-customizer.php:479
953
  msgid "The users selected password at signup"
954
  msgstr ""
955
 
956
+ #: modules/email-customizer/user-email-customizer.php:278
957
  msgid "[{{site_name}}] Notice of Email Change"
958
  msgstr ""
959
 
960
+ #: modules/email-customizer/user-email-customizer.php:289
961
  msgid "Changed Email Address Notification"
962
  msgstr ""
963
 
964
+ #: modules/repeater-field/admin/repeater-manage-fields.php:190
965
  msgid "Limit"
966
  msgstr ""
967
 
968
+ #: modules/repeater-field/admin/repeater-manage-fields.php:190
969
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
970
  msgstr ""
971
 
972
+ #: modules/repeater-field/admin/repeater-manage-fields.php:191
973
  msgid "General Limit"
974
  msgstr ""
975
 
976
+ #: modules/repeater-field/admin/repeater-manage-fields.php:191
977
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
978
  msgstr ""
979
 
980
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
981
  msgid "Limit reached message"
982
  msgstr ""
983
 
984
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
985
  msgid "The maximum number of fields has been reached."
986
  msgstr ""
987
 
988
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
989
  msgid "The popup message to display when the limit of repeater groups is reached."
990
  msgstr ""
991
 
992
+ #: modules/repeater-field/admin/repeater-manage-fields.php:193
993
  msgid "Limit per Role"
994
  msgstr ""
995
 
996
+ #: modules/repeater-field/admin/repeater-manage-fields.php:193
997
  msgid "Leave 0 for unlimited."
998
  msgstr ""
999
 
1000
+ #: modules/repeater-field/admin/repeater-manage-fields.php:194
1001
  msgid "Repeated field group"
1002
  msgstr ""
1003
 
1004
+ #: modules/repeater-field/admin/repeater-manage-fields.php:194
1005
  msgid "Manage field or group of fields that will be repeatable."
1006
  msgstr ""
1007
 
1008
+ #: modules/repeater-field/admin/repeater-manage-fields.php:259
1009
  msgid "Edit field group"
1010
  msgstr ""
1011
 
1012
+ #: modules/repeater-field/admin/repeater-manage-fields.php:260
1013
  msgid "Repeatable fields saved!"
1014
  msgstr ""
1015
 
1016
+ #: modules/repeater-field/admin/repeater-manage-fields.php:277
1017
+ #: modules/repeater-field/admin/repeater-manage-fields.php:326
1018
  msgid "Please enter a unique field title.\n"
1019
  msgstr ""
1020
 
1021
+ #: modules/repeater-field/repeater-field.php:258
1022
  msgid "Are you sure you want to delete this?"
1023
  msgstr ""
1024
 
1025
+ #: modules/user-listing/userlisting.php:192
1026
  msgid "Sort Tags"
1027
  msgstr ""
1028
 
1029
+ #: modules/user-listing/userlisting.php:201
1030
+ #: modules/user-listing/userlisting.php:2237
1031
  msgid "Faceted Menus"
1032
  msgstr ""
1033
 
1034
+ #: modules/user-listing/userlisting.php:202
1035
  msgid "User Count"
1036
  msgstr ""
1037
 
1038
+ #: modules/user-listing/userlisting.php:1536
1039
  msgid "Show All"
1040
  msgstr ""
1041
 
1042
+ #: modules/user-listing/userlisting.php:1668
 
 
1043
  msgid "No options available"
1044
  msgstr ""
1045
 
1046
+ #: modules/user-listing/userlisting.php:1807
1047
  msgid "Remove All Filters"
1048
  msgstr ""
1049
 
1050
+ #: modules/user-listing/userlisting.php:2227
1051
  msgid "Label"
1052
  msgstr ""
1053
 
1054
+ #: modules/user-listing/userlisting.php:2227
1055
  msgid "Choose the facet name that appears on the frontend"
1056
  msgstr ""
1057
 
1058
+ #: modules/user-listing/userlisting.php:2228
1059
  msgid "Facet Type"
1060
  msgstr ""
1061
 
1062
+ #: modules/user-listing/userlisting.php:2228
1063
  msgid "Choose the facet menu type"
1064
  msgstr ""
1065
 
1066
+ #: modules/user-listing/userlisting.php:2229
1067
  msgid "Facet Meta"
1068
  msgstr ""
1069
 
1070
+ #: modules/user-listing/userlisting.php:2229
1071
  msgid "Choose the meta field for the facet menu"
1072
  msgstr ""
1073
 
1074
+ #: modules/user-listing/userlisting.php:2230
1075
  msgid "Behaviour"
1076
  msgstr ""
1077
 
1078
+ #: modules/user-listing/userlisting.php:2230
1079
  msgid "Narrow the results"
1080
  msgstr ""
1081
 
1082
+ #: modules/user-listing/userlisting.php:2230
1083
  msgid "Expand the results"
1084
  msgstr ""
1085
 
1086
+ #: modules/user-listing/userlisting.php:2230
1087
  msgid "Choose how multiple selections affect the results"
1088
  msgstr ""
1089
 
1090
+ #: modules/user-listing/userlisting.php:2231
1091
  msgid "Visible choices"
1092
  msgstr ""
1093
 
1094
+ #: modules/user-listing/userlisting.php:2231
1095
  msgid "Show a toggle link after this many choices. Leave blank for all"
1096
  msgstr ""
1097
 
1098
+ #: modules/user-listing/userlisting.php:2254
1099
  msgid "Search Fields"
1100
  msgstr ""
1101
 
1102
+ #: modules/user-listing/userlisting.php:2254
1103
  msgid "Choose the fields in which the Search Field will look in"
1104
  msgstr ""
1105
 
1106
+ #: modules/user-listing/userlisting.php:2259
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  msgid "Recommended Plugins"
1112
  msgstr ""
1113
 
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
 
1115
  msgid "Free"
1116
  msgstr ""
1117
 
1118
+ #: admin/add-ons.php:221
1119
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
  msgstr ""
1121
 
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
 
1123
  msgid "More Details"
1124
  msgstr ""
1125
 
1126
+ #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
+ #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
 
 
1128
  msgid "Plugin is <strong>inactive</strong>"
1129
  msgstr ""
1130
 
1131
+ #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87
1132
+ #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
 
 
1133
  msgid "Plugin is <strong>active</strong>"
1134
  msgstr ""
1135
 
1136
+ #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146
 
1137
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1138
  msgstr ""
1139
 
1140
+ #: admin/pms-cross-promotion.php:10
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
  msgstr ""
1147
 
1148
+ #: admin/pms-cross-promotion.php:37
1149
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
  msgstr ""
1151
 
1152
+ #: admin/pms-cross-promotion.php:40
1153
  msgid "Paid & Free Subscriptions"
1154
  msgstr ""
1155
 
1156
+ #: admin/pms-cross-promotion.php:41
1157
  msgid "Restrict Content"
1158
  msgstr ""
1159
 
1160
+ #: admin/pms-cross-promotion.php:42
1161
  msgid "Member Management"
1162
  msgstr ""
1163
 
1164
+ #: admin/pms-cross-promotion.php:43
1165
  msgid "Email Templates"
1166
  msgstr ""
1167
 
1168
+ #: admin/pms-cross-promotion.php:44
1169
  msgid "Account Management"
1170
  msgstr ""
1171
 
1172
+ #: admin/pms-cross-promotion.php:45
1173
  msgid "Subscription Management"
1174
  msgstr ""
1175
 
1176
+ #: admin/pms-cross-promotion.php:46
1177
  msgid "Payment Management"
1178
  msgstr ""
1179
 
1180
+ #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1183
 
1184
+ #: admin/pms-cross-promotion.php:84
1185
  msgid "Plugin has been activated"
1186
  msgstr ""
1187
 
1188
+ #: admin/pms-cross-promotion.php:91
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
  msgstr ""
1195
 
1196
+ #: admin/pms-cross-promotion.php:155
1197
  msgid "Step by Step Quick Setup"
1198
  msgstr ""
1199
 
1200
+ #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1203
 
1204
+ #: modules/custom-redirects/custom_redirects_admin.php:45
 
 
 
 
1205
  msgid "After Login"
1206
  msgstr ""
1207
 
1208
+ #: modules/custom-redirects/custom_redirects_admin.php:46
1209
  msgid "After Logout"
1210
  msgstr ""
1211
 
1212
+ #: modules/custom-redirects/custom_redirects_admin.php:47
1213
  msgid "After Registration"
1214
  msgstr ""
1215
 
1216
+ #: modules/custom-redirects/custom_redirects_admin.php:48
1217
  msgid "After Edit Profile"
1218
  msgstr ""
1219
 
1220
+ #: modules/custom-redirects/custom_redirects_admin.php:49
1221
  msgid "After Successful Email Confirmation"
1222
  msgstr ""
1223
 
1224
+ #: modules/custom-redirects/custom_redirects_admin.php:50
1225
  msgid "After Successful Password Reset"
1226
  msgstr ""
1227
 
1228
+ #: modules/custom-redirects/custom_redirects_admin.php:51
1229
  msgid "Dashboard (redirect users from accessing the dashboard)"
1230
  msgstr ""
1231
 
1232
+ #: modules/custom-redirects/custom_redirects_admin.php:55
1233
  msgid "User ID"
1234
  msgstr ""
1235
 
1236
+ #: modules/custom-redirects/custom_redirects_admin.php:61
1237
  msgid "User ID or Username"
1238
  msgstr ""
1239
 
1240
+ #: modules/custom-redirects/custom_redirects_admin.php:62
1241
  msgid "User ID / Username"
1242
  msgstr ""
1243
 
1244
+ #: modules/custom-redirects/custom_redirects_admin.php:62
1245
  msgid "Please select and enter the ID or username of your user."
1246
  msgstr ""
1247
 
1248
+ #: modules/custom-redirects/custom_redirects_admin.php:63
1249
+ #: modules/custom-redirects/custom_redirects_admin.php:93
1250
+ #: modules/custom-redirects/custom_redirects_admin.php:112
1251
+ #: modules/custom-redirects/custom_redirects_admin.php:131
1252
  msgid "Redirect Type"
1253
  msgstr ""
1254
 
1255
+ #: modules/custom-redirects/custom_redirects_admin.php:64
1256
+ #: modules/custom-redirects/custom_redirects_admin.php:94
1257
+ #: modules/custom-redirects/custom_redirects_admin.php:113
1258
+ #: modules/custom-redirects/custom_redirects_admin.php:138
1259
  msgid "Redirect URL"
1260
  msgstr ""
1261
 
1262
+ #: modules/custom-redirects/custom_redirects_admin.php:64
1263
+ #: modules/custom-redirects/custom_redirects_admin.php:94
1264
+ #: modules/custom-redirects/custom_redirects_admin.php:113
1265
+ #: modules/custom-redirects/custom_redirects_admin.php:138
1266
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1267
  msgstr ""
1268
 
1269
+ #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1274
+ #: modules/custom-redirects/custom_redirects_admin.php:84
1275
  msgid "... Choose"
1276
  msgstr ""
1277
 
1278
+ #: modules/custom-redirects/custom_redirects_admin.php:92
1279
  msgid "Select a user role."
1280
  msgstr ""
1281
 
1282
+ #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
+ #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1292
+ #: modules/custom-redirects/custom_redirects_admin.php:133
1293
  msgid "Login ( wp_login.php )"
1294
  msgstr ""
1295
 
1296
+ #: modules/custom-redirects/custom_redirects_admin.php:134
1297
  msgid "Register ( wp-login.php?action=register )"
1298
  msgstr ""
1299
 
1300
+ #: modules/custom-redirects/custom_redirects_admin.php:135
1301
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1302
  msgstr ""
1303
 
1304
+ #: modules/custom-redirects/custom_redirects_admin.php:136
1305
  msgid "Author Archive ( http://sitename.com/author/admin )"
1306
  msgstr ""
1307
 
1308
+ #: modules/custom-redirects/custom_redirects_admin.php:145
1309
  msgid "Redirect Default WordPress Forms and Pages"
1310
  msgstr ""
1311
 
1312
+ #: modules/custom-redirects/custom_redirects_admin.php:157
1313
  msgid "How does this work?"
1314
  msgstr ""
1315
 
1316
+ #: modules/custom-redirects/custom_redirects_admin.php:179
1317
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1318
  msgstr ""
1319
 
1320
+ #: modules/custom-redirects/custom_redirects_admin.php:193
1321
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1322
  msgstr ""
1323
 
1324
+ #: modules/custom-redirects/custom_redirects_admin.php:207
1325
+ #: modules/custom-redirects/custom_redirects_admin.php:221
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
  msgstr ""
1332
 
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
  msgid "Which redirect happens depends on the following priority:"
1335
  msgstr ""
1336
 
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
 
 
 
 
1338
  msgid "Redirect Default WordPress forms and pages"
1339
  msgstr ""
1340
 
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
  msgstr ""
1344
 
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
  msgid "Available tags for dynamic URLs"
1347
  msgstr ""
1348
 
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
  msgid "You use the following tags in your URLs to redirect users to various pages."
1351
  msgstr ""
1352
 
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
  msgid "generates a url of the current website homepage."
1355
  msgstr ""
1356
 
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
  msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
  msgstr ""
1360
 
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
  msgid "the ID of the user"
1363
  msgstr ""
1364
 
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
  msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
  msgstr ""
1368
 
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
  msgid "the URL of the previously visited page"
1371
  msgstr ""
1372
 
1373
+ #: modules/custom-redirects/custom_redirects_admin.php:340
1374
+ #: modules/custom-redirects/custom_redirects_admin.php:346
1375
+ #: modules/custom-redirects/custom_redirects_admin.php:352
1376
  msgid "You can't add duplicate redirects!"
1377
  msgstr ""
1378
 
1379
+ #: admin/admin-functions.php:41
1380
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1381
  msgstr ""
1382
 
1383
+ #: admin/basic-info.php:37
1384
  msgid "Friction-less login using %s shortcode or a widget."
1385
  msgstr ""
1386
 
1387
+ #: admin/basic-info.php:41
1388
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1389
  msgstr ""
1390
 
1391
+ #: admin/basic-info.php:45
1392
  msgid "Straight forward edit profile forms using %s shortcode."
1393
  msgstr ""
1394
 
1395
+ #: admin/basic-info.php:58
1396
  msgid "Allow users to recover their password in the front-end using the %s."
1397
  msgstr ""
1398
 
1399
+ #: admin/basic-info.php:140
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
  msgid "\"Admin Approval\" on User Role:"
1405
  msgstr ""
1406
 
1407
+ #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
1410
 
1411
+ #: admin/manage-fields.php:131
1412
  msgid "Display on PB forms"
1413
  msgstr ""
1414
 
1415
+ #: admin/manage-fields.php:131
1416
  msgid "PB Login"
1417
  msgstr ""
1418
 
1419
+ #: admin/manage-fields.php:131
1420
  msgid "PB Register"
1421
  msgstr ""
1422
 
1423
+ #: admin/manage-fields.php:131
1424
  msgid "PB Recover Password"
1425
  msgstr ""
1426
 
1427
+ #: admin/manage-fields.php:131
1428
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1429
  msgstr ""
1430
 
1431
+ #: admin/manage-fields.php:132
1432
  msgid "Display on default WP forms"
1433
  msgstr ""
1434
 
1435
+ #: admin/manage-fields.php:132
1436
  msgid "Default WP Login"
1437
  msgstr ""
1438
 
1439
+ #: admin/manage-fields.php:132
1440
  msgid "Default WP Register"
1441
  msgstr ""
1442
 
1443
+ #: admin/manage-fields.php:132
1444
  msgid "Default WP Recover Password"
1445
  msgstr ""
1446
 
1447
+ #: admin/manage-fields.php:132
1448
  msgid "Select on which default WP forms to display reCAPTCHA"
1449
  msgstr ""
1450
 
1451
+ #: admin/manage-fields.php:138 admin/manage-fields.php:139
1452
+ #: admin/manage-fields.php:140
 
1453
  msgid "Default option of the field"
1454
  msgstr ""
1455
 
1456
+ #: admin/manage-fields.php:279
1457
+ #: front-end/extra-fields/select-country/select-country.php:10
1458
  msgid "Afghanistan"
1459
  msgstr "Afghanistan"
1460
 
1461
+ #: admin/manage-fields.php:280
1462
+ #: front-end/extra-fields/select-country/select-country.php:10
1463
  msgid "Aland Islands"
1464
  msgstr "Aland Islands"
1465
 
1466
+ #: admin/manage-fields.php:281
1467
+ #: front-end/extra-fields/select-country/select-country.php:10
1468
  msgid "Albania"
1469
  msgstr "Albania"
1470
 
1471
+ #: admin/manage-fields.php:282
1472
+ #: front-end/extra-fields/select-country/select-country.php:10
1473
  msgid "Algeria"
1474
  msgstr "Algeria"
1475
 
1476
+ #: admin/manage-fields.php:283
1477
+ #: front-end/extra-fields/select-country/select-country.php:10
1478
  msgid "American Samoa"
1479
  msgstr "American Samoa"
1480
 
1481
+ #: admin/manage-fields.php:284
1482
+ #: front-end/extra-fields/select-country/select-country.php:10
1483
  msgid "Andorra"
1484
  msgstr "Andorra"
1485
 
1486
+ #: admin/manage-fields.php:285
1487
+ #: front-end/extra-fields/select-country/select-country.php:10
1488
  msgid "Angola"
1489
  msgstr "Angola"
1490
 
1491
+ #: admin/manage-fields.php:286
1492
+ #: front-end/extra-fields/select-country/select-country.php:10
1493
  msgid "Anguilla"
1494
  msgstr "Anguilla"
1495
 
1496
+ #: admin/manage-fields.php:287
1497
+ #: front-end/extra-fields/select-country/select-country.php:10
1498
  msgid "Antarctica"
1499
  msgstr "Antarctica"
1500
 
1501
+ #: admin/manage-fields.php:288
1502
+ #: front-end/extra-fields/select-country/select-country.php:10
1503
  msgid "Antigua and Barbuda"
1504
  msgstr "Antigua and Barbuda"
1505
 
1506
+ #: admin/manage-fields.php:289
1507
+ #: front-end/extra-fields/select-country/select-country.php:10
1508
  msgid "Argentina"
1509
  msgstr "Argentina"
1510
 
1511
+ #: admin/manage-fields.php:290
1512
+ #: front-end/extra-fields/select-country/select-country.php:10
1513
  msgid "Armenia"
1514
  msgstr "Armenia"
1515
 
1516
+ #: admin/manage-fields.php:291
1517
+ #: front-end/extra-fields/select-country/select-country.php:10
1518
  msgid "Aruba"
1519
  msgstr "Aruba"
1520
 
1521
+ #: admin/manage-fields.php:292
1522
+ #: front-end/extra-fields/select-country/select-country.php:10
1523
  msgid "Australia"
1524
  msgstr "Australia"
1525
 
1526
+ #: admin/manage-fields.php:293
1527
+ #: front-end/extra-fields/select-country/select-country.php:10
1528
  msgid "Austria"
1529
  msgstr "Austria"
1530
 
1531
+ #: admin/manage-fields.php:294
1532
+ #: front-end/extra-fields/select-country/select-country.php:10
1533
  msgid "Azerbaijan"
1534
  msgstr "Azerbaijan"
1535
 
1536
+ #: admin/manage-fields.php:295
1537
+ #: front-end/extra-fields/select-country/select-country.php:10
1538
  msgid "Bahamas"
1539
  msgstr "Bahamas"
1540
 
1541
+ #: admin/manage-fields.php:296
1542
+ #: front-end/extra-fields/select-country/select-country.php:10
1543
  msgid "Bahrain"
1544
  msgstr "Bahrain"
1545
 
1546
+ #: admin/manage-fields.php:297
1547
+ #: front-end/extra-fields/select-country/select-country.php:10
1548
  msgid "Bangladesh"
1549
  msgstr "Bangladesh"
1550
 
1551
+ #: admin/manage-fields.php:298
1552
+ #: front-end/extra-fields/select-country/select-country.php:10
1553
  msgid "Barbados"
1554
  msgstr "Barbados"
1555
 
1556
+ #: admin/manage-fields.php:299
1557
+ #: front-end/extra-fields/select-country/select-country.php:10
1558
  msgid "Belarus"
1559
  msgstr "Belarus"
1560
 
1561
+ #: admin/manage-fields.php:300
1562
+ #: front-end/extra-fields/select-country/select-country.php:10
1563
  msgid "Belgium"
1564
  msgstr "Belgium"
1565
 
1566
+ #: admin/manage-fields.php:301
1567
+ #: front-end/extra-fields/select-country/select-country.php:10
1568
  msgid "Belize"
1569
  msgstr "Belize"
1570
 
1571
+ #: admin/manage-fields.php:302
1572
+ #: front-end/extra-fields/select-country/select-country.php:10
1573
  msgid "Benin"
1574
  msgstr "Benin"
1575
 
1576
+ #: admin/manage-fields.php:303
1577
+ #: front-end/extra-fields/select-country/select-country.php:10
1578
  msgid "Bermuda"
1579
  msgstr "Bermuda"
1580
 
1581
+ #: admin/manage-fields.php:304
1582
+ #: front-end/extra-fields/select-country/select-country.php:10
1583
  msgid "Bhutan"
1584
  msgstr "Bhutan"
1585
 
1586
+ #: admin/manage-fields.php:305
1587
  msgid "Bolivia"
1588
  msgstr "Bolivia"
1589
 
1590
+ #: admin/manage-fields.php:306
1591
  msgid "Bonaire, Saint Eustatius and Saba"
1592
  msgstr "Bonaire, Saint Eustatius and Saba"
1593
 
1594
+ #: admin/manage-fields.php:307
1595
+ #: front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Bosnia and Herzegovina"
1597
  msgstr "Bosnia and Herzegovina"
1598
 
1599
+ #: admin/manage-fields.php:308
1600
+ #: front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Botswana"
1602
  msgstr "Botswana"
1603
 
1604
+ #: admin/manage-fields.php:309
1605
+ #: front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Bouvet Island"
1607
  msgstr "Bouvet Island"
1608
 
1609
+ #: admin/manage-fields.php:310
1610
+ #: front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "Brazil"
1612
  msgstr "Brazil"
1613
 
1614
+ #: admin/manage-fields.php:311
1615
+ #: front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "British Indian Ocean Territory"
1617
  msgstr "British Indian Ocean Territory"
1618
 
1619
+ #: admin/manage-fields.php:312
1620
  msgid "British Virgin Islands"
1621
  msgstr "British Virgin Islands"
1622
 
1623
+ #: admin/manage-fields.php:313
1624
  msgid "Brunei"
1625
  msgstr "Brunei"
1626
 
1627
+ #: admin/manage-fields.php:314
1628
+ #: front-end/extra-fields/select-country/select-country.php:10
1629
  msgid "Bulgaria"
1630
  msgstr "Bulgaria"
1631
 
1632
+ #: admin/manage-fields.php:315
1633
+ #: front-end/extra-fields/select-country/select-country.php:10
1634
  msgid "Burkina Faso"
1635
  msgstr "Burkina Faso"
1636
 
1637
+ #: admin/manage-fields.php:316
1638
+ #: front-end/extra-fields/select-country/select-country.php:10
1639
  msgid "Burundi"
1640
  msgstr "Burundi"
1641
 
1642
+ #: admin/manage-fields.php:317
1643
+ #: front-end/extra-fields/select-country/select-country.php:10
1644
  msgid "Cambodia"
1645
  msgstr "Cambodia"
1646
 
1647
+ #: admin/manage-fields.php:318
1648
+ #: front-end/extra-fields/select-country/select-country.php:10
1649
  msgid "Cameroon"
1650
  msgstr "Cameroon"
1651
 
1652
+ #: admin/manage-fields.php:319
1653
+ #: front-end/extra-fields/select-country/select-country.php:10
1654
  msgid "Canada"
1655
  msgstr "Canada"
1656
 
1657
+ #: admin/manage-fields.php:320
1658
  msgid "Cape Verde"
1659
  msgstr "Cape Verde"
1660
 
1661
+ #: admin/manage-fields.php:321
1662
+ #: front-end/extra-fields/select-country/select-country.php:10
1663
  msgid "Cayman Islands"
1664
  msgstr "Cayman Islands"
1665
 
1666
+ #: admin/manage-fields.php:322
1667
+ #: front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Central African Republic"
1669
  msgstr "Central African Republic"
1670
 
1671
+ #: admin/manage-fields.php:323
1672
+ #: front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Chad"
1674
  msgstr "Chad"
1675
 
1676
+ #: admin/manage-fields.php:324
1677
+ #: front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Chile"
1679
  msgstr "Chile"
1680
 
1681
+ #: admin/manage-fields.php:325
1682
+ #: front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "China"
1684
  msgstr "China"
1685
 
1686
+ #: admin/manage-fields.php:326
1687
+ #: front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "Christmas Island"
1689
  msgstr "Christmas Island"
1690
 
1691
+ #: admin/manage-fields.php:327
1692
  msgid "Cocos Islands"
1693
  msgstr "Cocos Islands"
1694
 
1695
+ #: admin/manage-fields.php:328
1696
+ #: front-end/extra-fields/select-country/select-country.php:10
1697
  msgid "Colombia"
1698
  msgstr "Colombia"
1699
 
1700
+ #: admin/manage-fields.php:329
1701
+ #: front-end/extra-fields/select-country/select-country.php:10
1702
  msgid "Comoros"
1703
  msgstr "Comoros"
1704
 
1705
+ #: admin/manage-fields.php:330
1706
+ #: front-end/extra-fields/select-country/select-country.php:10
1707
  msgid "Cook Islands"
1708
  msgstr "Cook Islands"
1709
 
1710
+ #: admin/manage-fields.php:331
1711
+ #: front-end/extra-fields/select-country/select-country.php:10
1712
  msgid "Costa Rica"
1713
  msgstr "Costa Rica"
1714
 
1715
+ #: admin/manage-fields.php:332
1716
+ #: front-end/extra-fields/select-country/select-country.php:10
1717
  msgid "Croatia"
1718
  msgstr "Croatia"
1719
 
1720
+ #: admin/manage-fields.php:333
1721
+ #: front-end/extra-fields/select-country/select-country.php:10
1722
  msgid "Cuba"
1723
  msgstr "Cuba"
1724
 
1725
+ #: admin/manage-fields.php:334
1726
+ #: front-end/extra-fields/select-country/select-country.php:10
1727
  msgid "Curacao"
1728
  msgstr "Curacao"
1729
 
1730
+ #: admin/manage-fields.php:335
1731
+ #: front-end/extra-fields/select-country/select-country.php:10
1732
  msgid "Cyprus"
1733
  msgstr "Cyprus"
1734
 
1735
+ #: admin/manage-fields.php:336
1736
+ #: front-end/extra-fields/select-country/select-country.php:10
1737
  msgid "Czech Republic"
1738
  msgstr "Czech Republic"
1739
 
1740
+ #: admin/manage-fields.php:337
1741
  msgid "Democratic Republic of the Congo"
1742
  msgstr "Democratic Republic of the Congo"
1743
 
1744
+ #: admin/manage-fields.php:338
1745
+ #: front-end/extra-fields/select-country/select-country.php:10
1746
  msgid "Denmark"
1747
  msgstr "Denmark"
1748
 
1749
+ #: admin/manage-fields.php:339
1750
+ #: front-end/extra-fields/select-country/select-country.php:10
1751
  msgid "Djibouti"
1752
  msgstr "Djibouti"
1753
 
1754
+ #: admin/manage-fields.php:340
1755
+ #: front-end/extra-fields/select-country/select-country.php:10
1756
  msgid "Dominica"
1757
  msgstr "Dominica"
1758
 
1759
+ #: admin/manage-fields.php:341
1760
+ #: front-end/extra-fields/select-country/select-country.php:10
1761
  msgid "Dominican Republic"
1762
  msgstr "Dominican Republic"
1763
 
1764
+ #: admin/manage-fields.php:342
1765
  msgid "East Timor"
1766
  msgstr "East Timor"
1767
 
1768
+ #: admin/manage-fields.php:343
1769
+ #: front-end/extra-fields/select-country/select-country.php:10
1770
  msgid "Ecuador"
1771
  msgstr "Ecuador"
1772
 
1773
+ #: admin/manage-fields.php:344
1774
+ #: front-end/extra-fields/select-country/select-country.php:10
1775
  msgid "Egypt"
1776
  msgstr "Egypt"
1777
 
1778
+ #: admin/manage-fields.php:345
1779
+ #: front-end/extra-fields/select-country/select-country.php:10
1780
  msgid "El Salvador"
1781
  msgstr "El Salvador"
1782
 
1783
+ #: admin/manage-fields.php:346
1784
+ #: front-end/extra-fields/select-country/select-country.php:10
1785
  msgid "Equatorial Guinea"
1786
  msgstr "Equatorial Guinea"
1787
 
1788
+ #: admin/manage-fields.php:347
1789
+ #: front-end/extra-fields/select-country/select-country.php:10
1790
  msgid "Eritrea"
1791
  msgstr "Eritrea"
1792
 
1793
+ #: admin/manage-fields.php:348
1794
+ #: front-end/extra-fields/select-country/select-country.php:10
1795
  msgid "Estonia"
1796
  msgstr "Estonia"
1797
 
1798
+ #: admin/manage-fields.php:349
1799
+ #: front-end/extra-fields/select-country/select-country.php:10
1800
  msgid "Ethiopia"
1801
  msgstr "Ethiopia"
1802
 
1803
+ #: admin/manage-fields.php:350
1804
  msgid "Falkland Islands"
1805
  msgstr "Falkland Islands"
1806
 
1807
+ #: admin/manage-fields.php:351
1808
+ #: front-end/extra-fields/select-country/select-country.php:10
1809
  msgid "Faroe Islands"
1810
  msgstr "Faroe Islands"
1811
 
1812
+ #: admin/manage-fields.php:352
1813
+ #: front-end/extra-fields/select-country/select-country.php:10
1814
  msgid "Fiji"
1815
  msgstr "Fiji"
1816
 
1817
+ #: admin/manage-fields.php:353
1818
+ #: front-end/extra-fields/select-country/select-country.php:10
1819
  msgid "Finland"
1820
  msgstr "Finland"
1821
 
1822
+ #: admin/manage-fields.php:354
1823
+ #: front-end/extra-fields/select-country/select-country.php:10
1824
  msgid "France"
1825
  msgstr "France"
1826
 
1827
+ #: admin/manage-fields.php:355
1828
+ #: front-end/extra-fields/select-country/select-country.php:10
1829
  msgid "French Guiana"
1830
  msgstr "French Guiana"
1831
 
1832
+ #: admin/manage-fields.php:356
1833
+ #: front-end/extra-fields/select-country/select-country.php:10
1834
  msgid "French Polynesia"
1835
  msgstr "French Polynesia"
1836
 
1837
+ #: admin/manage-fields.php:357
1838
+ #: front-end/extra-fields/select-country/select-country.php:10
1839
  msgid "French Southern Territories"
1840
  msgstr "French Southern Territories"
1841
 
1842
+ #: admin/manage-fields.php:358
1843
+ #: front-end/extra-fields/select-country/select-country.php:10
1844
  msgid "Gabon"
1845
  msgstr "Gabon"
1846
 
1847
+ #: admin/manage-fields.php:359
1848
+ #: front-end/extra-fields/select-country/select-country.php:10
1849
  msgid "Gambia"
1850
  msgstr "Gambia"
1851
 
1852
+ #: admin/manage-fields.php:360
1853
+ #: front-end/extra-fields/select-country/select-country.php:10
1854
  msgid "Georgia"
1855
  msgstr "Georgia"
1856
 
1857
+ #: admin/manage-fields.php:361
1858
+ #: front-end/extra-fields/select-country/select-country.php:10
1859
  msgid "Germany"
1860
  msgstr "Germany"
1861
 
1862
+ #: admin/manage-fields.php:362
1863
+ #: front-end/extra-fields/select-country/select-country.php:10
1864
  msgid "Ghana"
1865
  msgstr "Ghana"
1866
 
1867
+ #: admin/manage-fields.php:363
1868
+ #: front-end/extra-fields/select-country/select-country.php:10
1869
  msgid "Gibraltar"
1870
  msgstr "Gibraltar"
1871
 
1872
+ #: admin/manage-fields.php:364
1873
+ #: front-end/extra-fields/select-country/select-country.php:10
1874
  msgid "Greece"
1875
  msgstr "Greece"
1876
 
1877
+ #: admin/manage-fields.php:365
1878
+ #: front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Greenland"
1880
  msgstr "Greenland"
1881
 
1882
+ #: admin/manage-fields.php:366
1883
+ #: front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Grenada"
1885
  msgstr "Grenada"
1886
 
1887
+ #: admin/manage-fields.php:367
1888
+ #: front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Guadeloupe"
1890
  msgstr "Guadeloupe"
1891
 
1892
+ #: admin/manage-fields.php:368
1893
+ #: front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Guam"
1895
  msgstr "Guam"
1896
 
1897
+ #: admin/manage-fields.php:369
1898
+ #: front-end/extra-fields/select-country/select-country.php:10
1899
  msgid "Guatemala"
1900
  msgstr "Guatemala"
1901
 
1902
+ #: admin/manage-fields.php:370
1903
+ #: front-end/extra-fields/select-country/select-country.php:10
1904
  msgid "Guernsey"
1905
  msgstr "Guernsey"
1906
 
1907
+ #: admin/manage-fields.php:371
1908
+ #: front-end/extra-fields/select-country/select-country.php:10
1909
  msgid "Guinea"
1910
  msgstr "Guinea"
1911
 
1912
+ #: admin/manage-fields.php:372
1913
+ #: front-end/extra-fields/select-country/select-country.php:10
1914
  msgid "Guinea-Bissau"
1915
  msgstr "Guinea-Bissau"
1916
 
1917
+ #: admin/manage-fields.php:373
1918
+ #: front-end/extra-fields/select-country/select-country.php:10
1919
  msgid "Guyana"
1920
  msgstr "Guyana"
1921
 
1922
+ #: admin/manage-fields.php:374
1923
+ #: front-end/extra-fields/select-country/select-country.php:10
1924
  msgid "Haiti"
1925
  msgstr "Haiti"
1926
 
1927
+ #: admin/manage-fields.php:375
1928
+ #: front-end/extra-fields/select-country/select-country.php:10
1929
  msgid "Heard Island and McDonald Islands"
1930
  msgstr "Heard Island and McDonald Islands"
1931
 
1932
+ #: admin/manage-fields.php:376
1933
+ #: front-end/extra-fields/select-country/select-country.php:10
1934
  msgid "Honduras"
1935
  msgstr "Honduras"
1936
 
1937
+ #: admin/manage-fields.php:377
1938
+ #: front-end/extra-fields/select-country/select-country.php:10
1939
  msgid "Hong Kong"
1940
  msgstr "Hong Kong"
1941
 
1942
+ #: admin/manage-fields.php:378
1943
+ #: front-end/extra-fields/select-country/select-country.php:10
1944
  msgid "Hungary"
1945
  msgstr "Hungary"
1946
 
1947
+ #: admin/manage-fields.php:379
1948
+ #: front-end/extra-fields/select-country/select-country.php:10
1949
  msgid "Iceland"
1950
  msgstr "Iceland"
1951
 
1952
+ #: admin/manage-fields.php:380
1953
+ #: front-end/extra-fields/select-country/select-country.php:10
1954
  msgid "India"
1955
  msgstr "India"
1956
 
1957
+ #: admin/manage-fields.php:381
1958
+ #: front-end/extra-fields/select-country/select-country.php:10
1959
  msgid "Indonesia"
1960
  msgstr "Indonesia"
1961
 
1962
+ #: admin/manage-fields.php:382
1963
  msgid "Iran"
1964
  msgstr "Iran"
1965
 
1966
+ #: admin/manage-fields.php:383
1967
+ #: front-end/extra-fields/select-country/select-country.php:10
1968
  msgid "Iraq"
1969
  msgstr "Iraq"
1970
 
1971
+ #: admin/manage-fields.php:384
1972
+ #: front-end/extra-fields/select-country/select-country.php:10
1973
  msgid "Ireland"
1974
  msgstr "Ireland"
1975
 
1976
+ #: admin/manage-fields.php:385
1977
+ #: front-end/extra-fields/select-country/select-country.php:10
1978
  msgid "Isle of Man"
1979
  msgstr "Isle of Man"
1980
 
1981
+ #: admin/manage-fields.php:386
1982
+ #: front-end/extra-fields/select-country/select-country.php:10
1983
  msgid "Israel"
1984
  msgstr "Israel"
1985
 
1986
+ #: admin/manage-fields.php:387
1987
+ #: front-end/extra-fields/select-country/select-country.php:10
1988
  msgid "Italy"
1989
  msgstr "Italy"
1990
 
1991
+ #: admin/manage-fields.php:388
1992
  msgid "Ivory Coast"
1993
  msgstr "Ivory Coast"
1994
 
1995
+ #: admin/manage-fields.php:389
1996
+ #: front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Jamaica"
1998
  msgstr "Jamaica"
1999
 
2000
+ #: admin/manage-fields.php:390
2001
+ #: front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Japan"
2003
  msgstr "Japan"
2004
 
2005
+ #: admin/manage-fields.php:391
2006
+ #: front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Jersey"
2008
  msgstr "Jersey"
2009
 
2010
+ #: admin/manage-fields.php:392
2011
+ #: front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Jordan"
2013
  msgstr "Jordan"
2014
 
2015
+ #: admin/manage-fields.php:393
2016
+ #: front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Kazakhstan"
2018
  msgstr "Kazakhstan"
2019
 
2020
+ #: admin/manage-fields.php:394
2021
+ #: front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Kenya"
2023
  msgstr "Kenya"
2024
 
2025
+ #: admin/manage-fields.php:395
2026
+ #: front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Kiribati"
2028
  msgstr "Kiribati"
2029
 
2030
+ #: admin/manage-fields.php:396
2031
  msgid "Kosovo"
2032
  msgstr "Kosovo"
2033
 
2034
+ #: admin/manage-fields.php:397
2035
+ #: front-end/extra-fields/select-country/select-country.php:10
2036
  msgid "Kuwait"
2037
  msgstr "Kuwait"
2038
 
2039
+ #: admin/manage-fields.php:398
2040
+ #: front-end/extra-fields/select-country/select-country.php:10
2041
  msgid "Kyrgyzstan"
2042
  msgstr "Kyrgyzstan"
2043
 
2044
+ #: admin/manage-fields.php:399
2045
  msgid "Laos"
2046
  msgstr "Laos"
2047
 
2048
+ #: admin/manage-fields.php:400
2049
+ #: front-end/extra-fields/select-country/select-country.php:10
2050
  msgid "Latvia"
2051
  msgstr "Latvia"
2052
 
2053
+ #: admin/manage-fields.php:401
2054
+ #: front-end/extra-fields/select-country/select-country.php:10
2055
  msgid "Lebanon"
2056
  msgstr "Lebanon"
2057
 
2058
+ #: admin/manage-fields.php:402
2059
+ #: front-end/extra-fields/select-country/select-country.php:10
2060
  msgid "Lesotho"
2061
  msgstr "Lesotho"
2062
 
2063
+ #: admin/manage-fields.php:403
2064
+ #: front-end/extra-fields/select-country/select-country.php:10
2065
  msgid "Liberia"
2066
  msgstr "Liberia"
2067
 
2068
+ #: admin/manage-fields.php:404
2069
+ #: front-end/extra-fields/select-country/select-country.php:10
2070
  msgid "Libya"
2071
  msgstr "Libya"
2072
 
2073
+ #: admin/manage-fields.php:405
2074
+ #: front-end/extra-fields/select-country/select-country.php:10
2075
  msgid "Liechtenstein"
2076
  msgstr "Liechtenstein"
2077
 
2078
+ #: admin/manage-fields.php:406
2079
+ #: front-end/extra-fields/select-country/select-country.php:10
2080
  msgid "Lithuania"
2081
  msgstr "Lithuania"
2082
 
2083
+ #: admin/manage-fields.php:407
2084
+ #: front-end/extra-fields/select-country/select-country.php:10
2085
  msgid "Luxembourg"
2086
  msgstr "Luxembourg"
2087
 
2088
+ #: admin/manage-fields.php:408
2089
+ #: front-end/extra-fields/select-country/select-country.php:10
2090
  msgid "Macao"
2091
  msgstr "Macao"
2092
 
2093
+ #: admin/manage-fields.php:409
2094
  msgid "Macedonia"
2095
  msgstr "Macedonia"
2096
 
2097
+ #: admin/manage-fields.php:410
2098
+ #: front-end/extra-fields/select-country/select-country.php:10
2099
  msgid "Madagascar"
2100
  msgstr "Madagascar"
2101
 
2102
+ #: admin/manage-fields.php:411
2103
+ #: front-end/extra-fields/select-country/select-country.php:10
2104
  msgid "Malawi"
2105
  msgstr "Malawi"
2106
 
2107
+ #: admin/manage-fields.php:412
2108
+ #: front-end/extra-fields/select-country/select-country.php:10
2109
  msgid "Malaysia"
2110
  msgstr "Malaysia"
2111
 
2112
+ #: admin/manage-fields.php:413
2113
+ #: front-end/extra-fields/select-country/select-country.php:10
2114
  msgid "Maldives"
2115
  msgstr "Maldives"
2116
 
2117
+ #: admin/manage-fields.php:414
2118
+ #: front-end/extra-fields/select-country/select-country.php:10
2119
  msgid "Mali"
2120
  msgstr "Mali"
2121
 
2122
+ #: admin/manage-fields.php:415
2123
+ #: front-end/extra-fields/select-country/select-country.php:10
2124
  msgid "Malta"
2125
  msgstr "Malta"
2126
 
2127
+ #: admin/manage-fields.php:416
2128
+ #: front-end/extra-fields/select-country/select-country.php:10
2129
  msgid "Marshall Islands"
2130
  msgstr "Marshall Islands"
2131
 
2132
+ #: admin/manage-fields.php:417
2133
+ #: front-end/extra-fields/select-country/select-country.php:10
2134
  msgid "Martinique"
2135
  msgstr "Martinique"
2136
 
2137
+ #: admin/manage-fields.php:418
2138
+ #: front-end/extra-fields/select-country/select-country.php:10
2139
  msgid "Mauritania"
2140
  msgstr "Mauritania"
2141
 
2142
+ #: admin/manage-fields.php:419
2143
+ #: front-end/extra-fields/select-country/select-country.php:10
2144
  msgid "Mauritius"
2145
  msgstr "Mauritius"
2146
 
2147
+ #: admin/manage-fields.php:420
2148
+ #: front-end/extra-fields/select-country/select-country.php:10
2149
  msgid "Mayotte"
2150
  msgstr "Mayotte"
2151
 
2152
+ #: admin/manage-fields.php:421
2153
+ #: front-end/extra-fields/select-country/select-country.php:10
2154
  msgid "Mexico"
2155
  msgstr "Mexico"
2156
 
2157
+ #: admin/manage-fields.php:422
2158
  msgid "Micronesia"
2159
  msgstr "Micronesia"
2160
 
2161
+ #: admin/manage-fields.php:423
2162
  msgid "Moldova"
2163
  msgstr "Moldova"
2164
 
2165
+ #: admin/manage-fields.php:424
2166
+ #: front-end/extra-fields/select-country/select-country.php:10
2167
  msgid "Monaco"
2168
  msgstr "Monaco"
2169
 
2170
+ #: admin/manage-fields.php:425
2171
+ #: front-end/extra-fields/select-country/select-country.php:10
2172
  msgid "Mongolia"
2173
  msgstr "Mongolia"
2174
 
2175
+ #: admin/manage-fields.php:426
2176
+ #: front-end/extra-fields/select-country/select-country.php:10
2177
  msgid "Montenegro"
2178
  msgstr "Montenegro"
2179
 
2180
+ #: admin/manage-fields.php:427
2181
+ #: front-end/extra-fields/select-country/select-country.php:10
2182
  msgid "Montserrat"
2183
  msgstr "Montserrat"
2184
 
2185
+ #: admin/manage-fields.php:428
2186
+ #: front-end/extra-fields/select-country/select-country.php:10
2187
  msgid "Morocco"
2188
  msgstr "Morocco"
2189
 
2190
+ #: admin/manage-fields.php:429
2191
+ #: front-end/extra-fields/select-country/select-country.php:10
2192
  msgid "Mozambique"
2193
  msgstr "Mozambique"
2194
 
2195
+ #: admin/manage-fields.php:430
2196
+ #: front-end/extra-fields/select-country/select-country.php:10
2197
  msgid "Myanmar"
2198
  msgstr "Myanmar"
2199
 
2200
+ #: admin/manage-fields.php:431
2201
+ #: front-end/extra-fields/select-country/select-country.php:10
2202
  msgid "Namibia"
2203
  msgstr "Namibia"
2204
 
2205
+ #: admin/manage-fields.php:432
2206
+ #: front-end/extra-fields/select-country/select-country.php:10
2207
  msgid "Nauru"
2208
  msgstr "Nauru"
2209
 
2210
+ #: admin/manage-fields.php:433
2211
+ #: front-end/extra-fields/select-country/select-country.php:10
2212
  msgid "Nepal"
2213
  msgstr "Nepal"
2214
 
2215
+ #: admin/manage-fields.php:434
2216
+ #: front-end/extra-fields/select-country/select-country.php:10
2217
  msgid "Netherlands"
2218
  msgstr "Netherlands"
2219
 
2220
+ #: admin/manage-fields.php:435
2221
+ #: front-end/extra-fields/select-country/select-country.php:10
2222
  msgid "New Caledonia"
2223
  msgstr "New Caledonia"
2224
 
2225
+ #: admin/manage-fields.php:436
2226
+ #: front-end/extra-fields/select-country/select-country.php:10
2227
  msgid "New Zealand"
2228
  msgstr "New Zealand"
2229
 
2230
+ #: admin/manage-fields.php:437
2231
+ #: front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Nicaragua"
2233
  msgstr "Nicaragua"
2234
 
2235
+ #: admin/manage-fields.php:438
2236
+ #: front-end/extra-fields/select-country/select-country.php:10
2237
  msgid "Niger"
2238
  msgstr "Niger"
2239
 
2240
+ #: admin/manage-fields.php:439
2241
+ #: front-end/extra-fields/select-country/select-country.php:10
2242
  msgid "Nigeria"
2243
  msgstr "Nigeria"
2244
 
2245
+ #: admin/manage-fields.php:440
2246
+ #: front-end/extra-fields/select-country/select-country.php:10
2247
  msgid "Niue"
2248
  msgstr "Niue"
2249
 
2250
+ #: admin/manage-fields.php:441
2251
+ #: front-end/extra-fields/select-country/select-country.php:10
2252
  msgid "Norfolk Island"
2253
  msgstr "Norfolk Island"
2254
 
2255
+ #: admin/manage-fields.php:442
2256
  msgid "North Korea"
2257
  msgstr "North Korea"
2258
 
2259
+ #: admin/manage-fields.php:443
2260
+ #: front-end/extra-fields/select-country/select-country.php:10
2261
  msgid "Northern Mariana Islands"
2262
  msgstr "Northern Mariana Islands"
2263
 
2264
+ #: admin/manage-fields.php:444
2265
+ #: front-end/extra-fields/select-country/select-country.php:10
2266
  msgid "Norway"
2267
  msgstr "Norway"
2268
 
2269
+ #: admin/manage-fields.php:445
2270
+ #: front-end/extra-fields/select-country/select-country.php:10
2271
  msgid "Oman"
2272
  msgstr "Oman"
2273
 
2274
+ #: admin/manage-fields.php:446
2275
+ #: front-end/extra-fields/select-country/select-country.php:10
2276
  msgid "Pakistan"
2277
  msgstr "Pakistan"
2278
 
2279
+ #: admin/manage-fields.php:447
2280
+ #: front-end/extra-fields/select-country/select-country.php:10
2281
  msgid "Palau"
2282
  msgstr "Palau"
2283
 
2284
+ #: admin/manage-fields.php:448
2285
  msgid "Palestinian Territory"
2286
  msgstr "Palestinian Territory"
2287
 
2288
+ #: admin/manage-fields.php:449
2289
+ #: front-end/extra-fields/select-country/select-country.php:10
2290
  msgid "Panama"
2291
  msgstr "Panama"
2292
 
2293
+ #: admin/manage-fields.php:450
2294
+ #: front-end/extra-fields/select-country/select-country.php:10
2295
  msgid "Papua New Guinea"
2296
  msgstr "Papua New Guinea"
2297
 
2298
+ #: admin/manage-fields.php:451
2299
+ #: front-end/extra-fields/select-country/select-country.php:10
2300
  msgid "Paraguay"
2301
  msgstr "Paraguay"
2302
 
2303
+ #: admin/manage-fields.php:452
2304
+ #: front-end/extra-fields/select-country/select-country.php:10
2305
  msgid "Peru"
2306
  msgstr "Peru"
2307
 
2308
+ #: admin/manage-fields.php:453
2309
+ #: front-end/extra-fields/select-country/select-country.php:10
2310
  msgid "Philippines"
2311
  msgstr "Philippines"
2312
 
2313
+ #: admin/manage-fields.php:454
2314
+ #: front-end/extra-fields/select-country/select-country.php:10
2315
  msgid "Pitcairn"
2316
  msgstr "Pitcairn"
2317
 
2318
+ #: admin/manage-fields.php:455
2319
+ #: front-end/extra-fields/select-country/select-country.php:10
2320
  msgid "Poland"
2321
  msgstr "Poland"
2322
 
2323
+ #: admin/manage-fields.php:456
2324
+ #: front-end/extra-fields/select-country/select-country.php:10
2325
  msgid "Portugal"
2326
  msgstr "Portugal"
2327
 
2328
+ #: admin/manage-fields.php:457
2329
+ #: front-end/extra-fields/select-country/select-country.php:10
2330
  msgid "Puerto Rico"
2331
  msgstr "Puerto Rico"
2332
 
2333
+ #: admin/manage-fields.php:458
2334
+ #: front-end/extra-fields/select-country/select-country.php:10
2335
  msgid "Qatar"
2336
  msgstr "Qatar"
2337
 
2338
+ #: admin/manage-fields.php:459
2339
  msgid "Republic of the Congo"
2340
  msgstr "Republic of the Congo"
2341
 
2342
+ #: admin/manage-fields.php:460
2343
+ #: front-end/extra-fields/select-country/select-country.php:10
2344
  msgid "Reunion"
2345
  msgstr "Reunion"
2346
 
2347
+ #: admin/manage-fields.php:461
2348
+ #: front-end/extra-fields/select-country/select-country.php:10
2349
  msgid "Romania"
2350
  msgstr "Romania"
2351
 
2352
+ #: admin/manage-fields.php:462
2353
  msgid "Russia"
2354
  msgstr "Russia"
2355
 
2356
+ #: admin/manage-fields.php:463
2357
+ #: front-end/extra-fields/select-country/select-country.php:10
2358
  msgid "Rwanda"
2359
  msgstr "Rwanda"
2360
 
2361
+ #: admin/manage-fields.php:464
2362
+ #: front-end/extra-fields/select-country/select-country.php:10
2363
  msgid "Saint Barthelemy"
2364
  msgstr "Saint Barthelemy"
2365
 
2366
+ #: admin/manage-fields.php:465
2367
  msgid "Saint Helena"
2368
  msgstr "Saint Helena"
2369
 
2370
+ #: admin/manage-fields.php:466
2371
+ #: front-end/extra-fields/select-country/select-country.php:10
2372
  msgid "Saint Kitts and Nevis"
2373
  msgstr "Saint Kitts and Nevis"
2374
 
2375
+ #: admin/manage-fields.php:467
2376
+ #: front-end/extra-fields/select-country/select-country.php:10
2377
  msgid "Saint Lucia"
2378
  msgstr "Saint Lucia"
2379
 
2380
+ #: admin/manage-fields.php:468
2381
  msgid "Saint Martin"
2382
  msgstr "Saint Martin"
2383
 
2384
+ #: admin/manage-fields.php:469
2385
+ #: front-end/extra-fields/select-country/select-country.php:10
2386
  msgid "Saint Pierre and Miquelon"
2387
  msgstr "Saint Pierre and Miquelon"
2388
 
2389
+ #: admin/manage-fields.php:470
2390
+ #: front-end/extra-fields/select-country/select-country.php:10
2391
  msgid "Saint Vincent and the Grenadines"
2392
  msgstr "Saint Vincent and the Grenadines"
2393
 
2394
+ #: admin/manage-fields.php:471
2395
+ #: front-end/extra-fields/select-country/select-country.php:10
2396
  msgid "Samoa"
2397
  msgstr "Samoa"
2398
 
2399
+ #: admin/manage-fields.php:472
2400
+ #: front-end/extra-fields/select-country/select-country.php:10
2401
  msgid "San Marino"
2402
  msgstr "San Marino"
2403
 
2404
+ #: admin/manage-fields.php:473
2405
+ #: front-end/extra-fields/select-country/select-country.php:10
2406
  msgid "Sao Tome and Principe"
2407
  msgstr "Sao Tome and Principe"
2408
 
2409
+ #: admin/manage-fields.php:474
2410
+ #: front-end/extra-fields/select-country/select-country.php:10
2411
  msgid "Saudi Arabia"
2412
  msgstr "Saudi Arabia"
2413
 
2414
+ #: admin/manage-fields.php:475
2415
+ #: front-end/extra-fields/select-country/select-country.php:10
2416
  msgid "Senegal"
2417
  msgstr "Senegal"
2418
 
2419
+ #: admin/manage-fields.php:476
2420
+ #: front-end/extra-fields/select-country/select-country.php:10
2421
  msgid "Serbia"
2422
  msgstr "Serbia"
2423
 
2424
+ #: admin/manage-fields.php:477
2425
+ #: front-end/extra-fields/select-country/select-country.php:10
2426
  msgid "Seychelles"
2427
  msgstr "Seychelles"
2428
 
2429
+ #: admin/manage-fields.php:478
2430
+ #: front-end/extra-fields/select-country/select-country.php:10
2431
  msgid "Sierra Leone"
2432
  msgstr "Sierra Leone"
2433
 
2434
+ #: admin/manage-fields.php:479
2435
+ #: front-end/extra-fields/select-country/select-country.php:10
2436
  msgid "Singapore"
2437
  msgstr "Singapore"
2438
 
2439
+ #: admin/manage-fields.php:480
2440
  msgid "Sint Maarten"
2441
  msgstr "Sint Maarten"
2442
 
2443
+ #: admin/manage-fields.php:481
2444
+ #: front-end/extra-fields/select-country/select-country.php:10
2445
  msgid "Slovakia"
2446
  msgstr "Slovakia"
2447
 
2448
+ #: admin/manage-fields.php:482
2449
+ #: front-end/extra-fields/select-country/select-country.php:10
2450
  msgid "Slovenia"
2451
  msgstr "Slovenia"
2452
 
2453
+ #: admin/manage-fields.php:483
2454
+ #: front-end/extra-fields/select-country/select-country.php:10
2455
  msgid "Solomon Islands"
2456
  msgstr "Solomon Islands"
2457
 
2458
+ #: admin/manage-fields.php:484
2459
+ #: front-end/extra-fields/select-country/select-country.php:10
2460
  msgid "Somalia"
2461
  msgstr "Somalia"
2462
 
2463
+ #: admin/manage-fields.php:485
2464
+ #: front-end/extra-fields/select-country/select-country.php:10
2465
  msgid "South Africa"
2466
  msgstr "South Africa"
2467
 
2468
+ #: admin/manage-fields.php:486
2469
+ #: front-end/extra-fields/select-country/select-country.php:10
2470
  msgid "South Georgia and the South Sandwich Islands"
2471
  msgstr "South Georgia and the South Sandwich Islands"
2472
 
2473
+ #: admin/manage-fields.php:487
2474
  msgid "South Korea"
2475
  msgstr "South Korea"
2476
 
2477
+ #: admin/manage-fields.php:488
2478
+ #: front-end/extra-fields/select-country/select-country.php:10
2479
  msgid "South Sudan"
2480
  msgstr "South Sudan"
2481
 
2482
+ #: admin/manage-fields.php:489
2483
+ #: front-end/extra-fields/select-country/select-country.php:10
2484
  msgid "Spain"
2485
  msgstr "Spain"
2486
 
2487
+ #: admin/manage-fields.php:490
2488
+ #: front-end/extra-fields/select-country/select-country.php:10
2489
  msgid "Sri Lanka"
2490
  msgstr "Sri Lanka"
2491
 
2492
+ #: admin/manage-fields.php:491
2493
+ #: front-end/extra-fields/select-country/select-country.php:10
2494
  msgid "Sudan"
2495
  msgstr "Sudan"
2496
 
2497
+ #: admin/manage-fields.php:492
2498
+ #: front-end/extra-fields/select-country/select-country.php:10
2499
  msgid "Suriname"
2500
  msgstr "Suriname"
2501
 
2502
+ #: admin/manage-fields.php:493
2503
+ #: front-end/extra-fields/select-country/select-country.php:10
2504
  msgid "Svalbard and Jan Mayen"
2505
  msgstr "Svalbard and Jan Mayen"
2506
 
2507
+ #: admin/manage-fields.php:494
2508
+ #: front-end/extra-fields/select-country/select-country.php:10
2509
  msgid "Swaziland"
2510
  msgstr "Swaziland"
2511
 
2512
+ #: admin/manage-fields.php:495
2513
+ #: front-end/extra-fields/select-country/select-country.php:10
2514
  msgid "Sweden"
2515
  msgstr "Sweden"
2516
 
2517
+ #: admin/manage-fields.php:496
2518
+ #: front-end/extra-fields/select-country/select-country.php:10
2519
  msgid "Switzerland"
2520
  msgstr "Switzerland"
2521
 
2522
+ #: admin/manage-fields.php:497
2523
  msgid "Syria"
2524
  msgstr "Syria"
2525
 
2526
+ #: admin/manage-fields.php:498
2527
  msgid "Taiwan"
2528
  msgstr "Taiwan"
2529
 
2530
+ #: admin/manage-fields.php:499
2531
+ #: front-end/extra-fields/select-country/select-country.php:10
2532
  msgid "Tajikistan"
2533
  msgstr "Tajikistan"
2534
 
2535
+ #: admin/manage-fields.php:500
2536
  msgid "Tanzania"
2537
  msgstr "Tanzania"
2538
 
2539
+ #: admin/manage-fields.php:501
2540
+ #: front-end/extra-fields/select-country/select-country.php:10
2541
  msgid "Thailand"
2542
  msgstr "Thailand"
2543
 
2544
+ #: admin/manage-fields.php:502
2545
+ #: front-end/extra-fields/select-country/select-country.php:10
2546
  msgid "Togo"
2547
  msgstr "Togo"
2548
 
2549
+ #: admin/manage-fields.php:503
2550
+ #: front-end/extra-fields/select-country/select-country.php:10
2551
  msgid "Tokelau"
2552
  msgstr "Tokelau"
2553
 
2554
+ #: admin/manage-fields.php:504
2555
+ #: front-end/extra-fields/select-country/select-country.php:10
2556
  msgid "Tonga"
2557
  msgstr "Tonga"
2558
 
2559
+ #: admin/manage-fields.php:505
2560
+ #: front-end/extra-fields/select-country/select-country.php:10
2561
  msgid "Trinidad and Tobago"
2562
  msgstr "Trinidad and Tobago"
2563
 
2564
+ #: admin/manage-fields.php:506
2565
+ #: front-end/extra-fields/select-country/select-country.php:10
2566
  msgid "Tunisia"
2567
  msgstr "Tunisia"
2568
 
2569
+ #: admin/manage-fields.php:507
2570
+ #: front-end/extra-fields/select-country/select-country.php:10
2571
  msgid "Turkey"
2572
  msgstr "Turkey"
2573
 
2574
+ #: admin/manage-fields.php:508
2575
+ #: front-end/extra-fields/select-country/select-country.php:10
2576
  msgid "Turkmenistan"
2577
  msgstr "Turkmenistan"
2578
 
2579
+ #: admin/manage-fields.php:509
2580
+ #: front-end/extra-fields/select-country/select-country.php:10
2581
  msgid "Turks and Caicos Islands"
2582
  msgstr "Turks and Caicos Islands"
2583
 
2584
+ #: admin/manage-fields.php:510
2585
+ #: front-end/extra-fields/select-country/select-country.php:10
2586
  msgid "Tuvalu"
2587
  msgstr "Tuvalu"
2588
 
2589
+ #: admin/manage-fields.php:511
2590
  msgid "U.S. Virgin Islands"
2591
  msgstr "U.S. Virgin Islands"
2592
 
2593
+ #: admin/manage-fields.php:512
2594
+ #: front-end/extra-fields/select-country/select-country.php:10
2595
  msgid "Uganda"
2596
  msgstr "Uganda"
2597
 
2598
+ #: admin/manage-fields.php:513
2599
+ #: front-end/extra-fields/select-country/select-country.php:10
2600
  msgid "Ukraine"
2601
  msgstr "Ukraine"
2602
 
2603
+ #: admin/manage-fields.php:514
2604
+ #: front-end/extra-fields/select-country/select-country.php:10
2605
  msgid "United Arab Emirates"
2606
  msgstr "United Arab Emirates"
2607
 
2608
+ #: admin/manage-fields.php:515
2609
+ #: front-end/extra-fields/select-country/select-country.php:10
2610
  msgid "United Kingdom"
2611
  msgstr "United Kingdom"
2612
 
2613
+ #: admin/manage-fields.php:516
2614
+ #: front-end/extra-fields/select-country/select-country.php:10
2615
  msgid "United States"
2616
  msgstr "United States"
2617
 
2618
+ #: admin/manage-fields.php:517
2619
+ #: front-end/extra-fields/select-country/select-country.php:10
2620
  msgid "United States Minor Outlying Islands"
2621
  msgstr "United States Minor Outlying Islands"
2622
 
2623
+ #: admin/manage-fields.php:518
2624
+ #: front-end/extra-fields/select-country/select-country.php:10
2625
  msgid "Uruguay"
2626
  msgstr "Uruguay"
2627
 
2628
+ #: admin/manage-fields.php:519
2629
+ #: front-end/extra-fields/select-country/select-country.php:10
2630
  msgid "Uzbekistan"
2631
  msgstr "Uzbekistan"
2632
 
2633
+ #: admin/manage-fields.php:520
2634
+ #: front-end/extra-fields/select-country/select-country.php:10
2635
  msgid "Vanuatu"
2636
  msgstr "Vanuatu"
2637
 
2638
+ #: admin/manage-fields.php:521
2639
  msgid "Vatican"
2640
  msgstr "Vatican"
2641
 
2642
+ #: admin/manage-fields.php:522
2643
  msgid "Venezuela"
2644
  msgstr "Venezuela"
2645
 
2646
+ #: admin/manage-fields.php:523
2647
  msgid "Vietnam"
2648
  msgstr "Vietnam"
2649
 
2650
+ #: admin/manage-fields.php:524
2651
+ #: front-end/extra-fields/select-country/select-country.php:10
2652
  msgid "Wallis and Futuna"
2653
  msgstr "Wallis and Futuna"
2654
 
2655
+ #: admin/manage-fields.php:525
2656
+ #: front-end/extra-fields/select-country/select-country.php:10
2657
  msgid "Western Sahara"
2658
  msgstr "Western Sahara"
2659
 
2660
+ #: admin/manage-fields.php:526
2661
+ #: front-end/extra-fields/select-country/select-country.php:10
2662
  msgid "Yemen"
2663
  msgstr "Yemen"
2664
 
2665
+ #: admin/manage-fields.php:527
2666
+ #: front-end/extra-fields/select-country/select-country.php:10
2667
  msgid "Zambia"
2668
  msgstr "Zambia"
2669
 
2670
+ #: admin/manage-fields.php:528
2671
+ #: front-end/extra-fields/select-country/select-country.php:10
2672
  msgid "Zimbabwe"
2673
  msgstr "Zimbabwe"
2674
 
2675
+ #: admin/manage-fields.php:1216
2676
  msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2677
  msgstr ""
2678
 
2679
+ #: assets/misc/plugin-compatibilities.php:237
2680
  msgid "Your account has to be confirmed by an administrator before you can log in."
2681
  msgstr ""
2682
 
2683
+ #: features/admin-approval/admin-approval.php:214
2684
  msgid "Your account has been successfully created!"
2685
  msgstr ""
2686
 
2687
+ #: features/functions.php:678
2688
+ #: front-end/extra-fields/recaptcha/recaptcha.php:374
2689
+ #: front-end/extra-fields/recaptcha/recaptcha.php:379
2690
+ #: front-end/extra-fields/recaptcha/recaptcha.php:421
2691
+ #: front-end/extra-fields/recaptcha/recaptcha.php:458
2692
  msgid "Please enter a (valid) reCAPTCHA value"
2693
  msgstr ""
2694
 
2695
+ #: front-end/extra-fields/recaptcha/recaptcha.php:421
2696
  msgid "Click the BACK button on your browser, and try again."
2697
  msgstr ""
2698
 
2699
+ #: front-end/extra-fields/upload/upload_helper_functions.php:78
2700
+ #: front-end/extra-fields/upload/upload_helper_functions.php:87
2701
  msgid "Sorry, you cannot upload this file type for this field."
2702
  msgstr ""
2703
 
2704
+ #: front-end/extra-fields/upload/upload_helper_functions.php:94
2705
  msgid "An error occurred, please try again later."
2706
  msgstr ""
2707
 
2708
+ #: modules/user-listing/userlisting.php:282
2709
  msgid "More"
2710
  msgstr ""
2711
 
2712
+ #: modules/user-listing/userlisting.php:376
2713
  msgid "You do not have permission to view this user list."
2714
  msgstr ""
2715
 
2716
+ #: modules/user-listing/userlisting.php:389
2717
  msgid "You do not have the required user role to view this user list."
2718
  msgstr ""
2719
 
2720
+ #: modules/user-listing/userlisting.php:2186
2721
  msgid "Ascending"
2722
  msgstr ""
2723
 
2724
+ #: modules/user-listing/userlisting.php:2187
2725
  msgid "Descending"
2726
  msgstr ""
2727
 
2728
+ #: admin/add-ons.php:148 admin/add-ons.php:248
2729
+ #: admin/pms-cross-promotion.php:134 admin/pms-cross-promotion.php:213
 
 
2730
  msgid "Download Now"
2731
  msgstr "现在下载"
2732
 
2733
+ #: admin/admin-functions.php:200
2734
  msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2735
  msgstr ""
2736
 
2737
+ #: admin/manage-fields.php:80
2738
  msgid "Choose one of the supported field types"
2739
  msgstr "请选择其中一个支持的类型"
2740
 
2741
+ #: admin/manage-fields.php:82
2742
  msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2743
  msgstr "网站秘钥"
2744
 
2745
+ #: admin/manage-fields.php:129
2746
  msgid "Site Key"
2747
  msgstr "网站秘钥"
2748
 
2749
+ #: admin/manage-fields.php:129
2750
  msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2751
  msgstr "网站秘钥"
2752
 
2753
+ #: admin/manage-fields.php:130
2754
  msgid "Secret Key"
2755
  msgstr ""
2756
 
2757
+ #: admin/manage-fields.php:130
2758
  msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2759
  msgstr ""
2760
 
2761
+ #: admin/manage-fields.php:1020
2762
  msgid "You must enter the site key\n"
2763
  msgstr ""
2764
 
2765
+ #: admin/manage-fields.php:1022
2766
  msgid "You must enter the secret key\n"
2767
  msgstr ""
2768
 
2769
+ #: admin/add-ons.php:10 admin/add-ons.php:32
 
2770
  msgid "Add-Ons"
2771
  msgstr "插件"
2772
 
2773
+ #: admin/add-ons.php:34 admin/add-ons.php:129 admin/add-ons.php:231
2774
+ #: admin/pms-cross-promotion.php:78 admin/pms-cross-promotion.php:114
2775
+ #: admin/pms-cross-promotion.php:193
 
 
 
2776
  msgid "Activate"
2777
  msgstr "激活"
2778
 
2779
+ #: admin/add-ons.php:36 admin/pms-cross-promotion.php:80
 
2780
  msgid "Downloading and installing..."
2781
  msgstr "正在下载并安装..."
2782
 
2783
+ #: admin/add-ons.php:37 admin/pms-cross-promotion.php:81
 
2784
  msgid "Installation complete"
2785
  msgstr "安装完成"
2786
 
2787
+ #: admin/add-ons.php:39
2788
  msgid "Add-On is Active"
2789
  msgstr "插件已激活"
2790
 
2791
+ #: admin/add-ons.php:40
2792
  msgid "Add-On has been activated"
2793
  msgstr "插件已激活"
2794
 
2795
+ #: admin/add-ons.php:41 admin/pms-cross-promotion.php:85
 
2796
  msgid "Retry Install"
2797
  msgstr "重新安装"
2798
 
2799
+ #: admin/add-ons.php:43 admin/add-ons.php:140
 
2800
  msgid "Add-On is <strong>active</strong>"
2801
  msgstr ""
2802
 
2803
+ #: admin/add-ons.php:44 admin/add-ons.php:138
 
2804
  msgid "Add-On is <strong>inactive</strong>"
2805
  msgstr ""
2806
 
2807
+ #: admin/add-ons.php:46 admin/add-ons.php:133 admin/add-ons.php:235
2808
+ #: admin/pms-cross-promotion.php:90 admin/pms-cross-promotion.php:118
2809
+ #: admin/pms-cross-promotion.php:197
 
 
 
2810
  msgid "Deactivate"
2811
  msgstr "未启用"
2812
 
2813
+ #: admin/add-ons.php:47
2814
  msgid "Add-On has been deactivated."
2815
  msgstr "插件已关闭"
2816
 
2817
+ #: admin/add-ons.php:59
2818
  msgid "Something went wrong, we could not connect to the server. Please try again later."
2819
  msgstr "现在无法连接服务器,请稍候重试"
2820
 
2821
+ #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216
 
2822
  msgid "Install Now"
2823
  msgstr "立即安装"
2824
 
2825
+ #: admin/add-ons.php:153 admin/add-ons.php:251
2826
+ #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220
 
 
2827
  msgid "Compatible with your version of Profile Builder."
2828
  msgstr "与您现版本的Profile Builder兼容"
2829
 
2830
+ #: admin/add-ons.php:162
2831
  msgid "Upgrade Profile Builder"
2832
  msgstr "更新Profile Builder"
2833
 
2834
+ #: admin/add-ons.php:163
2835
  msgid "Not compatible with Profile Builder"
2836
  msgstr "与Profile Builder不兼容"
2837
 
2838
+ #: admin/add-ons.php:171
2839
  msgid "Not compatible with your version of Profile Builder."
2840
  msgstr "于您现版本的Profile Builder不兼容"
2841
 
2842
+ #: admin/add-ons.php:172
2843
  msgid "Minimum required Profile Builder version:"
2844
  msgstr "所需Profile Builder最低版本"
2845
 
2846
+ #: admin/add-ons.php:177
2847
  msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2848
  msgstr "无法安装插件,请重试或 <a href=\"%s\" target=\"_blank\">install manually</a>."
2849
 
2850
+ #: front-end/default-fields/email/email.php:51
2851
  msgid "You must enter a valid email address."
2852
  msgstr "请输入有效的邮箱地址"
2853
 
2854
+ #: front-end/default-fields/username/username.php:52
2855
+ #: front-end/default-fields/username/username.php:60
2856
  msgid "This username is invalid because it uses illegal characters."
2857
  msgstr "用户名无效,因为含有非法字符"
2858
 
2859
+ #: front-end/default-fields/username/username.php:52
2860
+ #: front-end/default-fields/username/username.php:60
2861
  msgid "Please enter a valid username."
2862
  msgstr "请输入有效的用户名"
2863
 
2864
+ #: front-end/extra-fields/user-role/user-role.php:72
2865
+ #: front-end/extra-fields/user-role/user-role.php:85
2866
  msgid "Only administrators can see this field on edit profile forms."
2867
  msgstr "只有管理员才能看到编辑信息的表格项"
2868
 
2869
+ #: front-end/extra-fields/user-role/user-role.php:81
2870
  msgid "As an administrator you cannot change your role."
2871
  msgstr "作为管理员,您无法改变您的角色"
2872
 
2873
+ #: modules/email-customizer/admin-email-customizer.php:117
2874
  msgid ""
2875
  "\n"
2876
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
2877
  "<p>His/her new password is: {{password}}</p>\n"
2878
  msgstr ""
2879
 
2880
+ #: modules/email-customizer/admin-email-customizer.php:141
2881
  msgid "Admin Notification for User Password Reset"
2882
  msgstr ""
2883
 
2884
+ #: modules/email-customizer/email-customizer.php:46
2885
  msgid "Reset Key"
2886
  msgstr ""
2887
 
2888
+ #: modules/email-customizer/email-customizer.php:47
2889
  msgid "Reset Url"
2890
  msgstr ""
2891
 
2892
+ #: modules/email-customizer/email-customizer.php:48
2893
  msgid "Reset Link"
2894
  msgstr ""
2895
 
2896
+ #: modules/email-customizer/user-email-customizer.php:204
2897
  msgid ""
2898
  "\n"
2899
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
2903
  "{{{reset_link}}}</p>\n"
2904
  msgstr ""
2905
 
2906
+ #: modules/email-customizer/user-email-customizer.php:218
2907
  msgid "[{{site_name}}] Password Reset"
2908
  msgstr ""
2909
 
2910
+ #: modules/email-customizer/user-email-customizer.php:229
2911
  msgid "Password Reset Email"
2912
  msgstr "密码重设邮件"
2913
 
2914
+ #: modules/email-customizer/user-email-customizer.php:235
2915
  msgid ""
2916
  "\n"
2917
  "<p>You have successfully reset your password to: {{password}}</p>\n"
2918
  msgstr ""
2919
 
2920
+ #: modules/email-customizer/user-email-customizer.php:245
2921
  msgid "[{{site_name}}] Password Reset Successfully"
2922
  msgstr ""
2923
 
2924
+ #: modules/email-customizer/user-email-customizer.php:256
2925
  msgid "Password Reset Success Email"
2926
  msgstr "密码重设成功确认邮件"
2927
 
2928
+ #: modules/user-listing/userlisting.php:159
2929
  msgid "User Nicename"
2930
  msgstr "用户昵称"
2931
 
2932
+ #: modules/user-listing/userlisting.php:499
 
 
2933
  msgid "None"
2934
  msgstr ""
2935
 
2936
+ #: admin/admin-functions.php:132
2937
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
2938
  msgstr "<strong>错误</strong>: 密码必须有 %s 个字符"
2939
 
2940
+ #: admin/admin-functions.php:148
2941
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
2942
  msgstr "<strong>错误</strong>: 密码必须满足强度 %s"
2943
 
2944
+ #: admin/general-settings.php:163
2945
  msgid "Username and Email"
2946
  msgstr "用户名和邮箱"
2947
 
2948
+ #: admin/general-settings.php:168
2949
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
2950
  msgstr "\"用户名和邮箱\" - 同时以用户名和邮箱登陆"
2951
 
2952
+ #: admin/general-settings.php:169
2953
  msgid "\"Username\" - users can Log In only with Username."
2954
  msgstr "\"用户名\" - 只能以用户名登陆"
2955
 
2956
+ #: admin/general-settings.php:170
2957
  msgid "\"Email\" - users can Log In only with Email."
2958
  msgstr "\"邮箱\" - 用户只能用邮箱登陆"
2959
 
2960
+ #: admin/manage-fields.php:122
2961
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
2962
  msgstr "指定你想限制的文件后缀<br/>例如: .ext1,.ext2,.ext3<br/>如果不指定,默认为: .jpg,.jpeg,.gif,.png (.*)"
2963
 
2964
+ #: admin/manage-fields.php:123
2965
  msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
2966
  msgstr "指定你想限制的文件后缀<br/>例如: .ext1,.ext2,.ext3<br/>如果不指定,默认为Wordpress所允许的全部文件后缀"
2967
 
2968
+ #: admin/manage-fields.php:133
2969
  msgid "User Roles"
2970
  msgstr "用户角色"
2971
 
2972
+ #: admin/manage-fields.php:133
2973
  msgid "Select which user roles to show to the user ( drag and drop to re-order )"
2974
  msgstr "请选择要对用户显示哪个角色(可拖拽排序)"
2975
 
2976
+ #: admin/manage-fields.php:134
2977
  msgid "User Roles Order"
2978
  msgstr "用户角色排序"
2979
 
2980
+ #: admin/manage-fields.php:134
2981
  msgid "Save the user role order from the user roles checkboxes"
2982
  msgstr "从角色选择框来保存角色排序"
2983
 
2984
+ #: admin/manage-fields.php:1125
2985
  msgid "Please select at least one user role\n"
2986
  msgstr "请至少选择一个用户角色\n"
2987
 
2988
+ #: admin/register-version.php:22
2989
  msgid "Profile Builder Register"
2990
  msgstr "Profile Builder 注册"
2991
 
2992
+ #: admin/register-version.php:81
2993
  msgid "The serial number is about to expire soon!"
2994
  msgstr "序列号即将到期"
2995
 
2996
+ #: admin/register-version.php:81
2997
  msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
2998
  msgstr "您的序列号即将到期, 请 %1$s 更新您的许可 %2$s."
2999
 
3000
+ #: admin/register-version.php:83
3001
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3002
  msgstr "您的序列号已经过期, 请 %1$s 更新您的许可 %2$s. "
3003
 
3004
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3005
  msgid "Add Entry"
3006
  msgstr "增加条目"
3007
 
3008
+ #: features/email-confirmation/class-email-confirmation.php:91
3009
  msgid "show"
3010
  msgstr "显示"
3011
 
3012
+ #: features/functions.php:736
3013
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3014
  msgstr "为使用户可以通过Profile Builder注册,您首先需要开启“用户注册”。去到%1$s网络设置%2$s,常规,确保”任何人都可以注册“这个选项已被勾选。%3$s忽略%4$s"
3015
 
3016
+ #: front-end/class-formbuilder.php:643
3017
  msgid "User to edit:"
3018
  msgstr "要编辑的用户"
3019
 
3020
+ #: front-end/default-fields/password/password.php:46 front-end/recover.php:254
 
3021
  msgid "The password must have the minimum length of %s characters"
3022
  msgstr "密码至少应包括%s个字符"
3023
 
3024
+ #: front-end/default-fields/password/password.php:50 front-end/recover.php:258
 
3025
  msgid "The password must have a minimum strength of %s"
3026
  msgstr "密码至少满足强度 %s"
3027
 
3028
+ #: front-end/extra-fields/user-role/user-role.php:118
3029
  msgid "You cannot register this user role"
3030
  msgstr "您不可以注册这个用户组"
3031
 
3032
+ #: front-end/login.php:153
3033
  msgid "username or email"
3034
  msgstr "用户名或邮件"
3035
 
3036
+ #: front-end/login.php:222
3037
  msgid "Username or Email"
3038
  msgstr "用户名或邮件"
3039
 
3040
+ #: front-end/logout.php:15
3041
  msgid "You are currently logged in as %s. "
3042
  msgstr "您现在的登陆名为 %s"
3043
 
3044
+ #: front-end/logout.php:15
3045
  msgid "Log out &raquo;"
3046
  msgstr "登出&raquo;"
3047
 
3048
+ #: modules/custom-redirects/custom_redirects_admin.php:92
3049
+ #: modules/email-customizer/email-customizer.php:31
3050
  msgid "User Role"
3051
  msgstr "用户角色"
3052
 
3053
+ #: modules/user-listing/userlisting.php:2100
3054
  msgid "View all extra shortcode parameters"
3055
  msgstr "查看其他的断码参数"
3056
 
3057
+ #: modules/user-listing/userlisting.php:2114
3058
  msgid "displays only the users that you specified the user_id for"
3059
  msgstr "仅向指定用户ID显示"
3060
 
3061
+ #: modules/user-listing/userlisting.php:2120
3062
  msgid "displays all users except the ones you specified the user_id for"
3063
  msgstr "向除了指定用户ID之外的所有用户显示"
3064
 
3065
+ #: features/functions.php:566
3066
  msgid "Minimum length of %d characters"
3067
  msgstr "最少%d个字符"
3068
 
3069
+ #: front-end/class-formbuilder.php:135 front-end/class-formbuilder.php:138
 
3070
  msgid "This message is only visible by administrators"
3071
  msgstr "只有管理员可以查看该信息"
3072
 
3073
+ #: modules/user-listing/userlisting.php:413
3074
  msgid "User not found"
3075
  msgstr "找不到用户"
3076
 
3077
+ #: modules/email-customizer/admin-email-customizer.php:38
3078
+ #: modules/email-customizer/user-email-customizer.php:38
3079
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3080
  msgstr ""
3081
 
3082
+ #: admin/admin-bar.php:48
3083
  msgid "Choose which user roles view the admin bar in the front-end of the website."
3084
  msgstr "选择哪个用户角色可以产看网站前台的管理员工具栏"
3085
 
3086
+ #: admin/manage-fields.php:127
3087
  msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3088
  msgstr "因为用户无法看到您所输入的字符,您可以输入任意字符并以逗号“,\" 隔开,但这些字符不能包括特殊符号"
3089
 
3090
+ #: admin/manage-fields.php:1052
3091
  msgid "The meta-name cannot be empty\n"
3092
  msgstr ""
3093
 
3094
+ #: admin/register-version.php:69
3095
  msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3096
  msgstr ""
3097
 
3098
+ #: admin/register-version.php:243
3099
  msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3100
  msgstr ""
3101
 
3102
+ #: assets/lib/wck-api/fields/country select.php:14
3103
+ #: assets/lib/wck-api/fields/cpt select.php:17
3104
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3105
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:36
3106
+ #: front-end/extra-fields/select-cpt/select-cpt.php:60
 
 
 
 
 
 
 
 
 
3107
  msgid "...Choose"
3108
  msgstr "请选择"
3109
 
3110
+ #: features/class-list-table.php:526 features/class-list-table.php:942
 
3111
  msgid "1 item"
3112
+ msgid_plural "%s items"
3113
+ msgstr[0] ""
3114
 
3115
+ #: features/functions.php:552
3116
  msgid "Very Weak"
3117
  msgstr "非常弱"
3118
 
3119
+ #: features/functions.php:640
3120
  msgid "This field is required"
3121
  msgstr "必填选项"
3122
 
3123
+ #: features/functions.php:704
3124
  msgid "Cancel"
3125
  msgstr "取消"
3126
 
3127
+ #: features/functions.php:740
3128
  msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3129
  msgstr ""
3130
 
3131
+ #: front-end/login.php:144
3132
  msgid "Invalid username."
3133
  msgstr "不正确的用户名"
3134
 
3135
+ #: front-end/login.php:149 front-end/login.php:153
 
3136
  msgid "username"
3137
  msgstr "用户名"
3138
 
3139
+ #: front-end/login.php:149
3140
  msgid "email"
3141
  msgstr "邮件"
3142
 
3143
+ #: front-end/login.php:256
3144
  msgid "Lost your password?"
3145
  msgstr "忘记密码?"
3146
 
3147
+ #: index.php:34
3148
  msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3149
  msgstr ""
3150
 
3151
+ #: modules/email-customizer/admin-email-customizer.php:54
3152
+ #: modules/email-customizer/user-email-customizer.php:54
3153
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3154
  msgstr ""
3155
 
3156
+ #: features/email-confirmation/email-confirmation.php:573
3157
+ #: features/email-confirmation/email-confirmation.php:582
3158
+ #: modules/email-customizer/email-customizer.php:487
3159
+ #: modules/email-customizer/email-customizer.php:494
3160
+ #: modules/email-customizer/email-customizer.php:508
3161
  msgid "Your selected password at signup"
3162
  msgstr "您在注册时输入的密码"
3163
 
3164
+ #: modules/email-customizer/user-email-customizer.php:38
3165
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3166
  msgstr ""
3167
 
3168
+ #: modules/multiple-forms/edit-profile-forms.php:274
3169
  msgid "This form is empty."
3170
  msgstr "这个表格是空的"
3171
 
3172
+ #: modules/multiple-forms/multiple-forms.php:406
3173
  msgid "Delete all items"
3174
  msgstr "删除所有条目"
3175
 
3176
+ #: modules/multiple-forms/multiple-forms.php:406
3177
  msgid "Delete all"
3178
  msgstr "全部删除"
3179
 
3180
+ #: modules/user-listing/userlisting.php:1592
 
3181
  msgid "Choose..."
3182
  msgstr "请选择"
3183
 
3184
+ #: modules/user-listing/userlisting.php:2196
3185
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3186
  msgstr ""
3187
 
3188
+ #: admin/admin-bar.php:10
3189
  msgid "Show/Hide the Admin Bar on the Front-End"
3190
  msgstr "显示/隐藏管理员工具栏在前端"
3191
 
3192
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
 
3193
  msgid "Admin Bar Settings"
3194
  msgstr "管理员工具栏设置"
3195
 
3196
+ #: admin/admin-bar.php:57
3197
  msgid "User-Role"
3198
  msgstr "用户角色"
3199
 
3200
+ #: admin/admin-bar.php:58
3201
  msgid "Visibility"
3202
  msgstr "可见"
3203
 
3204
+ #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
3205
+ #: modules/multiple-forms/register-forms.php:230
3206
  msgid "Default"
3207
  msgstr "默认"
3208
 
3209
+ #: admin/admin-bar.php:74
3210
  msgid "Show"
3211
  msgstr "显示"
3212
 
3213
+ #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1537
 
3214
  msgid "Hide"
3215
  msgstr "隐藏"
3216
 
3217
+ #: admin/admin-bar.php:86 admin/general-settings.php:208
3218
+ #: admin/register-version.php:95 features/functions.php:697
3219
+ #: modules/modules.php:127
 
 
 
3220
  msgid "Save Changes"
3221
  msgstr "保存更改"
3222
 
3223
+ #: admin/admin-functions.php:37
3224
  msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3225
  msgstr "登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 \"%s\" 选项卡中 )"
3226
 
3227
+ #: admin/admin-functions.php:37 admin/general-settings.php:10
3228
+ #: admin/general-settings.php:38
 
3229
  msgid "General Settings"
3230
  msgstr "常规设置"
3231
 
3232
+ #: admin/admin-functions.php:137 admin/general-settings.php:194
 
3233
  msgid "Very weak"
3234
  msgstr "非常弱"
3235
 
3236
+ #: admin/admin-functions.php:137 admin/general-settings.php:195
3237
+ #: features/functions.php:552
 
3238
  msgid "Weak"
3239
  msgstr "弱"
3240
 
3241
+ #: admin/admin-functions.php:137 admin/general-settings.php:196
3242
+ #: features/functions.php:552
 
3243
  msgid "Medium"
3244
  msgstr "中"
3245
 
3246
+ #: admin/admin-functions.php:137 admin/general-settings.php:197
3247
+ #: features/functions.php:552
 
3248
  msgid "Strong"
3249
  msgstr "强"
3250
 
3251
+ #: admin/admin-functions.php:187
3252
  msgid "Add Field"
3253
  msgstr "添加字段"
3254
 
3255
+ #: admin/admin-functions.php:189
3256
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
3257
  msgid "Save Settings"
3258
  msgstr "保存设置"
3259
 
3260
+ #: admin/basic-info.php:10
3261
  msgid "Basic Information"
3262
  msgstr "基本信息"
3263
 
3264
+ #: admin/basic-info.php:29
3265
  msgid "Version %s"
3266
  msgstr "版本 %s"
3267
 
3268
+ #: admin/basic-info.php:30
3269
  msgid "<strong>Profile Builder </strong>"
3270
  msgstr "<strong>Profile Builder </strong>"
3271
 
3272
+ #: admin/basic-info.php:31
3273
  msgid "The best way to add front-end registration, edit profile and login forms."
3274
  msgstr "最好的前端注册、编辑个人资料与登陆表单的实现方式。"
3275
 
3276
+ #: admin/basic-info.php:33
3277
  msgid "For Modern User Interaction"
3278
  msgstr "新颖的用户交互。"
3279
 
3280
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
 
 
3281
  msgid "Login"
3282
  msgstr "登陆"
3283
 
3284
+ #: admin/basic-info.php:40
3285
  msgid "Registration"
3286
  msgstr "注册"
3287
 
3288
+ #: admin/basic-info.php:44
3289
  msgid "Edit Profile"
3290
  msgstr "编辑个人资料"
3291
 
3292
+ #: admin/basic-info.php:51
3293
  msgid "Extra Features"
3294
  msgstr "额外字段"
3295
 
3296
+ #: admin/basic-info.php:52
3297
  msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3298
  msgstr "特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。"
3299
 
3300
+ #: admin/basic-info.php:53
3301
  msgid "Enable extra features"
3302
  msgstr "启用额外功能"
3303
 
3304
+ #: admin/basic-info.php:57
3305
  msgid "Recover Password"
3306
  msgstr "恢复密码"
3307
 
3308
+ #: admin/basic-info.php:61
3309
  msgid "Admin Approval (*)"
3310
  msgstr "管理员审批 (*)"
3311
 
3312
+ #: admin/basic-info.php:62
3313
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3314
  msgstr "你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。"
3315
 
3316
+ #: admin/basic-info.php:65
3317
  msgid "Email Confirmation"
3318
  msgstr "电子邮件确认"
3319
 
3320
+ #: admin/basic-info.php:66
3321
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3322
  msgstr "确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。"
3323
 
3324
+ #: admin/basic-info.php:69
3325
  msgid "Minimum Password Length and Strength Meter"
3326
  msgstr "最小密码长度和强度表"
3327
 
3328
+ #: admin/basic-info.php:70
3329
  msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3330
  msgstr "消除弱密码最小密码长度,并强制执行设定的密码强度。"
3331
 
3332
+ #: admin/basic-info.php:73
3333
  msgid "Login with Email or Username"
3334
  msgstr "通过电子邮件或用户名登录"
3335
 
3336
+ #: admin/basic-info.php:74
3337
  msgid "Allow users to log in with their email or username when accessing your site."
3338
  msgstr "当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。"
3339
 
3340
+ #: admin/basic-info.php:87
3341
  msgid "Customize Your Forms The Way You Want (*)"
3342
  msgstr "自定义表格用你想要的方式(*)"
3343
 
3344
+ #: admin/basic-info.php:88
3345
  msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3346
  msgstr "额外个人资料字段,根据您的项目需求你可以创建精确的登注册表单。"
3347
 
3348
+ #: admin/basic-info.php:90
3349
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3350
  msgstr "额外个人资料字段需要激活 Hobbyist 或者 PRO 版本才可用"
3351
 
3352
+ #: admin/basic-info.php:92
3353
  msgid "Get started with extra fields"
3354
  msgstr "开始使用额外字段"
3355
 
3356
+ #: admin/basic-info.php:95
3357
  msgid "Avatar Upload"
3358
  msgstr "头像上传"
3359
 
3360
+ #: admin/basic-info.php:96
3361
  msgid "Generic Uploads"
3362
  msgstr "常规上传"
3363
 
3364
+ #: admin/basic-info.php:97
3365
  msgid "Agree To Terms Checkbox"
3366
  msgstr "同意使用条款"
3367
 
3368
+ #: admin/basic-info.php:98
3369
  msgid "Datepicker"
3370
  msgstr "日期选择器"
3371
 
3372
+ #: admin/basic-info.php:101
3373
  msgid "reCAPTCHA"
3374
  msgstr "reCAPTCHA"
3375
 
3376
+ #: admin/basic-info.php:102
3377
  msgid "Country Select"
3378
  msgstr "国家选择"
3379
 
3380
+ #: admin/basic-info.php:104
3381
  msgid "Timezone Select"
3382
  msgstr "时区选择"
3383
 
3384
+ #: admin/basic-info.php:108
3385
  msgid "Input / Hidden Input"
3386
  msgstr "输入/隐藏输入"
3387
 
3388
+ #: admin/basic-info.php:110
3389
  msgid "Checkbox"
3390
  msgstr "复选框"
3391
 
3392
+ #: admin/basic-info.php:111
3393
  msgid "Select"
3394
  msgstr "选择"
3395
 
3396
+ #: admin/basic-info.php:112
3397
  msgid "Radio Buttons"
3398
  msgstr "单选按钮"
3399
 
3400
+ #: admin/basic-info.php:113
3401
  msgid "Textarea"
3402
  msgstr "文本框"
3403
 
3404
+ #: admin/basic-info.php:125
3405
  msgid "Powerful Modules (**)"
3406
  msgstr "强大的模块(**)"
3407
 
3408
+ #: admin/basic-info.php:126
3409
  msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3410
  msgstr "使用一切你需要的工具,用于管理你的用户的模块。"
3411
 
3412
+ #: admin/basic-info.php:128
3413
  msgid "Enable your modules"
3414
  msgstr "启用你的模块"
3415
 
3416
+ #: admin/basic-info.php:131
3417
  msgid "Find out more about PRO Modules"
3418
  msgstr "了解关于专业版模块的更多内容"
3419
 
3420
+ #: admin/basic-info.php:136 modules/modules.php:89
3421
+ #: modules/user-listing/userlisting.php:11
3422
+ #: modules/user-listing/userlisting.php:12
3423
+ #: modules/user-listing/userlisting.php:17
3424
+ #: modules/user-listing/userlisting.php:23
 
3425
  msgid "User Listing"
3426
  msgstr "用户列表"
3427
 
3428
+ #: admin/basic-info.php:138
3429
  msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3430
  msgstr "易于编辑模列表您的网站用户,以及创建单用户页面模板。基于简码,提供了许多选项来定制您的列表。"
3431
 
3432
+ #: admin/basic-info.php:144
3433
  msgid "Email Customizer"
3434
  msgstr "电子邮件定制"
3435
 
3436
+ #: admin/basic-info.php:145
3437
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3438
  msgstr "个性化邮件发送到你的用户或管理员。注册,电子邮件确认,管理员批准/拒绝。"
3439
 
3440
+ #: admin/basic-info.php:148
3441
+ #: modules/custom-redirects/custom_redirects_admin.php:32
3442
+ #: modules/custom-redirects/custom_redirects_admin.php:33
3443
+ #: modules/modules.php:110
3444
  msgid "Custom Redirects"
3445
  msgstr "自定义重定向"
3446
 
3447
+ #: admin/basic-info.php:149
3448
  msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3449
  msgstr "让你的用户离开 WordPress 仪表盘,重定向到他们的前端页面,登录注册一切都只需几个点击。"
3450
 
3451
+ #: admin/basic-info.php:154 modules/modules.php:75
 
3452
  msgid "Multiple Registration Forms"
3453
  msgstr "多个注册形式"
3454
 
3455
+ #: admin/basic-info.php:155
3456
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3457
  msgstr "设置多个注册表单为某些用户角色不同的字段。获取来自不同类型的用户不同的信息。"
3458
 
3459
+ #: admin/basic-info.php:158 modules/modules.php:82
 
3460
  msgid "Multiple Edit-profile Forms"
3461
  msgstr "多个编辑个人资料形式"
3462
 
3463
+ #: admin/basic-info.php:159
3464
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3465
  msgstr "允许不同的用户角色去编辑他们的具体信息。设置多个编辑表单一不同的作用字段。"
3466
 
3467
+ #: admin/basic-info.php:187
3468
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3469
  msgstr " * 仅获得在 %1$sHobbyist 与专业版本 %2$s."
3470
 
3471
+ #: admin/basic-info.php:188
3472
  msgid "** only available in the %1$sPro version%2$s."
3473
  msgstr "** 仅激活在 %1$s专业版本 %2$s."
3474
 
3475
+ #: admin/general-settings.php:42
3476
  msgid "Load Profile Builder's own CSS file in the front-end:"
3477
  msgstr "在前端载入 Profile Builder 的CSS文件:"
3478
 
3479
+ #: admin/general-settings.php:45 admin/general-settings.php:58
3480
+ #: admin/general-settings.php:107
3481
+ #: modules/multiple-forms/edit-profile-forms.php:206
3482
+ #: modules/multiple-forms/register-forms.php:229
3483
+ #: modules/multiple-forms/register-forms.php:230
3484
+ #: modules/user-listing/userlisting.php:2201
3485
  msgid "Yes"
3486
  msgstr "是"
3487
 
3488
+ #: admin/general-settings.php:47
3489
  msgid "You can find the default file here: %1$s"
3490
  msgstr "你可以在这里找到默认的文件: %1$s"
3491
 
3492
+ #: admin/general-settings.php:54
3493
  msgid "\"Email Confirmation\" Activated:"
3494
  msgstr "\"邮件确认\" 激活:"
3495
 
3496
+ #: admin/general-settings.php:59 admin/general-settings.php:108
3497
+ #: modules/multiple-forms/edit-profile-forms.php:206
3498
+ #: modules/multiple-forms/register-forms.php:229
3499
+ #: modules/multiple-forms/register-forms.php:230
3500
  msgid "No"
3501
  msgstr "不"
3502
 
3503
+ #: admin/general-settings.php:64
3504
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3505
  msgstr "您可以找到还没确认邮箱地址的列表 %1$s用户 > 所有用户 > 邮箱确认%2$s."
3506
 
3507
+ #: admin/general-settings.php:72
3508
  msgid "\"Email Confirmation\" Landing Page:"
3509
  msgstr "\"邮件确认\" 登陆页面:"
3510
 
3511
+ #: admin/general-settings.php:77
3512
  msgid "Existing Pages"
3513
  msgstr "现有页面"
3514
 
3515
+ #: admin/general-settings.php:92
3516
  msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3517
  msgstr "指定供用户确认邮件的转向页面。此页面可不同于注册页面(s)并且可随时改变。如果没有指定,将显示给用户一个简单确认页。"
3518
 
3519
+ #: admin/general-settings.php:103
3520
  msgid "\"Admin Approval\" Activated:"
3521
  msgstr "\"管理员审批\" 激活:"
3522
 
3523
+ #: admin/general-settings.php:111
3524
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3525
  msgstr "您可以找到用户在 %1$s用户 > 所有用户 > 管理员审批%2$s."
3526
 
3527
+ #: admin/general-settings.php:149
3528
  msgid "\"Admin Approval\" Feature:"
3529
  msgstr "\"管理员审批\" 功能 :"
3530
 
3531
+ #: admin/general-settings.php:152
3532
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3533
  msgstr "您控制您的用户在网站上的角色。获得游戏通知或者一次性批量审批多用户。启用管理审批功能需要升级到 %1$sHobbyist 或者 专业版本%2$s。"
3534
 
3535
+ #: admin/general-settings.php:159
3536
  msgid "Allow Users to Log in With:"
3537
  msgstr "允许用户使用什么登陆:"
3538
 
3539
+ #: admin/general-settings.php:164 admin/manage-fields.php:198
3540
+ #: features/admin-approval/class-admin-approval.php:166
3541
+ #: features/email-confirmation/class-email-confirmation.php:167
3542
+ #: front-end/login.php:85 front-end/login.php:99 front-end/login.php:218
3543
+ #: modules/custom-redirects/custom_redirects_admin.php:56
3544
+ #: modules/email-customizer/email-customizer.php:28
3545
+ #: modules/user-listing/userlisting.php:102
3546
+ #: modules/user-listing/userlisting.php:277
3547
+ #: modules/user-listing/userlisting.php:730
3548
+ #: modules/user-listing/userlisting.php:2152
 
 
 
3549
  msgid "Username"
3550
  msgstr "姓名"
3551
 
3552
+ #: admin/general-settings.php:165 front-end/login.php:215
3553
+ #: modules/email-customizer/email-customizer.php:29
3554
+ #: modules/user-listing/userlisting.php:736
3555
+ #: modules/user-listing/userlisting.php:2153
 
3556
  msgid "Email"
3557
  msgstr "电子邮件"
3558
 
3559
+ #: admin/general-settings.php:177
3560
  msgid "Minimum Password Length:"
3561
  msgstr "最小密码长度:"
3562
 
3563
+ #: admin/general-settings.php:182
3564
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3565
  msgstr "输入密码必须最少字符。留空为没有限制"
3566
 
3567
+ #: admin/general-settings.php:189
3568
  msgid "Minimum Password Strength:"
3569
  msgstr "最小密码强度:"
3570
 
3571
+ #: admin/general-settings.php:193
3572
  msgid "Disabled"
3573
  msgstr "关闭"
3574
 
3575
+ #: admin/manage-fields.php:12
3576
  msgid "Manage Fields"
3577
  msgstr "管理字段"
3578
 
3579
+ #: admin/manage-fields.php:13
3580
  msgid "Manage Default and Extra Fields"
3581
  msgstr "管理默认与额外字段"
3582
 
3583
+ #: admin/manage-fields.php:116
3584
  msgid "Field Title"
3585
  msgstr "字段标题"
3586
 
3587
+ #: admin/manage-fields.php:116
3588
  msgid "Title of the field"
3589
  msgstr "字段的标题"
3590
 
3591
+ #: admin/manage-fields.php:117
3592
+ #: modules/multiple-forms/edit-profile-forms.php:245
3593
+ #: modules/multiple-forms/register-forms.php:266
3594
  msgid "Field"
3595
  msgstr "字段"
3596
 
3597
+ #: admin/manage-fields.php:118
3598
  msgid "Meta-name"
3599
  msgstr "Meta-name"
3600
 
3601
+ #: admin/manage-fields.php:119
3602
+ #: modules/custom-redirects/custom_redirects_admin.php:65
3603
+ #: modules/custom-redirects/custom_redirects_admin.php:95
3604
+ #: modules/custom-redirects/custom_redirects_admin.php:114
3605
+ #: modules/custom-redirects/custom_redirects_admin.php:139
3606
+ #: modules/multiple-forms/edit-profile-forms.php:246
3607
+ #: modules/multiple-forms/register-forms.php:267
3608
  msgid "ID"
3609
  msgstr "编号"
3610
 
3611
+ #: admin/manage-fields.php:119
3612
+ #: modules/multiple-forms/edit-profile-forms.php:246
3613
+ #: modules/multiple-forms/register-forms.php:267
3614
  msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3615
  msgstr "一个独特的、为特定的字段自动生成ID<br/>如果需要可以使用过滤器调用这个目标<br/>不能编辑"
3616
 
3617
+ #: admin/manage-fields.php:120
3618
  msgid "Description"
3619
  msgstr "描述"
3620
 
3621
+ #: admin/manage-fields.php:120
3622
  msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3623
  msgstr "输入(详细)的最终用户阅读选项的描述<br/>可选"
3624
 
3625
+ #: admin/manage-fields.php:121
3626
  msgid "Row Count"
3627
  msgstr "行数"
3628
 
3629
+ #: admin/manage-fields.php:121
3630
  msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3631
  msgstr "指定 'Textarea' 字段的行数<br/>如果没有指定,缺省为5"
3632
 
3633
+ #: admin/manage-fields.php:122
3634
  msgid "Allowed Image Extensions"
3635
  msgstr "允许的图像扩展"
3636
 
3637
+ #: admin/manage-fields.php:123
3638
  msgid "Allowed Upload Extensions"
3639
  msgstr "允许的上传扩展"
3640
 
3641
+ #: admin/manage-fields.php:124
3642
  msgid "Avatar Size"
3643
  msgstr "头像大小"
3644
 
3645
+ #: admin/manage-fields.php:124
3646
  msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3647
  msgstr "输入 '头像' 大小数值 ( 20 与 200 之间 ) <br/>如果没指定,默认是100"
3648
 
3649
+ #: admin/manage-fields.php:125
3650
  msgid "Date-format"
3651
  msgstr "日期格式"
3652
 
3653
+ #: admin/manage-fields.php:126
 
 
 
 
3654
  msgid "Terms of Agreement"
3655
  msgstr "协议条款"
3656
 
3657
+ #: admin/manage-fields.php:126
3658
  msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3659
  msgstr "输入一个供用户查看的协议内容。<br/> 连接可以使用 HTML 语法,例如:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3660
 
3661
+ #: admin/manage-fields.php:127
3662
  msgid "Options"
3663
  msgstr "选项"
3664
 
3665
+ #: admin/manage-fields.php:128
3666
  msgid "Labels"
3667
  msgstr "标签"
3668
 
3669
+ #: admin/manage-fields.php:128
3670
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
3671
  msgstr "输入一个逗号分隔标签 <br/> 对用户可见的"
3672
 
3673
+ #: admin/manage-fields.php:135
3674
  msgid "Default Value"
3675
  msgstr "默认值"
3676
 
3677
+ #: admin/manage-fields.php:135
3678
  msgid "Default value of the field"
3679
  msgstr "该字段的默认值"
3680
 
3681
+ #: admin/manage-fields.php:136 admin/manage-fields.php:138
3682
+ #: admin/manage-fields.php:139 admin/manage-fields.php:140
 
 
3683
  msgid "Default Option"
3684
  msgstr "默认选项"
3685
 
3686
+ #: admin/manage-fields.php:136
3687
  msgid "Specify the option which should be selected by default"
3688
  msgstr "指定选项的默认选择值"
3689
 
3690
+ #: admin/manage-fields.php:137
3691
  msgid "Default Option(s)"
3692
  msgstr "默认选项(s)"
3693
 
3694
+ #: admin/manage-fields.php:137
3695
  msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3696
  msgstr "指定选项默认是否勾选<br/>如果有多个值的选项,使用“,”分开(逗号)"
3697
 
3698
+ #: admin/manage-fields.php:151
3699
  msgid "Default Content"
3700
  msgstr "默认内容"
3701
 
3702
+ #: admin/manage-fields.php:151
3703
  msgid "Default value of the textarea"
3704
  msgstr "文本默认值"
3705
 
3706
+ #: admin/manage-fields.php:158
 
3707
  msgid "Required"
3708
  msgstr "必须"
3709
 
3710
+ #: admin/manage-fields.php:158
3711
  msgid "Whether the field is required or not"
3712
  msgstr "该字段是否必须"
3713
 
3714
+ #: admin/manage-fields.php:159
3715
  msgid "Overwrite Existing"
3716
  msgstr "覆盖现有"
3717
 
3718
+ #: admin/manage-fields.php:159
3719
  msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3720
  msgstr "选择“是”将增加字段到列表中,但将覆盖在数据库中具有相同名称的任何其他领域的 meta-name<br/>使用需自己承担风险"
3721
 
3722
+ #: admin/manage-fields.php:165
3723
  msgid "Field Properties"
3724
  msgstr "字段属性"
3725
 
3726
+ #: admin/manage-fields.php:178
3727
  msgid "Registration & Edit Profile"
3728
  msgstr "注册与编辑资料"
3729
 
3730
+ #: admin/manage-fields.php:197
3731
  msgid "Name"
3732
  msgstr "姓名"
3733
 
3734
+ #: admin/manage-fields.php:198
3735
  msgid "Usernames cannot be changed."
3736
  msgstr " 用户名不可更改。"
3737
 
3738
+ #: admin/manage-fields.php:199
 
 
3739
  msgid "First Name"
3740
  msgstr "名字"
3741
 
3742
+ #: admin/manage-fields.php:200
 
 
3743
  msgid "Last Name"
3744
  msgstr "姓氏"
3745
 
3746
+ #: admin/manage-fields.php:201 modules/user-listing/userlisting.php:769
3747
+ #: modules/user-listing/userlisting.php:2160
 
3748
  msgid "Nickname"
3749
  msgstr "昵称"
3750
 
3751
+ #: admin/manage-fields.php:202
3752
  msgid "Display name publicly as"
3753
  msgstr "公开显示为"
3754
 
3755
+ #: admin/manage-fields.php:203
3756
  msgid "Contact Info"
3757
  msgstr "联系信息"
3758
 
3759
+ #: admin/manage-fields.php:204
3760
+ #: features/admin-approval/class-admin-approval.php:169
3761
+ #: features/email-confirmation/class-email-confirmation.php:168
3762
+ #: modules/user-listing/userlisting.php:108
3763
  msgid "E-mail"
3764
  msgstr "电子邮件"
3765
 
3766
+ #: admin/manage-fields.php:205 modules/email-customizer/email-customizer.php:32
3767
+ #: modules/user-listing/userlisting.php:111
3768
+ #: modules/user-listing/userlisting.php:751
3769
+ #: modules/user-listing/userlisting.php:2154
 
3770
  msgid "Website"
3771
  msgstr "站点"
3772
 
3773
+ #: admin/manage-fields.php:209
3774
  msgid "AIM"
3775
  msgstr "AIM"
3776
 
3777
+ #: admin/manage-fields.php:210
3778
  msgid "Yahoo IM"
3779
  msgstr "雅虎通讯"
3780
 
3781
+ #: admin/manage-fields.php:211
3782
  msgid "Jabber / Google Talk"
3783
  msgstr "Jabber / Google Talk"
3784
 
3785
+ #: admin/manage-fields.php:214
3786
  msgid "About Yourself"
3787
  msgstr "关于您自己"
3788
 
3789
+ #: admin/manage-fields.php:215 modules/user-listing/userlisting.php:114
3790
+ #: modules/user-listing/userlisting.php:754
3791
+ #: modules/user-listing/userlisting.php:2155
 
3792
  msgid "Biographical Info"
3793
  msgstr "个人说明"
3794
 
3795
+ #: admin/manage-fields.php:215
3796
  msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
3797
  msgstr "分享关于您的一些信息。可能会被公开。"
3798
 
3799
+ #: admin/manage-fields.php:216 front-end/recover.php:73
3800
+ #: modules/email-customizer/email-customizer.php:30
 
3801
  msgid "Password"
3802
  msgstr "新密码"
3803
 
3804
+ #: admin/manage-fields.php:216
3805
  msgid "Type your password."
3806
  msgstr "重复新密码"
3807
 
3808
+ #: admin/manage-fields.php:217 front-end/recover.php:74
 
3809
  msgid "Repeat Password"
3810
  msgstr "重复新密码"
3811
 
3812
+ #: admin/manage-fields.php:217
3813
  msgid "Type your password again. "
3814
  msgstr "再输入一遍新密码。"
3815
 
3816
+ #: admin/manage-fields.php:977 admin/manage-fields.php:1134
 
3817
  msgid "You must select a field\n"
3818
  msgstr "你必须选择一个字段\n"
3819
 
3820
+ #: admin/manage-fields.php:987
3821
  msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
3822
  msgstr "请选择一个不同的字段类型,这个已经存在你的表格(必须是唯一的)\n"
3823
 
3824
+ #: admin/manage-fields.php:998
3825
  msgid "The entered avatar size is not between 20 and 200\n"
3826
  msgstr "输入的头像大小不是20与200之间 \n"
3827
 
3828
+ #: admin/manage-fields.php:1001
3829
  msgid "The entered avatar size is not numerical\n"
3830
  msgstr "输入的头像大小不是数值\n"
3831
 
3832
+ #: admin/manage-fields.php:1009
3833
  msgid "The entered row number is not numerical\n"
3834
  msgstr "输入的行数不是数值\n"
3835
 
3836
+ #: admin/manage-fields.php:1012
3837
  msgid "You must enter a value for the row number\n"
3838
  msgstr "您必须输入一个值的行数\n"
3839
 
3840
+ #: admin/manage-fields.php:1033
3841
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3842
  msgstr "日期选择器输入的值不是有效的日期格式\n"
3843
 
3844
+ #: admin/manage-fields.php:1036
3845
  msgid "You must enter a value for the date-format\n"
3846
  msgstr "您必须输入一个日期格式的值\n"
3847
 
3848
+ #: admin/manage-fields.php:1064 admin/manage-fields.php:1072
3849
+ #: admin/manage-fields.php:1083
 
3850
  msgid "That meta-name is already in use\n"
3851
  msgstr "meta-name 已在使用\n"
3852
 
3853
+ #: admin/manage-fields.php:1114
3854
  msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
3855
  msgstr "下列选项(s)不符合的选项清单: %s\n"
3856
 
3857
+ #: admin/manage-fields.php:1118
3858
  msgid "The following option did not coincide with the ones in the options list: %s\n"
3859
  msgstr "下列选项不符合的选项清单: %s\n"
3860
 
3861
+ #: admin/manage-fields.php:1141
3862
  msgid "That field is already added in this form\n"
3863
  msgstr "这个字段已经加入这个\n"
3864
 
3865
+ #: admin/manage-fields.php:1190
3866
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
3867
  msgstr "<pre>标题</pre><pre>类型</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">必须</pre>"
3868
 
3869
+ #: admin/manage-fields.php:1190
3870
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3871
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3872
+ #: features/admin-approval/class-admin-approval.php:108
3873
+ #: features/functions.php:718 features/functions.php:725
3874
+ #: modules/custom-redirects/custom_redirects_admin.php:179
3875
+ #: modules/custom-redirects/custom_redirects_admin.php:193
3876
+ #: modules/custom-redirects/custom_redirects_admin.php:207
3877
+ #: modules/custom-redirects/custom_redirects_admin.php:221
3878
+ #: modules/multiple-forms/multiple-forms.php:406
 
3879
  msgid "Edit"
3880
  msgstr "编辑"
3881
 
3882
+ #: admin/manage-fields.php:1190
3883
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3884
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3885
+ #: features/admin-approval/class-admin-approval.php:113
3886
+ #: features/admin-approval/class-admin-approval.php:224
3887
+ #: features/email-confirmation/class-email-confirmation.php:120
3888
+ #: features/email-confirmation/class-email-confirmation.php:217
3889
+ #: features/functions.php:711 features/functions.php:725
3890
+ #: modules/custom-redirects/custom_redirects_admin.php:179
3891
+ #: modules/custom-redirects/custom_redirects_admin.php:193
3892
+ #: modules/custom-redirects/custom_redirects_admin.php:207
3893
+ #: modules/custom-redirects/custom_redirects_admin.php:221
 
3894
  msgid "Delete"
3895
  msgstr "删除"
3896
 
3897
+ #: admin/manage-fields.php:1205
3898
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3899
  msgstr "使用这些简码在页面中你想要的形式显示:"
3900
 
3901
+ #: admin/register-version.php:14
 
 
 
 
3902
  msgid "Register Your Version"
3903
  msgstr "注册您的版本"
3904
 
3905
+ #: admin/register-version.php:14
3906
  msgid "Register Version"
3907
  msgstr "注册版本"
3908
 
3909
+ #: admin/register-version.php:70
3910
  msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
3911
  msgstr "如果您注册这个版本的 Profile Builder ,您将收到有关升级,补丁,和技术支持。"
3912
 
3913
+ #: admin/register-version.php:72
3914
  msgid " Serial Number:"
3915
  msgstr "序号:"
3916
 
3917
+ #: admin/register-version.php:77
3918
  msgid "The serial number was successfully validated!"
3919
  msgstr "序号成功验证!"
3920
 
3921
+ #: admin/register-version.php:79
3922
  msgid "The serial number entered couldn't be validated!"
3923
  msgstr "序号无法验证!"
3924
 
3925
+ #: admin/register-version.php:83
3926
  msgid "The serial number couldn't be validated because it expired!"
3927
  msgstr "序号无法验证,因已过期!"
3928
 
3929
+ #: admin/register-version.php:85
3930
  msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
3931
  msgstr "序号无法验证,因为连接超时。这可能是由于服务器维护。请稍后再试!"
3932
 
3933
+ #: admin/register-version.php:87
3934
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3935
  msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3936
 
3937
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:725
 
3938
  msgid "Content"
3939
  msgstr "内容"
3940
 
3941
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3942
  msgid "Edit this item"
3943
  msgstr "编辑此项目"
3944
 
3945
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3946
  msgid "Delete this item"
3947
  msgstr "删除此项目"
3948
 
3949
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3950
  msgid "Please enter a value for the required field "
3951
  msgstr "请为这个字段输入所需的值"
3952
 
3953
+ #: front-end/extra-fields/upload/upload.php:122
 
3954
  msgid "Select File"
3955
  msgstr "选择文件"
3956
 
3957
+ #: assets/lib/wck-api/fields/upload.php:43
3958
+ #: front-end/extra-fields/upload/upload.php:112
 
3959
  msgid "Remove"
3960
  msgstr "移除"
3961
 
3962
+ #: assets/lib/wck-api/fields/nested repeater.php:8
 
 
 
 
 
 
 
 
3963
  msgid "You can add the information for the %s after you add a entry"
3964
  msgstr "您可以添加信息到 %s"
3965
 
3966
+ #: assets/lib/wck-api/fields/upload.php:75
3967
+ #: front-end/extra-fields/upload/upload.php:128
 
3968
  msgid "Upload "
3969
  msgstr "上传"
3970
 
3971
+ #: features/class-list-table.php:184
3972
  msgid "No items found."
3973
  msgstr "找不到项目。"
3974
 
3975
+ #: features/class-list-table.php:308
3976
  msgid "Bulk Actions"
3977
  msgstr "批量动作"
3978
 
3979
+ #: features/class-list-table.php:318
3980
  msgid "Apply"
3981
  msgstr "应用"
3982
 
3983
+ #: features/class-list-table.php:402
3984
  msgid "Show all dates"
3985
  msgstr "显示所有日期"
3986
 
3987
+ #: features/class-list-table.php:415
3988
  msgid "%1$s %2$d"
3989
  msgstr "%1$s %2$d"
3990
 
3991
+ #: features/class-list-table.php:431
3992
  msgid "List View"
3993
  msgstr "列表查看"
3994
 
3995
+ #: features/class-list-table.php:432
3996
  msgid "Excerpt View"
3997
  msgstr "摘录查看"
3998
 
3999
+ #: features/class-list-table.php:458
4000
  msgid "%s pending"
4001
  msgstr "%s 等待中"
4002
 
4003
+ #: features/class-list-table.php:566
4004
  msgid "%1$s of %2$s"
4005
  msgstr "%1$s 的 %2$s"
4006
 
4007
+ #: features/class-list-table.php:713
4008
  msgid "Select All"
4009
  msgstr "选择所有"
4010
 
4011
+ #: features/functions.php:526
 
 
 
 
 
 
 
 
4012
  msgid "Strength indicator"
4013
  msgstr "强度指标"
4014
 
4015
+ #: features/admin-approval/admin-approval.php:14
4016
+ #: features/admin-approval/class-admin-approval.php:453
4017
  msgid "Admin Approval"
4018
  msgstr "管理员审批"
4019
 
4020
+ #: features/admin-approval/admin-approval.php:28
4021
+ #: features/email-confirmation/email-confirmation.php:58
4022
  msgid "Do you want to"
4023
  msgstr "您想要"
4024
 
4025
+ #: features/admin-approval/admin-approval.php:51
4026
  msgid "Your session has expired! Please refresh the page and try again"
4027
  msgstr "您的会话已过期!请刷新页面重试"
4028
 
4029
+ #: features/admin-approval/admin-approval.php:64
4030
  msgid "User successfully approved!"
4031
  msgstr "用户成功批准!"
4032
 
4033
+ #: features/admin-approval/admin-approval.php:74
4034
  msgid "User successfully unapproved!"
4035
  msgstr "用户成功拒绝!"
4036
 
4037
+ #: features/admin-approval/admin-approval.php:80
4038
  msgid "User successfully deleted!"
4039
  msgstr "用户成功删除!"
4040
 
4041
+ #: features/admin-approval/admin-approval.php:85
4042
+ #: features/admin-approval/admin-approval.php:129
4043
+ #: features/email-confirmation/email-confirmation.php:132
4044
  msgid "You either don't have permission for that action or there was an error!"
4045
  msgstr "你没有权限操作,或出现一个错误!"
4046
 
4047
+ #: features/admin-approval/admin-approval.php:96
4048
  msgid "Your session has expired! Please refresh the page and try again."
4049
  msgstr "您的会话已过期!请刷新页面重试"
4050
 
4051
+ #: features/admin-approval/admin-approval.php:108
4052
  msgid "Users successfully approved!"
4053
  msgstr "用户成功批准!"
4054
 
4055
+ #: features/admin-approval/admin-approval.php:117
4056
  msgid "Users successfully unapproved!"
4057
  msgstr "用户成功拒绝!"
4058
 
4059
+ #: features/admin-approval/admin-approval.php:125
4060
  msgid "Users successfully deleted!"
4061
  msgstr "用户成功删除!"
4062
 
4063
+ #: features/admin-approval/admin-approval.php:145
4064
  msgid "Your account on %1$s has been approved!"
4065
  msgstr "您在 %1$s 的帐号成功通过!"
4066
 
4067
+ #: features/admin-approval/admin-approval.php:146
4068
+ #: features/admin-approval/admin-approval.php:149
4069
  msgid "approved"
4070
  msgstr "已批准"
4071
 
4072
+ #: features/admin-approval/admin-approval.php:148
4073
  msgid "An administrator has just approved your account on %1$s (%2$s)."
4074
  msgstr "管理员已经批准您在 %1$s (%2$s) 的帐号。"
4075
 
4076
+ #: features/admin-approval/admin-approval.php:153
4077
  msgid "Your account on %1$s has been unapproved!"
4078
  msgstr "您在 %1$s 的帐号被拒绝!"
4079
 
4080
+ #: features/admin-approval/admin-approval.php:154
4081
+ #: features/admin-approval/admin-approval.php:157
4082
  msgid "unapproved"
4083
  msgstr "已拒绝"
4084
 
4085
+ #: features/admin-approval/admin-approval.php:156
4086
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4087
  msgstr "管理员已拒绝您在 %1$s (%2$s) 的帐号。"
4088
 
4089
+ #: features/admin-approval/admin-approval.php:175
4090
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4091
  msgstr "<strong>错误</strong>: 您的帐号需要管理员批准后才能登陆使用。"
4092
 
4093
+ #: features/admin-approval/admin-approval.php:187
4094
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4095
  msgstr "您的帐号在管理员确认前可以使用 \"密码找回\" 功能."
4096
 
4097
+ #: features/admin-approval/class-admin-approval.php:113
4098
  msgid "delete this user?"
4099
  msgstr "删除这个用户?"
4100
 
4101
+ #: features/admin-approval/class-admin-approval.php:116
4102
  msgid "unapprove this user?"
4103
  msgstr "拒绝这个用户?"
4104
 
4105
+ #: features/admin-approval/class-admin-approval.php:116
4106
+ #: features/admin-approval/class-admin-approval.php:223
4107
  msgid "Unapprove"
4108
  msgstr "拒绝"
4109
 
4110
+ #: features/admin-approval/class-admin-approval.php:118
4111
  msgid "approve this user?"
4112
  msgstr "允许这个用户?"
4113
 
4114
+ #: features/admin-approval/class-admin-approval.php:118
4115
+ #: features/admin-approval/class-admin-approval.php:222
4116
  msgid "Approve"
4117
  msgstr "允许"
4118
 
4119
+ #: features/admin-approval/class-admin-approval.php:167
4120
+ #: modules/user-listing/userlisting.php:278
4121
+ #: modules/user-listing/userlisting.php:742
4122
+ #: modules/user-listing/userlisting.php:2157
4123
  msgid "Firstname"
4124
  msgstr "名子"
4125
 
4126
+ #: features/admin-approval/class-admin-approval.php:168
4127
+ #: modules/user-listing/userlisting.php:745
4128
+ #: modules/user-listing/userlisting.php:2158
4129
  msgid "Lastname"
4130
  msgstr "姓氏"
4131
 
4132
+ #: features/admin-approval/class-admin-approval.php:170
4133
+ #: modules/user-listing/userlisting.php:149
4134
+ #: modules/user-listing/userlisting.php:279
4135
+ #: modules/user-listing/userlisting.php:772
4136
+ #: modules/user-listing/userlisting.php:2162
4137
  msgid "Role"
4138
  msgstr "角色"
4139
 
4140
+ #: features/admin-approval/class-admin-approval.php:171
4141
+ #: features/email-confirmation/class-email-confirmation.php:169
4142
  msgid "Registered"
4143
  msgstr "已注册"
4144
 
4145
+ #: features/admin-approval/class-admin-approval.php:172
4146
  msgid "User-status"
4147
  msgstr "用户状态"
4148
 
4149
+ #: features/admin-approval/class-admin-approval.php:252
4150
  msgid "Do you want to bulk approve the selected users?"
4151
  msgstr "你想批量允许所选用户?"
4152
 
4153
+ #: features/admin-approval/class-admin-approval.php:260
4154
  msgid "Do you want to bulk unapprove the selected users?"
4155
  msgstr "你想批量拒绝所选用户?"
4156
 
4157
+ #: features/admin-approval/class-admin-approval.php:266
4158
  msgid "Do you want to bulk delete the selected users?"
4159
  msgstr "你想批量删除所选用户?"
4160
 
4161
+ #: features/admin-approval/class-admin-approval.php:274
4162
+ #: features/email-confirmation/class-email-confirmation.php:278
4163
  msgid "Sorry, but you don't have permission to do that!"
4164
  msgstr "抱歉,您没有相应的操作权限!"
4165
 
4166
+ #: features/admin-approval/class-admin-approval.php:339
4167
  msgid "Approved"
4168
  msgstr "已允许"
4169
 
4170
+ #: features/admin-approval/class-admin-approval.php:341
4171
  msgid "Unapproved"
4172
  msgstr "已拒绝"
4173
 
4174
+ #: features/admin-approval/class-admin-approval.php:456
4175
+ #: features/email-confirmation/class-email-confirmation.php:454
4176
  msgid "All Users"
4177
  msgstr "所有用户"
4178
 
4179
+ #: features/email-confirmation/class-email-confirmation.php:120
4180
  msgid "delete this user from the _signups table?"
4181
  msgstr "在 the _signups 表单中 删除这个用户?"
4182
 
4183
+ #: features/email-confirmation/class-email-confirmation.php:121
4184
  msgid "confirm this email yourself?"
4185
  msgstr "确认自己的电子邮件?"
4186
 
4187
+ #: features/email-confirmation/class-email-confirmation.php:121
4188
+ #: features/email-confirmation/class-email-confirmation.php:218
4189
  msgid "Confirm Email"
4190
  msgstr "确认电子邮件"
4191
 
4192
+ #: features/email-confirmation/class-email-confirmation.php:122
4193
  msgid "resend the activation link?"
4194
  msgstr "重新发送激活链接?"
4195
 
4196
+ #: features/email-confirmation/class-email-confirmation.php:122
4197
+ #: features/email-confirmation/class-email-confirmation.php:219
4198
  msgid "Resend Activation Email"
4199
  msgstr "发送激活邮件"
4200
 
4201
+ #: features/email-confirmation/class-email-confirmation.php:249
4202
  msgid "%s couldn't be deleted"
4203
  msgstr "%s 不能删除"
4204
 
4205
+ #: features/email-confirmation/class-email-confirmation.php:253
4206
  msgid "All users have been successfully deleted"
4207
  msgstr "所有的用户已成功删除"
4208
 
4209
+ #: features/email-confirmation/class-email-confirmation.php:263
4210
  msgid "The selected users have been activated"
4211
  msgstr "所选的用户已被激活"
4212
 
4213
+ #: features/email-confirmation/class-email-confirmation.php:274
4214
  msgid "The selected users have had their activation emails resent"
4215
  msgstr "所选用户已经重新发送激活电子邮件"
4216
 
4217
+ #: features/email-confirmation/class-email-confirmation.php:451
4218
+ #: features/email-confirmation/email-confirmation.php:47
4219
  msgid "Users with Unconfirmed Email Address"
4220
  msgstr "没经确认邮箱的用户"
4221
 
4222
+ #: features/email-confirmation/email-confirmation.php:107
4223
  msgid "There was an error performing that action!"
4224
  msgstr "执行操作时出错!"
4225
 
4226
+ #: features/email-confirmation/email-confirmation.php:115
4227
  msgid "The selected user couldn't be deleted"
4228
  msgstr "所选用户不能删除"
4229
 
4230
+ #: features/email-confirmation/email-confirmation.php:126
4231
  msgid "Email notification resent to user"
4232
  msgstr "电子邮件通知重发给用户"
4233
 
4234
+ #: features/email-confirmation/email-confirmation.php:397
4235
  msgid "[%1$s] Activate %2$s"
4236
  msgstr "[%1$s] 激活 %2$s"
4237
 
4238
+ #: features/email-confirmation/email-confirmation.php:441
4239
+ #: front-end/register.php:71
4240
  msgid "Could not create user!"
4241
  msgstr "无法创建用户!"
4242
 
4243
+ #: features/email-confirmation/email-confirmation.php:444
4244
  msgid "That username is already activated!"
4245
  msgstr "用户名已经被激活!"
4246
 
4247
+ #: features/email-confirmation/email-confirmation.php:467
4248
  msgid "There was an error while trying to activate the user"
4249
  msgstr "试图激活用户时出现一个错误"
4250
 
4251
+ #: features/email-confirmation/email-confirmation.php:515
4252
+ #: modules/email-customizer/admin-email-customizer.php:73
4253
  msgid "A new subscriber has (been) registered!"
4254
  msgstr "一个新的用户已经(被)注册!"
4255
 
4256
+ #: features/email-confirmation/email-confirmation.php:518
4257
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4258
  msgstr "新用户在 %1$s.<br/><br/>用户名:%2$s<br/>邮箱:%3$s<br/>"
4259
 
4260
+ #: features/email-confirmation/email-confirmation.php:633
4261
  msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4262
  msgstr "管理员审批”的功能是注册时激活,所以请记住,你必须批准该用户,他/她才能进行登录!"
4263
 
4264
+ #: features/email-confirmation/email-confirmation.php:569
4265
  msgid "[%1$s] Your new account information"
4266
  msgstr "[%1$s] 您的新帐户信息"
4267
 
4268
+ #: features/email-confirmation/email-confirmation.php:580
4269
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4270
  msgstr "欢迎来到 %1$s!<br/><br/><br/>您的用户名是:%2$s 密码是:%3$s"
4271
 
4272
+ #: features/email-confirmation/email-confirmation.php:641
4273
+ #: front-end/register.php:125
4274
  msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4275
  msgstr "需要管理员审核通过才能访问您的帐户。您将收到一封电子邮件。"
4276
 
4277
+ #: features/login-widget/login-widget.php:10
4278
  msgid "This login widget lets you add a login form in the sidebar."
4279
  msgstr "该登录控件是允许您添加在侧边栏的登录表单。"
4280
 
4281
+ #: features/login-widget/login-widget.php:15
4282
  msgid "Profile Builder Login Widget"
4283
  msgstr "Profile Builder 登陆小工具"
4284
 
4285
+ #: front-end/class-formbuilder.php:399 front-end/login.php:250
 
 
4286
  msgid "Register"
4287
  msgstr "注册"
4288
 
4289
+ #: features/login-widget/login-widget.php:63
4290
  msgid "Title:"
4291
  msgstr "标题:"
4292
 
4293
+ #: features/login-widget/login-widget.php:68
4294
  msgid "After login redirect URL (optional):"
4295
  msgstr "登录后的重定向URL(可选):"
4296
 
4297
+ #: features/login-widget/login-widget.php:73
4298
  msgid "Register page URL (optional):"
4299
  msgstr "注册页面URL(可选):"
4300
 
4301
+ #: features/login-widget/login-widget.php:78
4302
  msgid "Password Recovery page URL (optional):"
4303
  msgstr "密码恢复页URL(可选):"
4304
 
4305
+ #: features/upgrades/upgrades-functions.php:91
4306
+ #: features/upgrades/upgrades-functions.php:134
4307
  msgid "The usernames cannot be changed."
4308
  msgstr "用户名不可更改。"
4309
 
4310
+ #: front-end/class-formbuilder.php:125
4311
  msgid "Only an administrator can add new users."
4312
  msgstr "只有管理员可以添加新用户。"
4313
 
4314
+ #: front-end/class-formbuilder.php:135
4315
  msgid "Users can register themselves or you can manually create users here."
4316
  msgstr "用户可以注册自己注册,或您可以在这里手动创建用户。"
4317
 
4318
+ #: front-end/class-formbuilder.php:138
4319
  msgid "Users cannot currently register themselves, but you can manually create users here."
4320
  msgstr "用户无法自己注册,但你可以在这里手动创建用户。"
4321
 
4322
+ #: front-end/class-formbuilder.php:158
4323
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4324
  msgstr "您当前登陆为 %1s。您不需要其它帐号。 %2s"
4325
 
4326
+ #: front-end/class-formbuilder.php:158
4327
  msgid "Log out of this account."
4328
  msgstr "退出这个帐号。"
4329
 
4330
+ #: front-end/class-formbuilder.php:158
4331
  msgid "Logout"
4332
  msgstr "退出"
4333
 
4334
+ #: front-end/class-formbuilder.php:164
4335
  msgid "You must be logged in to edit your profile."
4336
  msgstr "您必须在登陆状态下编辑个人资料。"
4337
 
4338
+ #: features/functions.php:994
 
4339
  msgid "here"
4340
  msgstr "这里"
4341
 
4342
+ #: features/functions.php:995
 
4343
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4344
  msgstr "您很快将会自动重定向。如果你看到这个页面超过 %1$d 秒,请点击 %2$s.%3$s"
4345
 
4346
+ #: front-end/class-formbuilder.php:299 front-end/class-formbuilder.php:306
 
4347
  msgid "The account %1s has been successfully created!"
4348
  msgstr "帐号 %1s 创建成功!"
4349
 
4350
+ #: front-end/class-formbuilder.php:302 front-end/class-formbuilder.php:312
 
4351
  msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4352
  msgstr "访问您的帐号 %1s 前,您需要确认您的邮箱地址。请检查您的邮箱并点击激活连接。"
4353
 
4354
+ #: front-end/class-formbuilder.php:308
4355
  msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4356
  msgstr "访问您的帐号 %1s 前,需要管理员审批通过。您将收到邮件。"
4357
 
4358
+ #: front-end/class-formbuilder.php:331
4359
  msgid "Your profile has been successfully updated!"
4360
  msgstr "个人资料已更新!"
4361
 
4362
+ #: front-end/class-formbuilder.php:342
4363
  msgid "There was an error in the submitted form"
4364
  msgstr "在递交表单时出错"
4365
 
4366
+ #: front-end/class-formbuilder.php:399
4367
  msgid "Add User"
4368
  msgstr "所有用户"
4369
 
4370
+ #: admin/add-ons.php:170 front-end/class-formbuilder.php:402
 
4371
  msgid "Update"
4372
  msgstr "更新个人资料"
4373
 
4374
+ #: front-end/class-formbuilder.php:465
 
 
 
 
 
 
 
 
 
 
4375
  msgid "Send these credentials via email."
4376
  msgstr "通过电子邮件发送这些凭据。"
4377
 
4378
+ #: front-end/extra-fields/extra-fields.php:94 front-end/login.php:137
4379
+ #: front-end/login.php:144 front-end/login.php:158 front-end/recover.php:17
4380
+ #: front-end/recover.php:237
 
 
 
4381
  msgid "ERROR"
4382
  msgstr "错误"
4383
 
4384
+ #: front-end/login.php:137
4385
  msgid "The password you entered is incorrect."
4386
  msgstr "你输入的密码不正确。"
4387
 
4388
+ #: front-end/login.php:138 front-end/login.php:145
 
4389
  msgid "Password Lost and Found."
4390
  msgstr "密码遗失。"
4391
 
4392
+ #: front-end/login.php:138 front-end/login.php:145
 
4393
  msgid "Lost your password"
4394
  msgstr "忘记您的密码"
4395
 
4396
+ #: front-end/login.php:158
4397
  msgid "Both fields are empty."
4398
  msgstr "字段均空"
4399
 
4400
+ #: front-end/login.php:296
4401
  msgid "You are currently logged in as %1$s. %2$s"
4402
  msgstr "您当前登录为 %1$s. %2$s"
4403
 
4404
+ #: front-end/login.php:295 front-end/logout.php:25
 
4405
  msgid "Log out of this account"
4406
  msgstr "退出这个帐户"
4407
 
4408
+ #: front-end/login.php:295
4409
  msgid "Log out"
4410
  msgstr "退出"
4411
 
4412
+ #: front-end/recover.php:17
4413
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4414
  msgstr "您的帐户需被管理员审批后才可使用 \"密码重置\" 功能。"
4415
 
4416
+ #: front-end/recover.php:94
4417
  msgid "Reset Password"
4418
  msgstr "重置密码"
4419
 
4420
+ #: front-end/recover.php:114
4421
  msgid "Please enter your username or email address."
4422
  msgstr "请输入您的用户名或电子邮件地址。"
4423
 
4424
+ #: front-end/recover.php:115
4425
  msgid "You will receive a link to create a new password via email."
4426
  msgstr "你将收到一封创建一个新密码连接的电子邮件。"
4427
 
4428
+ #: front-end/recover.php:120
4429
  msgid "Username or E-mail"
4430
  msgstr "用户或邮箱地址"
4431
 
4432
+ #: front-end/recover.php:130
4433
  msgid "Get New Password"
4434
  msgstr "获取新密码"
4435
 
4436
+ #: front-end/recover.php:177
4437
  msgid "The username entered wasn't found in the database!"
4438
  msgstr "输入的用户名不存在数据库中!"
4439
 
4440
+ #: front-end/recover.php:177
4441
  msgid "Please check that you entered the correct username."
4442
  msgstr "请检查您已输入正确的用户名。"
4443
 
4444
+ #: front-end/recover.php:192
4445
  msgid "Check your e-mail for the confirmation link."
4446
  msgstr "检查你的邮件中的确认链接。"
4447
 
4448
+ #: front-end/recover.php:227
4449
  msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4450
  msgstr "有人要求以下帐号密码进行重置: <b>%1$s</b><br/>如果不是您自己的操作,请忽略。<br/>需要重置您的密码的话,请点击 :%2$s"
4451
 
4452
+ #: front-end/recover.php:230
4453
  msgid "Password Reset from \"%1$s\""
4454
  msgstr "从 \"%1$s\" 密码重置"
4455
 
4456
+ #: front-end/recover.php:237
4457
  msgid "There was an error while trying to send the activation link to %1$s!"
4458
  msgstr "发送激活链接时出现错误 %1$s!"
4459
 
4460
+ #: front-end/recover.php:199
4461
  msgid "The email address entered wasn't found in the database!"
4462
  msgstr "邮箱地址无法在数据库中找到"
4463
 
4464
+ #: front-end/recover.php:199
4465
  msgid "Please check that you entered the correct email address."
4466
  msgstr "请检查您输入(正确)电子邮件地址。"
4467
 
4468
+ #: front-end/recover.php:265
4469
  msgid "Your password has been successfully changed!"
4470
  msgstr "您已经成功地更改密码!"
4471
 
4472
+ #: front-end/recover.php:284
4473
  msgid "You have successfully reset your password to: %1$s"
4474
  msgstr "您已经成功地将密码更改成:%1$s"
4475
 
4476
+ #: front-end/recover.php:287 front-end/recover.php:298
 
4477
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4478
  msgstr "密码成功重置 %1$s 在 \"%2$s\""
4479
 
4480
+ #: front-end/recover.php:295
4481
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4482
  msgstr "%1$s 请求通过密码重置功能修改密码。<br/>他的密码是:%2$s"
4483
 
4484
+ #: front-end/recover.php:312
4485
  msgid "The entered passwords don't match!"
4486
  msgstr "输入的密码不匹配!"
4487
 
4488
+ #: front-end/recover.php:367
4489
  msgid "ERROR:"
4490
  msgstr "错误:"
4491
 
4492
+ #: front-end/recover.php:367
4493
  msgid "Invalid key!"
4494
  msgstr "无效密钥!"
4495
 
4496
+ #: front-end/register.php:56
4497
  msgid "Invalid activation key!"
4498
  msgstr "无效的激活密钥!"
4499
 
4500
+ #: front-end/register.php:60
4501
  msgid "This username is now active!"
4502
  msgstr "这个用户名现在被激活!"
4503
 
4504
+ #: front-end/register.php:74
4505
  msgid "This username is already activated!"
4506
  msgstr "这个用户名已经被激活!"
4507
 
4508
+ #: front-end/register.php:124
4509
  msgid "Your email was successfully confirmed."
4510
  msgstr "您的电子邮件已确认。"
4511
 
4512
+ #: front-end/register.php:153
4513
  msgid "There was an error while trying to activate the user."
4514
  msgstr "尝试激活用户时出现一个错误。"
4515
 
4516
+ #: front-end/default-fields/email/email.php:47
 
4517
  msgid "The email you entered is not a valid email address."
4518
  msgstr "您输入的电子邮件不是一个有效的电子邮件地址。"
4519
 
4520
+ #: front-end/default-fields/email/email.php:60
4521
+ #: front-end/default-fields/email/email.php:67
4522
  msgid "This email is already reserved to be used soon."
4523
  msgstr "此邮箱地址已被保留使用。"
4524
 
4525
+ #: front-end/default-fields/email/email.php:60
4526
+ #: front-end/default-fields/email/email.php:67
4527
+ #: front-end/default-fields/email/email.php:77
4528
+ #: front-end/default-fields/email/email.php:95
4529
+ #: front-end/default-fields/username/username.php:49
4530
+ #: front-end/default-fields/username/username.php:65
4531
  msgid "Please try a different one!"
4532
  msgstr "请尝试一个不同的!"
4533
 
4534
+ #: front-end/default-fields/email/email.php:77
4535
+ #: front-end/default-fields/email/email.php:95
4536
  msgid "This email is already in use."
4537
  msgstr "电子邮件已被使用。"
4538
 
4539
+ #: front-end/default-fields/password-repeat/password-repeat.php:37
4540
+ #: front-end/default-fields/password-repeat/password-repeat.php:41
4541
  msgid "The passwords do not match"
4542
  msgstr "密码不匹配"
4543
 
4544
+ #: front-end/default-fields/username/username.php:49
4545
  msgid "This username already exists."
4546
  msgstr "用户名已经存在。"
4547
 
4548
+ #: front-end/default-fields/username/username.php:65
4549
  msgid "This username is already reserved to be used soon."
4550
  msgstr "这个用户名已经被保留。"
4551
 
4552
+ #: modules/user-listing/userlisting.php:276
4553
  msgid "Avatar"
4554
  msgstr "头像"
4555
 
4556
+ #: front-end/extra-fields/avatar/avatar.php:72
4557
+ #: front-end/extra-fields/checkbox/checkbox.php:45
4558
+ #: front-end/extra-fields/colorpicker/colorpicker.php:45
4559
+ #: front-end/extra-fields/datepicker/datepicker.php:40
4560
+ #: front-end/extra-fields/input-hidden/input-hidden.php:34
4561
+ #: front-end/extra-fields/input/input.php:30
4562
+ #: front-end/extra-fields/map/map.php:51
4563
+ #: front-end/extra-fields/number/number.php:30
4564
+ #: front-end/extra-fields/phone/phone.php:39
4565
+ #: front-end/extra-fields/radio/radio.php:44
4566
+ #: front-end/extra-fields/select-cpt/select-cpt.php:52
4567
+ #: front-end/extra-fields/select-multiple/select-multiple.php:46
4568
+ #: front-end/extra-fields/select-timezone/select-timezone.php:49
4569
+ #: front-end/extra-fields/select/select.php:51
4570
+ #: front-end/extra-fields/textarea/textarea.php:30
4571
+ #: front-end/extra-fields/upload/upload.php:70
4572
+ #: front-end/extra-fields/wysiwyg/wysiwyg.php:33
4573
  msgid "required"
4574
  msgstr "必须"
4575
 
4576
+ #: front-end/extra-fields/recaptcha/recaptcha.php:48
4577
  msgid "To use reCAPTCHA you must get an API key from"
4578
  msgstr "使用 reCAPTCHA 你必须获得一个API密钥"
4579
 
4580
+ #: front-end/extra-fields/recaptcha/recaptcha.php:131
4581
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4582
  msgstr "安全原因,您必须通过远程IP到reCAPTCHA!"
4583
 
4584
+ #: front-end/extra-fields/recaptcha/recaptcha.php:192
4585
  msgid "To use reCAPTCHA you must get an API public key from:"
4586
  msgstr "使用reCAPTCHA,你必须得到一个API公开密钥:"
4587
 
4588
+ #: modules/modules.php:11 modules/modules.php:58
 
4589
  msgid "Modules"
4590
  msgstr "模块"
4591
 
4592
+ #: modules/modules.php:59
4593
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4594
  msgstr "在这里你可以激活/停用 Profile Builder 模块。"
4595
 
4596
+ #: modules/modules.php:69
4597
  msgid "Name/Description"
4598
  msgstr "名称/描述"
4599
 
4600
+ #: modules/modules.php:70
4601
  msgid "Status"
4602
  msgstr "状态"
4603
 
4604
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
4605
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
4606
+ #: modules/modules.php:119
 
 
 
 
4607
  msgid "Active"
4608
  msgstr "激活"
4609
 
4610
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
4611
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
4612
+ #: modules/modules.php:120
 
 
 
 
4613
  msgid "Inactive"
4614
  msgstr "关闭"
4615
 
4616
+ #: modules/email-customizer/admin-email-customizer.php:11
4617
+ #: modules/email-customizer/admin-email-customizer.php:12
4618
+ #: modules/modules.php:96
4619
  msgid "Admin Email Customizer"
4620
  msgstr "管理员邮件定制"
4621
 
4622
+ #: modules/email-customizer/user-email-customizer.php:11
4623
+ #: modules/email-customizer/user-email-customizer.php:12
4624
+ #: modules/modules.php:103
4625
  msgid "User Email Customizer"
4626
  msgstr "用户邮件定制"
4627
 
4628
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
4629
+ #: modules/class-mustache-templates/class-mustache-templates.php:253
4630
  msgid "Save"
4631
  msgstr "保存"
4632
 
4633
+ #: modules/multiple-forms/edit-profile-forms.php:206
4634
+ #: modules/multiple-forms/register-forms.php:230
4635
  msgid "Redirect"
4636
  msgstr "重定向"
4637
 
4638
+ #: modules/multiple-forms/edit-profile-forms.php:208
4639
+ #: modules/multiple-forms/register-forms.php:232
4640
  msgid "URL"
4641
  msgstr "网址"
4642
 
4643
+ #: modules/email-customizer/admin-email-customizer.php:38
4644
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4645
  msgstr "这些设置也复制在\"用户邮件定制\" 设置页中保存。"
4646
 
4647
+ #: modules/email-customizer/admin-email-customizer.php:41
4648
+ #: modules/email-customizer/user-email-customizer.php:41
4649
  msgid "From (name)"
4650
  msgstr "来自(名子)"
4651
 
4652
+ #: modules/email-customizer/admin-email-customizer.php:49
4653
+ #: modules/email-customizer/user-email-customizer.php:49
4654
  msgid "From (reply-to email)"
4655
  msgstr "来自(回复邮件)"
4656
 
4657
+ #: modules/email-customizer/admin-email-customizer.php:57
4658
+ #: modules/email-customizer/user-email-customizer.php:57
4659
  msgid "Common Settings"
4660
  msgstr "常用设置"
4661
 
4662
+ #: modules/email-customizer/admin-email-customizer.php:60
4663
  msgid ""
4664
  "\n"
4665
  "<p>New subscriber on {{site_name}}.</p>\n"
4671
  "<p>用户名:{{username}}</p>\n"
4672
  "<p>邮箱:{{user_email}}</p>\n"
4673
 
4674
+ #: modules/email-customizer/admin-email-customizer.php:69
4675
+ #: modules/email-customizer/admin-email-customizer.php:99
4676
+ #: modules/email-customizer/admin-email-customizer.php:126
4677
+ #: modules/email-customizer/user-email-customizer.php:71
4678
+ #: modules/email-customizer/user-email-customizer.php:99
4679
+ #: modules/email-customizer/user-email-customizer.php:128
4680
+ #: modules/email-customizer/user-email-customizer.php:155
4681
+ #: modules/email-customizer/user-email-customizer.php:183
4682
+ #: modules/email-customizer/user-email-customizer.php:214
4683
+ #: modules/email-customizer/user-email-customizer.php:241
4684
+ #: modules/email-customizer/user-email-customizer.php:274
4685
  msgid "Email Subject"
4686
  msgstr "邮件主题"
4687
 
4688
+ #: modules/email-customizer/admin-email-customizer.php:84
4689
  msgid "Default Registration & Registration with Email Confirmation"
4690
  msgstr "默认注册与邮件确认注册"
4691
 
4692
+ #: modules/email-customizer/admin-email-customizer.php:87
4693
  msgid ""
4694
  "\n"
4695
  "<p>New subscriber on {{site_name}}.</p>\n"
4705
  "<p>管理审核功能已被激活,\n"
4706
  "请记住,您需要批准这个用户,他才能登陆!</p>\n"
4707
 
4708
+ #: modules/email-customizer/admin-email-customizer.php:114
4709
+ #: modules/email-customizer/user-email-customizer.php:143
4710
  msgid "Registration with Admin Approval"
4711
  msgstr "注册需管理员审批"
4712
 
4713
+ #: modules/email-customizer/email-customizer.php:7
4714
  msgid "Available Tags"
4715
  msgstr "可用标签"
4716
 
4717
+ #: features/email-confirmation/class-email-confirmation.php:91
4718
+ #: features/email-confirmation/class-email-confirmation.php:170
4719
  msgid "User Meta"
4720
  msgstr "User Meta"
4721
 
4722
+ #: modules/email-customizer/email-customizer.php:21
4723
  msgid "Site Url"
4724
  msgstr "网站地址"
4725
 
4726
+ #: modules/email-customizer/email-customizer.php:22
4727
  msgid "Site Name"
4728
  msgstr "网站名称"
4729
 
4730
+ #: modules/email-customizer/email-customizer.php:25
4731
+ #: modules/user-listing/userlisting.php:158
4732
  msgid "User Id"
4733
  msgstr "用户名称"
4734
 
4735
+ #: modules/email-customizer/email-customizer.php:33
4736
  msgid "Reply To"
4737
  msgstr "回复"
4738
 
4739
+ #: modules/email-customizer/email-customizer.php:40
4740
  msgid "Activation Key"
4741
  msgstr "激活密钥"
4742
 
4743
+ #: modules/email-customizer/email-customizer.php:41
4744
  msgid "Activation Url"
4745
  msgstr "激活URL"
4746
 
4747
+ #: modules/email-customizer/email-customizer.php:42
4748
  msgid "Activation Link"
4749
  msgstr "激活链接"
4750
 
4751
+ #: modules/email-customizer/user-email-customizer.php:64
4752
  msgid ""
4753
  "\n"
4754
  "<h3>Welcome to {{site_name}}!</h3>\n"
4758
  "<h3>欢迎来到 {{site_name}}!</h3>\n"
4759
  "<p>您的用户名是:{{username}} 密码是:{{password}}</p>\n"
4760
 
4761
+ #: modules/email-customizer/user-email-customizer.php:85
4762
  msgid "Default Registration"
4763
  msgstr "默认注册"
4764
 
4765
+ #: modules/email-customizer/user-email-customizer.php:91
4766
  msgid ""
4767
  "\n"
4768
  "<p>To activate your user, please click the following link:<br/>\n"
4774
  "{{{activation_link}}}</p>\n"
4775
  "<p>在您激活完成后,将会收到另外一封凭据邮件。</p>\n"
4776
 
4777
+ #: modules/email-customizer/user-email-customizer.php:103
4778
  msgid "[{{site_name}}] Activate {{username}}"
4779
  msgstr "[{{site_name}}] 激活 {{username}}"
4780
 
4781
+ #: modules/email-customizer/user-email-customizer.php:114
4782
  msgid "Registration with Email Confirmation"
4783
  msgstr "电子邮件确认注册"
4784
 
4785
+ #: modules/email-customizer/user-email-customizer.php:120
4786
  msgid ""
4787
  "\n"
4788
  "<h3>Welcome to {{site_name}}!</h3>\n"
4794
  "<p>您的用户名:{{username}} 密码:{{password}}</p>\n"
4795
  "<p>在您访问您的帐号前,需要管理审批。您将会收邮件通知。</p>\n"
4796
 
4797
+ #: modules/email-customizer/user-email-customizer.php:132
4798
  msgid "A new account has been created for you on {{site_name}}"
4799
  msgstr "一个新的帐号在您的 {{site_name}} 上建立"
4800
 
4801
+ #: modules/email-customizer/user-email-customizer.php:148
4802
  msgid ""
4803
  "\n"
4804
  "<h3>Good News!</h3>\n"
4808
  "<h3>好消息 !</h3>\n"
4809
  "<p>管理员已经批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
4810
 
4811
+ #: modules/email-customizer/user-email-customizer.php:159
4812
  msgid "Your account on {{site_name}} has been approved!"
4813
  msgstr "您在 {{site_name}} 的帐号已经被通过!"
4814
 
4815
+ #: modules/email-customizer/user-email-customizer.php:170
4816
  msgid "User Approval Notification"
4817
  msgstr "用户批准通知"
4818
 
4819
+ #: modules/email-customizer/user-email-customizer.php:175
4820
  msgid ""
4821
  "\n"
4822
  "<h3>Hello,</h3>\n"
4826
  "<h3>您好,</h3>\n"
4827
  "<p>抱歉,管理员未批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
4828
 
4829
+ #: modules/email-customizer/user-email-customizer.php:187
4830
  msgid "Your account on {{site_name}} has been unapproved!"
4831
  msgstr "您在 {{site_name}} 的帐号被拒绝!"
4832
 
4833
+ #: modules/email-customizer/user-email-customizer.php:198
4834
  msgid "Unapproved User Notification"
4835
  msgstr "被拒绝的用户通知"
4836
 
4837
+ #: modules/multiple-forms/edit-profile-forms.php:11
4838
+ #: modules/multiple-forms/edit-profile-forms.php:12
4839
  msgid "Edit-profile Form"
4840
  msgstr "编辑资料表单"
4841
 
4842
+ #: modules/multiple-forms/edit-profile-forms.php:13
4843
+ #: modules/multiple-forms/register-forms.php:13
4844
+ #: modules/user-listing/userlisting.php:13
4845
  msgid "Add New"
4846
  msgstr "新增加"
4847
 
4848
+ #: modules/multiple-forms/edit-profile-forms.php:14
4849
  msgid "Add new Edit-profile Form"
4850
  msgstr "添加新的编辑资料表单"
4851
 
4852
+ #: modules/multiple-forms/edit-profile-forms.php:15
4853
  msgid "Edit the Edit-profile Forms"
4854
  msgstr "编辑的编辑个人资料表单"
4855
 
4856
+ #: modules/multiple-forms/edit-profile-forms.php:16
4857
  msgid "New Edit-profile Form"
4858
  msgstr "新的编辑资料表单"
4859
 
4860
+ #: modules/multiple-forms/edit-profile-forms.php:17
4861
+ #: modules/multiple-forms/edit-profile-forms.php:23
4862
  msgid "Edit-profile Forms"
4863
  msgstr "编辑资料表单"
4864
 
4865
+ #: modules/multiple-forms/edit-profile-forms.php:18
4866
  msgid "View the Edit-profile Form"
4867
  msgstr "查看编辑资料表单"
4868
 
4869
+ #: modules/multiple-forms/edit-profile-forms.php:19
4870
  msgid "Search the Edit-profile Forms"
4871
  msgstr "搜索编辑资料表单"
4872
 
4873
+ #: modules/multiple-forms/edit-profile-forms.php:20
4874
  msgid "No Edit-profile Form found"
4875
  msgstr "没有编辑个人资料表单"
4876
 
4877
+ #: modules/multiple-forms/edit-profile-forms.php:21
4878
  msgid "No Edit-profile Forms found in trash"
4879
  msgstr "在回收站中没有编辑个人资料表单"
4880
 
4881
+ #: modules/multiple-forms/edit-profile-forms.php:135
4882
+ #: modules/multiple-forms/register-forms.php:138
4883
+ #: modules/user-listing/userlisting.php:2048
4884
  msgid "Shortcode"
4885
  msgstr "简码"
4886
 
4887
+ #: modules/multiple-forms/edit-profile-forms.php:155
4888
+ #: modules/multiple-forms/register-forms.php:159
4889
+ #: modules/user-listing/userlisting.php:2069
4890
  msgid "(no title)"
4891
  msgstr "(没有标题)"
4892
 
4893
+ #: modules/multiple-forms/edit-profile-forms.php:175
4894
+ #: modules/multiple-forms/register-forms.php:178
4895
+ #: modules/user-listing/userlisting.php:2089
4896
  msgid "The shortcode will be available after you publish this form."
4897
  msgstr "简码将在您发布表单后可用。"
4898
 
4899
+ #: modules/multiple-forms/edit-profile-forms.php:177
4900
+ #: modules/multiple-forms/register-forms.php:180
4901
+ #: modules/user-listing/userlisting.php:2091
4902
  msgid "Use this shortcode on the page you want the form to be displayed:"
4903
  msgstr "使用这个简码在页面上,将会获得您想要的表单显示效果:"
4904
 
4905
+ #: modules/multiple-forms/edit-profile-forms.php:181
4906
+ #: modules/multiple-forms/register-forms.php:184
4907
+ #: modules/user-listing/userlisting.php:2095
4908
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
4909
  msgstr "<span style=\"color:red;\">注意:</span> 改变表单标题也将改变简码!"
4910
 
4911
+ #: modules/multiple-forms/edit-profile-forms.php:187
4912
+ #: modules/multiple-forms/register-forms.php:190
4913
+ #: modules/user-listing/userlisting.php:2128
4914
  msgid "Form Shortcode"
4915
  msgstr "表单简码"
4916
 
4917
+ #: modules/multiple-forms/edit-profile-forms.php:206
4918
+ #: modules/multiple-forms/register-forms.php:230
4919
  msgid "Whether to redirect the user to a specific page or not"
4920
  msgstr "是否将用户重定向到特定页"
4921
 
4922
+ #: modules/multiple-forms/edit-profile-forms.php:207
4923
+ #: modules/multiple-forms/register-forms.php:231
4924
  msgid "Display Messages"
4925
  msgstr "显示消息"
4926
 
4927
+ #: modules/multiple-forms/edit-profile-forms.php:207
4928
+ #: modules/multiple-forms/register-forms.php:231
4929
  msgid "Allowed time to display any success messages (in seconds)"
4930
  msgstr "允许用时间去显示成功信息提示(秒)"
4931
 
4932
+ #: modules/multiple-forms/edit-profile-forms.php:208
4933
  msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
4934
  msgstr "指定页面用于用户一旦更新他们的资料使用这个表单转向<br/>使用这种格式: http://www.mysite.com"
4935
 
4936
+ #: modules/multiple-forms/edit-profile-forms.php:215
4937
  msgid "After Profile Update..."
4938
  msgstr "档案更新后…"
4939
 
4940
+ #: modules/multiple-forms/edit-profile-forms.php:241
4941
+ #: modules/multiple-forms/register-forms.php:262
4942
  msgid "Add New Field to the List"
4943
  msgstr "添加新字段到列表"
4944
 
4945
+ #: modules/multiple-forms/edit-profile-forms.php:245
4946
+ #: modules/multiple-forms/register-forms.php:266
4947
  msgid "Choose one of the supported fields you manage <a href=\""
4948
  msgstr "选择一个支持字段去管理 <a href=\""
4949
 
4950
+ #: modules/multiple-forms/multiple-forms.php:406
4951
  msgid "<pre>Title (Type)</pre>"
4952
  msgstr "<pre>标题 (类型)</pre>"
4953
 
4954
+ #: modules/multiple-forms/multiple-forms.php:222
4955
  msgid "You need to specify the title of the form before creating it"
4956
  msgstr "你需要在创建前指定表单的标题"
4957
 
4958
+ #: modules/multiple-forms/register-forms.php:11
4959
+ #: modules/multiple-forms/register-forms.php:12
4960
  msgid "Registration Form"
4961
  msgstr "注册表单"
4962
 
4963
+ #: modules/multiple-forms/register-forms.php:14
4964
  msgid "Add new Registration Form"
4965
  msgstr "增加新的注册表单"
4966
 
4967
+ #: modules/multiple-forms/register-forms.php:15
4968
  msgid "Edit the Registration Forms"
4969
  msgstr "编缉注册表单"
4970
 
4971
+ #: modules/multiple-forms/register-forms.php:16
4972
  msgid "New Registration Form"
4973
  msgstr "新注册表单"
4974
 
4975
+ #: modules/multiple-forms/register-forms.php:17
4976
+ #: modules/multiple-forms/register-forms.php:23
4977
  msgid "Registration Forms"
4978
  msgstr "注册表单"
4979
 
4980
+ #: modules/multiple-forms/register-forms.php:18
4981
  msgid "View the Registration Form"
4982
  msgstr "查看注册表单"
4983
 
4984
+ #: modules/multiple-forms/register-forms.php:19
4985
  msgid "Search the Registration Forms"
4986
  msgstr "搜索注册表单"
4987
 
4988
+ #: modules/multiple-forms/register-forms.php:20
4989
  msgid "No Registration Form found"
4990
  msgstr "没有找到注册表单"
4991
 
4992
+ #: modules/multiple-forms/register-forms.php:21
4993
  msgid "No Registration Forms found in trash"
4994
  msgstr "在回收站没有找到注册表单"
4995
 
4996
+ #: modules/multiple-forms/register-forms.php:219
4997
  msgid "Default Role"
4998
  msgstr "默认角色"
4999
 
5000
+ #: modules/multiple-forms/register-forms.php:228
5001
  msgid "Set Role"
5002
  msgstr "设置角色"
5003
 
5004
+ #: modules/multiple-forms/register-forms.php:228
5005
  msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5006
  msgstr "选择用户注册后的角色<br/>如无指定,将默认使用 WordPress 的设定"
5007
 
5008
+ #: modules/multiple-forms/register-forms.php:229
5009
  msgid "Automatically Log In"
5010
  msgstr "自动登录"
5011
 
5012
+ #: modules/multiple-forms/register-forms.php:229
5013
  msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5014
  msgstr "是否记录用户新注册 <br/> 只使用于单网站,并且没有开启 \"管理员审批\" 与 \"邮箱确认\" 功能 <br/>警告:缓存注册表单会让自动登录不正常"
5015
 
5016
+ #: modules/multiple-forms/register-forms.php:232
5017
  msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5018
  msgstr "指定用户注册页面地址将被重定向<br/>使用下列格式: http://www.mysite.com"
5019
 
5020
+ #: modules/multiple-forms/register-forms.php:238
5021
  msgid "After Registration..."
5022
  msgstr "注册后…"
5023
 
5024
+ #: modules/user-listing/userlisting.php:1021
5025
+ #: modules/user-listing/userlisting.php:1468
5026
+ #: modules/user-listing/userlisting.php:1886
5027
+ #: modules/user-listing/userlisting.php:2355
5028
  msgid "Search Users by All Fields"
5029
  msgstr "在所有字段中搜索用户"
5030
 
5031
+ #: modules/user-listing/userlisting.php:14
5032
  msgid "Add new User Listing"
5033
  msgstr "增加新的用户列表"
5034
 
5035
+ #: modules/user-listing/userlisting.php:15
5036
  msgid "Edit the User Listing"
5037
  msgstr "编辑用户列表"
5038
 
5039
+ #: modules/user-listing/userlisting.php:16
5040
  msgid "New User Listing"
5041
  msgstr "新的用户列表"
5042
 
5043
+ #: modules/user-listing/userlisting.php:18
5044
  msgid "View the User Listing"
5045
  msgstr "查看用户列表"
5046
 
5047
+ #: modules/user-listing/userlisting.php:19
5048
  msgid "Search the User Listing"
5049
  msgstr "搜索用户列表"
5050
 
5051
+ #: modules/user-listing/userlisting.php:20
5052
  msgid "No User Listing found"
5053
  msgstr "没有找到用户列表"
5054
 
5055
+ #: modules/user-listing/userlisting.php:21
5056
  msgid "No User Listing found in trash"
5057
  msgstr "没有在回收站找到用户列表"
5058
 
5059
+ #: modules/user-listing/userlisting.php:105
5060
  msgid "Display name as"
5061
  msgstr "显示名称为"
5062
 
5063
+ #: modules/user-listing/userlisting.php:150
5064
+ #: modules/user-listing/userlisting.php:2156
5065
  msgid "Registration Date"
5066
  msgstr "注册日期"
5067
 
5068
+ #: modules/user-listing/userlisting.php:151
5069
+ #: modules/user-listing/userlisting.php:2161
5070
  msgid "Number of Posts"
5071
  msgstr "帖子数"
5072
 
5073
+ #: modules/user-listing/userlisting.php:155
5074
  msgid "More Info"
5075
  msgstr "更多信息"
5076
 
5077
+ #: modules/user-listing/userlisting.php:156
5078
  msgid "More Info Url"
5079
  msgstr "更多信息网址"
5080
 
5081
+ #: modules/user-listing/userlisting.php:157
5082
  msgid "Avatar or Gravatar"
5083
  msgstr "头像或 Gravatar"
5084
 
5085
+ #: modules/user-listing/userlisting.php:196
5086
+ #: modules/user-listing/userlisting.php:227
5087
  msgid "Extra Functions"
5088
  msgstr "额外功能"
5089
 
5090
+ #: modules/user-listing/userlisting.php:199
5091
  msgid "Pagination"
5092
  msgstr "分页"
5093
 
5094
+ #: modules/user-listing/userlisting.php:200
5095
  msgid "Search all Fields"
5096
  msgstr "搜索所有字段"
5097
 
5098
+ #: modules/user-listing/userlisting.php:229
5099
  msgid "Go Back Link"
5100
  msgstr "返回链接"
5101
 
5102
+ #: modules/user-listing/userlisting.php:247
5103
  msgid "All-userlisting Template"
5104
  msgstr "所有用户列表模板"
5105
 
5106
+ #: modules/user-listing/userlisting.php:250
5107
  msgid "Single-userlisting Template"
5108
  msgstr "单用户列表模板"
5109
 
5110
+ #: modules/user-listing/userlisting.php:733
5111
  msgid "First/Lastname"
5112
  msgstr "名字/姓氏"
5113
 
5114
+ #: modules/user-listing/userlisting.php:281
5115
+ #: modules/user-listing/userlisting.php:739
5116
  msgid "Sign-up Date"
5117
  msgstr "注册日期"
5118
 
5119
+ #: modules/user-listing/userlisting.php:748
5120
+ #: modules/user-listing/userlisting.php:2159
5121
  msgid "Display Name"
5122
  msgstr "显示名称"
5123
 
5124
+ #: modules/user-listing/userlisting.php:280
5125
+ #: modules/user-listing/userlisting.php:757
5126
  msgid "Posts"
5127
  msgstr "帖子"
5128
 
5129
+ #: modules/user-listing/userlisting.php:760
5130
+ #: modules/user-listing/userlisting.php:2166
5131
  msgid "Aim"
5132
  msgstr "Aim"
5133
 
5134
+ #: modules/user-listing/userlisting.php:763
5135
+ #: modules/user-listing/userlisting.php:2167
5136
  msgid "Yim"
5137
  msgstr "Yim"
5138
 
5139
+ #: modules/user-listing/userlisting.php:766
5140
+ #: modules/user-listing/userlisting.php:2168
5141
  msgid "Jabber"
5142
  msgstr "Jabber"
5143
 
5144
+ #: modules/user-listing/userlisting.php:1273
5145
  msgid "Click here to see more information about this user"
5146
  msgstr "点击这里查看此用户的更多信息"
5147
 
5148
+ #: modules/user-listing/userlisting.php:1273
5149
  msgid "More..."
5150
  msgstr "更多..."
5151
 
5152
+ #: modules/user-listing/userlisting.php:1276
5153
  msgid "Click here to see more information about this user."
5154
  msgstr "点击这里查看此用户的更多信息。"
5155
 
5156
+ #: modules/user-listing/userlisting.php:1422
5157
+ #: modules/user-listing/userlisting.php:1425
5158
  msgid "Click here to go back"
5159
  msgstr "点击这里返回"
5160
 
5161
+ #: modules/user-listing/userlisting.php:1422
5162
  msgid "Back"
5163
  msgstr "返回"
5164
 
5165
+ #: modules/user-listing/userlisting.php:1455
5166
  msgid "&laquo;&laquo; First"
5167
  msgstr "&laquo;&laquo; 首页"
5168
 
5169
+ #: modules/user-listing/userlisting.php:1456
5170
  msgid "&laquo; Prev"
5171
  msgstr "&laquo; 上一页"
5172
 
5173
+ #: modules/user-listing/userlisting.php:1457
5174
  msgid "Next &raquo; "
5175
  msgstr "下一页 &raquo; "
5176
 
5177
+ #: modules/user-listing/userlisting.php:1458
5178
  msgid "Last &raquo;&raquo;"
5179
  msgstr "最后 &raquo;&raquo;"
5180
 
5181
+ #: modules/user-listing/userlisting.php:1487
5182
  msgid "You don't have any pagination settings on this userlisting!"
5183
  msgstr "您不需在用户列表中设置分页"
5184
 
5185
+ #: modules/user-listing/userlisting.php:1903
5186
  msgid "Search"
5187
  msgstr "搜索"
5188
 
5189
+ #: modules/user-listing/userlisting.php:1904
5190
  msgid "Clear Results"
5191
  msgstr "清除结果"
5192
 
5193
+ #: modules/user-listing/userlisting.php:2098
5194
+ #: modules/user-listing/userlisting.php:2102
5195
  msgid "Extra shortcode parameters"
5196
  msgstr "额外简码参数"
5197
 
5198
+ #: modules/user-listing/userlisting.php:2105
5199
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5200
  msgstr "显示用户在某一(额外)元字段(meta-field)"
5201
 
5202
+ #: modules/user-listing/userlisting.php:2106
5203
  msgid "Example:"
5204
  msgstr "例子:"
5205
 
5206
+ #: modules/user-listing/userlisting.php:2108
5207
  msgid "Remember though, that the field-value combination must exist in the database."
5208
  msgstr "记住,该字段值的组合必须存在于数据库中。"
5209
 
5210
+ #: modules/user-listing/userlisting.php:2183
5211
  msgid "Random (very slow on large databases > 10K user)"
5212
  msgstr "随机 (在大于 10K 的用户数据库中将会很慢 )"
5213
 
5214
+ #: modules/user-listing/userlisting.php:2195
5215
  msgid "Roles to Display"
5216
  msgstr "角色显示:"
5217
 
5218
+ #: modules/user-listing/userlisting.php:2195
5219
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5220
  msgstr "限制用户列表中的特定角色<br/>如果没有指定,默认为全部现有的角色"
5221
 
5222
+ #: modules/user-listing/userlisting.php:2196
5223
  msgid "Number of Users/Page"
5224
  msgstr "用户/页面数"
5225
 
5226
+ #: modules/user-listing/userlisting.php:2197
5227
  msgid "Default Sorting Criteria"
5228
  msgstr "默认分类标准"
5229
 
5230
+ #: modules/user-listing/userlisting.php:2197
5231
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5232
  msgstr "设置默认的排序标准<br/>这可以暂时被每一个新的会话更改"
5233
 
5234
+ #: modules/user-listing/userlisting.php:2198
5235
  msgid "Default Sorting Order"
5236
  msgstr "默认排列顺序"
5237
 
5238
+ #: modules/user-listing/userlisting.php:2198
5239
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5240
  msgstr "设置默认排列顺序<br/>这可以在每个新会话时被改变"
5241
 
5242
+ #: modules/user-listing/userlisting.php:2199
5243
  msgid "Avatar Size (All-userlisting)"
5244
  msgstr "头像大小(所有用户列表)"
5245
 
5246
+ #: modules/user-listing/userlisting.php:2199
5247
  msgid "Set the avatar size on the all-userlisting only"
5248
  msgstr "设置在所有用户列表的头像大小"
5249
 
5250
+ #: modules/user-listing/userlisting.php:2200
5251
  msgid "Avatar Size (Single-userlisting)"
5252
  msgstr "头像大小(单用户列表)"
5253
 
5254
+ #: modules/user-listing/userlisting.php:2200
5255
  msgid "Set the avatar size on the single-userlisting only"
5256
  msgstr "设置在单用户列表的头像大小"
5257
 
5258
+ #: modules/user-listing/userlisting.php:2201
5259
  msgid "Visible only to logged in users?"
5260
  msgstr "只有登录用户可见的?"
5261
 
5262
+ #: modules/user-listing/userlisting.php:2201
5263
  msgid "The userlisting will only be visible only to the logged in users"
5264
  msgstr "用户列表只有登录用户可见的"
5265
 
5266
+ #: modules/user-listing/userlisting.php:2202
5267
  msgid "Visible to following Roles"
5268
  msgstr "以下角色可见"
5269
 
5270
+ #: modules/user-listing/userlisting.php:2202
5271
  msgid "The userlisting will only be visible to the following roles"
5272
  msgstr "用户列表只允许以下角色可见"
5273
 
5274
+ #: modules/user-listing/userlisting.php:2208
5275
  msgid "Userlisting Settings"
5276
  msgstr "用户列表设置"
5277
 
5278
+ #: modules/user-listing/userlisting.php:2331
5279
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5280
  msgstr "您需要激活用户列表功能在 \"模块\" 选项卡!"
5281
 
5282
+ #: modules/user-listing/userlisting.php:2331
5283
  msgid "You can find it in the Profile Builder menu."
5284
  msgstr "你可以在 Profile Builder 菜单中找到它。"
5285
 
5286
+ #: modules/user-listing/userlisting.php:2494
5287
  msgid "No results found!"
5288
  msgstr "无任何结果!"
translation/profile-builder-zh_HK.mo CHANGED
Binary file
translation/profile-builder-zh_HK.po CHANGED
@@ -10,3040 +10,2890 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
- msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
- msgstr ""
16
-
17
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
- msgstr ""
20
-
21
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
- msgid "View Map"
23
  msgstr ""
24
 
25
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
- #: pb-add-on-woocommerce/index.php:493
28
- msgid "Address line 2"
29
  msgstr ""
30
 
31
- #: pb-add-on-woocommerce/index.php:256
32
- msgid "Billing Fields"
33
  msgstr ""
34
 
35
- #: pb-add-on-woocommerce/index.php:256
36
- msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
  msgstr ""
38
 
39
- #: pb-add-on-woocommerce/index.php:257
40
- msgid "Billing Fields Order"
41
  msgstr ""
42
 
43
- #: pb-add-on-woocommerce/index.php:257
44
- msgid "Save the billing fields order from the billing fields checkboxes"
45
  msgstr ""
46
 
47
- #: pb-add-on-woocommerce/index.php:258
48
- msgid "Billing Fields Name"
49
  msgstr ""
50
 
51
- #: pb-add-on-woocommerce/index.php:258
52
- msgid "Save the billing fields names"
53
  msgstr ""
54
 
55
- #: pb-add-on-woocommerce/index.php:275
56
- msgid "Shipping Fields"
57
  msgstr ""
58
 
59
- #: pb-add-on-woocommerce/index.php:275
60
- msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
  msgstr ""
62
 
63
- #: pb-add-on-woocommerce/index.php:276
64
- msgid "Shipping Fields Order"
65
  msgstr ""
66
 
67
- #: pb-add-on-woocommerce/index.php:276
68
- msgid "Save the shipping fields order from the billing fields checkboxes"
69
  msgstr ""
70
 
71
- #: pb-add-on-woocommerce/index.php:277
72
- msgid "Shipping Fields Name"
73
  msgstr ""
74
 
75
- #: pb-add-on-woocommerce/index.php:277
76
- msgid "Save the shipping fields names"
77
  msgstr ""
78
 
79
- #: pb-add-on-woocommerce/index.php:305
80
- msgid "Field Name"
 
81
  msgstr ""
82
 
83
- #: pb-add-on-woocommerce/index.php:369
84
- msgid "Click to edit "
85
  msgstr ""
86
 
87
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
- msgid "is not a valid phone number."
89
  msgstr ""
90
 
91
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
- msgid "is not a number."
93
- msgstr ""
94
-
95
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
- msgid "must be a multiplier of "
97
  msgstr ""
98
 
99
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
- msgid "must be a greater than or equal to "
101
  msgstr ""
102
 
103
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
- msgid "must be less than or equal to "
105
  msgstr ""
106
 
107
- #: profile-builder-2.0/admin/add-ons.php:103
108
  msgid "Available in Hobbyist and Pro Versions"
109
  msgstr ""
110
 
111
- #: profile-builder-2.0/admin/add-ons.php:105
112
  msgid "Available in All Versions"
113
  msgstr ""
114
 
115
- #: profile-builder-2.0/admin/add-ons.php:148
116
  msgid "Learn More"
117
  msgstr ""
118
 
119
- #: profile-builder-2.0/admin/basic-info.php:99
120
  msgid "Timepicker"
121
  msgstr ""
122
 
123
- #: profile-builder-2.0/admin/basic-info.php:100
124
  msgid "Colorpicker"
125
  msgstr ""
126
 
127
- #: profile-builder-2.0/admin/basic-info.php:103
128
  msgid "Currency Select"
129
  msgstr ""
130
 
131
- #: profile-builder-2.0/admin/basic-info.php:109
132
  msgid "Number"
133
  msgstr ""
134
 
135
- #: profile-builder-2.0/admin/basic-info.php:114
136
  msgid "Validation"
137
  msgstr ""
138
 
139
- #: profile-builder-2.0/admin/basic-info.php:115
140
  msgid "Map"
141
  msgstr ""
142
 
143
- #: profile-builder-2.0/admin/basic-info.php:116
144
  msgid "HTML"
145
  msgstr ""
146
 
147
- #: profile-builder-2.0/admin/basic-info.php:162
148
- #: profile-builder-2.0/modules/modules.php:117
149
  msgid "Repeater Fields"
150
  msgstr ""
151
 
152
- #: profile-builder-2.0/admin/basic-info.php:163
153
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
  msgstr ""
155
 
156
- #: profile-builder-2.0/admin/general-settings.php:62
157
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
  msgstr ""
159
 
160
- #: profile-builder-2.0/admin/manage-fields.php:115
161
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
162
  msgstr ""
163
 
164
- #: profile-builder-2.0/admin/manage-fields.php:138
165
  msgid "Show Currency Symbol"
166
  msgstr ""
167
 
168
- #: profile-builder-2.0/admin/manage-fields.php:138
169
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
  msgstr ""
171
 
172
- #: profile-builder-2.0/admin/manage-fields.php:139
173
  msgid "Show Post Type"
174
  msgstr ""
175
 
176
- #: profile-builder-2.0/admin/manage-fields.php:139
177
  msgid "Posts from what post type will be displayed in the select."
178
  msgstr ""
179
 
180
- #: profile-builder-2.0/admin/manage-fields.php:140
181
  msgid "Allowable Values"
182
  msgstr ""
183
 
184
- #: profile-builder-2.0/admin/manage-fields.php:140
185
  msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
  msgstr ""
187
 
188
- #: profile-builder-2.0/admin/manage-fields.php:141
189
  msgid "Error Message"
190
  msgstr ""
191
 
192
- #: profile-builder-2.0/admin/manage-fields.php:141
193
  msgid "Set a custom error message that will be displayed to the user."
194
  msgstr ""
195
 
196
- #: profile-builder-2.0/admin/manage-fields.php:142
197
  msgid "Time Format"
198
  msgstr ""
199
 
200
- #: profile-builder-2.0/admin/manage-fields.php:142
201
  msgid "Specify the time format."
202
  msgstr ""
203
 
204
- #: profile-builder-2.0/admin/manage-fields.php:143
205
  msgid "Google Maps API Key"
206
  msgstr ""
207
 
208
- #: profile-builder-2.0/admin/manage-fields.php:143
209
  msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
  msgstr ""
211
 
212
- #: profile-builder-2.0/admin/manage-fields.php:144
213
  msgid "Default Latitude"
214
  msgstr ""
215
 
216
- #: profile-builder-2.0/admin/manage-fields.php:144
217
  msgid "The latitude at which the map should be displayed when no pins are attached."
218
  msgstr ""
219
 
220
- #: profile-builder-2.0/admin/manage-fields.php:145
221
  msgid "Default Longitude"
222
  msgstr ""
223
 
224
- #: profile-builder-2.0/admin/manage-fields.php:145
225
  msgid "The longitude at which the map should be displayed when no pins are attached."
226
  msgstr ""
227
 
228
- #: profile-builder-2.0/admin/manage-fields.php:146
229
  msgid "Default Zoom Level"
230
  msgstr ""
231
 
232
- #: profile-builder-2.0/admin/manage-fields.php:146
233
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
  msgstr ""
235
 
236
- #: profile-builder-2.0/admin/manage-fields.php:147
237
  msgid "Map Height"
238
  msgstr ""
239
 
240
- #: profile-builder-2.0/admin/manage-fields.php:147
241
  msgid "The height of the map."
242
  msgstr ""
243
 
244
- #: profile-builder-2.0/admin/manage-fields.php:149
245
  msgid "HTML Content"
246
  msgstr ""
247
 
248
- #: profile-builder-2.0/admin/manage-fields.php:149
249
  msgid "Add your HTML (or text) content"
250
  msgstr ""
251
 
252
- #: profile-builder-2.0/admin/manage-fields.php:150
253
  msgid "Phone Format"
254
  msgstr ""
255
 
256
- #: profile-builder-2.0/admin/manage-fields.php:150
257
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
  msgstr ""
259
 
260
- #: profile-builder-2.0/admin/manage-fields.php:150
261
  msgid "Eg. (###) ###-####"
262
  msgstr ""
263
 
264
- #: profile-builder-2.0/admin/manage-fields.php:150
265
  msgid "Empty field won't check for correct phone number."
266
  msgstr ""
267
 
268
- #: profile-builder-2.0/admin/manage-fields.php:151
269
  msgid "Heading Tag"
270
  msgstr ""
271
 
272
- #: profile-builder-2.0/admin/manage-fields.php:151
273
  msgid "Change heading field size on front-end forms"
274
  msgstr ""
275
 
276
- #: profile-builder-2.0/admin/manage-fields.php:152
277
  msgid "Min Number Value"
278
  msgstr ""
279
 
280
- #: profile-builder-2.0/admin/manage-fields.php:152
281
  msgid "Min allowed number value (0 to allow only positive numbers)"
282
  msgstr ""
283
 
284
- #: profile-builder-2.0/admin/manage-fields.php:152
285
  msgid "Leave it empty for no min value"
286
  msgstr ""
287
 
288
- #: profile-builder-2.0/admin/manage-fields.php:153
289
  msgid "Max Number Value"
290
  msgstr ""
291
 
292
- #: profile-builder-2.0/admin/manage-fields.php:153
293
  msgid "Max allowed number value (0 to allow only negative numbers)"
294
  msgstr ""
295
 
296
- #: profile-builder-2.0/admin/manage-fields.php:153
297
  msgid "Leave it empty for no max value"
298
  msgstr ""
299
 
300
- #: profile-builder-2.0/admin/manage-fields.php:154
301
  msgid "Number Step Value"
302
  msgstr ""
303
 
304
- #: profile-builder-2.0/admin/manage-fields.php:154
305
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
  msgstr ""
307
 
308
- #: profile-builder-2.0/admin/manage-fields.php:154
309
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
  msgstr ""
311
 
312
- #: profile-builder-2.0/admin/manage-fields.php:154
313
  msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
  msgstr ""
315
 
316
- #: profile-builder-2.0/admin/manage-fields.php:154
317
  msgid "Leave it empty for no restriction"
318
  msgstr ""
319
 
320
- #: profile-builder-2.0/admin/manage-fields.php:555
321
  msgid "Albania Lek"
322
  msgstr ""
323
 
324
- #: profile-builder-2.0/admin/manage-fields.php:556
325
  msgid "Afghanistan Afghani"
326
  msgstr ""
327
 
328
- #: profile-builder-2.0/admin/manage-fields.php:557
329
  msgid "Argentina Peso"
330
  msgstr ""
331
 
332
- #: profile-builder-2.0/admin/manage-fields.php:558
333
  msgid "Aruba Guilder"
334
  msgstr ""
335
 
336
- #: profile-builder-2.0/admin/manage-fields.php:559
337
  msgid "Australia Dollar"
338
  msgstr ""
339
 
340
- #: profile-builder-2.0/admin/manage-fields.php:560
341
  msgid "Azerbaijan New Manat"
342
  msgstr ""
343
 
344
- #: profile-builder-2.0/admin/manage-fields.php:561
345
  msgid "Bahamas Dollar"
346
  msgstr ""
347
 
348
- #: profile-builder-2.0/admin/manage-fields.php:562
349
  msgid "Barbados Dollar"
350
  msgstr ""
351
 
352
- #: profile-builder-2.0/admin/manage-fields.php:563
353
  msgid "Bangladeshi taka"
354
  msgstr ""
355
 
356
- #: profile-builder-2.0/admin/manage-fields.php:564
357
  msgid "Belarus Ruble"
358
  msgstr ""
359
 
360
- #: profile-builder-2.0/admin/manage-fields.php:565
361
  msgid "Belize Dollar"
362
  msgstr ""
363
 
364
- #: profile-builder-2.0/admin/manage-fields.php:566
365
  msgid "Bermuda Dollar"
366
  msgstr ""
367
 
368
- #: profile-builder-2.0/admin/manage-fields.php:567
369
  msgid "Bolivia Boliviano"
370
  msgstr ""
371
 
372
- #: profile-builder-2.0/admin/manage-fields.php:568
373
  msgid "Bosnia and Herzegovina Convertible Marka"
374
  msgstr ""
375
 
376
- #: profile-builder-2.0/admin/manage-fields.php:569
377
  msgid "Botswana Pula"
378
  msgstr ""
379
 
380
- #: profile-builder-2.0/admin/manage-fields.php:570
381
  msgid "Bulgaria Lev"
382
  msgstr ""
383
 
384
- #: profile-builder-2.0/admin/manage-fields.php:571
385
  msgid "Brazil Real"
386
  msgstr ""
387
 
388
- #: profile-builder-2.0/admin/manage-fields.php:572
389
  msgid "Brunei Darussalam Dollar"
390
  msgstr ""
391
 
392
- #: profile-builder-2.0/admin/manage-fields.php:573
393
  msgid "Cambodia Riel"
394
  msgstr ""
395
 
396
- #: profile-builder-2.0/admin/manage-fields.php:574
397
  msgid "Canada Dollar"
398
  msgstr ""
399
 
400
- #: profile-builder-2.0/admin/manage-fields.php:575
401
  msgid "Cayman Islands Dollar"
402
  msgstr ""
403
 
404
- #: profile-builder-2.0/admin/manage-fields.php:576
405
  msgid "Chile Peso"
406
  msgstr ""
407
 
408
- #: profile-builder-2.0/admin/manage-fields.php:577
409
  msgid "China Yuan Renminbi"
410
  msgstr ""
411
 
412
- #: profile-builder-2.0/admin/manage-fields.php:578
413
  msgid "Colombia Peso"
414
  msgstr ""
415
 
416
- #: profile-builder-2.0/admin/manage-fields.php:579
417
  msgid "Costa Rica Colon"
418
  msgstr ""
419
 
420
- #: profile-builder-2.0/admin/manage-fields.php:580
421
  msgid "Croatia Kuna"
422
  msgstr ""
423
 
424
- #: profile-builder-2.0/admin/manage-fields.php:581
425
  msgid "Cuba Peso"
426
  msgstr ""
427
 
428
- #: profile-builder-2.0/admin/manage-fields.php:582
429
  msgid "Czech Republic Koruna"
430
  msgstr ""
431
 
432
- #: profile-builder-2.0/admin/manage-fields.php:583
433
  msgid "Denmark Krone"
434
  msgstr ""
435
 
436
- #: profile-builder-2.0/admin/manage-fields.php:584
437
  msgid "Dominican Republic Peso"
438
  msgstr ""
439
 
440
- #: profile-builder-2.0/admin/manage-fields.php:585
441
  msgid "East Caribbean Dollar"
442
  msgstr ""
443
 
444
- #: profile-builder-2.0/admin/manage-fields.php:586
445
  msgid "Egypt Pound"
446
  msgstr ""
447
 
448
- #: profile-builder-2.0/admin/manage-fields.php:587
449
  msgid "El Salvador Colon"
450
  msgstr ""
451
 
452
- #: profile-builder-2.0/admin/manage-fields.php:588
453
  msgid "Estonia Kroon"
454
  msgstr ""
455
 
456
- #: profile-builder-2.0/admin/manage-fields.php:589
457
  msgid "Euro"
458
  msgstr ""
459
 
460
- #: profile-builder-2.0/admin/manage-fields.php:590
461
  msgid "Falkland Islands (Malvinas) Pound"
462
  msgstr ""
463
 
464
- #: profile-builder-2.0/admin/manage-fields.php:591
465
  msgid "Fiji Dollar"
466
  msgstr ""
467
 
468
- #: profile-builder-2.0/admin/manage-fields.php:592
469
  msgid "Ghana Cedis"
470
  msgstr ""
471
 
472
- #: profile-builder-2.0/admin/manage-fields.php:593
473
  msgid "Gibraltar Pound"
474
  msgstr ""
475
 
476
- #: profile-builder-2.0/admin/manage-fields.php:594
477
  msgid "Guatemala Quetzal"
478
  msgstr ""
479
 
480
- #: profile-builder-2.0/admin/manage-fields.php:595
481
  msgid "Guernsey Pound"
482
  msgstr ""
483
 
484
- #: profile-builder-2.0/admin/manage-fields.php:596
485
  msgid "Guyana Dollar"
486
  msgstr ""
487
 
488
- #: profile-builder-2.0/admin/manage-fields.php:597
489
  msgid "Honduras Lempira"
490
  msgstr ""
491
 
492
- #: profile-builder-2.0/admin/manage-fields.php:598
493
  msgid "Hong Kong Dollar"
494
  msgstr ""
495
 
496
- #: profile-builder-2.0/admin/manage-fields.php:599
497
  msgid "Hungary Forint"
498
  msgstr ""
499
 
500
- #: profile-builder-2.0/admin/manage-fields.php:600
501
  msgid "Iceland Krona"
502
  msgstr ""
503
 
504
- #: profile-builder-2.0/admin/manage-fields.php:601
505
  msgid "India Rupee"
506
  msgstr ""
507
 
508
- #: profile-builder-2.0/admin/manage-fields.php:602
509
  msgid "Indonesia Rupiah"
510
  msgstr ""
511
 
512
- #: profile-builder-2.0/admin/manage-fields.php:603
513
  msgid "Iran Rial"
514
  msgstr ""
515
 
516
- #: profile-builder-2.0/admin/manage-fields.php:604
517
  msgid "Isle of Man Pound"
518
  msgstr ""
519
 
520
- #: profile-builder-2.0/admin/manage-fields.php:605
521
  msgid "Israel Shekel"
522
  msgstr ""
523
 
524
- #: profile-builder-2.0/admin/manage-fields.php:606
525
  msgid "Jamaica Dollar"
526
  msgstr ""
527
 
528
- #: profile-builder-2.0/admin/manage-fields.php:607
529
  msgid "Japan Yen"
530
  msgstr ""
531
 
532
- #: profile-builder-2.0/admin/manage-fields.php:608
533
  msgid "Jersey Pound"
534
  msgstr ""
535
 
536
- #: profile-builder-2.0/admin/manage-fields.php:609
537
  msgid "Kazakhstan Tenge"
538
  msgstr ""
539
 
540
- #: profile-builder-2.0/admin/manage-fields.php:610
541
  msgid "Korea (North) Won"
542
  msgstr ""
543
 
544
- #: profile-builder-2.0/admin/manage-fields.php:611
545
  msgid "Korea (South) Won"
546
  msgstr ""
547
 
548
- #: profile-builder-2.0/admin/manage-fields.php:612
549
  msgid "Kyrgyzstan Som"
550
  msgstr ""
551
 
552
- #: profile-builder-2.0/admin/manage-fields.php:613
553
  msgid "Laos Kip"
554
  msgstr ""
555
 
556
- #: profile-builder-2.0/admin/manage-fields.php:614
557
  msgid "Latvia Lat"
558
  msgstr ""
559
 
560
- #: profile-builder-2.0/admin/manage-fields.php:615
561
  msgid "Lebanon Pound"
562
  msgstr ""
563
 
564
- #: profile-builder-2.0/admin/manage-fields.php:616
565
  msgid "Liberia Dollar"
566
  msgstr ""
567
 
568
- #: profile-builder-2.0/admin/manage-fields.php:617
569
  msgid "Lithuania Litas"
570
  msgstr ""
571
 
572
- #: profile-builder-2.0/admin/manage-fields.php:618
573
  msgid "Macedonia Denar"
574
  msgstr ""
575
 
576
- #: profile-builder-2.0/admin/manage-fields.php:619
577
  msgid "Malaysia Ringgit"
578
  msgstr ""
579
 
580
- #: profile-builder-2.0/admin/manage-fields.php:620
581
  msgid "Mauritius Rupee"
582
  msgstr ""
583
 
584
- #: profile-builder-2.0/admin/manage-fields.php:621
585
  msgid "Mexico Peso"
586
  msgstr ""
587
 
588
- #: profile-builder-2.0/admin/manage-fields.php:622
589
  msgid "Mongolia Tughrik"
590
  msgstr ""
591
 
592
- #: profile-builder-2.0/admin/manage-fields.php:623
593
  msgid "Mozambique Metical"
594
  msgstr ""
595
 
596
- #: profile-builder-2.0/admin/manage-fields.php:624
597
  msgid "Namibia Dollar"
598
  msgstr ""
599
 
600
- #: profile-builder-2.0/admin/manage-fields.php:625
601
  msgid "Nepal Rupee"
602
  msgstr ""
603
 
604
- #: profile-builder-2.0/admin/manage-fields.php:626
605
  msgid "Netherlands Antilles Guilder"
606
  msgstr ""
607
 
608
- #: profile-builder-2.0/admin/manage-fields.php:627
609
  msgid "New Zealand Dollar"
610
  msgstr ""
611
 
612
- #: profile-builder-2.0/admin/manage-fields.php:628
613
  msgid "Nicaragua Cordoba"
614
  msgstr ""
615
 
616
- #: profile-builder-2.0/admin/manage-fields.php:629
617
  msgid "Nigeria Naira"
618
  msgstr ""
619
 
620
- #: profile-builder-2.0/admin/manage-fields.php:630
621
  msgid "Norway Krone"
622
  msgstr ""
623
 
624
- #: profile-builder-2.0/admin/manage-fields.php:631
625
  msgid "Oman Rial"
626
  msgstr ""
627
 
628
- #: profile-builder-2.0/admin/manage-fields.php:632
629
  msgid "Pakistan Rupee"
630
  msgstr ""
631
 
632
- #: profile-builder-2.0/admin/manage-fields.php:633
633
  msgid "Panama Balboa"
634
  msgstr ""
635
 
636
- #: profile-builder-2.0/admin/manage-fields.php:634
637
  msgid "Paraguay Guarani"
638
  msgstr ""
639
 
640
- #: profile-builder-2.0/admin/manage-fields.php:635
641
  msgid "Peru Nuevo Sol"
642
  msgstr ""
643
 
644
- #: profile-builder-2.0/admin/manage-fields.php:636
645
  msgid "Philippines Peso"
646
  msgstr ""
647
 
648
- #: profile-builder-2.0/admin/manage-fields.php:637
649
  msgid "Poland Zloty"
650
  msgstr ""
651
 
652
- #: profile-builder-2.0/admin/manage-fields.php:638
653
  msgid "Qatar Riyal"
654
  msgstr ""
655
 
656
- #: profile-builder-2.0/admin/manage-fields.php:639
657
  msgid "Romania New Leu"
658
  msgstr ""
659
 
660
- #: profile-builder-2.0/admin/manage-fields.php:640
661
  msgid "Russia Ruble"
662
  msgstr ""
663
 
664
- #: profile-builder-2.0/admin/manage-fields.php:641
665
  msgid "Saint Helena Pound"
666
  msgstr ""
667
 
668
- #: profile-builder-2.0/admin/manage-fields.php:642
669
  msgid "Saudi Arabia Riyal"
670
  msgstr ""
671
 
672
- #: profile-builder-2.0/admin/manage-fields.php:643
673
  msgid "Serbia Dinar"
674
  msgstr ""
675
 
676
- #: profile-builder-2.0/admin/manage-fields.php:644
677
  msgid "Seychelles Rupee"
678
  msgstr ""
679
 
680
- #: profile-builder-2.0/admin/manage-fields.php:645
681
  msgid "Singapore Dollar"
682
  msgstr ""
683
 
684
- #: profile-builder-2.0/admin/manage-fields.php:646
685
  msgid "Solomon Islands Dollar"
686
  msgstr ""
687
 
688
- #: profile-builder-2.0/admin/manage-fields.php:647
689
  msgid "Somalia Shilling"
690
  msgstr ""
691
 
692
- #: profile-builder-2.0/admin/manage-fields.php:648
693
  msgid "South Africa Rand"
694
  msgstr ""
695
 
696
- #: profile-builder-2.0/admin/manage-fields.php:649
697
  msgid "Sri Lanka Rupee"
698
  msgstr ""
699
 
700
- #: profile-builder-2.0/admin/manage-fields.php:650
701
  msgid "Sweden Krona"
702
  msgstr ""
703
 
704
- #: profile-builder-2.0/admin/manage-fields.php:651
705
  msgid "Switzerland Franc"
706
  msgstr ""
707
 
708
- #: profile-builder-2.0/admin/manage-fields.php:652
709
  msgid "Suriname Dollar"
710
  msgstr ""
711
 
712
- #: profile-builder-2.0/admin/manage-fields.php:653
713
  msgid "Syria Pound"
714
  msgstr ""
715
 
716
- #: profile-builder-2.0/admin/manage-fields.php:654
717
  msgid "Taiwan New Dollar"
718
  msgstr ""
719
 
720
- #: profile-builder-2.0/admin/manage-fields.php:655
721
  msgid "Thailand Baht"
722
  msgstr ""
723
 
724
- #: profile-builder-2.0/admin/manage-fields.php:656
725
  msgid "Trinidad and Tobago Dollar"
726
  msgstr ""
727
 
728
- #: profile-builder-2.0/admin/manage-fields.php:657
729
- #: profile-builder-2.0/admin/manage-fields.php:658
730
  msgid "Turkey Lira"
731
  msgstr ""
732
 
733
- #: profile-builder-2.0/admin/manage-fields.php:659
734
  msgid "Tuvalu Dollar"
735
  msgstr ""
736
 
737
- #: profile-builder-2.0/admin/manage-fields.php:660
738
  msgid "Ukraine Hryvna"
739
  msgstr ""
740
 
741
- #: profile-builder-2.0/admin/manage-fields.php:661
742
  msgid "United Kingdom Pound"
743
  msgstr ""
744
 
745
- #: profile-builder-2.0/admin/manage-fields.php:662
746
  msgid "Uganda Shilling"
747
  msgstr ""
748
 
749
- #: profile-builder-2.0/admin/manage-fields.php:663
750
  msgid "US Dollar"
751
  msgstr ""
752
 
753
- #: profile-builder-2.0/admin/manage-fields.php:664
754
  msgid "Uruguay Peso"
755
  msgstr ""
756
 
757
- #: profile-builder-2.0/admin/manage-fields.php:665
758
  msgid "Uzbekistan Som"
759
  msgstr ""
760
 
761
- #: profile-builder-2.0/admin/manage-fields.php:666
762
  msgid "Venezuela Bolivar"
763
  msgstr ""
764
 
765
- #: profile-builder-2.0/admin/manage-fields.php:667
766
  msgid "Viet Nam Dong"
767
  msgstr ""
768
 
769
- #: profile-builder-2.0/admin/manage-fields.php:668
770
  msgid "Yemen Rial"
771
  msgstr ""
772
 
773
- #: profile-builder-2.0/admin/manage-fields.php:669
774
  msgid "Zimbabwe Dollar"
775
  msgstr ""
776
 
777
- #: profile-builder-2.0/admin/manage-fields.php:1080
778
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
  msgstr ""
780
 
781
- #: profile-builder-2.0/admin/manage-fields.php:1296
782
  msgid "Search Location"
783
  msgstr ""
784
 
785
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
  msgid "You are not allowed to do this."
787
  msgstr ""
788
 
789
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
  msgid "Search Users"
792
  msgstr ""
793
 
794
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
  msgid "Conditional Logic"
796
  msgstr ""
797
 
798
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
  msgid "Conditional Rules"
800
  msgstr ""
801
 
802
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
  msgid "This field has conditional logic enabled."
804
  msgstr ""
805
 
806
- #: profile-builder-2.0/features/functions.php:712
807
  msgid "Incorrect phone number"
808
  msgstr ""
809
 
810
- #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
  msgstr ""
813
 
814
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
  msgid "Please add the Google Maps API key for this field."
817
  msgstr ""
818
 
819
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
  msgid "Something went wrong. Please try again."
821
  msgstr ""
822
 
823
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
  msgid "Please enter numbers only"
825
  msgstr ""
826
 
827
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
  msgid "Value must be a multiplier of %1$s"
829
  msgstr ""
830
 
831
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
  msgid "Value must be greater than or equal to %1$s"
833
  msgstr ""
834
 
835
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
  msgid "Value must be less than or equal to %1$s"
837
  msgstr ""
838
 
839
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
  msgid "Required phone number format: "
841
  msgstr ""
842
 
843
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Bolivia, __( Plurinational State of"
845
  msgstr ""
846
 
847
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Bonaire, __( Sint Eustatius and Saba"
849
  msgstr ""
850
 
851
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Brunei Darussalam"
853
  msgstr ""
854
 
855
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cabo Verde"
857
  msgstr ""
858
 
859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Cocos (Keeling) Islands"
861
  msgstr ""
862
 
863
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Congo"
865
  msgstr ""
866
 
867
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Congo, __( the Democratic Republic of the"
869
  msgstr ""
870
 
871
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Cote dIvoire"
873
  msgstr ""
874
 
875
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Falkland Islands (Malvinas)"
877
  msgstr ""
878
 
879
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Holy See (Vatican City State)"
881
  msgstr ""
882
 
883
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Iran, __( Islamic Republic of"
885
  msgstr ""
886
 
887
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Korea, __( Democratic Peoples Republic of"
889
  msgstr ""
890
 
891
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Korea, __( Republic of"
893
  msgstr ""
894
 
895
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Lao Peoples Democratic Republic"
897
  msgstr ""
898
 
899
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Macedonia, __( the former Yugoslav Republic of"
901
  msgstr ""
902
 
903
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Micronesia, __( Federated States of"
905
  msgstr ""
906
 
907
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Moldova, __( Republic of"
909
  msgstr ""
910
 
911
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Palestine, __( State of"
913
  msgstr ""
914
 
915
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Russian Federation"
917
  msgstr ""
918
 
919
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
  msgstr ""
922
 
923
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Saint Martin (French part)"
925
  msgstr ""
926
 
927
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Sint Maarten (Dutch part)"
929
  msgstr ""
930
 
931
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Syrian Arab Republic"
933
  msgstr ""
934
 
935
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Taiwan, __( Province of China"
937
  msgstr ""
938
 
939
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Tanzania, __( United Republic of"
941
  msgstr ""
942
 
943
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Timor-Leste"
945
  msgstr ""
946
 
947
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
  msgid "Venezuela, __( Bolivarian Republic of"
949
  msgstr ""
950
 
951
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
  msgid "Viet Nam"
953
  msgstr ""
954
 
955
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
  msgid "Virgin Islands, __( British"
957
  msgstr ""
958
 
959
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
  msgid "Virgin Islands, __( U.S."
961
  msgstr ""
962
 
963
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
- #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
  msgid "User Fields Tags"
966
  msgstr ""
967
 
968
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
  msgid "The users selected password at signup"
970
  msgstr ""
971
 
972
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
  msgid "[{{site_name}}] Notice of Email Change"
974
  msgstr ""
975
 
976
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
  msgid "Changed Email Address Notification"
978
  msgstr ""
979
 
980
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
  msgid "Limit"
982
  msgstr ""
983
 
984
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
  msgstr ""
987
 
988
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
  msgid "General Limit"
990
  msgstr ""
991
 
992
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
  msgstr ""
995
 
996
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
  msgid "Limit reached message"
998
  msgstr ""
999
 
1000
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
  msgid "The maximum number of fields has been reached."
1002
  msgstr ""
1003
 
1004
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
  msgid "The popup message to display when the limit of repeater groups is reached."
1006
  msgstr ""
1007
 
1008
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
  msgid "Limit per Role"
1010
  msgstr ""
1011
 
1012
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
  msgid "Leave 0 for unlimited."
1014
  msgstr ""
1015
 
1016
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
  msgid "Repeated field group"
1018
  msgstr ""
1019
 
1020
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
  msgid "Manage field or group of fields that will be repeatable."
1022
  msgstr ""
1023
 
1024
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
  msgid "Edit field group"
1026
  msgstr ""
1027
 
1028
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
  msgid "Repeatable fields saved!"
1030
  msgstr ""
1031
 
1032
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
  msgid "Please enter a unique field title.\n"
1035
  msgstr ""
1036
 
1037
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
  msgid "Are you sure you want to delete this?"
1039
  msgstr ""
1040
 
1041
- #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
  msgid "Sort Tags"
1043
  msgstr ""
1044
 
1045
- #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
  msgid "Faceted Menus"
1048
  msgstr ""
1049
 
1050
- #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
  msgid "User Count"
1052
  msgstr ""
1053
 
1054
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
  msgid "Show All"
1056
  msgstr ""
1057
 
1058
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
  msgid "No options available"
1062
  msgstr ""
1063
 
1064
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
  msgid "Remove All Filters"
1066
  msgstr ""
1067
 
1068
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
  msgid "Label"
1070
  msgstr ""
1071
 
1072
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
  msgid "Choose the facet name that appears on the frontend"
1074
  msgstr ""
1075
 
1076
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
  msgid "Facet Type"
1078
  msgstr ""
1079
 
1080
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
  msgid "Choose the facet menu type"
1082
  msgstr ""
1083
 
1084
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
  msgid "Facet Meta"
1086
  msgstr ""
1087
 
1088
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
  msgid "Choose the meta field for the facet menu"
1090
  msgstr ""
1091
 
1092
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
  msgid "Behaviour"
1094
  msgstr ""
1095
 
1096
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
  msgid "Narrow the results"
1098
  msgstr ""
1099
 
1100
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
  msgid "Expand the results"
1102
  msgstr ""
1103
 
1104
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
  msgid "Choose how multiple selections affect the results"
1106
  msgstr ""
1107
 
1108
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
  msgid "Visible choices"
1110
  msgstr ""
1111
 
1112
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
  msgid "Show a toggle link after this many choices. Leave blank for all"
1114
  msgstr ""
1115
 
1116
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
  msgid "Search Fields"
1118
  msgstr ""
1119
 
1120
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
  msgid "Choose the fields in which the Search Field will look in"
1122
  msgstr ""
1123
 
1124
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
  msgid "Search Settings"
1126
  msgstr ""
1127
 
1128
- #: pb-add-on-woocommerce/billing-fields.php:8
1129
- #: pb-add-on-woocommerce/shipping-fields.php:8
1130
- msgid "Company Name"
1131
- msgstr ""
1132
-
1133
- #: pb-add-on-woocommerce/billing-fields.php:9
1134
- #: pb-add-on-woocommerce/shipping-fields.php:9
1135
- msgid "Address"
1136
- msgstr ""
1137
-
1138
- #: pb-add-on-woocommerce/billing-fields.php:5
1139
- #: pb-add-on-woocommerce/shipping-fields.php:5
1140
- msgid "Country"
1141
- msgstr ""
1142
-
1143
- #: pb-add-on-woocommerce/billing-fields.php:11
1144
- #: pb-add-on-woocommerce/shipping-fields.php:11
1145
- msgid "Town / City"
1146
- msgstr ""
1147
-
1148
- #: pb-add-on-woocommerce/billing-fields.php:12
1149
- #: pb-add-on-woocommerce/shipping-fields.php:12
1150
- msgid "State / County"
1151
- msgstr ""
1152
-
1153
- #: pb-add-on-woocommerce/billing-fields.php:13
1154
- #: pb-add-on-woocommerce/shipping-fields.php:13
1155
- msgid "Postcode / Zip"
1156
- msgstr ""
1157
-
1158
- #: pb-add-on-woocommerce/billing-fields.php:14
1159
- msgid "Email Address"
1160
- msgstr ""
1161
-
1162
- #: pb-add-on-woocommerce/billing-fields.php:15
1163
- msgid "Phone"
1164
- msgstr ""
1165
-
1166
- #: pb-add-on-woocommerce/billing-fields.php:278
1167
- msgid "Ship to a different address?"
1168
- msgstr ""
1169
-
1170
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
- msgid "Billing Address"
1172
- msgstr ""
1173
-
1174
- #: pb-add-on-woocommerce/index.php:169
1175
- msgid "Displays customer billing fields in front-end. "
1176
- msgstr ""
1177
-
1178
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
- msgid "Shipping Address"
1180
- msgstr ""
1181
-
1182
- #: pb-add-on-woocommerce/index.php:173
1183
- msgid "Displays customer shipping fields in front-end. "
1184
- msgstr ""
1185
-
1186
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
- msgid "Display on WooCommerce Checkout"
1188
- msgstr ""
1189
-
1190
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1191
- msgid "Whether the field should be added to the WooCommerce checkout form or not"
1192
- msgstr ""
1193
-
1194
- #: pb-add-on-woocommerce/index.php:541
1195
- msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1196
- msgstr ""
1197
-
1198
- #: pb-add-on-woocommerce/woosync-page.php:23
1199
- #: pb-add-on-woocommerce/woosync-page.php:70
1200
- msgid "WooCommerce Sync"
1201
- msgstr ""
1202
-
1203
- #: pb-add-on-woocommerce/woosync-page.php:76
1204
- msgid "Choose Register form to display on My Account page:"
1205
- msgstr ""
1206
-
1207
- #: pb-add-on-woocommerce/woosync-page.php:81
1208
- msgid "Default Register"
1209
- msgstr ""
1210
-
1211
- #: pb-add-on-woocommerce/woosync-page.php:103
1212
- msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1213
- msgstr ""
1214
-
1215
- #: pb-add-on-woocommerce/woosync-page.php:110
1216
- msgid "Choose Edit Profile form to display on My Account page:"
1217
- msgstr ""
1218
-
1219
- #: pb-add-on-woocommerce/woosync-page.php:115
1220
- msgid "Default Edit Profile"
1221
- msgstr ""
1222
-
1223
- #: pb-add-on-woocommerce/woosync-page.php:137
1224
- msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1225
- msgstr ""
1226
-
1227
- #: profile-builder-2.0/admin/add-ons.php:190
1228
  msgid "Recommended Plugins"
1229
  msgstr ""
1230
 
1231
- #: profile-builder-2.0/admin/add-ons.php:219
1232
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1233
  msgid "Free"
1234
  msgstr ""
1235
 
1236
- #: profile-builder-2.0/admin/add-ons.php:221
1237
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1238
  msgstr ""
1239
 
1240
- #: profile-builder-2.0/admin/add-ons.php:222
1241
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1242
  msgid "More Details"
1243
  msgstr ""
1244
 
1245
- #: profile-builder-2.0/admin/add-ons.php:240
1246
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1247
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1248
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1249
  msgid "Plugin is <strong>inactive</strong>"
1250
  msgstr ""
1251
 
1252
- #: profile-builder-2.0/admin/add-ons.php:242
1253
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1254
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1255
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1256
  msgid "Plugin is <strong>active</strong>"
1257
  msgstr ""
1258
 
1259
- #: profile-builder-2.0/admin/add-ons.php:256
1260
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1261
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1262
  msgstr ""
1263
 
1264
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1265
  msgid "Paid Accounts"
1266
  msgstr ""
1267
 
1268
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1269
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1270
  msgstr ""
1271
 
1272
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1273
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1274
  msgstr ""
1275
 
1276
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1277
  msgid "Paid & Free Subscriptions"
1278
  msgstr ""
1279
 
1280
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1281
  msgid "Restrict Content"
1282
  msgstr ""
1283
 
1284
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1285
  msgid "Member Management"
1286
  msgstr ""
1287
 
1288
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1289
  msgid "Email Templates"
1290
  msgstr ""
1291
 
1292
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1293
  msgid "Account Management"
1294
  msgstr ""
1295
 
1296
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1297
  msgid "Subscription Management"
1298
  msgstr ""
1299
 
1300
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1301
  msgid "Payment Management"
1302
  msgstr ""
1303
 
1304
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1305
  msgid "Plugin is Active"
1306
  msgstr ""
1307
 
1308
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1309
  msgid "Plugin has been activated"
1310
  msgstr ""
1311
 
1312
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1313
  msgid "Plugin has been deactivated."
1314
  msgstr ""
1315
 
1316
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1317
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1318
  msgstr ""
1319
 
1320
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1321
  msgid "Step by Step Quick Setup"
1322
  msgstr ""
1323
 
1324
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1325
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1326
  msgstr ""
1327
 
1328
- #: profile-builder-2.0/front-end/register.php:133
1329
- msgid "You will soon be redirected automatically."
1330
- msgstr ""
1331
-
1332
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1333
  msgid "After Login"
1334
  msgstr ""
1335
 
1336
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1337
  msgid "After Logout"
1338
  msgstr ""
1339
 
1340
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1341
  msgid "After Registration"
1342
  msgstr ""
1343
 
1344
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1345
  msgid "After Edit Profile"
1346
  msgstr ""
1347
 
1348
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1349
  msgid "After Successful Email Confirmation"
1350
  msgstr ""
1351
 
1352
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1353
  msgid "After Successful Password Reset"
1354
  msgstr ""
1355
 
1356
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1357
  msgid "Dashboard (redirect users from accessing the dashboard)"
1358
  msgstr ""
1359
 
1360
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1361
  msgid "User ID"
1362
  msgstr ""
1363
 
1364
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1365
  msgid "User ID or Username"
1366
  msgstr ""
1367
 
1368
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1369
  msgid "User ID / Username"
1370
  msgstr ""
1371
 
1372
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1373
  msgid "Please select and enter the ID or username of your user."
1374
  msgstr ""
1375
 
1376
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1377
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1378
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1379
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1380
  msgid "Redirect Type"
1381
  msgstr ""
1382
 
1383
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1384
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1385
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1386
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1387
  msgid "Redirect URL"
1388
  msgstr ""
1389
 
1390
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1391
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1392
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1393
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1394
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1395
  msgstr ""
1396
 
1397
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1398
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
1399
  msgid "Individual User Redirects"
1400
  msgstr ""
1401
 
1402
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1403
  msgid "... Choose"
1404
  msgstr ""
1405
 
1406
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1407
  msgid "Select a user role."
1408
  msgstr ""
1409
 
1410
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1411
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1412
  msgid "User Role based Redirects"
1413
  msgstr ""
1414
 
1415
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1416
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1417
  msgid "Global Redirects"
1418
  msgstr ""
1419
 
1420
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1421
  msgid "Login ( wp_login.php )"
1422
  msgstr ""
1423
 
1424
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1425
  msgid "Register ( wp-login.php?action=register )"
1426
  msgstr ""
1427
 
1428
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1429
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1430
  msgstr ""
1431
 
1432
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1433
  msgid "Author Archive ( http://sitename.com/author/admin )"
1434
  msgstr ""
1435
 
1436
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1437
  msgid "Redirect Default WordPress Forms and Pages"
1438
  msgstr ""
1439
 
1440
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1441
  msgid "How does this work?"
1442
  msgstr ""
1443
 
1444
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1445
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1446
  msgstr ""
1447
 
1448
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1449
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1450
  msgstr ""
1451
 
1452
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1453
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1454
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1455
  msgstr ""
1456
 
1457
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1458
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1459
  msgstr ""
1460
 
1461
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1462
  msgid "Which redirect happens depends on the following priority:"
1463
  msgstr ""
1464
 
1465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1466
- msgid "Individual redirects defined in shortcodes or in the Multiple Registration and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects)"
1467
- msgstr ""
1468
-
1469
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
1470
  msgid "Redirect Default WordPress forms and pages"
1471
  msgstr ""
1472
 
1473
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1474
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1475
  msgstr ""
1476
 
1477
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:249
1478
  msgid "Available tags for dynamic URLs"
1479
  msgstr ""
1480
 
1481
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1482
  msgid "You use the following tags in your URLs to redirect users to various pages."
1483
  msgstr ""
1484
 
1485
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
1486
  msgid "generates a url of the current website homepage."
1487
  msgstr ""
1488
 
1489
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1490
  msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1491
  msgstr ""
1492
 
1493
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1494
  msgid "the ID of the user"
1495
  msgstr ""
1496
 
1497
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1498
  msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1499
  msgstr ""
1500
 
1501
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1502
  msgid "the URL of the previously visited page"
1503
  msgstr ""
1504
 
1505
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:339
1506
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:345
1507
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:351
1508
  msgid "You can't add duplicate redirects!"
1509
  msgstr ""
1510
 
1511
- #: profile-builder-2.0/admin/admin-functions.php:40
1512
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1513
  msgstr ""
1514
 
1515
- #: profile-builder-2.0/admin/basic-info.php:37
1516
  msgid "Friction-less login using %s shortcode or a widget."
1517
  msgstr ""
1518
 
1519
- #: profile-builder-2.0/admin/basic-info.php:41
1520
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1521
  msgstr ""
1522
 
1523
- #: profile-builder-2.0/admin/basic-info.php:45
1524
  msgid "Straight forward edit profile forms using %s shortcode."
1525
  msgstr ""
1526
 
1527
- #: profile-builder-2.0/admin/basic-info.php:58
1528
  msgid "Allow users to recover their password in the front-end using the %s."
1529
  msgstr ""
1530
 
1531
- #: profile-builder-2.0/admin/basic-info.php:140
1532
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1533
  msgstr ""
1534
 
1535
- #: profile-builder-2.0/admin/general-settings.php:118
1536
  msgid "\"Admin Approval\" on User Role:"
1537
  msgstr ""
1538
 
1539
- #: profile-builder-2.0/admin/general-settings.php:137
1540
  msgid "Select on what user roles to activate Admin Approval."
1541
  msgstr ""
1542
 
1543
- #: profile-builder-2.0/admin/manage-fields.php:128
1544
  msgid "Display on PB forms"
1545
  msgstr ""
1546
 
1547
- #: profile-builder-2.0/admin/manage-fields.php:128
1548
  msgid "PB Login"
1549
  msgstr ""
1550
 
1551
- #: profile-builder-2.0/admin/manage-fields.php:128
1552
  msgid "PB Register"
1553
  msgstr ""
1554
 
1555
- #: profile-builder-2.0/admin/manage-fields.php:128
1556
  msgid "PB Recover Password"
1557
  msgstr ""
1558
 
1559
- #: profile-builder-2.0/admin/manage-fields.php:128
1560
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1561
  msgstr ""
1562
 
1563
- #: profile-builder-2.0/admin/manage-fields.php:129
1564
  msgid "Display on default WP forms"
1565
  msgstr ""
1566
 
1567
- #: profile-builder-2.0/admin/manage-fields.php:129
1568
  msgid "Default WP Login"
1569
  msgstr ""
1570
 
1571
- #: profile-builder-2.0/admin/manage-fields.php:129
1572
  msgid "Default WP Register"
1573
  msgstr ""
1574
 
1575
- #: profile-builder-2.0/admin/manage-fields.php:129
1576
  msgid "Default WP Recover Password"
1577
  msgstr ""
1578
 
1579
- #: profile-builder-2.0/admin/manage-fields.php:129
1580
  msgid "Select on which default WP forms to display reCAPTCHA"
1581
  msgstr ""
1582
 
1583
- #: profile-builder-2.0/admin/manage-fields.php:135
1584
- #: profile-builder-2.0/admin/manage-fields.php:136
1585
- #: profile-builder-2.0/admin/manage-fields.php:137
1586
  msgid "Default option of the field"
1587
  msgstr ""
1588
 
1589
- #: profile-builder-2.0/admin/manage-fields.php:273
1590
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1591
  msgid "Afghanistan"
1592
  msgstr "Afghanistan"
1593
 
1594
- #: profile-builder-2.0/admin/manage-fields.php:274
1595
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Aland Islands"
1597
  msgstr "Aland Islands"
1598
 
1599
- #: profile-builder-2.0/admin/manage-fields.php:275
1600
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Albania"
1602
  msgstr "Albania"
1603
 
1604
- #: profile-builder-2.0/admin/manage-fields.php:276
1605
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Algeria"
1607
  msgstr "Algeria"
1608
 
1609
- #: profile-builder-2.0/admin/manage-fields.php:277
1610
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "American Samoa"
1612
  msgstr "American Samoa"
1613
 
1614
- #: profile-builder-2.0/admin/manage-fields.php:278
1615
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "Andorra"
1617
  msgstr "Andorra"
1618
 
1619
- #: profile-builder-2.0/admin/manage-fields.php:279
1620
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1621
  msgid "Angola"
1622
  msgstr "Angola"
1623
 
1624
- #: profile-builder-2.0/admin/manage-fields.php:280
1625
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1626
  msgid "Anguilla"
1627
  msgstr "Anguilla"
1628
 
1629
- #: profile-builder-2.0/admin/manage-fields.php:281
1630
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1631
  msgid "Antarctica"
1632
  msgstr "Antarctica"
1633
 
1634
- #: profile-builder-2.0/admin/manage-fields.php:282
1635
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1636
  msgid "Antigua and Barbuda"
1637
  msgstr "Antigua and Barbuda"
1638
 
1639
- #: profile-builder-2.0/admin/manage-fields.php:283
1640
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1641
  msgid "Argentina"
1642
  msgstr "Argentina"
1643
 
1644
- #: profile-builder-2.0/admin/manage-fields.php:284
1645
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1646
  msgid "Armenia"
1647
  msgstr "Armenia"
1648
 
1649
- #: profile-builder-2.0/admin/manage-fields.php:285
1650
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1651
  msgid "Aruba"
1652
  msgstr "Aruba"
1653
 
1654
- #: profile-builder-2.0/admin/manage-fields.php:286
1655
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1656
  msgid "Australia"
1657
  msgstr "Australia"
1658
 
1659
- #: profile-builder-2.0/admin/manage-fields.php:287
1660
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1661
  msgid "Austria"
1662
  msgstr "Austria"
1663
 
1664
- #: profile-builder-2.0/admin/manage-fields.php:288
1665
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
  msgid "Azerbaijan"
1667
  msgstr "Azerbaijan"
1668
 
1669
- #: profile-builder-2.0/admin/manage-fields.php:289
1670
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
  msgid "Bahamas"
1672
  msgstr "Bahamas"
1673
 
1674
- #: profile-builder-2.0/admin/manage-fields.php:290
1675
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
  msgid "Bahrain"
1677
  msgstr "Bahrain"
1678
 
1679
- #: profile-builder-2.0/admin/manage-fields.php:291
1680
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
  msgid "Bangladesh"
1682
  msgstr "Bangladesh"
1683
 
1684
- #: profile-builder-2.0/admin/manage-fields.php:292
1685
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
  msgid "Barbados"
1687
  msgstr "Barbados"
1688
 
1689
- #: profile-builder-2.0/admin/manage-fields.php:293
1690
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
  msgid "Belarus"
1692
  msgstr "Belarus"
1693
 
1694
- #: profile-builder-2.0/admin/manage-fields.php:294
1695
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
  msgid "Belgium"
1697
  msgstr "Belgium"
1698
 
1699
- #: profile-builder-2.0/admin/manage-fields.php:295
1700
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
  msgid "Belize"
1702
  msgstr "Belize"
1703
 
1704
- #: profile-builder-2.0/admin/manage-fields.php:296
1705
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
  msgid "Benin"
1707
  msgstr "Benin"
1708
 
1709
- #: profile-builder-2.0/admin/manage-fields.php:297
1710
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
  msgid "Bermuda"
1712
  msgstr "Bermuda"
1713
 
1714
- #: profile-builder-2.0/admin/manage-fields.php:298
1715
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
  msgid "Bhutan"
1717
  msgstr "Bhutan"
1718
 
1719
- #: profile-builder-2.0/admin/manage-fields.php:299
1720
  msgid "Bolivia"
1721
  msgstr "Bolivia"
1722
 
1723
- #: profile-builder-2.0/admin/manage-fields.php:300
1724
  msgid "Bonaire, Saint Eustatius and Saba"
1725
  msgstr "Bonaire, Saint Eustatius and Saba"
1726
 
1727
- #: profile-builder-2.0/admin/manage-fields.php:301
1728
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1729
  msgid "Bosnia and Herzegovina"
1730
  msgstr "Bosnia and Herzegovina"
1731
 
1732
- #: profile-builder-2.0/admin/manage-fields.php:302
1733
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1734
  msgid "Botswana"
1735
  msgstr "Botswana"
1736
 
1737
- #: profile-builder-2.0/admin/manage-fields.php:303
1738
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1739
  msgid "Bouvet Island"
1740
  msgstr "Bouvet Island"
1741
 
1742
- #: profile-builder-2.0/admin/manage-fields.php:304
1743
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1744
  msgid "Brazil"
1745
  msgstr "Brazil"
1746
 
1747
- #: profile-builder-2.0/admin/manage-fields.php:305
1748
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1749
  msgid "British Indian Ocean Territory"
1750
  msgstr "British Indian Ocean Territory"
1751
 
1752
- #: profile-builder-2.0/admin/manage-fields.php:306
1753
  msgid "British Virgin Islands"
1754
  msgstr "British Virgin Islands"
1755
 
1756
- #: profile-builder-2.0/admin/manage-fields.php:307
1757
  msgid "Brunei"
1758
  msgstr "Brunei"
1759
 
1760
- #: profile-builder-2.0/admin/manage-fields.php:308
1761
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1762
  msgid "Bulgaria"
1763
  msgstr "Bulgaria"
1764
 
1765
- #: profile-builder-2.0/admin/manage-fields.php:309
1766
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1767
  msgid "Burkina Faso"
1768
  msgstr "Burkina Faso"
1769
 
1770
- #: profile-builder-2.0/admin/manage-fields.php:310
1771
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1772
  msgid "Burundi"
1773
  msgstr "Burundi"
1774
 
1775
- #: profile-builder-2.0/admin/manage-fields.php:311
1776
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1777
  msgid "Cambodia"
1778
  msgstr "Cambodia"
1779
 
1780
- #: profile-builder-2.0/admin/manage-fields.php:312
1781
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1782
  msgid "Cameroon"
1783
  msgstr "Cameroon"
1784
 
1785
- #: profile-builder-2.0/admin/manage-fields.php:313
1786
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1787
  msgid "Canada"
1788
  msgstr "Canada"
1789
 
1790
- #: profile-builder-2.0/admin/manage-fields.php:314
1791
  msgid "Cape Verde"
1792
  msgstr "Cape Verde"
1793
 
1794
- #: profile-builder-2.0/admin/manage-fields.php:315
1795
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1796
  msgid "Cayman Islands"
1797
  msgstr "Cayman Islands"
1798
 
1799
- #: profile-builder-2.0/admin/manage-fields.php:316
1800
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1801
  msgid "Central African Republic"
1802
  msgstr "Central African Republic"
1803
 
1804
- #: profile-builder-2.0/admin/manage-fields.php:317
1805
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
  msgid "Chad"
1807
  msgstr "Chad"
1808
 
1809
- #: profile-builder-2.0/admin/manage-fields.php:318
1810
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
  msgid "Chile"
1812
  msgstr "Chile"
1813
 
1814
- #: profile-builder-2.0/admin/manage-fields.php:319
1815
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1816
  msgid "China"
1817
  msgstr "China"
1818
 
1819
- #: profile-builder-2.0/admin/manage-fields.php:320
1820
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
  msgid "Christmas Island"
1822
  msgstr "Christmas Island"
1823
 
1824
- #: profile-builder-2.0/admin/manage-fields.php:321
1825
  msgid "Cocos Islands"
1826
  msgstr "Cocos Islands"
1827
 
1828
- #: profile-builder-2.0/admin/manage-fields.php:322
1829
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1830
  msgid "Colombia"
1831
  msgstr "Colombia"
1832
 
1833
- #: profile-builder-2.0/admin/manage-fields.php:323
1834
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1835
  msgid "Comoros"
1836
  msgstr "Comoros"
1837
 
1838
- #: profile-builder-2.0/admin/manage-fields.php:324
1839
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1840
  msgid "Cook Islands"
1841
  msgstr "Cook Islands"
1842
 
1843
- #: profile-builder-2.0/admin/manage-fields.php:325
1844
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1845
  msgid "Costa Rica"
1846
  msgstr "Costa Rica"
1847
 
1848
- #: profile-builder-2.0/admin/manage-fields.php:326
1849
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1850
  msgid "Croatia"
1851
  msgstr "Croatia"
1852
 
1853
- #: profile-builder-2.0/admin/manage-fields.php:327
1854
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1855
  msgid "Cuba"
1856
  msgstr "Cuba"
1857
 
1858
- #: profile-builder-2.0/admin/manage-fields.php:328
1859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1860
  msgid "Curacao"
1861
  msgstr "Curacao"
1862
 
1863
- #: profile-builder-2.0/admin/manage-fields.php:329
1864
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1865
  msgid "Cyprus"
1866
  msgstr "Cyprus"
1867
 
1868
- #: profile-builder-2.0/admin/manage-fields.php:330
1869
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1870
  msgid "Czech Republic"
1871
  msgstr "Czech Republic"
1872
 
1873
- #: profile-builder-2.0/admin/manage-fields.php:331
1874
  msgid "Democratic Republic of the Congo"
1875
  msgstr "Democratic Republic of the Congo"
1876
 
1877
- #: profile-builder-2.0/admin/manage-fields.php:332
1878
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Denmark"
1880
  msgstr "Denmark"
1881
 
1882
- #: profile-builder-2.0/admin/manage-fields.php:333
1883
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Djibouti"
1885
  msgstr "Djibouti"
1886
 
1887
- #: profile-builder-2.0/admin/manage-fields.php:334
1888
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Dominica"
1890
  msgstr "Dominica"
1891
 
1892
- #: profile-builder-2.0/admin/manage-fields.php:335
1893
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Dominican Republic"
1895
  msgstr "Dominican Republic"
1896
 
1897
- #: profile-builder-2.0/admin/manage-fields.php:336
1898
  msgid "East Timor"
1899
  msgstr "East Timor"
1900
 
1901
- #: profile-builder-2.0/admin/manage-fields.php:337
1902
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1903
  msgid "Ecuador"
1904
  msgstr "Ecuador"
1905
 
1906
- #: profile-builder-2.0/admin/manage-fields.php:338
1907
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1908
  msgid "Egypt"
1909
  msgstr "Egypt"
1910
 
1911
- #: profile-builder-2.0/admin/manage-fields.php:339
1912
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1913
  msgid "El Salvador"
1914
  msgstr "El Salvador"
1915
 
1916
- #: profile-builder-2.0/admin/manage-fields.php:340
1917
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1918
  msgid "Equatorial Guinea"
1919
  msgstr "Equatorial Guinea"
1920
 
1921
- #: profile-builder-2.0/admin/manage-fields.php:341
1922
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1923
  msgid "Eritrea"
1924
  msgstr "Eritrea"
1925
 
1926
- #: profile-builder-2.0/admin/manage-fields.php:342
1927
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1928
  msgid "Estonia"
1929
  msgstr "Estonia"
1930
 
1931
- #: profile-builder-2.0/admin/manage-fields.php:343
1932
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1933
  msgid "Ethiopia"
1934
  msgstr "Ethiopia"
1935
 
1936
- #: profile-builder-2.0/admin/manage-fields.php:344
1937
  msgid "Falkland Islands"
1938
  msgstr "Falkland Islands"
1939
 
1940
- #: profile-builder-2.0/admin/manage-fields.php:345
1941
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
  msgid "Faroe Islands"
1943
  msgstr "Faroe Islands"
1944
 
1945
- #: profile-builder-2.0/admin/manage-fields.php:346
1946
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1947
  msgid "Fiji"
1948
  msgstr "Fiji"
1949
 
1950
- #: profile-builder-2.0/admin/manage-fields.php:347
1951
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1952
  msgid "Finland"
1953
  msgstr "Finland"
1954
 
1955
- #: profile-builder-2.0/admin/manage-fields.php:348
1956
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1957
  msgid "France"
1958
  msgstr "France"
1959
 
1960
- #: profile-builder-2.0/admin/manage-fields.php:349
1961
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1962
  msgid "French Guiana"
1963
  msgstr "French Guiana"
1964
 
1965
- #: profile-builder-2.0/admin/manage-fields.php:350
1966
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1967
  msgid "French Polynesia"
1968
  msgstr "French Polynesia"
1969
 
1970
- #: profile-builder-2.0/admin/manage-fields.php:351
1971
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1972
  msgid "French Southern Territories"
1973
  msgstr "French Southern Territories"
1974
 
1975
- #: profile-builder-2.0/admin/manage-fields.php:352
1976
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1977
  msgid "Gabon"
1978
  msgstr "Gabon"
1979
 
1980
- #: profile-builder-2.0/admin/manage-fields.php:353
1981
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1982
  msgid "Gambia"
1983
  msgstr "Gambia"
1984
 
1985
- #: profile-builder-2.0/admin/manage-fields.php:354
1986
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1987
  msgid "Georgia"
1988
  msgstr "Georgia"
1989
 
1990
- #: profile-builder-2.0/admin/manage-fields.php:355
1991
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1992
  msgid "Germany"
1993
  msgstr "Germany"
1994
 
1995
- #: profile-builder-2.0/admin/manage-fields.php:356
1996
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Ghana"
1998
  msgstr "Ghana"
1999
 
2000
- #: profile-builder-2.0/admin/manage-fields.php:357
2001
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Gibraltar"
2003
  msgstr "Gibraltar"
2004
 
2005
- #: profile-builder-2.0/admin/manage-fields.php:358
2006
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Greece"
2008
  msgstr "Greece"
2009
 
2010
- #: profile-builder-2.0/admin/manage-fields.php:359
2011
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Greenland"
2013
  msgstr "Greenland"
2014
 
2015
- #: profile-builder-2.0/admin/manage-fields.php:360
2016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Grenada"
2018
  msgstr "Grenada"
2019
 
2020
- #: profile-builder-2.0/admin/manage-fields.php:361
2021
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Guadeloupe"
2023
  msgstr "Guadeloupe"
2024
 
2025
- #: profile-builder-2.0/admin/manage-fields.php:362
2026
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Guam"
2028
  msgstr "Guam"
2029
 
2030
- #: profile-builder-2.0/admin/manage-fields.php:363
2031
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
  msgid "Guatemala"
2033
  msgstr "Guatemala"
2034
 
2035
- #: profile-builder-2.0/admin/manage-fields.php:364
2036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
  msgid "Guernsey"
2038
  msgstr "Guernsey"
2039
 
2040
- #: profile-builder-2.0/admin/manage-fields.php:365
2041
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
  msgid "Guinea"
2043
  msgstr "Guinea"
2044
 
2045
- #: profile-builder-2.0/admin/manage-fields.php:366
2046
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
  msgid "Guinea-Bissau"
2048
  msgstr "Guinea-Bissau"
2049
 
2050
- #: profile-builder-2.0/admin/manage-fields.php:367
2051
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
  msgid "Guyana"
2053
  msgstr "Guyana"
2054
 
2055
- #: profile-builder-2.0/admin/manage-fields.php:368
2056
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
  msgid "Haiti"
2058
  msgstr "Haiti"
2059
 
2060
- #: profile-builder-2.0/admin/manage-fields.php:369
2061
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
  msgid "Heard Island and McDonald Islands"
2063
  msgstr "Heard Island and McDonald Islands"
2064
 
2065
- #: profile-builder-2.0/admin/manage-fields.php:370
2066
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
  msgid "Honduras"
2068
  msgstr "Honduras"
2069
 
2070
- #: profile-builder-2.0/admin/manage-fields.php:371
2071
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
  msgid "Hong Kong"
2073
  msgstr "Hong Kong"
2074
 
2075
- #: profile-builder-2.0/admin/manage-fields.php:372
2076
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
  msgid "Hungary"
2078
  msgstr "Hungary"
2079
 
2080
- #: profile-builder-2.0/admin/manage-fields.php:373
2081
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
  msgid "Iceland"
2083
  msgstr "Iceland"
2084
 
2085
- #: profile-builder-2.0/admin/manage-fields.php:374
2086
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
  msgid "India"
2088
  msgstr "India"
2089
 
2090
- #: profile-builder-2.0/admin/manage-fields.php:375
2091
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
  msgid "Indonesia"
2093
  msgstr "Indonesia"
2094
 
2095
- #: profile-builder-2.0/admin/manage-fields.php:376
2096
  msgid "Iran"
2097
  msgstr "Iran"
2098
 
2099
- #: profile-builder-2.0/admin/manage-fields.php:377
2100
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2101
  msgid "Iraq"
2102
  msgstr "Iraq"
2103
 
2104
- #: profile-builder-2.0/admin/manage-fields.php:378
2105
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2106
  msgid "Ireland"
2107
  msgstr "Ireland"
2108
 
2109
- #: profile-builder-2.0/admin/manage-fields.php:379
2110
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2111
  msgid "Isle of Man"
2112
  msgstr "Isle of Man"
2113
 
2114
- #: profile-builder-2.0/admin/manage-fields.php:380
2115
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2116
  msgid "Israel"
2117
  msgstr "Israel"
2118
 
2119
- #: profile-builder-2.0/admin/manage-fields.php:381
2120
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2121
  msgid "Italy"
2122
  msgstr "Italy"
2123
 
2124
- #: profile-builder-2.0/admin/manage-fields.php:382
2125
  msgid "Ivory Coast"
2126
  msgstr "Ivory Coast"
2127
 
2128
- #: profile-builder-2.0/admin/manage-fields.php:383
2129
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2130
  msgid "Jamaica"
2131
  msgstr "Jamaica"
2132
 
2133
- #: profile-builder-2.0/admin/manage-fields.php:384
2134
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2135
  msgid "Japan"
2136
  msgstr "Japan"
2137
 
2138
- #: profile-builder-2.0/admin/manage-fields.php:385
2139
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2140
  msgid "Jersey"
2141
  msgstr "Jersey"
2142
 
2143
- #: profile-builder-2.0/admin/manage-fields.php:386
2144
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2145
  msgid "Jordan"
2146
  msgstr "Jordan"
2147
 
2148
- #: profile-builder-2.0/admin/manage-fields.php:387
2149
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2150
  msgid "Kazakhstan"
2151
  msgstr "Kazakhstan"
2152
 
2153
- #: profile-builder-2.0/admin/manage-fields.php:388
2154
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2155
  msgid "Kenya"
2156
  msgstr "Kenya"
2157
 
2158
- #: profile-builder-2.0/admin/manage-fields.php:389
2159
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2160
  msgid "Kiribati"
2161
  msgstr "Kiribati"
2162
 
2163
- #: profile-builder-2.0/admin/manage-fields.php:390
2164
  msgid "Kosovo"
2165
  msgstr "Kosovo"
2166
 
2167
- #: profile-builder-2.0/admin/manage-fields.php:391
2168
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
  msgid "Kuwait"
2170
  msgstr "Kuwait"
2171
 
2172
- #: profile-builder-2.0/admin/manage-fields.php:392
2173
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2174
  msgid "Kyrgyzstan"
2175
  msgstr "Kyrgyzstan"
2176
 
2177
- #: profile-builder-2.0/admin/manage-fields.php:393
2178
  msgid "Laos"
2179
  msgstr "Laos"
2180
 
2181
- #: profile-builder-2.0/admin/manage-fields.php:394
2182
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
  msgid "Latvia"
2184
  msgstr "Latvia"
2185
 
2186
- #: profile-builder-2.0/admin/manage-fields.php:395
2187
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
  msgid "Lebanon"
2189
  msgstr "Lebanon"
2190
 
2191
- #: profile-builder-2.0/admin/manage-fields.php:396
2192
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2193
  msgid "Lesotho"
2194
  msgstr "Lesotho"
2195
 
2196
- #: profile-builder-2.0/admin/manage-fields.php:397
2197
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2198
  msgid "Liberia"
2199
  msgstr "Liberia"
2200
 
2201
- #: profile-builder-2.0/admin/manage-fields.php:398
2202
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
  msgid "Libya"
2204
  msgstr "Libya"
2205
 
2206
- #: profile-builder-2.0/admin/manage-fields.php:399
2207
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2208
  msgid "Liechtenstein"
2209
  msgstr "Liechtenstein"
2210
 
2211
- #: profile-builder-2.0/admin/manage-fields.php:400
2212
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
  msgid "Lithuania"
2214
  msgstr "Lithuania"
2215
 
2216
- #: profile-builder-2.0/admin/manage-fields.php:401
2217
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
  msgid "Luxembourg"
2219
  msgstr "Luxembourg"
2220
 
2221
- #: profile-builder-2.0/admin/manage-fields.php:402
2222
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2223
  msgid "Macao"
2224
  msgstr "Macao"
2225
 
2226
- #: profile-builder-2.0/admin/manage-fields.php:403
2227
  msgid "Macedonia"
2228
  msgstr "Macedonia"
2229
 
2230
- #: profile-builder-2.0/admin/manage-fields.php:404
2231
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2232
  msgid "Madagascar"
2233
  msgstr "Madagascar"
2234
 
2235
- #: profile-builder-2.0/admin/manage-fields.php:405
2236
- #: profile-builder-2.0/front-end/extra-fields/s
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Profile Builder\n"
12
 
13
+ #: admin/manage-fields.php:125
14
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
 
 
 
 
 
 
 
 
15
  msgstr ""
16
 
17
+ #: modules/custom-redirects/custom_redirects_admin.php:244
18
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
 
 
19
  msgstr ""
20
 
21
+ #: admin/manage-fields.php:1214
22
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
23
  msgstr ""
24
 
25
+ #: modules/custom-redirects/custom_redirects_admin.php:240
26
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
27
  msgstr ""
28
 
29
+ #: admin/register-version.php:251
30
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
31
  msgstr ""
32
 
33
+ #: admin/register-version.php:246
34
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
35
  msgstr ""
36
 
37
+ #: front-end/recover.php:151
38
+ msgid "You are already logged in. You can change your password on the edit profile form."
39
  msgstr ""
40
 
41
+ #: front-end/default-fields/blog-details/blog-details.php:70
42
+ msgid "Your site url will look like this:<br>"
43
  msgstr ""
44
 
45
+ #: features/functions.php:909
46
+ msgid "<br><br>You can visit your site at "
47
  msgstr ""
48
 
49
+ #: features/functions.php:896
50
+ msgid "<br><br>Also, you will be able to visit your site at "
51
  msgstr ""
52
 
53
+ #: front-end/default-fields/blog-details/blog-details.php:138
54
+ msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
55
  msgstr ""
56
 
57
+ #: front-end/default-fields/blog-details/blog-details.php:116
58
+ msgid "Site Title"
59
  msgstr ""
60
 
61
+ #: front-end/default-fields/blog-details/blog-details.php:93
62
+ msgid "Site URL slug"
63
  msgstr ""
64
 
65
+ #: front-end/default-fields/blog-details/blog-details.php:63
66
+ msgid "Yes, I'd like to create a new site"
67
  msgstr ""
68
 
69
+ #: modules/email-customizer/email-customizer.php:36
70
+ #: modules/user-listing/userlisting.php:118
71
+ msgid "Blog URL"
72
  msgstr ""
73
 
74
+ #: admin/admin-functions.php:44
75
+ msgid "Blog Details - only appears on the Registration page!"
76
  msgstr ""
77
 
78
+ #: admin/manage-fields.php:219
79
+ msgid "Blog Details"
80
  msgstr ""
81
 
82
+ #: admin/pms-cross-promotion.php:239
83
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
 
 
 
 
84
  msgstr ""
85
 
86
+ #: features/email-confirmation/email-confirmation.php:578
87
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
88
  msgstr ""
89
 
90
+ #: modules/user-listing/userlisting.php:1303
91
+ msgid "View Map"
92
  msgstr ""
93
 
94
+ #: admin/add-ons.php:103
95
  msgid "Available in Hobbyist and Pro Versions"
96
  msgstr ""
97
 
98
+ #: admin/add-ons.php:105
99
  msgid "Available in All Versions"
100
  msgstr ""
101
 
102
+ #: admin/add-ons.php:148
103
  msgid "Learn More"
104
  msgstr ""
105
 
106
+ #: admin/basic-info.php:99
107
  msgid "Timepicker"
108
  msgstr ""
109
 
110
+ #: admin/basic-info.php:100
111
  msgid "Colorpicker"
112
  msgstr ""
113
 
114
+ #: admin/basic-info.php:103
115
  msgid "Currency Select"
116
  msgstr ""
117
 
118
+ #: admin/basic-info.php:109
119
  msgid "Number"
120
  msgstr ""
121
 
122
+ #: admin/basic-info.php:114
123
  msgid "Validation"
124
  msgstr ""
125
 
126
+ #: admin/basic-info.php:115
127
  msgid "Map"
128
  msgstr ""
129
 
130
+ #: admin/basic-info.php:116
131
  msgid "HTML"
132
  msgstr ""
133
 
134
+ #: admin/basic-info.php:162 modules/modules.php:117
 
135
  msgid "Repeater Fields"
136
  msgstr ""
137
 
138
+ #: admin/basic-info.php:163
139
  msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
140
  msgstr ""
141
 
142
+ #: admin/general-settings.php:62
143
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
144
  msgstr ""
145
 
146
+ #: admin/manage-fields.php:118
147
  msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
148
  msgstr ""
149
 
150
+ #: admin/manage-fields.php:141
151
  msgid "Show Currency Symbol"
152
  msgstr ""
153
 
154
+ #: admin/manage-fields.php:141
155
  msgid "Whether the currency symbol should be displayed after the currency name in the select option."
156
  msgstr ""
157
 
158
+ #: admin/manage-fields.php:142
159
  msgid "Show Post Type"
160
  msgstr ""
161
 
162
+ #: admin/manage-fields.php:142
163
  msgid "Posts from what post type will be displayed in the select."
164
  msgstr ""
165
 
166
+ #: admin/manage-fields.php:143
167
  msgid "Allowable Values"
168
  msgstr ""
169
 
170
+ #: admin/manage-fields.php:143
171
  msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
172
  msgstr ""
173
 
174
+ #: admin/manage-fields.php:144
175
  msgid "Error Message"
176
  msgstr ""
177
 
178
+ #: admin/manage-fields.php:144
179
  msgid "Set a custom error message that will be displayed to the user."
180
  msgstr ""
181
 
182
+ #: admin/manage-fields.php:145
183
  msgid "Time Format"
184
  msgstr ""
185
 
186
+ #: admin/manage-fields.php:145
187
  msgid "Specify the time format."
188
  msgstr ""
189
 
190
+ #: admin/manage-fields.php:146
191
  msgid "Google Maps API Key"
192
  msgstr ""
193
 
194
+ #: admin/manage-fields.php:146
195
  msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
196
  msgstr ""
197
 
198
+ #: admin/manage-fields.php:147
199
  msgid "Default Latitude"
200
  msgstr ""
201
 
202
+ #: admin/manage-fields.php:147
203
  msgid "The latitude at which the map should be displayed when no pins are attached."
204
  msgstr ""
205
 
206
+ #: admin/manage-fields.php:148
207
  msgid "Default Longitude"
208
  msgstr ""
209
 
210
+ #: admin/manage-fields.php:148
211
  msgid "The longitude at which the map should be displayed when no pins are attached."
212
  msgstr ""
213
 
214
+ #: admin/manage-fields.php:149
215
  msgid "Default Zoom Level"
216
  msgstr ""
217
 
218
+ #: admin/manage-fields.php:149
219
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
220
  msgstr ""
221
 
222
+ #: admin/manage-fields.php:150
223
  msgid "Map Height"
224
  msgstr ""
225
 
226
+ #: admin/manage-fields.php:150
227
  msgid "The height of the map."
228
  msgstr ""
229
 
230
+ #: admin/manage-fields.php:152
231
  msgid "HTML Content"
232
  msgstr ""
233
 
234
+ #: admin/manage-fields.php:152
235
  msgid "Add your HTML (or text) content"
236
  msgstr ""
237
 
238
+ #: admin/manage-fields.php:153
239
  msgid "Phone Format"
240
  msgstr ""
241
 
242
+ #: admin/manage-fields.php:153
243
  msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
244
  msgstr ""
245
 
246
+ #: admin/manage-fields.php:153
247
  msgid "Eg. (###) ###-####"
248
  msgstr ""
249
 
250
+ #: admin/manage-fields.php:153
251
  msgid "Empty field won't check for correct phone number."
252
  msgstr ""
253
 
254
+ #: admin/manage-fields.php:154
255
  msgid "Heading Tag"
256
  msgstr ""
257
 
258
+ #: admin/manage-fields.php:154
259
  msgid "Change heading field size on front-end forms"
260
  msgstr ""
261
 
262
+ #: admin/manage-fields.php:155
263
  msgid "Min Number Value"
264
  msgstr ""
265
 
266
+ #: admin/manage-fields.php:155
267
  msgid "Min allowed number value (0 to allow only positive numbers)"
268
  msgstr ""
269
 
270
+ #: admin/manage-fields.php:155
271
  msgid "Leave it empty for no min value"
272
  msgstr ""
273
 
274
+ #: admin/manage-fields.php:156
275
  msgid "Max Number Value"
276
  msgstr ""
277
 
278
+ #: admin/manage-fields.php:156
279
  msgid "Max allowed number value (0 to allow only negative numbers)"
280
  msgstr ""
281
 
282
+ #: admin/manage-fields.php:156
283
  msgid "Leave it empty for no max value"
284
  msgstr ""
285
 
286
+ #: admin/manage-fields.php:157
287
  msgid "Number Step Value"
288
  msgstr ""
289
 
290
+ #: admin/manage-fields.php:157
291
  msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
292
  msgstr ""
293
 
294
+ #: admin/manage-fields.php:157
295
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
296
  msgstr ""
297
 
298
+ #: admin/manage-fields.php:157
299
  msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
300
  msgstr ""
301
 
302
+ #: admin/manage-fields.php:157
303
  msgid "Leave it empty for no restriction"
304
  msgstr ""
305
 
306
+ #: admin/manage-fields.php:561
307
  msgid "Albania Lek"
308
  msgstr ""
309
 
310
+ #: admin/manage-fields.php:562
311
  msgid "Afghanistan Afghani"
312
  msgstr ""
313
 
314
+ #: admin/manage-fields.php:563
315
  msgid "Argentina Peso"
316
  msgstr ""
317
 
318
+ #: admin/manage-fields.php:564
319
  msgid "Aruba Guilder"
320
  msgstr ""
321
 
322
+ #: admin/manage-fields.php:565
323
  msgid "Australia Dollar"
324
  msgstr ""
325
 
326
+ #: admin/manage-fields.php:566
327
  msgid "Azerbaijan New Manat"
328
  msgstr ""
329
 
330
+ #: admin/manage-fields.php:567
331
  msgid "Bahamas Dollar"
332
  msgstr ""
333
 
334
+ #: admin/manage-fields.php:568
335
  msgid "Barbados Dollar"
336
  msgstr ""
337
 
338
+ #: admin/manage-fields.php:569
339
  msgid "Bangladeshi taka"
340
  msgstr ""
341
 
342
+ #: admin/manage-fields.php:570
343
  msgid "Belarus Ruble"
344
  msgstr ""
345
 
346
+ #: admin/manage-fields.php:571
347
  msgid "Belize Dollar"
348
  msgstr ""
349
 
350
+ #: admin/manage-fields.php:572
351
  msgid "Bermuda Dollar"
352
  msgstr ""
353
 
354
+ #: admin/manage-fields.php:573
355
  msgid "Bolivia Boliviano"
356
  msgstr ""
357
 
358
+ #: admin/manage-fields.php:574
359
  msgid "Bosnia and Herzegovina Convertible Marka"
360
  msgstr ""
361
 
362
+ #: admin/manage-fields.php:575
363
  msgid "Botswana Pula"
364
  msgstr ""
365
 
366
+ #: admin/manage-fields.php:576
367
  msgid "Bulgaria Lev"
368
  msgstr ""
369
 
370
+ #: admin/manage-fields.php:577
371
  msgid "Brazil Real"
372
  msgstr ""
373
 
374
+ #: admin/manage-fields.php:578
375
  msgid "Brunei Darussalam Dollar"
376
  msgstr ""
377
 
378
+ #: admin/manage-fields.php:579
379
  msgid "Cambodia Riel"
380
  msgstr ""
381
 
382
+ #: admin/manage-fields.php:580
383
  msgid "Canada Dollar"
384
  msgstr ""
385
 
386
+ #: admin/manage-fields.php:581
387
  msgid "Cayman Islands Dollar"
388
  msgstr ""
389
 
390
+ #: admin/manage-fields.php:582
391
  msgid "Chile Peso"
392
  msgstr ""
393
 
394
+ #: admin/manage-fields.php:583
395
  msgid "China Yuan Renminbi"
396
  msgstr ""
397
 
398
+ #: admin/manage-fields.php:584
399
  msgid "Colombia Peso"
400
  msgstr ""
401
 
402
+ #: admin/manage-fields.php:585
403
  msgid "Costa Rica Colon"
404
  msgstr ""
405
 
406
+ #: admin/manage-fields.php:586
407
  msgid "Croatia Kuna"
408
  msgstr ""
409
 
410
+ #: admin/manage-fields.php:587
411
  msgid "Cuba Peso"
412
  msgstr ""
413
 
414
+ #: admin/manage-fields.php:588
415
  msgid "Czech Republic Koruna"
416
  msgstr ""
417
 
418
+ #: admin/manage-fields.php:589
419
  msgid "Denmark Krone"
420
  msgstr ""
421
 
422
+ #: admin/manage-fields.php:590
423
  msgid "Dominican Republic Peso"
424
  msgstr ""
425
 
426
+ #: admin/manage-fields.php:591
427
  msgid "East Caribbean Dollar"
428
  msgstr ""
429
 
430
+ #: admin/manage-fields.php:592
431
  msgid "Egypt Pound"
432
  msgstr ""
433
 
434
+ #: admin/manage-fields.php:593
435
  msgid "El Salvador Colon"
436
  msgstr ""
437
 
438
+ #: admin/manage-fields.php:594
439
  msgid "Estonia Kroon"
440
  msgstr ""
441
 
442
+ #: admin/manage-fields.php:595
443
  msgid "Euro"
444
  msgstr ""
445
 
446
+ #: admin/manage-fields.php:596
447
  msgid "Falkland Islands (Malvinas) Pound"
448
  msgstr ""
449
 
450
+ #: admin/manage-fields.php:597
451
  msgid "Fiji Dollar"
452
  msgstr ""
453
 
454
+ #: admin/manage-fields.php:598
455
  msgid "Ghana Cedis"
456
  msgstr ""
457
 
458
+ #: admin/manage-fields.php:599
459
  msgid "Gibraltar Pound"
460
  msgstr ""
461
 
462
+ #: admin/manage-fields.php:600
463
  msgid "Guatemala Quetzal"
464
  msgstr ""
465
 
466
+ #: admin/manage-fields.php:601
467
  msgid "Guernsey Pound"
468
  msgstr ""
469
 
470
+ #: admin/manage-fields.php:602
471
  msgid "Guyana Dollar"
472
  msgstr ""
473
 
474
+ #: admin/manage-fields.php:603
475
  msgid "Honduras Lempira"
476
  msgstr ""
477
 
478
+ #: admin/manage-fields.php:604
479
  msgid "Hong Kong Dollar"
480
  msgstr ""
481
 
482
+ #: admin/manage-fields.php:605
483
  msgid "Hungary Forint"
484
  msgstr ""
485
 
486
+ #: admin/manage-fields.php:606
487
  msgid "Iceland Krona"
488
  msgstr ""
489
 
490
+ #: admin/manage-fields.php:607
491
  msgid "India Rupee"
492
  msgstr ""
493
 
494
+ #: admin/manage-fields.php:608
495
  msgid "Indonesia Rupiah"
496
  msgstr ""
497
 
498
+ #: admin/manage-fields.php:609
499
  msgid "Iran Rial"
500
  msgstr ""
501
 
502
+ #: admin/manage-fields.php:610
503
  msgid "Isle of Man Pound"
504
  msgstr ""
505
 
506
+ #: admin/manage-fields.php:611
507
  msgid "Israel Shekel"
508
  msgstr ""
509
 
510
+ #: admin/manage-fields.php:612
511
  msgid "Jamaica Dollar"
512
  msgstr ""
513
 
514
+ #: admin/manage-fields.php:613
515
  msgid "Japan Yen"
516
  msgstr ""
517
 
518
+ #: admin/manage-fields.php:614
519
  msgid "Jersey Pound"
520
  msgstr ""
521
 
522
+ #: admin/manage-fields.php:615
523
  msgid "Kazakhstan Tenge"
524
  msgstr ""
525
 
526
+ #: admin/manage-fields.php:616
527
  msgid "Korea (North) Won"
528
  msgstr ""
529
 
530
+ #: admin/manage-fields.php:617
531
  msgid "Korea (South) Won"
532
  msgstr ""
533
 
534
+ #: admin/manage-fields.php:618
535
  msgid "Kyrgyzstan Som"
536
  msgstr ""
537
 
538
+ #: admin/manage-fields.php:619
539
  msgid "Laos Kip"
540
  msgstr ""
541
 
542
+ #: admin/manage-fields.php:620
543
  msgid "Latvia Lat"
544
  msgstr ""
545
 
546
+ #: admin/manage-fields.php:621
547
  msgid "Lebanon Pound"
548
  msgstr ""
549
 
550
+ #: admin/manage-fields.php:622
551
  msgid "Liberia Dollar"
552
  msgstr ""
553
 
554
+ #: admin/manage-fields.php:623
555
  msgid "Lithuania Litas"
556
  msgstr ""
557
 
558
+ #: admin/manage-fields.php:624
559
  msgid "Macedonia Denar"
560
  msgstr ""
561
 
562
+ #: admin/manage-fields.php:625
563
  msgid "Malaysia Ringgit"
564
  msgstr ""
565
 
566
+ #: admin/manage-fields.php:626
567
  msgid "Mauritius Rupee"
568
  msgstr ""
569
 
570
+ #: admin/manage-fields.php:627
571
  msgid "Mexico Peso"
572
  msgstr ""
573
 
574
+ #: admin/manage-fields.php:628
575
  msgid "Mongolia Tughrik"
576
  msgstr ""
577
 
578
+ #: admin/manage-fields.php:629
579
  msgid "Mozambique Metical"
580
  msgstr ""
581
 
582
+ #: admin/manage-fields.php:630
583
  msgid "Namibia Dollar"
584
  msgstr ""
585
 
586
+ #: admin/manage-fields.php:631
587
  msgid "Nepal Rupee"
588
  msgstr ""
589
 
590
+ #: admin/manage-fields.php:632
591
  msgid "Netherlands Antilles Guilder"
592
  msgstr ""
593
 
594
+ #: admin/manage-fields.php:633
595
  msgid "New Zealand Dollar"
596
  msgstr ""
597
 
598
+ #: admin/manage-fields.php:634
599
  msgid "Nicaragua Cordoba"
600
  msgstr ""
601
 
602
+ #: admin/manage-fields.php:635
603
  msgid "Nigeria Naira"
604
  msgstr ""
605
 
606
+ #: admin/manage-fields.php:636
607
  msgid "Norway Krone"
608
  msgstr ""
609
 
610
+ #: admin/manage-fields.php:637
611
  msgid "Oman Rial"
612
  msgstr ""
613
 
614
+ #: admin/manage-fields.php:638
615
  msgid "Pakistan Rupee"
616
  msgstr ""
617
 
618
+ #: admin/manage-fields.php:639
619
  msgid "Panama Balboa"
620
  msgstr ""
621
 
622
+ #: admin/manage-fields.php:640
623
  msgid "Paraguay Guarani"
624
  msgstr ""
625
 
626
+ #: admin/manage-fields.php:641
627
  msgid "Peru Nuevo Sol"
628
  msgstr ""
629
 
630
+ #: admin/manage-fields.php:642
631
  msgid "Philippines Peso"
632
  msgstr ""
633
 
634
+ #: admin/manage-fields.php:643
635
  msgid "Poland Zloty"
636
  msgstr ""
637
 
638
+ #: admin/manage-fields.php:644
639
  msgid "Qatar Riyal"
640
  msgstr ""
641
 
642
+ #: admin/manage-fields.php:645
643
  msgid "Romania New Leu"
644
  msgstr ""
645
 
646
+ #: admin/manage-fields.php:646
647
  msgid "Russia Ruble"
648
  msgstr ""
649
 
650
+ #: admin/manage-fields.php:647
651
  msgid "Saint Helena Pound"
652
  msgstr ""
653
 
654
+ #: admin/manage-fields.php:648
655
  msgid "Saudi Arabia Riyal"
656
  msgstr ""
657
 
658
+ #: admin/manage-fields.php:649
659
  msgid "Serbia Dinar"
660
  msgstr ""
661
 
662
+ #: admin/manage-fields.php:650
663
  msgid "Seychelles Rupee"
664
  msgstr ""
665
 
666
+ #: admin/manage-fields.php:651
667
  msgid "Singapore Dollar"
668
  msgstr ""
669
 
670
+ #: admin/manage-fields.php:652
671
  msgid "Solomon Islands Dollar"
672
  msgstr ""
673
 
674
+ #: admin/manage-fields.php:653
675
  msgid "Somalia Shilling"
676
  msgstr ""
677
 
678
+ #: admin/manage-fields.php:654
679
  msgid "South Africa Rand"
680
  msgstr ""
681
 
682
+ #: admin/manage-fields.php:655
683
  msgid "Sri Lanka Rupee"
684
  msgstr ""
685
 
686
+ #: admin/manage-fields.php:656
687
  msgid "Sweden Krona"
688
  msgstr ""
689
 
690
+ #: admin/manage-fields.php:657
691
  msgid "Switzerland Franc"
692
  msgstr ""
693
 
694
+ #: admin/manage-fields.php:658
695
  msgid "Suriname Dollar"
696
  msgstr ""
697
 
698
+ #: admin/manage-fields.php:659
699
  msgid "Syria Pound"
700
  msgstr ""
701
 
702
+ #: admin/manage-fields.php:660
703
  msgid "Taiwan New Dollar"
704
  msgstr ""
705
 
706
+ #: admin/manage-fields.php:661
707
  msgid "Thailand Baht"
708
  msgstr ""
709
 
710
+ #: admin/manage-fields.php:662
711
  msgid "Trinidad and Tobago Dollar"
712
  msgstr ""
713
 
714
+ #: admin/manage-fields.php:663 admin/manage-fields.php:664
 
715
  msgid "Turkey Lira"
716
  msgstr ""
717
 
718
+ #: admin/manage-fields.php:665
719
  msgid "Tuvalu Dollar"
720
  msgstr ""
721
 
722
+ #: admin/manage-fields.php:666
723
  msgid "Ukraine Hryvna"
724
  msgstr ""
725
 
726
+ #: admin/manage-fields.php:667
727
  msgid "United Kingdom Pound"
728
  msgstr ""
729
 
730
+ #: admin/manage-fields.php:668
731
  msgid "Uganda Shilling"
732
  msgstr ""
733
 
734
+ #: admin/manage-fields.php:669
735
  msgid "US Dollar"
736
  msgstr ""
737
 
738
+ #: admin/manage-fields.php:670
739
  msgid "Uruguay Peso"
740
  msgstr ""
741
 
742
+ #: admin/manage-fields.php:671
743
  msgid "Uzbekistan Som"
744
  msgstr ""
745
 
746
+ #: admin/manage-fields.php:672
747
  msgid "Venezuela Bolivar"
748
  msgstr ""
749
 
750
+ #: admin/manage-fields.php:673
751
  msgid "Viet Nam Dong"
752
  msgstr ""
753
 
754
+ #: admin/manage-fields.php:674
755
  msgid "Yemen Rial"
756
  msgstr ""
757
 
758
+ #: admin/manage-fields.php:675
759
  msgid "Zimbabwe Dollar"
760
  msgstr ""
761
 
762
+ #: admin/manage-fields.php:1094
763
  msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
764
  msgstr ""
765
 
766
+ #: admin/manage-fields.php:1311
767
  msgid "Search Location"
768
  msgstr ""
769
 
770
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754
771
  msgid "You are not allowed to do this."
772
  msgstr ""
773
 
774
+ #: features/admin-approval/class-admin-approval.php:461
775
+ #: features/email-confirmation/class-email-confirmation.php:460
776
  msgid "Search Users"
777
  msgstr ""
778
 
779
+ #: features/conditional-fields/conditional-fields.php:78
780
  msgid "Conditional Logic"
781
  msgstr ""
782
 
783
+ #: features/conditional-fields/conditional-fields.php:79
784
  msgid "Conditional Rules"
785
  msgstr ""
786
 
787
+ #: features/conditional-fields/conditional-fields.php:448
788
  msgid "This field has conditional logic enabled."
789
  msgstr ""
790
 
791
+ #: features/functions.php:685
792
  msgid "Incorrect phone number"
793
  msgstr ""
794
 
795
+ #: front-end/class-formbuilder.php:113
796
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
797
  msgstr ""
798
 
799
+ #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
 
800
  msgid "Please add the Google Maps API key for this field."
801
  msgstr ""
802
 
803
+ #: front-end/extra-fields/map/map.php:134
804
  msgid "Something went wrong. Please try again."
805
  msgstr ""
806
 
807
+ #: front-end/extra-fields/number/number.php:69
808
  msgid "Please enter numbers only"
809
  msgstr ""
810
 
811
+ #: front-end/extra-fields/number/number.php:73
812
  msgid "Value must be a multiplier of %1$s"
813
  msgstr ""
814
 
815
+ #: front-end/extra-fields/number/number.php:77
816
  msgid "Value must be greater than or equal to %1$s"
817
  msgstr ""
818
 
819
+ #: front-end/extra-fields/number/number.php:81
820
  msgid "Value must be less than or equal to %1$s"
821
  msgstr ""
822
 
823
+ #: front-end/extra-fields/phone/phone.php:22
824
  msgid "Required phone number format: "
825
  msgstr ""
826
 
827
+ #: front-end/extra-fields/select-country/select-country.php:10
828
  msgid "Bolivia, __( Plurinational State of"
829
  msgstr ""
830
 
831
+ #: front-end/extra-fields/select-country/select-country.php:10
832
  msgid "Bonaire, __( Sint Eustatius and Saba"
833
  msgstr ""
834
 
835
+ #: front-end/extra-fields/select-country/select-country.php:10
836
  msgid "Brunei Darussalam"
837
  msgstr ""
838
 
839
+ #: front-end/extra-fields/select-country/select-country.php:10
840
  msgid "Cabo Verde"
841
  msgstr ""
842
 
843
+ #: front-end/extra-fields/select-country/select-country.php:10
844
  msgid "Cocos (Keeling) Islands"
845
  msgstr ""
846
 
847
+ #: front-end/extra-fields/select-country/select-country.php:10
848
  msgid "Congo"
849
  msgstr ""
850
 
851
+ #: front-end/extra-fields/select-country/select-country.php:10
852
  msgid "Congo, __( the Democratic Republic of the"
853
  msgstr ""
854
 
855
+ #: front-end/extra-fields/select-country/select-country.php:10
856
  msgid "Cote dIvoire"
857
  msgstr ""
858
 
859
+ #: front-end/extra-fields/select-country/select-country.php:10
860
  msgid "Falkland Islands (Malvinas)"
861
  msgstr ""
862
 
863
+ #: front-end/extra-fields/select-country/select-country.php:10
864
  msgid "Holy See (Vatican City State)"
865
  msgstr ""
866
 
867
+ #: front-end/extra-fields/select-country/select-country.php:10
868
  msgid "Iran, __( Islamic Republic of"
869
  msgstr ""
870
 
871
+ #: front-end/extra-fields/select-country/select-country.php:10
872
  msgid "Korea, __( Democratic Peoples Republic of"
873
  msgstr ""
874
 
875
+ #: front-end/extra-fields/select-country/select-country.php:10
876
  msgid "Korea, __( Republic of"
877
  msgstr ""
878
 
879
+ #: front-end/extra-fields/select-country/select-country.php:10
880
  msgid "Lao Peoples Democratic Republic"
881
  msgstr ""
882
 
883
+ #: front-end/extra-fields/select-country/select-country.php:10
884
  msgid "Macedonia, __( the former Yugoslav Republic of"
885
  msgstr ""
886
 
887
+ #: front-end/extra-fields/select-country/select-country.php:10
888
  msgid "Micronesia, __( Federated States of"
889
  msgstr ""
890
 
891
+ #: front-end/extra-fields/select-country/select-country.php:10
892
  msgid "Moldova, __( Republic of"
893
  msgstr ""
894
 
895
+ #: front-end/extra-fields/select-country/select-country.php:10
896
  msgid "Palestine, __( State of"
897
  msgstr ""
898
 
899
+ #: front-end/extra-fields/select-country/select-country.php:10
900
  msgid "Russian Federation"
901
  msgstr ""
902
 
903
+ #: front-end/extra-fields/select-country/select-country.php:10
904
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
905
  msgstr ""
906
 
907
+ #: front-end/extra-fields/select-country/select-country.php:10
908
  msgid "Saint Martin (French part)"
909
  msgstr ""
910
 
911
+ #: front-end/extra-fields/select-country/select-country.php:10
912
  msgid "Sint Maarten (Dutch part)"
913
  msgstr ""
914
 
915
+ #: front-end/extra-fields/select-country/select-country.php:10
916
  msgid "Syrian Arab Republic"
917
  msgstr ""
918
 
919
+ #: front-end/extra-fields/select-country/select-country.php:10
920
  msgid "Taiwan, __( Province of China"
921
  msgstr ""
922
 
923
+ #: front-end/extra-fields/select-country/select-country.php:10
924
  msgid "Tanzania, __( United Republic of"
925
  msgstr ""
926
 
927
+ #: front-end/extra-fields/select-country/select-country.php:10
928
  msgid "Timor-Leste"
929
  msgstr ""
930
 
931
+ #: front-end/extra-fields/select-country/select-country.php:10
932
  msgid "Venezuela, __( Bolivarian Republic of"
933
  msgstr ""
934
 
935
+ #: front-end/extra-fields/select-country/select-country.php:10
936
  msgid "Viet Nam"
937
  msgstr ""
938
 
939
+ #: front-end/extra-fields/select-country/select-country.php:10
940
  msgid "Virgin Islands, __( British"
941
  msgstr ""
942
 
943
+ #: front-end/extra-fields/select-country/select-country.php:10
944
  msgid "Virgin Islands, __( U.S."
945
  msgstr ""
946
 
947
+ #: modules/email-customizer/email-customizer.php:11
948
+ #: modules/user-listing/userlisting.php:186
949
  msgid "User Fields Tags"
950
  msgstr ""
951
 
952
+ #: modules/email-customizer/email-customizer.php:479
953
  msgid "The users selected password at signup"
954
  msgstr ""
955
 
956
+ #: modules/email-customizer/user-email-customizer.php:278
957
  msgid "[{{site_name}}] Notice of Email Change"
958
  msgstr ""
959
 
960
+ #: modules/email-customizer/user-email-customizer.php:289
961
  msgid "Changed Email Address Notification"
962
  msgstr ""
963
 
964
+ #: modules/repeater-field/admin/repeater-manage-fields.php:190
965
  msgid "Limit"
966
  msgstr ""
967
 
968
+ #: modules/repeater-field/admin/repeater-manage-fields.php:190
969
  msgid "Enable limit to the number of fields to be generated by users in front end forms "
970
  msgstr ""
971
 
972
+ #: modules/repeater-field/admin/repeater-manage-fields.php:191
973
  msgid "General Limit"
974
  msgstr ""
975
 
976
+ #: modules/repeater-field/admin/repeater-manage-fields.php:191
977
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
978
  msgstr ""
979
 
980
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
981
  msgid "Limit reached message"
982
  msgstr ""
983
 
984
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
985
  msgid "The maximum number of fields has been reached."
986
  msgstr ""
987
 
988
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
989
  msgid "The popup message to display when the limit of repeater groups is reached."
990
  msgstr ""
991
 
992
+ #: modules/repeater-field/admin/repeater-manage-fields.php:193
993
  msgid "Limit per Role"
994
  msgstr ""
995
 
996
+ #: modules/repeater-field/admin/repeater-manage-fields.php:193
997
  msgid "Leave 0 for unlimited."
998
  msgstr ""
999
 
1000
+ #: modules/repeater-field/admin/repeater-manage-fields.php:194
1001
  msgid "Repeated field group"
1002
  msgstr ""
1003
 
1004
+ #: modules/repeater-field/admin/repeater-manage-fields.php:194
1005
  msgid "Manage field or group of fields that will be repeatable."
1006
  msgstr ""
1007
 
1008
+ #: modules/repeater-field/admin/repeater-manage-fields.php:259
1009
  msgid "Edit field group"
1010
  msgstr ""
1011
 
1012
+ #: modules/repeater-field/admin/repeater-manage-fields.php:260
1013
  msgid "Repeatable fields saved!"
1014
  msgstr ""
1015
 
1016
+ #: modules/repeater-field/admin/repeater-manage-fields.php:277
1017
+ #: modules/repeater-field/admin/repeater-manage-fields.php:326
1018
  msgid "Please enter a unique field title.\n"
1019
  msgstr ""
1020
 
1021
+ #: modules/repeater-field/repeater-field.php:258
1022
  msgid "Are you sure you want to delete this?"
1023
  msgstr ""
1024
 
1025
+ #: modules/user-listing/userlisting.php:192
1026
  msgid "Sort Tags"
1027
  msgstr ""
1028
 
1029
+ #: modules/user-listing/userlisting.php:201
1030
+ #: modules/user-listing/userlisting.php:2237
1031
  msgid "Faceted Menus"
1032
  msgstr ""
1033
 
1034
+ #: modules/user-listing/userlisting.php:202
1035
  msgid "User Count"
1036
  msgstr ""
1037
 
1038
+ #: modules/user-listing/userlisting.php:1536
1039
  msgid "Show All"
1040
  msgstr ""
1041
 
1042
+ #: modules/user-listing/userlisting.php:1668
 
 
1043
  msgid "No options available"
1044
  msgstr ""
1045
 
1046
+ #: modules/user-listing/userlisting.php:1807
1047
  msgid "Remove All Filters"
1048
  msgstr ""
1049
 
1050
+ #: modules/user-listing/userlisting.php:2227
1051
  msgid "Label"
1052
  msgstr ""
1053
 
1054
+ #: modules/user-listing/userlisting.php:2227
1055
  msgid "Choose the facet name that appears on the frontend"
1056
  msgstr ""
1057
 
1058
+ #: modules/user-listing/userlisting.php:2228
1059
  msgid "Facet Type"
1060
  msgstr ""
1061
 
1062
+ #: modules/user-listing/userlisting.php:2228
1063
  msgid "Choose the facet menu type"
1064
  msgstr ""
1065
 
1066
+ #: modules/user-listing/userlisting.php:2229
1067
  msgid "Facet Meta"
1068
  msgstr ""
1069
 
1070
+ #: modules/user-listing/userlisting.php:2229
1071
  msgid "Choose the meta field for the facet menu"
1072
  msgstr ""
1073
 
1074
+ #: modules/user-listing/userlisting.php:2230
1075
  msgid "Behaviour"
1076
  msgstr ""
1077
 
1078
+ #: modules/user-listing/userlisting.php:2230
1079
  msgid "Narrow the results"
1080
  msgstr ""
1081
 
1082
+ #: modules/user-listing/userlisting.php:2230
1083
  msgid "Expand the results"
1084
  msgstr ""
1085
 
1086
+ #: modules/user-listing/userlisting.php:2230
1087
  msgid "Choose how multiple selections affect the results"
1088
  msgstr ""
1089
 
1090
+ #: modules/user-listing/userlisting.php:2231
1091
  msgid "Visible choices"
1092
  msgstr ""
1093
 
1094
+ #: modules/user-listing/userlisting.php:2231
1095
  msgid "Show a toggle link after this many choices. Leave blank for all"
1096
  msgstr ""
1097
 
1098
+ #: modules/user-listing/userlisting.php:2254
1099
  msgid "Search Fields"
1100
  msgstr ""
1101
 
1102
+ #: modules/user-listing/userlisting.php:2254
1103
  msgid "Choose the fields in which the Search Field will look in"
1104
  msgstr ""
1105
 
1106
+ #: modules/user-listing/userlisting.php:2259
1107
  msgid "Search Settings"
1108
  msgstr ""
1109
 
1110
+ #: admin/add-ons.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  msgid "Recommended Plugins"
1112
  msgstr ""
1113
 
1114
+ #: admin/add-ons.php:219 admin/pms-cross-promotion.php:102
 
1115
  msgid "Free"
1116
  msgstr ""
1117
 
1118
+ #: admin/add-ons.php:221
1119
  msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1120
  msgstr ""
1121
 
1122
+ #: admin/add-ons.php:222 admin/pms-cross-promotion.php:105
 
1123
  msgid "More Details"
1124
  msgstr ""
1125
 
1126
+ #: admin/add-ons.php:240 admin/pms-cross-promotion.php:88
1127
+ #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
 
 
1128
  msgid "Plugin is <strong>inactive</strong>"
1129
  msgstr ""
1130
 
1131
+ #: admin/add-ons.php:242 admin/pms-cross-promotion.php:87
1132
+ #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
 
 
1133
  msgid "Plugin is <strong>active</strong>"
1134
  msgstr ""
1135
 
1136
+ #: admin/add-ons.php:256 admin/pms-cross-promotion.php:146
 
1137
  msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1138
  msgstr ""
1139
 
1140
+ #: admin/pms-cross-promotion.php:10
1141
  msgid "Paid Accounts"
1142
  msgstr ""
1143
 
1144
+ #: admin/pms-cross-promotion.php:33
1145
  msgid "Paid Member Subscriptions - a free WordPress plugin"
1146
  msgstr ""
1147
 
1148
+ #: admin/pms-cross-promotion.php:37
1149
  msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1150
  msgstr ""
1151
 
1152
+ #: admin/pms-cross-promotion.php:40
1153
  msgid "Paid & Free Subscriptions"
1154
  msgstr ""
1155
 
1156
+ #: admin/pms-cross-promotion.php:41
1157
  msgid "Restrict Content"
1158
  msgstr ""
1159
 
1160
+ #: admin/pms-cross-promotion.php:42
1161
  msgid "Member Management"
1162
  msgstr ""
1163
 
1164
+ #: admin/pms-cross-promotion.php:43
1165
  msgid "Email Templates"
1166
  msgstr ""
1167
 
1168
+ #: admin/pms-cross-promotion.php:44
1169
  msgid "Account Management"
1170
  msgstr ""
1171
 
1172
+ #: admin/pms-cross-promotion.php:45
1173
  msgid "Subscription Management"
1174
  msgstr ""
1175
 
1176
+ #: admin/pms-cross-promotion.php:46
1177
  msgid "Payment Management"
1178
  msgstr ""
1179
 
1180
+ #: admin/pms-cross-promotion.php:83
1181
  msgid "Plugin is Active"
1182
  msgstr ""
1183
 
1184
+ #: admin/pms-cross-promotion.php:84
1185
  msgid "Plugin has been activated"
1186
  msgstr ""
1187
 
1188
+ #: admin/pms-cross-promotion.php:91
1189
  msgid "Plugin has been deactivated."
1190
  msgstr ""
1191
 
1192
+ #: admin/pms-cross-promotion.php:104
1193
  msgid "Accept user payments, create subscription plans and restrict content on your website."
1194
  msgstr ""
1195
 
1196
+ #: admin/pms-cross-promotion.php:155
1197
  msgid "Step by Step Quick Setup"
1198
  msgstr ""
1199
 
1200
+ #: features/email-confirmation/email-confirmation.php:400
1201
  msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1202
  msgstr ""
1203
 
1204
+ #: modules/custom-redirects/custom_redirects_admin.php:45
 
 
 
 
1205
  msgid "After Login"
1206
  msgstr ""
1207
 
1208
+ #: modules/custom-redirects/custom_redirects_admin.php:46
1209
  msgid "After Logout"
1210
  msgstr ""
1211
 
1212
+ #: modules/custom-redirects/custom_redirects_admin.php:47
1213
  msgid "After Registration"
1214
  msgstr ""
1215
 
1216
+ #: modules/custom-redirects/custom_redirects_admin.php:48
1217
  msgid "After Edit Profile"
1218
  msgstr ""
1219
 
1220
+ #: modules/custom-redirects/custom_redirects_admin.php:49
1221
  msgid "After Successful Email Confirmation"
1222
  msgstr ""
1223
 
1224
+ #: modules/custom-redirects/custom_redirects_admin.php:50
1225
  msgid "After Successful Password Reset"
1226
  msgstr ""
1227
 
1228
+ #: modules/custom-redirects/custom_redirects_admin.php:51
1229
  msgid "Dashboard (redirect users from accessing the dashboard)"
1230
  msgstr ""
1231
 
1232
+ #: modules/custom-redirects/custom_redirects_admin.php:55
1233
  msgid "User ID"
1234
  msgstr ""
1235
 
1236
+ #: modules/custom-redirects/custom_redirects_admin.php:61
1237
  msgid "User ID or Username"
1238
  msgstr ""
1239
 
1240
+ #: modules/custom-redirects/custom_redirects_admin.php:62
1241
  msgid "User ID / Username"
1242
  msgstr ""
1243
 
1244
+ #: modules/custom-redirects/custom_redirects_admin.php:62
1245
  msgid "Please select and enter the ID or username of your user."
1246
  msgstr ""
1247
 
1248
+ #: modules/custom-redirects/custom_redirects_admin.php:63
1249
+ #: modules/custom-redirects/custom_redirects_admin.php:93
1250
+ #: modules/custom-redirects/custom_redirects_admin.php:112
1251
+ #: modules/custom-redirects/custom_redirects_admin.php:131
1252
  msgid "Redirect Type"
1253
  msgstr ""
1254
 
1255
+ #: modules/custom-redirects/custom_redirects_admin.php:64
1256
+ #: modules/custom-redirects/custom_redirects_admin.php:94
1257
+ #: modules/custom-redirects/custom_redirects_admin.php:113
1258
+ #: modules/custom-redirects/custom_redirects_admin.php:138
1259
  msgid "Redirect URL"
1260
  msgstr ""
1261
 
1262
+ #: modules/custom-redirects/custom_redirects_admin.php:64
1263
+ #: modules/custom-redirects/custom_redirects_admin.php:94
1264
+ #: modules/custom-redirects/custom_redirects_admin.php:113
1265
+ #: modules/custom-redirects/custom_redirects_admin.php:138
1266
  msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1267
  msgstr ""
1268
 
1269
+ #: modules/custom-redirects/custom_redirects_admin.php:71
1270
+ #: modules/custom-redirects/custom_redirects_admin.php:241
1271
  msgid "Individual User Redirects"
1272
  msgstr ""
1273
 
1274
+ #: modules/custom-redirects/custom_redirects_admin.php:84
1275
  msgid "... Choose"
1276
  msgstr ""
1277
 
1278
+ #: modules/custom-redirects/custom_redirects_admin.php:92
1279
  msgid "Select a user role."
1280
  msgstr ""
1281
 
1282
+ #: modules/custom-redirects/custom_redirects_admin.php:101
1283
+ #: modules/custom-redirects/custom_redirects_admin.php:242
1284
  msgid "User Role based Redirects"
1285
  msgstr ""
1286
 
1287
+ #: modules/custom-redirects/custom_redirects_admin.php:120
1288
+ #: modules/custom-redirects/custom_redirects_admin.php:243
1289
  msgid "Global Redirects"
1290
  msgstr ""
1291
 
1292
+ #: modules/custom-redirects/custom_redirects_admin.php:133
1293
  msgid "Login ( wp_login.php )"
1294
  msgstr ""
1295
 
1296
+ #: modules/custom-redirects/custom_redirects_admin.php:134
1297
  msgid "Register ( wp-login.php?action=register )"
1298
  msgstr ""
1299
 
1300
+ #: modules/custom-redirects/custom_redirects_admin.php:135
1301
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
1302
  msgstr ""
1303
 
1304
+ #: modules/custom-redirects/custom_redirects_admin.php:136
1305
  msgid "Author Archive ( http://sitename.com/author/admin )"
1306
  msgstr ""
1307
 
1308
+ #: modules/custom-redirects/custom_redirects_admin.php:145
1309
  msgid "Redirect Default WordPress Forms and Pages"
1310
  msgstr ""
1311
 
1312
+ #: modules/custom-redirects/custom_redirects_admin.php:157
1313
  msgid "How does this work?"
1314
  msgstr ""
1315
 
1316
+ #: modules/custom-redirects/custom_redirects_admin.php:179
1317
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1318
  msgstr ""
1319
 
1320
+ #: modules/custom-redirects/custom_redirects_admin.php:193
1321
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1322
  msgstr ""
1323
 
1324
+ #: modules/custom-redirects/custom_redirects_admin.php:207
1325
+ #: modules/custom-redirects/custom_redirects_admin.php:221
1326
  msgid "<pre>Redirect</pre><pre>URL</pre>"
1327
  msgstr ""
1328
 
1329
+ #: modules/custom-redirects/custom_redirects_admin.php:236
1330
  msgid "These redirects happen after a successful action, like registration or after a successful login."
1331
  msgstr ""
1332
 
1333
+ #: modules/custom-redirects/custom_redirects_admin.php:238
1334
  msgid "Which redirect happens depends on the following priority:"
1335
  msgstr ""
1336
 
1337
+ #: modules/custom-redirects/custom_redirects_admin.php:247
 
 
 
 
1338
  msgid "Redirect Default WordPress forms and pages"
1339
  msgstr ""
1340
 
1341
+ #: modules/custom-redirects/custom_redirects_admin.php:248
1342
  msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1343
  msgstr ""
1344
 
1345
+ #: modules/custom-redirects/custom_redirects_admin.php:250
1346
  msgid "Available tags for dynamic URLs"
1347
  msgstr ""
1348
 
1349
+ #: modules/custom-redirects/custom_redirects_admin.php:251
1350
  msgid "You use the following tags in your URLs to redirect users to various pages."
1351
  msgstr ""
1352
 
1353
+ #: modules/custom-redirects/custom_redirects_admin.php:253
1354
  msgid "generates a url of the current website homepage."
1355
  msgstr ""
1356
 
1357
+ #: modules/custom-redirects/custom_redirects_admin.php:254
1358
  msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1359
  msgstr ""
1360
 
1361
+ #: modules/custom-redirects/custom_redirects_admin.php:255
1362
  msgid "the ID of the user"
1363
  msgstr ""
1364
 
1365
+ #: modules/custom-redirects/custom_redirects_admin.php:256
1366
  msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1367
  msgstr ""
1368
 
1369
+ #: modules/custom-redirects/custom_redirects_admin.php:257
1370
  msgid "the URL of the previously visited page"
1371
  msgstr ""
1372
 
1373
+ #: modules/custom-redirects/custom_redirects_admin.php:340
1374
+ #: modules/custom-redirects/custom_redirects_admin.php:346
1375
+ #: modules/custom-redirects/custom_redirects_admin.php:352
1376
  msgid "You can't add duplicate redirects!"
1377
  msgstr ""
1378
 
1379
+ #: admin/admin-functions.php:41
1380
  msgid "Display name publicly as - only appears on the Edit Profile page!"
1381
  msgstr ""
1382
 
1383
+ #: admin/basic-info.php:37
1384
  msgid "Friction-less login using %s shortcode or a widget."
1385
  msgstr ""
1386
 
1387
+ #: admin/basic-info.php:41
1388
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
1389
  msgstr ""
1390
 
1391
+ #: admin/basic-info.php:45
1392
  msgid "Straight forward edit profile forms using %s shortcode."
1393
  msgstr ""
1394
 
1395
+ #: admin/basic-info.php:58
1396
  msgid "Allow users to recover their password in the front-end using the %s."
1397
  msgstr ""
1398
 
1399
+ #: admin/basic-info.php:140
1400
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1401
  msgstr ""
1402
 
1403
+ #: admin/general-settings.php:118
1404
  msgid "\"Admin Approval\" on User Role:"
1405
  msgstr ""
1406
 
1407
+ #: admin/general-settings.php:137
1408
  msgid "Select on what user roles to activate Admin Approval."
1409
  msgstr ""
1410
 
1411
+ #: admin/manage-fields.php:131
1412
  msgid "Display on PB forms"
1413
  msgstr ""
1414
 
1415
+ #: admin/manage-fields.php:131
1416
  msgid "PB Login"
1417
  msgstr ""
1418
 
1419
+ #: admin/manage-fields.php:131
1420
  msgid "PB Register"
1421
  msgstr ""
1422
 
1423
+ #: admin/manage-fields.php:131
1424
  msgid "PB Recover Password"
1425
  msgstr ""
1426
 
1427
+ #: admin/manage-fields.php:131
1428
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1429
  msgstr ""
1430
 
1431
+ #: admin/manage-fields.php:132
1432
  msgid "Display on default WP forms"
1433
  msgstr ""
1434
 
1435
+ #: admin/manage-fields.php:132
1436
  msgid "Default WP Login"
1437
  msgstr ""
1438
 
1439
+ #: admin/manage-fields.php:132
1440
  msgid "Default WP Register"
1441
  msgstr ""
1442
 
1443
+ #: admin/manage-fields.php:132
1444
  msgid "Default WP Recover Password"
1445
  msgstr ""
1446
 
1447
+ #: admin/manage-fields.php:132
1448
  msgid "Select on which default WP forms to display reCAPTCHA"
1449
  msgstr ""
1450
 
1451
+ #: admin/manage-fields.php:138 admin/manage-fields.php:139
1452
+ #: admin/manage-fields.php:140
 
1453
  msgid "Default option of the field"
1454
  msgstr ""
1455
 
1456
+ #: admin/manage-fields.php:279
1457
+ #: front-end/extra-fields/select-country/select-country.php:10
1458
  msgid "Afghanistan"
1459
  msgstr "Afghanistan"
1460
 
1461
+ #: admin/manage-fields.php:280
1462
+ #: front-end/extra-fields/select-country/select-country.php:10
1463
  msgid "Aland Islands"
1464
  msgstr "Aland Islands"
1465
 
1466
+ #: admin/manage-fields.php:281
1467
+ #: front-end/extra-fields/select-country/select-country.php:10
1468
  msgid "Albania"
1469
  msgstr "Albania"
1470
 
1471
+ #: admin/manage-fields.php:282
1472
+ #: front-end/extra-fields/select-country/select-country.php:10
1473
  msgid "Algeria"
1474
  msgstr "Algeria"
1475
 
1476
+ #: admin/manage-fields.php:283
1477
+ #: front-end/extra-fields/select-country/select-country.php:10
1478
  msgid "American Samoa"
1479
  msgstr "American Samoa"
1480
 
1481
+ #: admin/manage-fields.php:284
1482
+ #: front-end/extra-fields/select-country/select-country.php:10
1483
  msgid "Andorra"
1484
  msgstr "Andorra"
1485
 
1486
+ #: admin/manage-fields.php:285
1487
+ #: front-end/extra-fields/select-country/select-country.php:10
1488
  msgid "Angola"
1489
  msgstr "Angola"
1490
 
1491
+ #: admin/manage-fields.php:286
1492
+ #: front-end/extra-fields/select-country/select-country.php:10
1493
  msgid "Anguilla"
1494
  msgstr "Anguilla"
1495
 
1496
+ #: admin/manage-fields.php:287
1497
+ #: front-end/extra-fields/select-country/select-country.php:10
1498
  msgid "Antarctica"
1499
  msgstr "Antarctica"
1500
 
1501
+ #: admin/manage-fields.php:288
1502
+ #: front-end/extra-fields/select-country/select-country.php:10
1503
  msgid "Antigua and Barbuda"
1504
  msgstr "Antigua and Barbuda"
1505
 
1506
+ #: admin/manage-fields.php:289
1507
+ #: front-end/extra-fields/select-country/select-country.php:10
1508
  msgid "Argentina"
1509
  msgstr "Argentina"
1510
 
1511
+ #: admin/manage-fields.php:290
1512
+ #: front-end/extra-fields/select-country/select-country.php:10
1513
  msgid "Armenia"
1514
  msgstr "Armenia"
1515
 
1516
+ #: admin/manage-fields.php:291
1517
+ #: front-end/extra-fields/select-country/select-country.php:10
1518
  msgid "Aruba"
1519
  msgstr "Aruba"
1520
 
1521
+ #: admin/manage-fields.php:292
1522
+ #: front-end/extra-fields/select-country/select-country.php:10
1523
  msgid "Australia"
1524
  msgstr "Australia"
1525
 
1526
+ #: admin/manage-fields.php:293
1527
+ #: front-end/extra-fields/select-country/select-country.php:10
1528
  msgid "Austria"
1529
  msgstr "Austria"
1530
 
1531
+ #: admin/manage-fields.php:294
1532
+ #: front-end/extra-fields/select-country/select-country.php:10
1533
  msgid "Azerbaijan"
1534
  msgstr "Azerbaijan"
1535
 
1536
+ #: admin/manage-fields.php:295
1537
+ #: front-end/extra-fields/select-country/select-country.php:10
1538
  msgid "Bahamas"
1539
  msgstr "Bahamas"
1540
 
1541
+ #: admin/manage-fields.php:296
1542
+ #: front-end/extra-fields/select-country/select-country.php:10
1543
  msgid "Bahrain"
1544
  msgstr "Bahrain"
1545
 
1546
+ #: admin/manage-fields.php:297
1547
+ #: front-end/extra-fields/select-country/select-country.php:10
1548
  msgid "Bangladesh"
1549
  msgstr "Bangladesh"
1550
 
1551
+ #: admin/manage-fields.php:298
1552
+ #: front-end/extra-fields/select-country/select-country.php:10
1553
  msgid "Barbados"
1554
  msgstr "Barbados"
1555
 
1556
+ #: admin/manage-fields.php:299
1557
+ #: front-end/extra-fields/select-country/select-country.php:10
1558
  msgid "Belarus"
1559
  msgstr "Belarus"
1560
 
1561
+ #: admin/manage-fields.php:300
1562
+ #: front-end/extra-fields/select-country/select-country.php:10
1563
  msgid "Belgium"
1564
  msgstr "Belgium"
1565
 
1566
+ #: admin/manage-fields.php:301
1567
+ #: front-end/extra-fields/select-country/select-country.php:10
1568
  msgid "Belize"
1569
  msgstr "Belize"
1570
 
1571
+ #: admin/manage-fields.php:302
1572
+ #: front-end/extra-fields/select-country/select-country.php:10
1573
  msgid "Benin"
1574
  msgstr "Benin"
1575
 
1576
+ #: admin/manage-fields.php:303
1577
+ #: front-end/extra-fields/select-country/select-country.php:10
1578
  msgid "Bermuda"
1579
  msgstr "Bermuda"
1580
 
1581
+ #: admin/manage-fields.php:304
1582
+ #: front-end/extra-fields/select-country/select-country.php:10
1583
  msgid "Bhutan"
1584
  msgstr "Bhutan"
1585
 
1586
+ #: admin/manage-fields.php:305
1587
  msgid "Bolivia"
1588
  msgstr "Bolivia"
1589
 
1590
+ #: admin/manage-fields.php:306
1591
  msgid "Bonaire, Saint Eustatius and Saba"
1592
  msgstr "Bonaire, Saint Eustatius and Saba"
1593
 
1594
+ #: admin/manage-fields.php:307
1595
+ #: front-end/extra-fields/select-country/select-country.php:10
1596
  msgid "Bosnia and Herzegovina"
1597
  msgstr "Bosnia and Herzegovina"
1598
 
1599
+ #: admin/manage-fields.php:308
1600
+ #: front-end/extra-fields/select-country/select-country.php:10
1601
  msgid "Botswana"
1602
  msgstr "Botswana"
1603
 
1604
+ #: admin/manage-fields.php:309
1605
+ #: front-end/extra-fields/select-country/select-country.php:10
1606
  msgid "Bouvet Island"
1607
  msgstr "Bouvet Island"
1608
 
1609
+ #: admin/manage-fields.php:310
1610
+ #: front-end/extra-fields/select-country/select-country.php:10
1611
  msgid "Brazil"
1612
  msgstr "Brazil"
1613
 
1614
+ #: admin/manage-fields.php:311
1615
+ #: front-end/extra-fields/select-country/select-country.php:10
1616
  msgid "British Indian Ocean Territory"
1617
  msgstr "British Indian Ocean Territory"
1618
 
1619
+ #: admin/manage-fields.php:312
1620
  msgid "British Virgin Islands"
1621
  msgstr "British Virgin Islands"
1622
 
1623
+ #: admin/manage-fields.php:313
1624
  msgid "Brunei"
1625
  msgstr "Brunei"
1626
 
1627
+ #: admin/manage-fields.php:314
1628
+ #: front-end/extra-fields/select-country/select-country.php:10
1629
  msgid "Bulgaria"
1630
  msgstr "Bulgaria"
1631
 
1632
+ #: admin/manage-fields.php:315
1633
+ #: front-end/extra-fields/select-country/select-country.php:10
1634
  msgid "Burkina Faso"
1635
  msgstr "Burkina Faso"
1636
 
1637
+ #: admin/manage-fields.php:316
1638
+ #: front-end/extra-fields/select-country/select-country.php:10
1639
  msgid "Burundi"
1640
  msgstr "Burundi"
1641
 
1642
+ #: admin/manage-fields.php:317
1643
+ #: front-end/extra-fields/select-country/select-country.php:10
1644
  msgid "Cambodia"
1645
  msgstr "Cambodia"
1646
 
1647
+ #: admin/manage-fields.php:318
1648
+ #: front-end/extra-fields/select-country/select-country.php:10
1649
  msgid "Cameroon"
1650
  msgstr "Cameroon"
1651
 
1652
+ #: admin/manage-fields.php:319
1653
+ #: front-end/extra-fields/select-country/select-country.php:10
1654
  msgid "Canada"
1655
  msgstr "Canada"
1656
 
1657
+ #: admin/manage-fields.php:320
1658
  msgid "Cape Verde"
1659
  msgstr "Cape Verde"
1660
 
1661
+ #: admin/manage-fields.php:321
1662
+ #: front-end/extra-fields/select-country/select-country.php:10
1663
  msgid "Cayman Islands"
1664
  msgstr "Cayman Islands"
1665
 
1666
+ #: admin/manage-fields.php:322
1667
+ #: front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Central African Republic"
1669
  msgstr "Central African Republic"
1670
 
1671
+ #: admin/manage-fields.php:323
1672
+ #: front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Chad"
1674
  msgstr "Chad"
1675
 
1676
+ #: admin/manage-fields.php:324
1677
+ #: front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Chile"
1679
  msgstr "Chile"
1680
 
1681
+ #: admin/manage-fields.php:325
1682
+ #: front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "China"
1684
  msgstr "China"
1685
 
1686
+ #: admin/manage-fields.php:326
1687
+ #: front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "Christmas Island"
1689
  msgstr "Christmas Island"
1690
 
1691
+ #: admin/manage-fields.php:327
1692
  msgid "Cocos Islands"
1693
  msgstr "Cocos Islands"
1694
 
1695
+ #: admin/manage-fields.php:328
1696
+ #: front-end/extra-fields/select-country/select-country.php:10
1697
  msgid "Colombia"
1698
  msgstr "Colombia"
1699
 
1700
+ #: admin/manage-fields.php:329
1701
+ #: front-end/extra-fields/select-country/select-country.php:10
1702
  msgid "Comoros"
1703
  msgstr "Comoros"
1704
 
1705
+ #: admin/manage-fields.php:330
1706
+ #: front-end/extra-fields/select-country/select-country.php:10
1707
  msgid "Cook Islands"
1708
  msgstr "Cook Islands"
1709
 
1710
+ #: admin/manage-fields.php:331
1711
+ #: front-end/extra-fields/select-country/select-country.php:10
1712
  msgid "Costa Rica"
1713
  msgstr "Costa Rica"
1714
 
1715
+ #: admin/manage-fields.php:332
1716
+ #: front-end/extra-fields/select-country/select-country.php:10
1717
  msgid "Croatia"
1718
  msgstr "Croatia"
1719
 
1720
+ #: admin/manage-fields.php:333
1721
+ #: front-end/extra-fields/select-country/select-country.php:10
1722
  msgid "Cuba"
1723
  msgstr "Cuba"
1724
 
1725
+ #: admin/manage-fields.php:334
1726
+ #: front-end/extra-fields/select-country/select-country.php:10
1727
  msgid "Curacao"
1728
  msgstr "Curacao"
1729
 
1730
+ #: admin/manage-fields.php:335
1731
+ #: front-end/extra-fields/select-country/select-country.php:10
1732
  msgid "Cyprus"
1733
  msgstr "Cyprus"
1734
 
1735
+ #: admin/manage-fields.php:336
1736
+ #: front-end/extra-fields/select-country/select-country.php:10
1737
  msgid "Czech Republic"
1738
  msgstr "Czech Republic"
1739
 
1740
+ #: admin/manage-fields.php:337
1741
  msgid "Democratic Republic of the Congo"
1742
  msgstr "Democratic Republic of the Congo"
1743
 
1744
+ #: admin/manage-fields.php:338
1745
+ #: front-end/extra-fields/select-country/select-country.php:10
1746
  msgid "Denmark"
1747
  msgstr "Denmark"
1748
 
1749
+ #: admin/manage-fields.php:339
1750
+ #: front-end/extra-fields/select-country/select-country.php:10
1751
  msgid "Djibouti"
1752
  msgstr "Djibouti"
1753
 
1754
+ #: admin/manage-fields.php:340
1755
+ #: front-end/extra-fields/select-country/select-country.php:10
1756
  msgid "Dominica"
1757
  msgstr "Dominica"
1758
 
1759
+ #: admin/manage-fields.php:341
1760
+ #: front-end/extra-fields/select-country/select-country.php:10
1761
  msgid "Dominican Republic"
1762
  msgstr "Dominican Republic"
1763
 
1764
+ #: admin/manage-fields.php:342
1765
  msgid "East Timor"
1766
  msgstr "East Timor"
1767
 
1768
+ #: admin/manage-fields.php:343
1769
+ #: front-end/extra-fields/select-country/select-country.php:10
1770
  msgid "Ecuador"
1771
  msgstr "Ecuador"
1772
 
1773
+ #: admin/manage-fields.php:344
1774
+ #: front-end/extra-fields/select-country/select-country.php:10
1775
  msgid "Egypt"
1776
  msgstr "Egypt"
1777
 
1778
+ #: admin/manage-fields.php:345
1779
+ #: front-end/extra-fields/select-country/select-country.php:10
1780
  msgid "El Salvador"
1781
  msgstr "El Salvador"
1782
 
1783
+ #: admin/manage-fields.php:346
1784
+ #: front-end/extra-fields/select-country/select-country.php:10
1785
  msgid "Equatorial Guinea"
1786
  msgstr "Equatorial Guinea"
1787
 
1788
+ #: admin/manage-fields.php:347
1789
+ #: front-end/extra-fields/select-country/select-country.php:10
1790
  msgid "Eritrea"
1791
  msgstr "Eritrea"
1792
 
1793
+ #: admin/manage-fields.php:348
1794
+ #: front-end/extra-fields/select-country/select-country.php:10
1795
  msgid "Estonia"
1796
  msgstr "Estonia"
1797
 
1798
+ #: admin/manage-fields.php:349
1799
+ #: front-end/extra-fields/select-country/select-country.php:10
1800
  msgid "Ethiopia"
1801
  msgstr "Ethiopia"
1802
 
1803
+ #: admin/manage-fields.php:350
1804
  msgid "Falkland Islands"
1805
  msgstr "Falkland Islands"
1806
 
1807
+ #: admin/manage-fields.php:351
1808
+ #: front-end/extra-fields/select-country/select-country.php:10
1809
  msgid "Faroe Islands"
1810
  msgstr "Faroe Islands"
1811
 
1812
+ #: admin/manage-fields.php:352
1813
+ #: front-end/extra-fields/select-country/select-country.php:10
1814
  msgid "Fiji"
1815
  msgstr "Fiji"
1816
 
1817
+ #: admin/manage-fields.php:353
1818
+ #: front-end/extra-fields/select-country/select-country.php:10
1819
  msgid "Finland"
1820
  msgstr "Finland"
1821
 
1822
+ #: admin/manage-fields.php:354
1823
+ #: front-end/extra-fields/select-country/select-country.php:10
1824
  msgid "France"
1825
  msgstr "France"
1826
 
1827
+ #: admin/manage-fields.php:355
1828
+ #: front-end/extra-fields/select-country/select-country.php:10
1829
  msgid "French Guiana"
1830
  msgstr "French Guiana"
1831
 
1832
+ #: admin/manage-fields.php:356
1833
+ #: front-end/extra-fields/select-country/select-country.php:10
1834
  msgid "French Polynesia"
1835
  msgstr "French Polynesia"
1836
 
1837
+ #: admin/manage-fields.php:357
1838
+ #: front-end/extra-fields/select-country/select-country.php:10
1839
  msgid "French Southern Territories"
1840
  msgstr "French Southern Territories"
1841
 
1842
+ #: admin/manage-fields.php:358
1843
+ #: front-end/extra-fields/select-country/select-country.php:10
1844
  msgid "Gabon"
1845
  msgstr "Gabon"
1846
 
1847
+ #: admin/manage-fields.php:359
1848
+ #: front-end/extra-fields/select-country/select-country.php:10
1849
  msgid "Gambia"
1850
  msgstr "Gambia"
1851
 
1852
+ #: admin/manage-fields.php:360
1853
+ #: front-end/extra-fields/select-country/select-country.php:10
1854
  msgid "Georgia"
1855
  msgstr "Georgia"
1856
 
1857
+ #: admin/manage-fields.php:361
1858
+ #: front-end/extra-fields/select-country/select-country.php:10
1859
  msgid "Germany"
1860
  msgstr "Germany"
1861
 
1862
+ #: admin/manage-fields.php:362
1863
+ #: front-end/extra-fields/select-country/select-country.php:10
1864
  msgid "Ghana"
1865
  msgstr "Ghana"
1866
 
1867
+ #: admin/manage-fields.php:363
1868
+ #: front-end/extra-fields/select-country/select-country.php:10
1869
  msgid "Gibraltar"
1870
  msgstr "Gibraltar"
1871
 
1872
+ #: admin/manage-fields.php:364
1873
+ #: front-end/extra-fields/select-country/select-country.php:10
1874
  msgid "Greece"
1875
  msgstr "Greece"
1876
 
1877
+ #: admin/manage-fields.php:365
1878
+ #: front-end/extra-fields/select-country/select-country.php:10
1879
  msgid "Greenland"
1880
  msgstr "Greenland"
1881
 
1882
+ #: admin/manage-fields.php:366
1883
+ #: front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Grenada"
1885
  msgstr "Grenada"
1886
 
1887
+ #: admin/manage-fields.php:367
1888
+ #: front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Guadeloupe"
1890
  msgstr "Guadeloupe"
1891
 
1892
+ #: admin/manage-fields.php:368
1893
+ #: front-end/extra-fields/select-country/select-country.php:10
1894
  msgid "Guam"
1895
  msgstr "Guam"
1896
 
1897
+ #: admin/manage-fields.php:369
1898
+ #: front-end/extra-fields/select-country/select-country.php:10
1899
  msgid "Guatemala"
1900
  msgstr "Guatemala"
1901
 
1902
+ #: admin/manage-fields.php:370
1903
+ #: front-end/extra-fields/select-country/select-country.php:10
1904
  msgid "Guernsey"
1905
  msgstr "Guernsey"
1906
 
1907
+ #: admin/manage-fields.php:371
1908
+ #: front-end/extra-fields/select-country/select-country.php:10
1909
  msgid "Guinea"
1910
  msgstr "Guinea"
1911
 
1912
+ #: admin/manage-fields.php:372
1913
+ #: front-end/extra-fields/select-country/select-country.php:10
1914
  msgid "Guinea-Bissau"
1915
  msgstr "Guinea-Bissau"
1916
 
1917
+ #: admin/manage-fields.php:373
1918
+ #: front-end/extra-fields/select-country/select-country.php:10
1919
  msgid "Guyana"
1920
  msgstr "Guyana"
1921
 
1922
+ #: admin/manage-fields.php:374
1923
+ #: front-end/extra-fields/select-country/select-country.php:10
1924
  msgid "Haiti"
1925
  msgstr "Haiti"
1926
 
1927
+ #: admin/manage-fields.php:375
1928
+ #: front-end/extra-fields/select-country/select-country.php:10
1929
  msgid "Heard Island and McDonald Islands"
1930
  msgstr "Heard Island and McDonald Islands"
1931
 
1932
+ #: admin/manage-fields.php:376
1933
+ #: front-end/extra-fields/select-country/select-country.php:10
1934
  msgid "Honduras"
1935
  msgstr "Honduras"
1936
 
1937
+ #: admin/manage-fields.php:377
1938
+ #: front-end/extra-fields/select-country/select-country.php:10
1939
  msgid "Hong Kong"
1940
  msgstr "Hong Kong"
1941
 
1942
+ #: admin/manage-fields.php:378
1943
+ #: front-end/extra-fields/select-country/select-country.php:10
1944
  msgid "Hungary"
1945
  msgstr "Hungary"
1946
 
1947
+ #: admin/manage-fields.php:379
1948
+ #: front-end/extra-fields/select-country/select-country.php:10
1949
  msgid "Iceland"
1950
  msgstr "Iceland"
1951
 
1952
+ #: admin/manage-fields.php:380
1953
+ #: front-end/extra-fields/select-country/select-country.php:10
1954
  msgid "India"
1955
  msgstr "India"
1956
 
1957
+ #: admin/manage-fields.php:381
1958
+ #: front-end/extra-fields/select-country/select-country.php:10
1959
  msgid "Indonesia"
1960
  msgstr "Indonesia"
1961
 
1962
+ #: admin/manage-fields.php:382
1963
  msgid "Iran"
1964
  msgstr "Iran"
1965
 
1966
+ #: admin/manage-fields.php:383
1967
+ #: front-end/extra-fields/select-country/select-country.php:10
1968
  msgid "Iraq"
1969
  msgstr "Iraq"
1970
 
1971
+ #: admin/manage-fields.php:384
1972
+ #: front-end/extra-fields/select-country/select-country.php:10
1973
  msgid "Ireland"
1974
  msgstr "Ireland"
1975
 
1976
+ #: admin/manage-fields.php:385
1977
+ #: front-end/extra-fields/select-country/select-country.php:10
1978
  msgid "Isle of Man"
1979
  msgstr "Isle of Man"
1980
 
1981
+ #: admin/manage-fields.php:386
1982
+ #: front-end/extra-fields/select-country/select-country.php:10
1983
  msgid "Israel"
1984
  msgstr "Israel"
1985
 
1986
+ #: admin/manage-fields.php:387
1987
+ #: front-end/extra-fields/select-country/select-country.php:10
1988
  msgid "Italy"
1989
  msgstr "Italy"
1990
 
1991
+ #: admin/manage-fields.php:388
1992
  msgid "Ivory Coast"
1993
  msgstr "Ivory Coast"
1994
 
1995
+ #: admin/manage-fields.php:389
1996
+ #: front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Jamaica"
1998
  msgstr "Jamaica"
1999
 
2000
+ #: admin/manage-fields.php:390
2001
+ #: front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Japan"
2003
  msgstr "Japan"
2004
 
2005
+ #: admin/manage-fields.php:391
2006
+ #: front-end/extra-fields/select-country/select-country.php:10
2007
  msgid "Jersey"
2008
  msgstr "Jersey"
2009
 
2010
+ #: admin/manage-fields.php:392
2011
+ #: front-end/extra-fields/select-country/select-country.php:10
2012
  msgid "Jordan"
2013
  msgstr "Jordan"
2014
 
2015
+ #: admin/manage-fields.php:393
2016
+ #: front-end/extra-fields/select-country/select-country.php:10
2017
  msgid "Kazakhstan"
2018
  msgstr "Kazakhstan"
2019
 
2020
+ #: admin/manage-fields.php:394
2021
+ #: front-end/extra-fields/select-country/select-country.php:10
2022
  msgid "Kenya"
2023
  msgstr "Kenya"
2024
 
2025
+ #: admin/manage-fields.php:395
2026
+ #: front-end/extra-fields/select-country/select-country.php:10
2027
  msgid "Kiribati"
2028
  msgstr "Kiribati"
2029
 
2030
+ #: admin/manage-fields.php:396
2031
  msgid "Kosovo"
2032
  msgstr "Kosovo"
2033
 
2034
+ #: admin/manage-fields.php:397
2035
+ #: front-end/extra-fields/select-country/select-country.php:10
2036
  msgid "Kuwait"
2037
  msgstr "Kuwait"
2038
 
2039
+ #: admin/manage-fields.php:398
2040
+ #: front-end/extra-fields/select-country/select-country.php:10
2041
  msgid "Kyrgyzstan"
2042
  msgstr "Kyrgyzstan"
2043
 
2044
+ #: admin/manage-fields.php:399
2045
  msgid "Laos"
2046
  msgstr "Laos"
2047
 
2048
+ #: admin/manage-fields.php:400
2049
+ #: front-end/extra-fields/select-country/select-country.php:10
2050
  msgid "Latvia"
2051
  msgstr "Latvia"
2052
 
2053
+ #: admin/manage-fields.php:401
2054
+ #: front-end/extra-fields/select-country/select-country.php:10
2055
  msgid "Lebanon"
2056
  msgstr "Lebanon"
2057
 
2058
+ #: admin/manage-fields.php:402
2059
+ #: front-end/extra-fields/select-country/select-country.php:10
2060
  msgid "Lesotho"
2061
  msgstr "Lesotho"
2062
 
2063
+ #: admin/manage-fields.php:403
2064
+ #: front-end/extra-fields/select-country/select-country.php:10
2065
  msgid "Liberia"
2066
  msgstr "Liberia"
2067
 
2068
+ #: admin/manage-fields.php:404
2069
+ #: front-end/extra-fields/select-country/select-country.php:10
2070
  msgid "Libya"
2071
  msgstr "Libya"
2072
 
2073
+ #: admin/manage-fields.php:405
2074
+ #: front-end/extra-fields/select-country/select-country.php:10
2075
  msgid "Liechtenstein"
2076
  msgstr "Liechtenstein"
2077
 
2078
+ #: admin/manage-fields.php:406
2079
+ #: front-end/extra-fields/select-country/select-country.php:10
2080
  msgid "Lithuania"
2081
  msgstr "Lithuania"
2082
 
2083
+ #: admin/manage-fields.php:407
2084
+ #: front-end/extra-fields/select-country/select-country.php:10
2085
  msgid "Luxembourg"
2086
  msgstr "Luxembourg"
2087
 
2088
+ #: admin/manage-fields.php:408
2089
+ #: front-end/extra-fields/select-country/select-country.php:10
2090
  msgid "Macao"
2091
  msgstr "Macao"
2092
 
2093
+ #: admin/manage-fields.php:409
2094
  msgid "Macedonia"
2095
  msgstr "Macedonia"
2096
 
2097
+ #: admin/manage-fields.php:410
2098
+ #: front-end/extra-fields/select-country/select-country.php:10
2099
  msgid "Madagascar"
2100
  msgstr "Madagascar"
2101