Ultimate Member – User Profile & Membership Plugin - Version 2.0.52

Version Description

Download this release

Release Info

Developer nsinelnikov
Plugin Icon 128x128 Ultimate Member – User Profile & Membership Plugin
Version 2.0.52
Comparing to
See all releases

Code changes from version 2.0.51 to 2.0.52

includes/admin/core/class-admin-settings.php CHANGED
@@ -185,15 +185,29 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
185
  )
186
  ) );
187
 
188
- $all_post_types = get_post_types( array( 'public' => true ) );
 
 
 
 
189
 
190
- $all_taxonomies = get_taxonomies( array( 'public' => true ) );
191
  $exclude_taxonomies = UM()->excluded_taxonomies();
192
-
 
193
  foreach ( $all_taxonomies as $key => $taxonomy ) {
194
- if( in_array( $key , $exclude_taxonomies ) ) {
195
- unset( $all_taxonomies[ $key ] );
196
  }
 
 
 
 
 
 
 
 
 
197
  }
198
 
199
  $restricted_access_post_metabox_value = array();
@@ -292,7 +306,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
292
  'type' => 'multi_checkbox',
293
  'label' => __( 'Restricted Access to Posts','ultimate-member' ),
294
  'tooltip' => __( 'Restriction content of the current Posts','ultimate-member' ),
295
- 'options' => $all_post_types,
296
  'columns' => 3,
297
  'value' => $restricted_access_post_metabox_value,
298
  'default' => UM()->options()->get_default( 'restricted_access_post_metabox' ),
@@ -302,7 +316,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
302
  'type' => 'multi_checkbox',
303
  'label' => __( 'Restricted Access to Taxonomies','ultimate-member' ),
304
  'tooltip' => __( 'Restriction content of the current Taxonomies','ultimate-member' ),
305
- 'options' => $all_taxonomies,
306
  'columns' => 3,
307
  'value' => $restricted_access_taxonomy_metabox_value,
308
  'default' => UM()->options()->get_default( 'restricted_access_taxonomy_metabox' ),
185
  )
186
  ) );
187
 
188
+ $post_types_options = array();
189
+ $all_post_types = get_post_types( array( 'public' => true ), 'objects' );
190
+ foreach ( $all_post_types as $key => $post_type_data ) {
191
+ $post_types_options[ $key ] = $post_type_data->labels->singular_name;
192
+ }
193
 
194
+ $taxonomies_options = array();
195
  $exclude_taxonomies = UM()->excluded_taxonomies();
196
+ $all_taxonomies = get_taxonomies( array( 'public' => true ), 'objects' );
197
+ $duplicates = array();
198
  foreach ( $all_taxonomies as $key => $taxonomy ) {
199
+ if ( in_array( $key , $exclude_taxonomies ) ) {
200
+ continue;
201
  }
202
+
203
+ if ( ! in_array( $taxonomy->labels->singular_name, $duplicates ) ) {
204
+ $duplicates[] = $taxonomy->labels->singular_name;
205
+ $label = $taxonomy->labels->singular_name;
206
+ } else {
207
+ $label = $taxonomy->labels->singular_name . ' (' . $key . ')';
208
+ }
209
+
210
+ $taxonomies_options[ $key ] = $label;
211
  }
212
 
213
  $restricted_access_post_metabox_value = array();
306
  'type' => 'multi_checkbox',
307
  'label' => __( 'Restricted Access to Posts','ultimate-member' ),
308
  'tooltip' => __( 'Restriction content of the current Posts','ultimate-member' ),
309
+ 'options' => $post_types_options,
310
  'columns' => 3,
311
  'value' => $restricted_access_post_metabox_value,
312
  'default' => UM()->options()->get_default( 'restricted_access_post_metabox' ),
316
  'type' => 'multi_checkbox',
317
  'label' => __( 'Restricted Access to Taxonomies','ultimate-member' ),
318
  'tooltip' => __( 'Restriction content of the current Taxonomies','ultimate-member' ),
319
+ 'options' => $taxonomies_options,
320
  'columns' => 3,
321
  'value' => $restricted_access_taxonomy_metabox_value,
322
  'default' => UM()->options()->get_default( 'restricted_access_taxonomy_metabox' ),
includes/admin/templates/extensions.php CHANGED
@@ -135,6 +135,12 @@ $premium['user-photos'] = array(
135
  'desc' => 'Allow users to upload photos to their profile',
136
  );
137
 
 
 
 
 
 
 
138
 
139
  $free['online-users'] = array(
140
  'url' => 'https://ultimatemember.com/extensions/online-users/',
135
  'desc' => 'Allow users to upload photos to their profile',
136
  );
137
 
138
+ $free['forumwp'] = array(
139
+ 'url' => 'https://ultimatemember.com/extensions/forumwp/',
140
+ 'image' => 'https://ultimatemember.com/wp-content/uploads/bb-plugin/cache/um-forumwp-extension-circle.png',
141
+ 'name' => 'ForumWP',
142
+ 'desc' => 'Integrates Ultimate Member with the forum plugin <a href="https://forumwpplugin.com" target="_blank">ForumWP</a>',
143
+ );
144
 
145
  $free['online-users'] = array(
146
  'url' => 'https://ultimatemember.com/extensions/online-users/',
includes/admin/templates/role/role-edit.php CHANGED
@@ -77,34 +77,38 @@ if ( ! empty( $_POST['role'] ) ) {
77
 
78
  $data = $_POST['role'];
79
 
80
- if ( empty( $data['name'] ) ) {
81
 
82
- $error .= __( 'Title is empty!', 'ultimate-member' ) . '<br />';
83
 
84
- } else {
 
 
85
 
86
- if ( 'add' == $_GET['tab'] ) {
 
 
 
 
 
 
87
 
88
- if ( preg_match( "/[a-z0-9]+$/i", $data['name'] ) ) {
89
- $id = sanitize_title( $data['name'] );
90
- } else {
91
- $auto_increment = UM()->options()->get( 'custom_roles_increment' );
92
- $auto_increment = ! empty( $auto_increment ) ? $auto_increment : 1;
93
- $id = 'custom_role_' . $auto_increment;
94
- }
95
 
96
- $redirect = add_query_arg( array( 'page'=>'um_roles', 'tab'=>'edit', 'id'=>$id, 'msg'=>'a' ), admin_url( 'admin.php' ) );
97
- } elseif ( 'edit' == $_GET['tab'] && ! empty( $_GET['id'] ) ) {
98
- $id = $_GET['id'];
99
- $redirect = add_query_arg( array( 'page' => 'um_roles', 'tab'=>'edit', 'id'=>$id, 'msg'=>'u' ), admin_url( 'admin.php' ) );
100
- }
101
 
 
102
  }
103
 
 
104
  $all_roles = array_keys( get_editable_roles() );
105
  if ( 'add' == $_GET['tab'] ) {
106
- if ( in_array( 'um_' . $id, $all_roles ) || in_array( $id, $all_roles ) )
107
  $error .= __( 'Role already exists!', 'ultimate-member' ) . '<br />';
 
108
  }
109
 
110
  if ( '' == $error ) {
@@ -186,7 +190,6 @@ $screen_id = $current_screen->id; ?>
186
  <label for="title" class="screen-reader-text"><?php _e( 'Title', 'ultimate-member' ) ?></label>
187
  <input type="text" name="role[name]" placeholder="<?php _e( 'Enter Title Here', 'ultimate-member' ) ?>" id="title" value="<?php echo isset( $data['name'] ) ? $data['name'] : '' ?>" />
188
  <?php } else { ?>
189
- <input type="hidden" name="role[name]" value="<?php echo isset( $data['name'] ) ? $data['name'] : '' ?>" />
190
  <span style="float: left;width:100%;"><?php echo isset( $data['name'] ) ? $data['name'] : '' ?></span>
191
  <?php } ?>
192
  </div>
77
 
78
  $data = $_POST['role'];
79
 
80
+ if ( 'add' == $_GET['tab'] ) {
81
 
82
+ $data['name'] = trim( esc_html( strip_tags( $data['name'] ) ) );
83
 
84
+ if ( empty( $data['name'] ) ) {
85
+ $error .= __( 'Title is empty!', 'ultimate-member' ) . '<br />';
86
+ }
87
 
88
+ if ( preg_match( "/[a-z0-9]+$/i", $data['name'] ) ) {
89
+ $id = sanitize_title( $data['name'] );
90
+ } else {
91
+ $auto_increment = UM()->options()->get( 'custom_roles_increment' );
92
+ $auto_increment = ! empty( $auto_increment ) ? $auto_increment : 1;
93
+ $id = 'custom_role_' . $auto_increment;
94
+ }
95
 
96
+ $redirect = add_query_arg( array( 'page'=>'um_roles', 'tab'=>'edit', 'id'=>$id, 'msg'=>'a' ), admin_url( 'admin.php' ) );
97
+ } elseif ( 'edit' == $_GET['tab'] && ! empty( $_GET['id'] ) ) {
98
+ $id = $_GET['id'];
 
 
 
 
99
 
100
+ $pre_role_meta = get_option( "um_role_{$id}_meta", array() );
101
+ $data['name'] = $pre_role_meta['name'];
 
 
 
102
 
103
+ $redirect = add_query_arg( array( 'page' => 'um_roles', 'tab'=>'edit', 'id'=>$id, 'msg'=>'u' ), admin_url( 'admin.php' ) );
104
  }
105
 
106
+
107
  $all_roles = array_keys( get_editable_roles() );
108
  if ( 'add' == $_GET['tab'] ) {
109
+ if ( in_array( 'um_' . $id, $all_roles ) || in_array( $id, $all_roles ) ) {
110
  $error .= __( 'Role already exists!', 'ultimate-member' ) . '<br />';
111
+ }
112
  }
113
 
114
  if ( '' == $error ) {
190
  <label for="title" class="screen-reader-text"><?php _e( 'Title', 'ultimate-member' ) ?></label>
191
  <input type="text" name="role[name]" placeholder="<?php _e( 'Enter Title Here', 'ultimate-member' ) ?>" id="title" value="<?php echo isset( $data['name'] ) ? $data['name'] : '' ?>" />
192
  <?php } else { ?>
 
193
  <span style="float: left;width:100%;"><?php echo isset( $data['name'] ) ? $data['name'] : '' ?></span>
194
  <?php } ?>
195
  </div>
includes/core/class-external-integrations.php CHANGED
@@ -28,6 +28,7 @@ if ( ! class_exists( 'um\core\External_Integrations' ) ) {
28
 
29
 
30
  add_action( 'um_access_fix_external_post_content', array( &$this, 'bbpress_no_access_message_fix' ), 10 );
 
31
 
32
  add_filter( 'um_localize_permalink_filter', array( &$this, 'um_localize_permalink_filter' ), 10, 2 );
33
  add_filter( 'icl_ls_languages', array( &$this, 'um_core_page_wpml_permalink' ), 10, 1 );
@@ -140,6 +141,16 @@ if ( ! class_exists( 'um\core\External_Integrations' ) ) {
140
  }
141
 
142
 
 
 
 
 
 
 
 
 
 
 
143
  /**
144
  * @param $profile_url
145
  * @param $page_id
28
 
29
 
30
  add_action( 'um_access_fix_external_post_content', array( &$this, 'bbpress_no_access_message_fix' ), 10 );
31
+ add_action( 'um_access_fix_external_post_content', array( &$this, 'forumwp_fix' ), 11 );
32
 
33
  add_filter( 'um_localize_permalink_filter', array( &$this, 'um_localize_permalink_filter' ), 10, 2 );
34
  add_filter( 'icl_ls_languages', array( &$this, 'um_core_page_wpml_permalink' ), 10, 1 );
141
  }
142
 
143
 
144
+ /**
145
+ * Fixed ForumWP access to Forums message
146
+ */
147
+ function forumwp_fix() {
148
+ if ( function_exists( 'FMWP' ) ) {
149
+ remove_filter( 'single_template', array( FMWP()->shortcodes(), 'cpt_template' ) );
150
+ }
151
+ }
152
+
153
+
154
  /**
155
  * @param $profile_url
156
  * @param $page_id
includes/core/um-actions-profile.php CHANGED
@@ -1444,9 +1444,12 @@ function um_profile_menu( $args ) {
1444
  $active_subnav = ( UM()->profile()->active_subnav() ) ? UM()->profile()->active_subnav() : $tab['subnav_default']; ?>
1445
 
1446
  <div class="um-profile-subnav">
1447
- <?php foreach ( $tab['subnav'] as $id_s => $subtab ) { ?>
1448
 
1449
- <a href="<?php echo add_query_arg( 'subnav', $id_s ); ?>" class="<?php if ( $active_subnav == $id_s ) echo 'active'; ?>">
 
 
 
1450
  <?php echo $subtab; ?>
1451
  </a>
1452
 
1444
  $active_subnav = ( UM()->profile()->active_subnav() ) ? UM()->profile()->active_subnav() : $tab['subnav_default']; ?>
1445
 
1446
  <div class="um-profile-subnav">
1447
+ <?php foreach ( $tab['subnav'] as $id_s => $subtab ) {
1448
 
1449
+ $subnav_link = add_query_arg( 'subnav', $id_s );
1450
+ $subnav_link = apply_filters( 'um_user_profile_subnav_link', $subnav_link, $id_s, $subtab ); ?>
1451
+
1452
+ <a href="<?php echo $subnav_link; ?>" class="<?php if ( $active_subnav == $id_s ) echo 'active'; ?>">
1453
  <?php echo $subtab; ?>
1454
  </a>
1455
 
includes/core/um-filters-account.php CHANGED
@@ -59,4 +59,21 @@ function um_account_disable_name_fields( $fields ){
59
  return $fields;
60
  }
61
  add_filter( "um_get_field__first_name","um_account_disable_name_fields", 10 ,1 );
62
- add_filter( "um_get_field__last_name","um_account_disable_name_fields", 10 ,1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  return $fields;
60
  }
61
  add_filter( "um_get_field__first_name","um_account_disable_name_fields", 10 ,1 );
62
+ add_filter( "um_get_field__last_name","um_account_disable_name_fields", 10 ,1 );
63
+
64
+
65
+ /**
66
+ * Sanitize inputs on Account update
67
+ *
68
+ * @param $data
69
+ *
70
+ * @return mixed
71
+ */
72
+ function um_account_sanitize_data( $data ) {
73
+ foreach ( $data as $key => $value ) {
74
+ $data[ $key ] = trim( esc_html( strip_tags( $value ) ) );
75
+ }
76
+
77
+ return $data;
78
+ }
79
+ add_filter( 'um_account_pre_updating_profile_array', 'um_account_sanitize_data', 10, 1 );
languages/ultimate-member-en_US.mo CHANGED
Binary file
languages/ultimate-member-en_US.po CHANGED
@@ -1,7164 +1,7164 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Ultimate Member\n"
4
- "POT-Creation-Date: 2019-07-09 18:37+0300\n"
5
- "PO-Revision-Date: 2019-07-09 18:37+0300\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: en_US\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
- "X-Poedit-WPHeader: ultimate-member.php\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
-
24
- #: includes/admin/class-admin-functions.php:35 includes/class-functions.php:45
25
- msgid "Wrong Nonce"
26
- msgstr ""
27
-
28
- #: includes/admin/class-admin.php:193
29
- #, php-format
30
- msgid "Duplicate of %s"
31
- msgstr ""
32
-
33
- #: includes/admin/class-admin.php:307
34
- msgid "Docs"
35
- msgstr ""
36
-
37
- #: includes/admin/class-admin.php:308
38
- #: includes/admin/core/class-admin-settings.php:1178
39
- msgid "Settings"
40
- msgstr ""
41
-
42
- #: includes/admin/class-admin.php:379 includes/admin/class-admin.php:382
43
- msgid "Form updated."
44
- msgstr ""
45
-
46
- #: includes/admin/class-admin.php:380
47
- msgid "Custom field updated."
48
- msgstr ""
49
-
50
- #: includes/admin/class-admin.php:381
51
- msgid "Custom field deleted."
52
- msgstr ""
53
-
54
- #: includes/admin/class-admin.php:383
55
- msgid "Form restored to revision."
56
- msgstr ""
57
-
58
- #: includes/admin/class-admin.php:384
59
- msgid "Form created."
60
- msgstr ""
61
-
62
- #: includes/admin/class-admin.php:385
63
- msgid "Form saved."
64
- msgstr ""
65
-
66
- #: includes/admin/class-admin.php:386
67
- msgid "Form submitted."
68
- msgstr ""
69
-
70
- #: includes/admin/class-admin.php:387
71
- msgid "Form scheduled."
72
- msgstr ""
73
-
74
- #: includes/admin/class-admin.php:388
75
- msgid "Form draft updated."
76
- msgstr ""
77
-
78
- #: includes/admin/core/class-admin-builder.php:227
79
- msgid "Manage conditional fields support"
80
- msgstr ""
81
-
82
- #: includes/admin/core/class-admin-builder.php:227
83
- #: includes/admin/core/class-admin-builder.php:229
84
- msgid ""
85
- "Here you can setup conditional logic to show/hide this field based on "
86
- "specific fields value or conditions"
87
- msgstr ""
88
-
89
- #: includes/admin/core/class-admin-builder.php:229
90
- msgid "Add conditional fields support"
91
- msgstr ""
92
-
93
- #: includes/admin/core/class-admin-builder.php:244
94
- msgid "Add new rule"
95
- msgstr ""
96
-
97
- #: includes/admin/core/class-admin-builder.php:245
98
- msgid "Reset all rules"
99
- msgstr ""
100
-
101
- #: includes/admin/core/class-admin-builder.php:298
102
- #: includes/admin/core/class-admin-builder.php:612
103
- #: includes/admin/core/class-admin-builder.php:767
104
- #: includes/admin/core/class-admin-dragdrop.php:32
105
- #: includes/admin/core/class-admin-menu.php:104
106
- #: includes/core/class-fields.php:4120
107
- msgid "Please login as administrator"
108
- msgstr ""
109
-
110
- #: includes/admin/core/class-admin-builder.php:402
111
- #: includes/admin/core/class-admin-builder.php:472
112
- #: includes/admin/core/class-admin-dragdrop.php:163
113
- msgid "Add Row"
114
- msgstr ""
115
-
116
- #: includes/admin/core/class-admin-builder.php:403
117
- #: includes/admin/core/class-admin-builder.php:473
118
- #: includes/admin/core/class-admin-dragdrop.php:164
119
- msgid "Edit Row"
120
- msgstr ""
121
-
122
- #: includes/admin/core/class-admin-builder.php:476
123
- #: includes/admin/core/class-admin-dragdrop.php:166
124
- #: includes/admin/core/class-admin-dragdrop.php:180
125
- #: includes/admin/core/class-admin-dragdrop.php:205
126
- msgid "Delete Row"
127
- msgstr ""
128
-
129
- #: includes/admin/core/class-admin-builder.php:833
130
- msgid "Search Icons..."
131
- msgstr ""
132
-
133
- #: includes/admin/core/class-admin-builder.php:853
134
- msgid "Setup New Field"
135
- msgstr ""
136
-
137
- #: includes/admin/core/class-admin-builder.php:869
138
- msgid "Predefined Fields"
139
- msgstr ""
140
-
141
- #: includes/admin/core/class-admin-builder.php:880
142
- #: includes/core/class-builtin.php:1319
143
- msgid "None"
144
- msgstr ""
145
-
146
- #: includes/admin/core/class-admin-builder.php:884
147
- msgid "Custom Fields"
148
- msgstr ""
149
-
150
- #: includes/admin/core/class-admin-builder.php:895
151
- msgid "You did not create any custom fields"
152
- msgstr ""
153
-
154
- #: includes/admin/core/class-admin-builder.php:926
155
- #: includes/admin/core/class-admin-builder.php:998
156
- msgid "This field type is not setup correcty."
157
- msgstr ""
158
-
159
- #: includes/admin/core/class-admin-builder.php:1143
160
- #: includes/core/class-form.php:155 includes/core/class-form.php:328
161
- #: includes/core/class-password.php:533
162
- msgid "This is not possible for security reasons."
163
- msgstr ""
164
-
165
- #: includes/admin/core/class-admin-columns.php:49
166
- msgid "Status"
167
- msgstr ""
168
-
169
- #: includes/admin/core/class-admin-columns.php:101
170
- msgid "Duplicate"
171
- msgstr ""
172
-
173
- #: includes/admin/core/class-admin-columns.php:130
174
- #: includes/admin/core/class-admin-columns.php:150
175
- #: includes/admin/templates/role/role-edit.php:186
176
- msgid "Title"
177
- msgstr ""
178
-
179
- #: includes/admin/core/class-admin-columns.php:131
180
- #: includes/admin/core/class-admin-columns.php:151
181
- msgid "ID"
182
- msgstr ""
183
-
184
- #: includes/admin/core/class-admin-columns.php:132
185
- msgid "Type"
186
- msgstr ""
187
-
188
- #: includes/admin/core/class-admin-columns.php:133
189
- #: includes/admin/core/class-admin-columns.php:152
190
- #: includes/admin/core/class-admin-settings.php:408
191
- #: includes/admin/templates/form/login_settings.php:13
192
- #: includes/admin/templates/form/register_customize.php:3
193
- #: includes/admin/templates/form/register_customize.php:29
194
- msgid "Default"
195
- msgstr ""
196
-
197
- #: includes/admin/core/class-admin-columns.php:134
198
- #: includes/admin/core/class-admin-columns.php:153
199
- #: includes/admin/core/class-admin-metabox.php:821
200
- #: includes/admin/core/class-admin-metabox.php:982
201
- msgid "Shortcode"
202
- msgstr ""
203
-
204
- #: includes/admin/core/class-admin-columns.php:135
205
- #: includes/admin/core/class-admin-columns.php:154
206
- msgid "Date"
207
- msgstr ""
208
-
209
- #: includes/admin/core/class-admin-columns.php:185
210
- #: includes/admin/core/class-admin-columns.php:218
211
- #: includes/admin/core/list-tables/roles-list-table.php:367
212
- #: includes/admin/core/list-tables/roles-list-table.php:375
213
- #: includes/admin/templates/form/login_customize.php:13
214
- #: includes/admin/templates/form/login_customize.php:61
215
- #: includes/admin/templates/form/login_customize.php:80
216
- #: includes/admin/templates/form/login_customize.php:91
217
- #: includes/admin/templates/form/profile_customize.php:22
218
- #: includes/admin/templates/form/profile_customize.php:88
219
- #: includes/admin/templates/form/profile_customize.php:107
220
- #: includes/admin/templates/form/profile_customize.php:141
221
- #: includes/admin/templates/form/profile_customize.php:152
222
- #: includes/admin/templates/form/profile_customize.php:163
223
- #: includes/admin/templates/form/profile_customize.php:174
224
- #: includes/admin/templates/form/register_customize.php:20
225
- #: includes/admin/templates/form/register_customize.php:76
226
- #: includes/admin/templates/form/register_gdpr.php:23
227
- #: includes/core/class-builtin.php:1135 includes/core/class-builtin.php:1149
228
- #: includes/core/class-builtin.php:1150
229
- #: includes/core/um-actions-account.php:271
230
- msgid "No"
231
- msgstr ""
232
-
233
- #: includes/admin/core/class-admin-columns.php:185
234
- #: includes/admin/core/class-admin-columns.php:218
235
- #: includes/admin/core/list-tables/roles-list-table.php:367
236
- #: includes/admin/core/list-tables/roles-list-table.php:375
237
- #: includes/admin/templates/form/login_customize.php:14
238
- #: includes/admin/templates/form/login_customize.php:62
239
- #: includes/admin/templates/form/login_customize.php:81
240
- #: includes/admin/templates/form/login_customize.php:92
241
- #: includes/admin/templates/form/profile_customize.php:23
242
- #: includes/admin/templates/form/profile_customize.php:89
243
- #: includes/admin/templates/form/profile_customize.php:108
244
- #: includes/admin/templates/form/profile_customize.php:142
245
- #: includes/admin/templates/form/profile_customize.php:153
246
- #: includes/admin/templates/form/profile_customize.php:164
247
- #: includes/admin/templates/form/profile_customize.php:175
248
- #: includes/admin/templates/form/register_customize.php:21
249
- #: includes/admin/templates/form/register_customize.php:77
250
- #: includes/admin/templates/form/register_gdpr.php:24
251
- #: includes/core/class-builtin.php:1135 includes/core/class-builtin.php:1150
252
- #: includes/core/um-filters-members.php:69
253
- msgid "Yes"
254
- msgstr ""
255
-
256
- #: includes/admin/core/class-admin-enqueue.php:184
257
- msgid "e.g. Member Directory"
258
- msgstr ""
259
-
260
- #: includes/admin/core/class-admin-enqueue.php:186
261
- msgid "e.g. New Registration Form"
262
- msgstr ""
263
-
264
- #: includes/admin/core/class-admin-enqueue.php:231
265
- #: includes/admin/core/class-admin-enqueue.php:262
266
- #: includes/admin/core/class-admin-forms.php:832
267
- #: includes/admin/core/class-admin-forms.php:846
268
- #: includes/admin/core/class-admin-forms.php:951
269
- #: includes/admin/core/class-admin-forms.php:960
270
- #: includes/admin/core/class-admin-notices.php:390
271
- #: includes/core/um-actions-profile.php:602
272
- msgid "Remove"
273
- msgstr ""
274
-
275
- #: includes/admin/core/class-admin-enqueue.php:232
276
- #: includes/admin/core/class-admin-enqueue.php:263
277
- #: includes/admin/core/class-admin-forms.php:1028
278
- msgid "Select"
279
- msgstr ""
280
-
281
- #: includes/admin/core/class-admin-enqueue.php:260
282
- msgid "Are sure, maybe some settings not saved"
283
- msgstr ""
284
-
285
- #: includes/admin/core/class-admin-enqueue.php:486
286
- #: includes/core/class-builtin.php:698 includes/core/class-builtin.php:701
287
- #: includes/core/class-builtin.php:1155 includes/core/class-builtin.php:1158
288
- msgid "Password"
289
- msgstr ""
290
-
291
- #: includes/admin/core/class-admin-enqueue.php:490
292
- #: includes/core/class-account.php:104
293
- msgid "Privacy"
294
- msgstr ""
295
-
296
- #: includes/admin/core/class-admin-enqueue.php:494
297
- #: includes/core/class-account.php:110
298
- msgid "Notifications"
299
- msgstr ""
300
-
301
- #: includes/admin/core/class-admin-enqueue.php:498
302
- #: includes/admin/core/list-tables/roles-list-table.php:338
303
- #: includes/admin/core/list-tables/roles-list-table.php:406
304
- msgid "Delete"
305
- msgstr ""
306
-
307
- #: includes/admin/core/class-admin-enqueue.php:548
308
- msgid "Ultimate Member Blocks"
309
- msgstr ""
310
-
311
- #: includes/admin/core/class-admin-forms.php:314
312
- #: includes/core/um-filters-fields.php:15
313
- msgid "Required"
314
- msgstr ""
315
-
316
- #: includes/admin/core/class-admin-forms.php:470
317
- msgid "Choose Icon"
318
- msgstr ""
319
-
320
- #: includes/admin/core/class-admin-forms.php:476
321
- msgid "No Icon"
322
- msgstr ""
323
-
324
- #: includes/admin/core/class-admin-forms.php:1005
325
- msgid "Select media"
326
- msgstr ""
327
-
328
- #: includes/admin/core/class-admin-forms.php:1029
329
- msgid "Clear"
330
- msgstr ""
331
-
332
- #: includes/admin/core/class-admin-gdpr.php:42
333
- msgid "Privacy Policy"
334
- msgstr ""
335
-
336
- #: includes/admin/core/class-admin-gdpr.php:57
337
- msgid "Account Status"
338
- msgstr ""
339
-
340
- #: includes/admin/core/class-admin-gdpr.php:58
341
- msgid "Submitted data on Registration"
342
- msgstr ""
343
-
344
- #: includes/admin/core/class-admin-gdpr.php:59
345
- msgid "Registration Form ID"
346
- msgstr ""
347
-
348
- #: includes/admin/core/class-admin-gdpr.php:60
349
- msgid "Registration Timestamp"
350
- msgstr ""
351
-
352
- #: includes/admin/core/class-admin-gdpr.php:61
353
- msgid "Registration Request"
354
- msgstr ""
355
-
356
- #: includes/admin/core/class-admin-gdpr.php:62
357
- msgid "Registration Nonce"
358
- msgstr ""
359
-
360
- #: includes/admin/core/class-admin-gdpr.php:63
361
- msgid "Registration HTTP referer"
362
- msgstr ""
363
-
364
- #: includes/admin/core/class-admin-gdpr.php:64
365
- msgid "Community Role"
366
- msgstr ""
367
-
368
- #: includes/admin/core/class-admin-gdpr.php:65
369
- msgid "Profile Slug \"Username\""
370
- msgstr ""
371
-
372
- #: includes/admin/core/class-admin-gdpr.php:66
373
- msgid "Profile Slug \"First and Last Name with '.'\""
374
- msgstr ""
375
-
376
- #: includes/admin/core/class-admin-gdpr.php:67
377
- msgid "Profile Slug \"First and Last Name with '-'\""
378
- msgstr ""
379
-
380
- #: includes/admin/core/class-admin-gdpr.php:68
381
- msgid "Profile Slug \"First and Last Name with '+'\""
382
- msgstr ""
383
-
384
- #: includes/admin/core/class-admin-gdpr.php:69
385
- msgid "Profile Slug \"User ID\""
386
- msgstr ""
387
-
388
- #: includes/admin/core/class-admin-gdpr.php:70
389
- msgid "Last Login Timestamp"
390
- msgstr ""
391
-
392
- #: includes/admin/core/class-admin-gdpr.php:73
393
- msgid "Private Content Post ID"
394
- msgstr ""
395
-
396
- #: includes/admin/core/class-admin-gdpr.php:76
397
- msgid "Verified Account"
398
- msgstr ""
399
-
400
- #: includes/admin/core/class-admin-gdpr.php:79
401
- msgid "Terms&Conditions Agreement"
402
- msgstr ""
403
-
404
- #: includes/admin/core/class-admin-gdpr.php:82
405
- msgid "Privacy Policy Agreement"
406
- msgstr ""
407
-
408
- #: includes/admin/core/class-admin-gdpr.php:298
409
- #, php-format
410
- msgid "Your %s was unable to be removed at this time."
411
- msgstr ""
412
-
413
- #: includes/admin/core/class-admin-menu.php:63
414
- msgid "Thanks :)"
415
- msgstr ""
416
-
417
- #: includes/admin/core/class-admin-menu.php:70
418
- #, php-format
419
- msgid ""
420
- "If you like Ultimate Member please consider leaving a %s review. It will "
421
- "help us to grow the plugin and make it more popular. Thank you."
422
- msgstr ""
423
-
424
- #: includes/admin/core/class-admin-menu.php:125
425
- msgctxt "Admin menu name"
426
- msgid "Users"
427
- msgstr ""
428
-
429
- #: includes/admin/core/class-admin-menu.php:133
430
- msgctxt "Admin menu name"
431
- msgid "All Users"
432
- msgstr ""
433
-
434
- #. Plugin Name of the plugin/theme
435
- #. Author of the plugin/theme
436
- #: includes/admin/core/class-admin-menu.php:145
437
- #: includes/core/class-user.php:561
438
- msgid "Ultimate Member"
439
- msgstr ""
440
-
441
- #: includes/admin/core/class-admin-menu.php:149
442
- msgid "Dashboard"
443
- msgstr ""
444
-
445
- #: includes/admin/core/class-admin-menu.php:157
446
- #: includes/admin/templates/gdpr.php:7 includes/core/class-common.php:54
447
- msgid "Forms"
448
- msgstr ""
449
-
450
- #: includes/admin/core/class-admin-menu.php:159
451
- #: includes/admin/core/list-tables/roles-list-table.php:477
452
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:12
453
- msgid "User Roles"
454
- msgstr ""
455
-
456
- #: includes/admin/core/class-admin-menu.php:162
457
- #: includes/core/class-common.php:84
458
- msgid "Member Directories"
459
- msgstr ""
460
-
461
- #: includes/admin/core/class-admin-menu.php:204
462
- #: includes/admin/core/class-admin-settings.php:1035
463
- msgid "Extensions"
464
- msgstr ""
465
-
466
- #: includes/admin/core/class-admin-menu.php:217
467
- msgid "Users Overview"
468
- msgstr ""
469
-
470
- #: includes/admin/core/class-admin-menu.php:219
471
- msgid "Latest from our blog"
472
- msgstr ""
473
-
474
- #: includes/admin/core/class-admin-menu.php:221
475
- msgid "Purge Temp Files"
476
- msgstr ""
477
-
478
- #: includes/admin/core/class-admin-menu.php:223
479
- msgid "User Cache"
480
- msgstr ""
481
-
482
- #: includes/admin/core/class-admin-menu.php:228
483
- msgid "Upgrade's Manual Request"
484
- msgstr ""
485
-
486
- #: includes/admin/core/class-admin-metabox.php:262
487
- msgid "UM Content Restriction"
488
- msgstr ""
489
-
490
- #: includes/admin/core/class-admin-metabox.php:418
491
- #: includes/admin/core/class-admin-metabox.php:568
492
- #: includes/admin/templates/access/restrict_content.php:47
493
- msgid "Restrict access to this content?"
494
- msgstr ""
495
-
496
- #: includes/admin/core/class-admin-metabox.php:419
497
- #: includes/admin/core/class-admin-metabox.php:426
498
- #: includes/admin/core/class-admin-metabox.php:439
499
- #: includes/admin/core/class-admin-metabox.php:569
500
- #: includes/admin/core/class-admin-metabox.php:577
501
- #: includes/admin/core/class-admin-metabox.php:591
502
- #: includes/admin/templates/access/restrict_content.php:48
503
- #: includes/admin/templates/access/restrict_content.php:55
504
- #: includes/admin/templates/access/restrict_content.php:68
505
- msgid "Activate content restriction for this post"
506
- msgstr ""
507
-
508
- #: includes/admin/core/class-admin-metabox.php:425
509
- #: includes/admin/core/class-admin-metabox.php:576
510
- #: includes/admin/templates/access/restrict_content.php:54
511
- msgid "Who can access this content?"
512
- msgstr ""
513
-
514
- #: includes/admin/core/class-admin-metabox.php:429
515
- #: includes/admin/core/class-admin-metabox.php:580
516
- #: includes/admin/core/class-admin-navmenu.php:141
517
- #: includes/admin/templates/access/restrict_content.php:58
518
- #: includes/core/class-builtin.php:662
519
- msgid "Everyone"
520
- msgstr ""
521
-
522
- #: includes/admin/core/class-admin-metabox.php:430
523
- #: includes/admin/core/class-admin-metabox.php:581
524
- #: includes/admin/templates/access/restrict_content.php:59
525
- msgid "Logged out users"
526
- msgstr ""
527
-
528
- #: includes/admin/core/class-admin-metabox.php:431
529
- #: includes/admin/core/class-admin-metabox.php:582
530
- #: includes/admin/templates/access/restrict_content.php:60
531
- msgid "Logged in users"
532
- msgstr ""
533
-
534
- #: includes/admin/core/class-admin-metabox.php:438
535
- #: includes/admin/core/class-admin-metabox.php:590
536
- #: includes/admin/templates/access/restrict_content.php:67
537
- msgid "Select which roles can access this content"
538
- msgstr ""
539
-
540
- #: includes/admin/core/class-admin-metabox.php:447
541
- #: includes/admin/core/class-admin-metabox.php:601
542
- #: includes/admin/templates/access/restrict_content.php:77
543
- msgid "What happens when users without access tries to view the content?"
544
- msgstr ""
545
-
546
- #: includes/admin/core/class-admin-metabox.php:448
547
- #: includes/admin/core/class-admin-metabox.php:460
548
- #: includes/admin/core/class-admin-metabox.php:602
549
- #: includes/admin/core/class-admin-metabox.php:615
550
- #: includes/admin/templates/access/restrict_content.php:78
551
- #: includes/admin/templates/access/restrict_content.php:90
552
- msgid "Action when users without access tries to view the content"
553
- msgstr ""
554
-
555
- #: includes/admin/core/class-admin-metabox.php:451
556
- #: includes/admin/core/class-admin-metabox.php:605
557
- #: includes/admin/templates/access/restrict_content.php:81
558
- msgid "Show access restricted message"
559
- msgstr ""
560
-
561
- #: includes/admin/core/class-admin-metabox.php:452
562
- #: includes/admin/core/class-admin-metabox.php:606
563
- #: includes/admin/templates/access/restrict_content.php:82
564
- msgid "Redirect user"
565
- msgstr ""
566
-
567
- #: includes/admin/core/class-admin-metabox.php:459
568
- #: includes/admin/core/class-admin-metabox.php:614
569
- #: includes/admin/templates/access/restrict_content.php:89
570
- msgid ""
571
- "Would you like to use the global default message or apply a custom message "
572
- "to this content?"
573
- msgstr ""
574
-
575
- #: includes/admin/core/class-admin-metabox.php:463
576
- #: includes/admin/core/class-admin-metabox.php:618
577
- #: includes/admin/templates/access/restrict_content.php:93
578
- msgid "Global default message (default)"
579
- msgstr ""
580
-
581
- #: includes/admin/core/class-admin-metabox.php:464
582
- #: includes/admin/core/class-admin-metabox.php:619
583
- #: includes/admin/templates/access/restrict_content.php:94
584
- msgid "Custom message"
585
- msgstr ""
586
-
587
- #: includes/admin/core/class-admin-metabox.php:471
588
- #: includes/admin/core/class-admin-metabox.php:627
589
- #: includes/admin/templates/access/restrict_content.php:101
590
- msgid "Custom Restrict Content message"
591
- msgstr ""
592
-
593
- #: includes/admin/core/class-admin-metabox.php:472
594
- #: includes/admin/core/class-admin-metabox.php:492
595
- #: includes/admin/core/class-admin-metabox.php:628
596
- #: includes/admin/core/class-admin-metabox.php:650
597
- #: includes/admin/templates/access/restrict_content.php:102
598
- #: includes/admin/templates/access/restrict_content.php:122
599
- msgid "Changed global restrict message"
600
- msgstr ""
601
-
602
- #: includes/admin/core/class-admin-metabox.php:479
603
- #: includes/admin/core/class-admin-metabox.php:636
604
- #: includes/admin/templates/access/restrict_content.php:109
605
- msgid "Where should users be redirected to?"
606
- msgstr ""
607
-
608
- #: includes/admin/core/class-admin-metabox.php:480
609
- #: includes/admin/core/class-admin-metabox.php:637
610
- #: includes/admin/templates/access/restrict_content.php:110
611
- msgid "Select redirect to page when user hasn't access to content"
612
- msgstr ""
613
-
614
- #: includes/admin/core/class-admin-metabox.php:484
615
- #: includes/admin/core/class-admin-metabox.php:641
616
- #: includes/admin/templates/access/restrict_content.php:114
617
- msgid "Login page"
618
- msgstr ""
619
-
620
- #: includes/admin/core/class-admin-metabox.php:485
621
- #: includes/admin/core/class-admin-metabox.php:642
622
- #: includes/admin/templates/access/restrict_content.php:115
623
- msgid "Custom URL"
624
- msgstr ""
625
-
626
- #: includes/admin/core/class-admin-metabox.php:491
627
- #: includes/admin/core/class-admin-metabox.php:649
628
- #: includes/admin/templates/access/restrict_content.php:121
629
- msgid "Redirect URL"
630
- msgstr ""
631
-
632
- #: includes/admin/core/class-admin-metabox.php:499
633
- #: includes/admin/core/class-admin-metabox.php:658
634
- #: includes/admin/templates/access/restrict_content.php:129
635
- msgid "Hide from queries"
636
- msgstr ""
637
-
638
- #: includes/admin/core/class-admin-metabox.php:500
639
- #: includes/admin/core/class-admin-metabox.php:659
640
- #: includes/admin/templates/access/restrict_content.php:130
641
- msgid ""
642
- "Hide this content from archives, RSS feeds etc for users who do not have "
643
- "permission to view this content"
644
- msgstr ""
645
-
646
- #: includes/admin/core/class-admin-metabox.php:817
647
- msgid "General Options"
648
- msgstr ""
649
-
650
- #: includes/admin/core/class-admin-metabox.php:818
651
- msgid "Profile Card"
652
- msgstr ""
653
-
654
- #: includes/admin/core/class-admin-metabox.php:819
655
- msgid "Search Options"
656
- msgstr ""
657
-
658
- #: includes/admin/core/class-admin-metabox.php:820
659
- msgid "Results &amp; Pagination"
660
- msgstr ""
661
-
662
- #: includes/admin/core/class-admin-metabox.php:822
663
- msgid "Styling: General"
664
- msgstr ""
665
-
666
- #: includes/admin/core/class-admin-metabox.php:835
667
- msgid "Administrative Permissions"
668
- msgstr ""
669
-
670
- #: includes/admin/core/class-admin-metabox.php:843
671
- msgid "General Permissions"
672
- msgstr ""
673
-
674
- #: includes/admin/core/class-admin-metabox.php:851
675
- msgid "Profile Access"
676
- msgstr ""
677
-
678
- #: includes/admin/core/class-admin-metabox.php:862
679
- msgid "Homepage Options"
680
- msgstr ""
681
-
682
- #: includes/admin/core/class-admin-metabox.php:873
683
- msgid "Registration Options"
684
- msgstr ""
685
-
686
- #: includes/admin/core/class-admin-metabox.php:881
687
- msgid "Login Options"
688
- msgstr ""
689
-
690
- #: includes/admin/core/class-admin-metabox.php:889
691
- msgid "Logout Options"
692
- msgstr ""
693
-
694
- #: includes/admin/core/class-admin-metabox.php:897
695
- msgid "Delete Options"
696
- msgstr ""
697
-
698
- #: includes/admin/core/class-admin-metabox.php:905
699
- msgid "Publish"
700
- msgstr ""
701
-
702
- #: includes/admin/core/class-admin-metabox.php:953
703
- msgid "WP Capabilities"
704
- msgstr ""
705
-
706
- #: includes/admin/core/class-admin-metabox.php:980
707
- msgid "Select Form Type"
708
- msgstr ""
709
-
710
- #: includes/admin/core/class-admin-metabox.php:981
711
- msgid "Form Builder"
712
- msgstr ""
713
-
714
- #: includes/admin/core/class-admin-metabox.php:984
715
- #: includes/admin/core/class-admin-metabox.php:1005
716
- #: includes/admin/core/class-admin-metabox.php:1027
717
- msgid "Customize this form"
718
- msgstr ""
719
-
720
- #: includes/admin/core/class-admin-metabox.php:1006
721
- msgid "User Meta"
722
- msgstr ""
723
-
724
- #: includes/admin/core/class-admin-metabox.php:1028
725
- msgid "Options"
726
- msgstr ""
727
-
728
- #: includes/admin/core/class-admin-metabox.php:1239
729
- msgid ""
730
- "Select where this field should appear. This option should only be changed on "
731
- "the profile form and allows you to show a field in one mode only (edit or "
732
- "view) or in both modes."
733
- msgstr ""
734
-
735
- #: includes/admin/core/class-admin-metabox.php:1273
736
- msgid "If"
737
- msgstr ""
738
-
739
- #: includes/admin/core/class-admin-metabox.php:1350
740
- msgid "Value"
741
- msgstr ""
742
-
743
- #: includes/admin/core/class-admin-metabox.php:1359
744
- msgid "Does this field require a special validation"
745
- msgstr ""
746
-
747
- #: includes/admin/core/class-admin-metabox.php:1404
748
- msgid ""
749
- "If you want to apply your custom validation, you can use action hooks to add "
750
- "custom validation. Please refer to documentation for further details."
751
- msgstr ""
752
-
753
- #: includes/admin/core/class-admin-metabox.php:1418
754
- #: includes/admin/core/class-admin-metabox.php:1446
755
- msgid ""
756
- "Select an icon to appear in the field. Leave blank if you do not want an "
757
- "icon to show in the field."
758
- msgstr ""
759
-
760
- #: includes/admin/core/class-admin-metabox.php:1473
761
- msgid "Specify a custom CSS class to be applied to this element"
762
- msgstr ""
763
-
764
- #: includes/admin/core/class-admin-metabox.php:1483
765
- msgid "This is the width in pixels, e.g. 4 or 2, etc"
766
- msgstr ""
767
-
768
- #: includes/admin/core/class-admin-metabox.php:1493
769
- msgid "Optional text to include with the divider"
770
- msgstr ""
771
-
772
- #: includes/admin/core/class-admin-metabox.php:1503
773
- msgid "Set padding for this section"
774
- msgstr ""
775
-
776
- #: includes/admin/core/class-admin-metabox.php:1513
777
- msgid "Set margin for this section"
778
- msgstr ""
779
-
780
- #: includes/admin/core/class-admin-metabox.php:1523
781
- msgid "Set border for this section"
782
- msgstr ""
783
-
784
- #: includes/admin/core/class-admin-metabox.php:1533
785
- msgid "Choose the border style"
786
- msgstr ""
787
-
788
- #: includes/admin/core/class-admin-metabox.php:1548
789
- msgid "Rounded corners can be applied by setting a pixels value here. e.g. 5px"
790
- msgstr ""
791
-
792
- #: includes/admin/core/class-admin-metabox.php:1558
793
- msgid "Give a color to this border"
794
- msgstr ""
795
-
796
- #: includes/admin/core/class-admin-metabox.php:1568
797
- msgid "Enable Row Heading"
798
- msgstr ""
799
-
800
- #: includes/admin/core/class-admin-metabox.php:1568
801
- msgid "Whether to enable a heading for this row"
802
- msgstr ""
803
-
804
- #: includes/admin/core/class-admin-metabox.php:1578
805
- msgid "Enter the row heading text here"
806
- msgstr ""
807
-
808
- #: includes/admin/core/class-admin-metabox.php:1588
809
- msgid "This will be the background of entire section"
810
- msgstr ""
811
-
812
- #: includes/admin/core/class-admin-metabox.php:1598
813
- msgid "This will be the background of the heading section"
814
- msgstr ""
815
-
816
- #: includes/admin/core/class-admin-metabox.php:1608
817
- msgid "This will be the text color of heading part only"
818
- msgstr ""
819
-
820
- #: includes/admin/core/class-admin-metabox.php:1618
821
- msgid "This will be the text color of entire section"
822
- msgstr ""
823
-
824
- #: includes/admin/core/class-admin-metabox.php:1628
825
- msgid ""
826
- "This will be the color of selected icon. By default It will be the same "
827
- "color as heading text color"
828
- msgstr ""
829
-
830
- #: includes/admin/core/class-admin-metabox.php:1638
831
- msgid "Select a color for this divider"
832
- msgstr ""
833
-
834
- #: includes/admin/core/class-admin-metabox.php:1648
835
- msgid "Entering custom text here will replace the url with a text link"
836
- msgstr ""
837
-
838
- #: includes/admin/core/class-admin-metabox.php:1658
839
- msgid "Choose whether to open this link in same window or in a new window"
840
- msgstr ""
841
-
842
- #: includes/admin/core/class-admin-metabox.php:1671
843
- msgid "Whether to follow or nofollow this link by search engines"
844
- msgstr ""
845
-
846
- #: includes/admin/core/class-admin-metabox.php:1684
847
- msgid ""
848
- "Turn on to force users to create a strong password (A combination of one "
849
- "lowercase letter, one uppercase letter, and one number). If turned on this "
850
- "option is only applied to register forms and not to login forms."
851
- msgstr ""
852
-
853
- #: includes/admin/core/class-admin-metabox.php:1694
854
- msgid ""
855
- "Turn on to add a confirm password field. If turned on the confirm password "
856
- "field will only show on register forms and not on login forms."
857
- msgstr ""
858
-
859
- #: includes/admin/core/class-admin-metabox.php:1704
860
- msgid "This is the line-style of divider"
861
- msgstr ""
862
-
863
- #: includes/admin/core/class-admin-metabox.php:1720
864
- msgid "Choose the minutes interval between each time in the time picker."
865
- msgstr ""
866
-
867
- #: includes/admin/core/class-admin-metabox.php:1733
868
- msgid "The display format of the date which is visible to user."
869
- msgstr ""
870
-
871
- #: includes/admin/core/class-admin-metabox.php:1744
872
- msgid "Choose the displayed time-format for this field"
873
- msgstr ""
874
-
875
- #: includes/admin/core/class-admin-metabox.php:1759
876
- msgid ""
877
- "Whether you wish to show the date in full or only show the years e.g. 25 "
878
- "Years"
879
- msgstr ""
880
-
881
- #: includes/admin/core/class-admin-metabox.php:1778
882
- msgid ""
883
- "Disable specific week days from being available for selection in this date "
884
- "picker"
885
- msgstr ""
886
-
887
- #: includes/admin/core/class-admin-metabox.php:1796
888
- msgid ""
889
- "Number of years available for the date selection. Default to last 50 years"
890
- msgstr ""
891
-
892
- #: includes/admin/core/class-admin-metabox.php:1806
893
- msgid "This decides which years should be shown relative to today date"
894
- msgstr ""
895
-
896
- #: includes/admin/core/class-admin-metabox.php:1820
897
- msgid "Set the minimum date/day in range in the format YYYY/MM/DD"
898
- msgstr ""
899
-
900
- #: includes/admin/core/class-admin-metabox.php:1830
901
- msgid "Set the maximum date/day in range in the format YYYY/MM/DD"
902
- msgstr ""
903
-
904
- #: includes/admin/core/class-admin-metabox.php:1840
905
- msgid ""
906
- "Whether to show a specific number of years or specify a date range to be "
907
- "available for the date picker."
908
- msgstr ""
909
-
910
- #: includes/admin/core/class-admin-metabox.php:1856
911
- msgid ""
912
- "Enter the shortcode in the following textarea and it will be displayed on "
913
- "the fields"
914
- msgstr ""
915
-
916
- #: includes/admin/core/class-admin-metabox.php:1866
917
- msgid "Edit the content of this field here"
918
- msgstr ""
919
-
920
- #: includes/admin/core/class-admin-metabox.php:1879
921
- msgid "Enable/disable crop feature for this image upload and define ratio"
922
- msgstr ""
923
-
924
- #: includes/admin/core/class-admin-metabox.php:1901
925
- #: includes/admin/core/class-admin-metabox.php:1921
926
- msgid ""
927
- "Select the image types that you want to allow to be uploaded via this field."
928
- msgstr ""
929
-
930
- #: includes/admin/core/class-admin-metabox.php:1942
931
- msgid "This is the headline that appears in the upload box for this field"
932
- msgstr ""
933
-
934
- #: includes/admin/core/class-admin-metabox.php:1952
935
- msgid ""
936
- "If you need to add information or secondary line below the headline of "
937
- "upload box, enter it here"
938
- msgstr ""
939
-
940
- #: includes/admin/core/class-admin-metabox.php:1962
941
- msgid "The text that appears on the button. e.g. Upload"
942
- msgstr ""
943
-
944
- #: includes/admin/core/class-admin-metabox.php:1972
945
- msgid ""
946
- "The maximum size for image that can be uploaded through this field. Leave "
947
- "empty for unlimited size."
948
- msgstr ""
949
-
950
- #: includes/admin/core/class-admin-metabox.php:1982
951
- msgid "The height of textarea in pixels. Default is 100 pixels"
952
- msgstr ""
953
-
954
- #: includes/admin/core/class-admin-metabox.php:1992
955
- msgid "This is the required spacing in pixels. e.g. 20px"
956
- msgstr ""
957
-
958
- #: includes/admin/core/class-admin-metabox.php:2002
959
- msgid "Enable/disable multiple selections for this field"
960
- msgstr ""
961
-
962
- #: includes/admin/core/class-admin-metabox.php:2012
963
- msgid ""
964
- "Enter a number here to force a maximum number of selections by user for this "
965
- "field"
966
- msgstr ""
967
-
968
- #: includes/admin/core/class-admin-metabox.php:2022
969
- msgid ""
970
- "Enter a number here to force a minimum number of selections by user for this "
971
- "field"
972
- msgstr ""
973
-
974
- #: includes/admin/core/class-admin-metabox.php:2032
975
- msgid "This is the max number of entries the user can add via field group."
976
- msgstr ""
977
-
978
- #: includes/admin/core/class-admin-metabox.php:2042
979
- msgid ""
980
- "If you want to enable a maximum number of words to be input in this "
981
- "textarea. Leave empty to disable this setting"
982
- msgstr ""
983
-
984
- #: includes/admin/core/class-admin-metabox.php:2052
985
- msgid "Minimum number that can be entered in this field"
986
- msgstr ""
987
-
988
- #: includes/admin/core/class-admin-metabox.php:2062
989
- msgid "Maximum number that can be entered in this field"
990
- msgstr ""
991
-
992
- #: includes/admin/core/class-admin-metabox.php:2072
993
- msgid ""
994
- "If you want to enable a minimum number of characters to be input in this "
995
- "field. Leave empty to disable this setting"
996
- msgstr ""
997
-
998
- #: includes/admin/core/class-admin-metabox.php:2082
999
- msgid ""
1000
- "If you want to enable a maximum number of characters to be input in this "
1001
- "field. Leave empty to disable this setting"
1002
- msgstr ""
1003
-
1004
- #: includes/admin/core/class-admin-metabox.php:2092
1005
- msgid "Turn on/off HTML tags for this textarea"
1006
- msgstr ""
1007
-
1008
- #: includes/admin/core/class-admin-metabox.php:2111
1009
- msgid ""
1010
- "Enter one choice per line. This will represent the available choices or "
1011
- "selections available for user."
1012
- msgstr ""
1013
-
1014
- #: includes/admin/core/class-admin-metabox.php:2121
1015
- msgid ""
1016
- "This is the title of the field for your reference in the backend. The title "
1017
- "will not appear on the front-end of your website."
1018
- msgstr ""
1019
-
1020
- #: includes/admin/core/class-admin-metabox.php:2146
1021
- msgid ""
1022
- "The meta key cannot be changed for duplicated fields or when editing an "
1023
- "existing field. If you require a different meta key please create a new "
1024
- "field."
1025
- msgstr ""
1026
-
1027
- #: includes/admin/core/class-admin-metabox.php:2152
1028
- msgid ""
1029
- "A meta key is required to store the entered info in this field in the "
1030
- "database. The meta key should be unique to this field and be written in "
1031
- "lowercase with an underscore ( _ ) separating words e.g country_list or "
1032
- "job_title"
1033
- msgstr ""
1034
-
1035
- #: includes/admin/core/class-admin-metabox.php:2165
1036
- msgid ""
1037
- "This is the text that appears in a tooltip when a user hovers over the info "
1038
- "icon. Help text is useful for providing users with more information about "
1039
- "what they should enter in the field. Leave blank if no help text is needed "
1040
- "for field."
1041
- msgstr ""
1042
-
1043
- #: includes/admin/core/class-admin-metabox.php:2177
1044
- msgid "Default Text"
1045
- msgstr ""
1046
-
1047
- #: includes/admin/core/class-admin-metabox.php:2177
1048
- msgid "Text to display by default in this field"
1049
- msgstr ""
1050
-
1051
- #: includes/admin/core/class-admin-metabox.php:2183
1052
- msgid "Default Date"
1053
- msgstr ""
1054
-
1055
- #: includes/admin/core/class-admin-metabox.php:2183
1056
- #: includes/admin/core/class-admin-metabox.php:2189
1057
- msgid ""
1058
- "You may use all PHP compatible date formats such as: 2020-02-02, 02/02/2020, "
1059
- "yesterday, today, tomorrow, next monday, first day of next month, +3 day"
1060
- msgstr ""
1061
-
1062
- #: includes/admin/core/class-admin-metabox.php:2189
1063
- msgid "Default Time"
1064
- msgstr ""
1065
-
1066
- #: includes/admin/core/class-admin-metabox.php:2195
1067
- msgid "Default Rating"
1068
- msgstr ""
1069
-
1070
- #: includes/admin/core/class-admin-metabox.php:2195
1071
- msgid ""
1072
- "If you wish the rating field to be prefilled with a number of stars, enter "
1073
- "it here."
1074
- msgstr ""
1075
-
1076
- #: includes/admin/core/class-admin-metabox.php:2201
1077
- msgid "Default Value"
1078
- msgstr ""
1079
-
1080
- #: includes/admin/core/class-admin-metabox.php:2201
1081
- msgid ""
1082
- "This option allows you to pre-fill the field with a default value prior to "
1083
- "the user entering a value in the field. Leave blank to have no default value"
1084
- msgstr ""
1085
-
1086
- #: includes/admin/core/class-admin-metabox.php:2213
1087
- msgid ""
1088
- "The field label is the text that appears above the field on your front-end "
1089
- "form. Leave blank to not show a label above field."
1090
- msgstr ""
1091
-
1092
- #: includes/admin/core/class-admin-metabox.php:2223
1093
- msgid ""
1094
- "This is the text that appears within the field e.g please enter your email "
1095
- "address. Leave blank to not show any placeholder text."
1096
- msgstr ""
1097
-
1098
- #: includes/admin/core/class-admin-metabox.php:2233
1099
- msgid ""
1100
- "Field privacy allows you to select who can view this field on the front-end. "
1101
- "The site admin can view all fields regardless of the option set here."
1102
- msgstr ""
1103
-
1104
- #: includes/admin/core/class-admin-metabox.php:2256
1105
- msgid "Select the member roles that can view this field on the front-end."
1106
- msgstr ""
1107
-
1108
- #: includes/admin/core/class-admin-metabox.php:2282
1109
- msgid ""
1110
- "This option allows you to set whether the field must be filled in before the "
1111
- "form can be processed."
1112
- msgstr ""
1113
-
1114
- #: includes/admin/core/class-admin-metabox.php:2296
1115
- msgid ""
1116
- "This option allows you to set whether or not the user can edit the "
1117
- "information in this field."
1118
- msgstr ""
1119
-
1120
- #: includes/admin/core/class-admin-metabox.php:2309
1121
- msgid "Choose whether you want a 5-stars or 10-stars ratings based here."
1122
- msgstr ""
1123
-
1124
- #: includes/admin/core/class-admin-metabox.php:2322
1125
- msgid "Add a callback source to retrieve choices."
1126
- msgstr ""
1127
-
1128
- #: includes/admin/core/class-admin-metabox.php:2333
1129
- msgid "Parent Option"
1130
- msgstr ""
1131
-
1132
- #: includes/admin/core/class-admin-metabox.php:2333
1133
- msgid "Dynamically populates the option based from selected parent option."
1134
- msgstr ""
1135
-
1136
- #: includes/admin/core/class-admin-metabox.php:2335
1137
- msgid "No Selected"
1138
- msgstr ""
1139
-
1140
- #: includes/admin/core/class-admin-navmenu.php:23
1141
- msgid "Display Mode"
1142
- msgstr ""
1143
-
1144
- #: includes/admin/core/class-admin-navmenu.php:24
1145
- msgid "By Role"
1146
- msgstr ""
1147
-
1148
- #: includes/admin/core/class-admin-navmenu.php:133
1149
- msgid "Ultimate Member Menu Settings"
1150
- msgstr ""
1151
-
1152
- #: includes/admin/core/class-admin-navmenu.php:137
1153
- msgid "Who can see this menu link?"
1154
- msgstr ""
1155
-
1156
- #: includes/admin/core/class-admin-navmenu.php:144
1157
- msgid "Logged Out Users"
1158
- msgstr ""
1159
-
1160
- #: includes/admin/core/class-admin-navmenu.php:147
1161
- msgid "Logged In Users"
1162
- msgstr ""
1163
-
1164
- #: includes/admin/core/class-admin-navmenu.php:153
1165
- msgid "Select the member roles that can see this link"
1166
- msgstr ""
1167
-
1168
- #: includes/admin/core/class-admin-notices.php:279
1169
- #, php-format
1170
- msgid ""
1171
- "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions "
1172
- "installed on your site. <br /> Please update %s extensions to latest "
1173
- "versions. For more info see this <a href=\"%s\" target=\"_blank\">doc</a>."
1174
- msgstr ""
1175
-
1176
- #: includes/admin/core/class-admin-notices.php:300
1177
- #, php-format
1178
- msgid ""
1179
- "%s needs to create several pages (User Profiles, Account, Registration, "
1180
- "Login, Password Reset, Logout, Member Directory) to function correctly."
1181
- msgstr ""
1182
-
1183
- #: includes/admin/core/class-admin-notices.php:304
1184
- msgid "Create Pages"
1185
- msgstr ""
1186
-
1187
- #: includes/admin/core/class-admin-notices.php:306
1188
- #: includes/admin/core/class-admin-notices.php:500
1189
- msgid "No thanks"
1190
- msgstr ""
1191
-
1192
- #: includes/admin/core/class-admin-notices.php:326
1193
- msgid "Ultimate Member Setup Error: User page can not be a child page."
1194
- msgstr ""
1195
-
1196
- #: includes/admin/core/class-admin-notices.php:336
1197
- msgid "Ultimate Member Setup Error: Account page can not be a child page."
1198
- msgstr ""
1199
-
1200
- #: includes/admin/core/class-admin-notices.php:354
1201
- #, php-format
1202
- msgid ""
1203
- "Exif is not enabled on your server. Mobile photo uploads will not be rotated "
1204
- "correctly until you enable the exif extension. <a href=\"%s\">Hide this "
1205
- "notice</a>"
1206
- msgstr ""
1207
-
1208
- #: includes/admin/core/class-admin-notices.php:389
1209
- #, php-format
1210
- msgid ""
1211
- "Are you sure you want to delete the selected user(s)? The following users "
1212
- "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
1213
- msgstr ""
1214
-
1215
- #: includes/admin/core/class-admin-notices.php:390
1216
- msgid "Undo"
1217
- msgstr ""
1218
-
1219
- #: includes/admin/core/class-admin-notices.php:395
1220
- msgid "Your translation files have been updated successfully."
1221
- msgstr ""
1222
-
1223
- #: includes/admin/core/class-admin-notices.php:399
1224
- msgid "Your temp uploads directory is now clean."
1225
- msgstr ""
1226
-
1227
- #: includes/admin/core/class-admin-notices.php:403
1228
- msgid "Your user cache is now removed."
1229
- msgstr ""
1230
-
1231
- #: includes/admin/core/class-admin-notices.php:407
1232
- msgid "You have the latest updates."
1233
- msgstr ""
1234
-
1235
- #: includes/admin/core/class-admin-notices.php:411
1236
- msgid "Try again later. You can run this action once daily."
1237
- msgstr ""
1238
-
1239
- #: includes/admin/core/class-admin-notices.php:415
1240
- msgid "The form has been duplicated successfully."
1241
- msgstr ""
1242
-
1243
- #: includes/admin/core/class-admin-notices.php:419
1244
- msgid "User has been updated."
1245
- msgstr ""
1246
-
1247
- #: includes/admin/core/class-admin-notices.php:423
1248
- msgid "Users have been updated."
1249
- msgstr ""
1250
-
1251
- #: includes/admin/core/class-admin-notices.php:427
1252
- msgid "Changed roles."
1253
- msgstr ""
1254
-
1255
- #: includes/admin/core/class-admin-notices.php:431
1256
- msgid "Super administrators cannot be modified."
1257
- msgstr ""
1258
-
1259
- #: includes/admin/core/class-admin-notices.php:432
1260
- msgid "Other users have been updated."
1261
- msgstr ""
1262
-
1263
- #: includes/admin/core/class-admin-notices.php:469
1264
- #, php-format
1265
- msgid ""
1266
- "You have installed <strong>%s</strong> with wrong folder name. Correct "
1267
- "folder name is <strong>\"ultimate-member\"</strong>."
1268
- msgstr ""
1269
-
1270
- #: includes/admin/core/class-admin-notices.php:494
1271
- #, php-format
1272
- msgid ""
1273
- "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To "
1274
- "fund full-time development and support of the plugin we also sell "
1275
- "extensions. If you subscribe to our mailing list we will send you a 20%% "
1276
- "discount code for one of our <a href=\"%s\" target=\"_blank\">access passes</"
1277
- "a>."
1278
- msgstr ""
1279
-
1280
- #: includes/admin/core/class-admin-notices.php:498
1281
- #, php-format
1282
- msgid "Claim 20% discount code"
1283
- msgstr ""
1284
-
1285
- #: includes/admin/core/class-admin-notices.php:537
1286
- #, php-format
1287
- msgid ""
1288
- "There are %d inactive %s license keys for this site. This site is not "
1289
- "authorized to get plugin updates. You can active this site on <a href=\"%s"
1290
- "\">www.ultimatemember.com</a>."
1291
- msgstr ""
1292
-
1293
- #: includes/admin/core/class-admin-notices.php:544
1294
- #, php-format
1295
- msgid ""
1296
- "You have %d invalid or expired license keys for %s. Please go to the <a href="
1297
- "\"%s\">Licenses page</a> to correct this issue."
1298
- msgstr ""
1299
-
1300
- #: includes/admin/core/class-admin-notices.php:558
1301
- #, php-format
1302
- msgid ""
1303
- "<strong>%s version %s</strong> needs to be updated to work correctly.<br /"
1304
- ">It is necessary to update the structure of the database and options that "
1305
- "are associated with <strong>%s %s</strong>.<br />Please visit <a href=\"%s\">"
1306
- "\"Upgrade\"</a> page and run the upgrade process."
1307
- msgstr ""
1308
-
1309
- #: includes/admin/core/class-admin-notices.php:562
1310
- msgid "Upgrade Now"
1311
- msgstr ""
1312
-
1313
- #: includes/admin/core/class-admin-notices.php:576
1314
- #, php-format
1315
- msgid "<strong>%s %s</strong> Successfully Upgraded"
1316
- msgstr ""
1317
-
1318
- #: includes/admin/core/class-admin-notices.php:602
1319
- #, php-format
1320
- msgid ""
1321
- "Hey there! It's been one month since you installed %s. How have you found "
1322
- "the plugin so far?"
1323
- msgstr ""
1324
-
1325
- #: includes/admin/core/class-admin-notices.php:605
1326
- msgid "I love it!"
1327
- msgstr ""
1328
-
1329
- #: includes/admin/core/class-admin-notices.php:606
1330
- msgid "It's good but could be better"
1331
- msgstr ""
1332
-
1333
- #: includes/admin/core/class-admin-notices.php:607
1334
- msgid "I don't like the plugin"
1335
- msgstr ""
1336
-
1337
- #: includes/admin/core/class-admin-notices.php:612
1338
- #, php-format
1339
- msgid ""
1340
- "Great! We're happy to hear that you love the plugin. It would be amazing if "
1341
- "you could let others know why you like %s by leaving a review of the plugin. "
1342
- "This will help %s to grow and become more popular and would be massively "
1343
- "appreciated by us!"
1344
- msgstr ""
1345
-
1346
- #: includes/admin/core/class-admin-notices.php:616
1347
- msgid "Leave Review"
1348
- msgstr ""
1349
-
1350
- #: includes/admin/core/class-admin-notices.php:621
1351
- msgid ""
1352
- "We're glad to hear that you like the plugin but we would love to get your "
1353
- "feedback so we can make the plugin better."
1354
- msgstr ""
1355
-
1356
- #: includes/admin/core/class-admin-notices.php:625
1357
- #: includes/admin/core/class-admin-notices.php:634
1358
- msgid "Provide Feedback"
1359
- msgstr ""
1360
-
1361
- #: includes/admin/core/class-admin-notices.php:630
1362
- #, php-format
1363
- msgid ""
1364
- "We're sorry to hear that. If you're having the issue with the plugin you can "
1365
- "create a topic on our <a href=\"%s\" target=\"_blank\">support forum</a> and "
1366
- "we will try and help you out with the issue. Alternatively if you have an "
1367
- "idea on how we can make the plugin better or want to tell us what you don't "
1368
- "like about the plugin you can tell us know by giving us feedback."
1369
- msgstr ""
1370
-
1371
- #: includes/admin/core/class-admin-notices.php:656
1372
- #, php-format
1373
- msgid ""
1374
- "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" "
1375
- "target=\"_blank\">here</a>"
1376
- msgstr ""
1377
-
1378
- #: includes/admin/core/class-admin-notices.php:672
1379
- msgid "Wrong Data"
1380
- msgstr ""
1381
-
1382
- #: includes/admin/core/class-admin-settings.php:109
1383
- #: includes/admin/core/class-admin-settings.php:118
1384
- #, php-format
1385
- msgid "%s page"
1386
- msgstr ""
1387
-
1388
- #: includes/admin/core/class-admin-settings.php:110
1389
- msgid "Add page ID"
1390
- msgstr ""
1391
-
1392
- #: includes/admin/core/class-admin-settings.php:120
1393
- msgid "Choose a page..."
1394
- msgstr ""
1395
-
1396
- #: includes/admin/core/class-admin-settings.php:132
1397
- msgid "Enable profile menu"
1398
- msgstr ""
1399
-
1400
- #: includes/admin/core/class-admin-settings.php:144
1401
- #, php-format
1402
- msgid "%s Tab"
1403
- msgstr ""
1404
-
1405
- #: includes/admin/core/class-admin-settings.php:150
1406
- #, php-format
1407
- msgid "Who can see %s Tab?"
1408
- msgstr ""
1409
-
1410
- #: includes/admin/core/class-admin-settings.php:151
1411
- msgid "Select which users can view this tab."
1412
- msgstr ""
1413
-
1414
- #: includes/admin/core/class-admin-settings.php:160
1415
- msgid "Allowed roles"
1416
- msgstr ""
1417
-
1418
- #: includes/admin/core/class-admin-settings.php:161
1419
- msgid "Select the the user roles allowed to view this tab."
1420
- msgstr ""
1421
-
1422
- #: includes/admin/core/class-admin-settings.php:163
1423
- msgid "Choose user roles..."
1424
- msgstr ""
1425
-
1426
- #: includes/admin/core/class-admin-settings.php:174
1427
- msgid "Profile menu default tab"
1428
- msgstr ""
1429
-
1430
- #: includes/admin/core/class-admin-settings.php:175
1431
- msgid "This will be the default tab on user profile page"
1432
- msgstr ""
1433
-
1434
- #: includes/admin/core/class-admin-settings.php:183
1435
- msgid "Enable menu icons in desktop view"
1436
- msgstr ""
1437
-
1438
- #: includes/admin/core/class-admin-settings.php:222
1439
- msgid "Global Site Access"
1440
- msgstr ""
1441
-
1442
- #: includes/admin/core/class-admin-settings.php:223
1443
- msgid ""
1444
- "Globally control the access of your site, you can have seperate restrict "
1445
- "options per post/page by editing the desired item."
1446
- msgstr ""
1447
-
1448
- #: includes/admin/core/class-admin-settings.php:233
1449
- msgid "Custom Redirect URL"
1450
- msgstr ""
1451
-
1452
- #: includes/admin/core/class-admin-settings.php:234
1453
- msgid ""
1454
- "A logged out user will be redirected to this url If he is not permitted to "
1455
- "access the site"
1456
- msgstr ""
1457
-
1458
- #: includes/admin/core/class-admin-settings.php:240
1459
- msgid "Exclude the following URLs"
1460
- msgstr ""
1461
-
1462
- #: includes/admin/core/class-admin-settings.php:241
1463
- msgid ""
1464
- "Here you can exclude URLs beside the redirect URI to be accessible to "
1465
- "everyone"
1466
- msgstr ""
1467
-
1468
- #: includes/admin/core/class-admin-settings.php:242
1469
- msgid "Add New URL"
1470
- msgstr ""
1471
-
1472
- #: includes/admin/core/class-admin-settings.php:249
1473
- msgid "Allow Homepage to be accessible"
1474
- msgstr ""
1475
-
1476
- #: includes/admin/core/class-admin-settings.php:255
1477
- msgid "Allow Category pages to be accessible"
1478
- msgstr ""
1479
-
1480
- #: includes/admin/core/class-admin-settings.php:261
1481
- msgid "Restricted Access Message"
1482
- msgstr ""
1483
-
1484
- #: includes/admin/core/class-admin-settings.php:262
1485
- msgid ""
1486
- "This is the message shown to users that do not have permission to view the "
1487
- "content"
1488
- msgstr ""
1489
-
1490
- #: includes/admin/core/class-admin-settings.php:270
1491
- msgid "Allow Gutenberg Blocks restriction options"
1492
- msgstr ""
1493
-
1494
- #: includes/admin/core/class-admin-settings.php:275
1495
- msgid "Restricted Block Message"
1496
- msgstr ""
1497
-
1498
- #: includes/admin/core/class-admin-settings.php:276
1499
- msgid ""
1500
- "This is the message shown to users that do not have permission to view the "
1501
- "block's content"
1502
- msgstr ""
1503
-
1504
- #: includes/admin/core/class-admin-settings.php:293
1505
- msgid "Restricted Access to Posts"
1506
- msgstr ""
1507
-
1508
- #: includes/admin/core/class-admin-settings.php:294
1509
- msgid "Restriction content of the current Posts"
1510
- msgstr ""
1511
-
1512
- #: includes/admin/core/class-admin-settings.php:303
1513
- msgid "Restricted Access to Taxonomies"
1514
- msgstr ""
1515
-
1516
- #: includes/admin/core/class-admin-settings.php:304
1517
- msgid "Restriction content of the current Taxonomies"
1518
- msgstr ""
1519
-
1520
- #: includes/admin/core/class-admin-settings.php:334
1521
- msgid "General"
1522
- msgstr ""
1523
-
1524
- #: includes/admin/core/class-admin-settings.php:337
1525
- msgid "Pages"
1526
- msgstr ""
1527
-
1528
- #: includes/admin/core/class-admin-settings.php:341
1529
- #: includes/admin/templates/dashboard/users.php:6
1530
- msgid "Users"
1531
- msgstr ""
1532
-
1533
- #: includes/admin/core/class-admin-settings.php:347
1534
- msgid "Profile Permalink Base"
1535
- msgstr ""
1536
-
1537
- #: includes/admin/core/class-admin-settings.php:348
1538
- msgid ""
1539
- "Here you can control the permalink structure of the user profile URL "
1540
- "globally e.g. "
1541
- msgstr ""
1542
-
1543
- #: includes/admin/core/class-admin-settings.php:350
1544
- #: includes/admin/core/class-admin-settings.php:367
1545
- #: includes/core/class-builtin.php:674 includes/core/class-builtin.php:677
1546
- msgid "Username"
1547
- msgstr ""
1548
-
1549
- #: includes/admin/core/class-admin-settings.php:351
1550
- msgid "First and Last Name with '.'"
1551
- msgstr ""
1552
-
1553
- #: includes/admin/core/class-admin-settings.php:352
1554
- msgid "First and Last Name with '-'"
1555
- msgstr ""
1556
-
1557
- #: includes/admin/core/class-admin-settings.php:353
1558
- msgid "First and Last Name with '+'"
1559
- msgstr ""
1560
-
1561
- #: includes/admin/core/class-admin-settings.php:354
1562
- msgid "User ID"
1563
- msgstr ""
1564
-
1565
- #: includes/admin/core/class-admin-settings.php:356
1566
- #: includes/admin/core/class-admin-settings.php:375
1567
- msgid "Select..."
1568
- msgstr ""
1569
-
1570
- #: includes/admin/core/class-admin-settings.php:362
1571
- msgid "User Display Name"
1572
- msgstr ""
1573
-
1574
- #: includes/admin/core/class-admin-settings.php:363
1575
- msgid ""
1576
- "This is the name that will be displayed for users on the front end of your "
1577
- "site. Default setting uses first/last name as display name if it exists"
1578
- msgstr ""
1579
-
1580
- #: includes/admin/core/class-admin-settings.php:365
1581
- msgid "Default WP Display Name"
1582
- msgstr ""
1583
-
1584
- #: includes/admin/core/class-admin-settings.php:366
1585
- #: includes/core/class-builtin.php:732 includes/core/class-builtin.php:735
1586
- msgid "Nickname"
1587
- msgstr ""
1588
-
1589
- #: includes/admin/core/class-admin-settings.php:368
1590
- msgid "First name & last name"
1591
- msgstr ""
1592
-
1593
- #: includes/admin/core/class-admin-settings.php:369
1594
- msgid "Last name & first name"
1595
- msgstr ""
1596
-
1597
- #: includes/admin/core/class-admin-settings.php:370
1598
- msgid "First name & first initial of last name"
1599
- msgstr ""
1600
-
1601
- #: includes/admin/core/class-admin-settings.php:371
1602
- msgid "First initial of first name & last name"
1603
- msgstr ""
1604
-
1605
- #: includes/admin/core/class-admin-settings.php:372
1606
- msgid "First name only"
1607
- msgstr ""
1608
-
1609
- #: includes/admin/core/class-admin-settings.php:373
1610
- msgid "Custom field(s)"
1611
- msgstr ""
1612
-
1613
- #: includes/admin/core/class-admin-settings.php:380
1614
- msgid "Display Name Custom Field(s)"
1615
- msgstr ""
1616
-
1617
- #: includes/admin/core/class-admin-settings.php:381
1618
- msgid ""
1619
- "Specify the custom field meta key or custom fields seperated by comma that "
1620
- "you want to use to display users name on the frontend of your site"
1621
- msgstr ""
1622
-
1623
- #: includes/admin/core/class-admin-settings.php:387
1624
- msgid "Automatically redirect author page to their profile?"
1625
- msgstr ""
1626
-
1627
- #: includes/admin/core/class-admin-settings.php:388
1628
- msgid ""
1629
- "If enabled, author pages will automatically redirect to the user's profile "
1630
- "page"
1631
- msgstr ""
1632
-
1633
- #: includes/admin/core/class-admin-settings.php:393
1634
- msgid "Enable Members Directory"
1635
- msgstr ""
1636
-
1637
- #: includes/admin/core/class-admin-settings.php:394
1638
- msgid "Control whether to enable or disable member directories on this site"
1639
- msgstr ""
1640
-
1641
- #: includes/admin/core/class-admin-settings.php:399
1642
- msgid "Use Gravatars?"
1643
- msgstr ""
1644
-
1645
- #: includes/admin/core/class-admin-settings.php:400
1646
- msgid ""
1647
- "Do you want to use gravatars instead of the default plugin profile photo (If "
1648
- "the user did not upload a custom profile photo / avatar)"
1649
- msgstr ""
1650
-
1651
- #: includes/admin/core/class-admin-settings.php:405
1652
- msgid "Use Gravatar builtin image"
1653
- msgstr ""
1654
-
1655
- #: includes/admin/core/class-admin-settings.php:406
1656
- msgid ""
1657
- "Gravatar has a number of built in options which you can also use as defaults"
1658
- msgstr ""
1659
-
1660
- #: includes/admin/core/class-admin-settings.php:409
1661
- msgid "404 ( File Not Found response )"
1662
- msgstr ""
1663
-
1664
- #: includes/admin/core/class-admin-settings.php:410
1665
- msgid "Mystery Man"
1666
- msgstr ""
1667
-
1668
- #: includes/admin/core/class-admin-settings.php:411
1669
- msgid "Identicon"
1670
- msgstr ""
1671
-
1672
- #: includes/admin/core/class-admin-settings.php:412
1673
- msgid "Monsterid"
1674
- msgstr ""
1675
-
1676
- #: includes/admin/core/class-admin-settings.php:413
1677
- msgid "Wavatar"
1678
- msgstr ""
1679
-
1680
- #: includes/admin/core/class-admin-settings.php:414
1681
- msgid "Retro"
1682
- msgstr ""
1683
-
1684
- #: includes/admin/core/class-admin-settings.php:415
1685
- msgid "Blank ( a transparent PNG image )"
1686
- msgstr ""
1687
-
1688
- #: includes/admin/core/class-admin-settings.php:423
1689
- msgid "Use Default plugin avatar as Gravatar's Default avatar"
1690
- msgstr ""
1691
-
1692
- #: includes/admin/core/class-admin-settings.php:424
1693
- msgid ""
1694
- "Do you want to use the plugin default avatar instead of the gravatar default "
1695
- "photo (If the user did not upload a custom profile photo / avatar)"
1696
- msgstr ""
1697
-
1698
- #: includes/admin/core/class-admin-settings.php:430
1699
- msgid "Require a strong password? (when user resets password only)"
1700
- msgstr ""
1701
-
1702
- #: includes/admin/core/class-admin-settings.php:431
1703
- msgid ""
1704
- "Enable or disable a strong password rules on password reset and change "
1705
- "procedure"
1706
- msgstr ""
1707
-
1708
- #: includes/admin/core/class-admin-settings.php:436
1709
- #: includes/class-config.php:136 includes/class-config.php:750
1710
- #: includes/core/class-account.php:92
1711
- msgid "Account"
1712
- msgstr ""
1713
-
1714
- #: includes/admin/core/class-admin-settings.php:441
1715
- msgid "Password Account Tab"
1716
- msgstr ""
1717
-
1718
- #: includes/admin/core/class-admin-settings.php:447
1719
- msgid "Privacy Account Tab"
1720
- msgstr ""
1721
-
1722
- #: includes/admin/core/class-admin-settings.php:448
1723
- msgid "Enable/disable the Privacy account tab in account page"
1724
- msgstr ""
1725
-
1726
- #: includes/admin/core/class-admin-settings.php:453
1727
- msgid "Notifications Account Tab"
1728
- msgstr ""
1729
-
1730
- #: includes/admin/core/class-admin-settings.php:454
1731
- msgid "Enable/disable the Notifications account tab in account page"
1732
- msgstr ""
1733
-
1734
- #: includes/admin/core/class-admin-settings.php:459
1735
- msgid "Delete Account Tab"
1736
- msgstr ""
1737
-
1738
- #: includes/admin/core/class-admin-settings.php:460
1739
- msgid "Enable/disable the Delete account tab in account page"
1740
- msgstr ""
1741
-
1742
- #: includes/admin/core/class-admin-settings.php:465
1743
- msgid "Account Deletion Custom Text"
1744
- msgstr ""
1745
-
1746
- #: includes/admin/core/class-admin-settings.php:466
1747
- msgid ""
1748
- "This is custom text that will be displayed to users before they delete their "
1749
- "accounts from your site"
1750
- msgstr ""
1751
-
1752
- #: includes/admin/core/class-admin-settings.php:474
1753
- msgid "Add a First & Last Name fields"
1754
- msgstr ""
1755
-
1756
- #: includes/admin/core/class-admin-settings.php:475
1757
- msgid ""
1758
- "Whether to enable these fields on the user account page by default or hide "
1759
- "them."
1760
- msgstr ""
1761
-
1762
- #: includes/admin/core/class-admin-settings.php:480
1763
- msgid "Disable First & Last Name fields"
1764
- msgstr ""
1765
-
1766
- #: includes/admin/core/class-admin-settings.php:481
1767
- msgid ""
1768
- "Whether to allow users changing their first and last name in account page."
1769
- msgstr ""
1770
-
1771
- #: includes/admin/core/class-admin-settings.php:487
1772
- msgid "Require First & Last Name"
1773
- msgstr ""
1774
-
1775
- #: includes/admin/core/class-admin-settings.php:488
1776
- msgid "Require first and last name?"
1777
- msgstr ""
1778
-
1779
- #: includes/admin/core/class-admin-settings.php:494
1780
- msgid "Allow users to change e-mail"
1781
- msgstr ""
1782
-
1783
- #: includes/admin/core/class-admin-settings.php:495
1784
- msgid "Whether to allow users changing their email in account page."
1785
- msgstr ""
1786
-
1787
- #: includes/admin/core/class-admin-settings.php:500
1788
- msgid "Password is required?"
1789
- msgstr ""
1790
-
1791
- #: includes/admin/core/class-admin-settings.php:501
1792
- msgid "Password is required to save account data."
1793
- msgstr ""
1794
-
1795
- #: includes/admin/core/class-admin-settings.php:506
1796
- msgid "Allow users to hide their profiles from directory"
1797
- msgstr ""
1798
-
1799
- #: includes/admin/core/class-admin-settings.php:507
1800
- msgid ""
1801
- "Whether to allow users changing their profile visibility from member "
1802
- "directory in account page."
1803
- msgstr ""
1804
-
1805
- #: includes/admin/core/class-admin-settings.php:512
1806
- msgid "Require a strong password?"
1807
- msgstr ""
1808
-
1809
- #: includes/admin/core/class-admin-settings.php:513
1810
- msgid ""
1811
- "Enable or disable a strong password rules on account page / change password "
1812
- "tab"
1813
- msgstr ""
1814
-
1815
- #: includes/admin/core/class-admin-settings.php:518
1816
- msgid "Uploads"
1817
- msgstr ""
1818
-
1819
- #: includes/admin/core/class-admin-settings.php:524
1820
- msgid "Profile Photo Maximum File Size (bytes)"
1821
- msgstr ""
1822
-
1823
- #: includes/admin/core/class-admin-settings.php:525
1824
- msgid "Sets a maximum size for the uploaded photo"
1825
- msgstr ""
1826
-
1827
- #: includes/admin/core/class-admin-settings.php:532
1828
- msgid "Cover Photo Maximum File Size (bytes)"
1829
- msgstr ""
1830
-
1831
- #: includes/admin/core/class-admin-settings.php:533
1832
- msgid "Sets a maximum size for the uploaded cover"
1833
- msgstr ""
1834
-
1835
- #: includes/admin/core/class-admin-settings.php:539
1836
- msgid "Profile Photo Thumbnail Sizes (px)"
1837
- msgstr ""
1838
-
1839
- #: includes/admin/core/class-admin-settings.php:540
1840
- msgid ""
1841
- "Here you can define which thumbnail sizes will be created for each profile "
1842
- "photo upload."
1843
- msgstr ""
1844
-
1845
- #: includes/admin/core/class-admin-settings.php:542
1846
- #: includes/admin/core/class-admin-settings.php:552
1847
- msgid "Add New Size"
1848
- msgstr ""
1849
-
1850
- #: includes/admin/core/class-admin-settings.php:549
1851
- msgid "Cover Photo Thumbnail Sizes (px)"
1852
- msgstr ""
1853
-
1854
- #: includes/admin/core/class-admin-settings.php:550
1855
- msgid ""
1856
- "Here you can define which thumbnail sizes will be created for each cover "
1857
- "photo upload."
1858
- msgstr ""
1859
-
1860
- #: includes/admin/core/class-admin-settings.php:560
1861
- msgid "Image Quality"
1862
- msgstr ""
1863
-
1864
- #: includes/admin/core/class-admin-settings.php:561
1865
- msgid ""
1866
- "Quality is used to determine quality of image uploads, and ranges from 0 "
1867
- "(worst quality, smaller file) to 100 (best quality, biggest file). The "
1868
- "default range is 60."
1869
- msgstr ""
1870
-
1871
- #: includes/admin/core/class-admin-settings.php:568
1872
- msgid "Image Upload Maximum Width (px)"
1873
- msgstr ""
1874
-
1875
- #: includes/admin/core/class-admin-settings.php:569
1876
- msgid ""
1877
- "Any image upload above this width will be resized to this limit "
1878
- "automatically."
1879
- msgstr ""
1880
-
1881
- #: includes/admin/core/class-admin-settings.php:576
1882
- msgid "Cover Photo Minimum Width (px)"
1883
- msgstr ""
1884
-
1885
- #: includes/admin/core/class-admin-settings.php:577
1886
- msgid "This will be the minimum width for cover photo uploads"
1887
- msgstr ""
1888
-
1889
- #: includes/admin/core/class-admin-settings.php:584
1890
- msgid "Access"
1891
- msgstr ""
1892
-
1893
- #: includes/admin/core/class-admin-settings.php:587
1894
- msgid "Restriction Content"
1895
- msgstr ""
1896
-
1897
- #: includes/admin/core/class-admin-settings.php:591
1898
- msgid "Other"
1899
- msgstr ""
1900
-
1901
- #: includes/admin/core/class-admin-settings.php:596
1902
- msgid "Enable the Reset Password Limit?"
1903
- msgstr ""
1904
-
1905
- #: includes/admin/core/class-admin-settings.php:601
1906
- msgid "Reset Password Limit"
1907
- msgstr ""
1908
-
1909
- #: includes/admin/core/class-admin-settings.php:602
1910
- msgid ""
1911
- "Set the maximum reset password limit. If reached the maximum limit, user "
1912
- "will be locked from using this."
1913
- msgstr ""
1914
-
1915
- #: includes/admin/core/class-admin-settings.php:610
1916
- msgid "Blocked Email Addresses"
1917
- msgstr ""
1918
-
1919
- #: includes/admin/core/class-admin-settings.php:611
1920
- msgid ""
1921
- "This will block the specified e-mail addresses from being able to sign up or "
1922
- "sign in to your site. To block an entire domain, use something like *@domain."
1923
- "com"
1924
- msgstr ""
1925
-
1926
- #: includes/admin/core/class-admin-settings.php:616
1927
- msgid "Blacklist Words"
1928
- msgstr ""
1929
-
1930
- #: includes/admin/core/class-admin-settings.php:617
1931
- msgid ""
1932
- "This option lets you specify blacklist of words to prevent anyone from "
1933
- "signing up with such a word as their username"
1934
- msgstr ""
1935
-
1936
- #: includes/admin/core/class-admin-settings.php:624
1937
- #: includes/admin/core/list-tables/emails-list-table.php:300
1938
- msgid "Email"
1939
- msgstr ""
1940
-
1941
- #: includes/admin/core/class-admin-settings.php:629
1942
- msgid "Admin E-mail Address"
1943
- msgstr ""
1944
-
1945
- #: includes/admin/core/class-admin-settings.php:630
1946
- #: includes/admin/core/class-admin-settings.php:642
1947
- msgid "e.g. admin@companyname.com"
1948
- msgstr ""
1949
-
1950
- #: includes/admin/core/class-admin-settings.php:635
1951
- msgid "Mail appears from"
1952
- msgstr ""
1953
-
1954
- #: includes/admin/core/class-admin-settings.php:636
1955
- msgid "e.g. Site Name"
1956
- msgstr ""
1957
-
1958
- #: includes/admin/core/class-admin-settings.php:641
1959
- msgid "Mail appears from address"
1960
- msgstr ""
1961
-
1962
- #: includes/admin/core/class-admin-settings.php:647
1963
- msgid "Use HTML for E-mails?"
1964
- msgstr ""
1965
-
1966
- #: includes/admin/core/class-admin-settings.php:648
1967
- msgid ""
1968
- "If you plan use e-mails with HTML, please make sure that this option is "
1969
- "enabled. Otherwise, HTML will be displayed as plain text."
1970
- msgstr ""
1971
-
1972
- #: includes/admin/core/class-admin-settings.php:653
1973
- msgid "Appearance"
1974
- msgstr ""
1975
-
1976
- #: includes/admin/core/class-admin-settings.php:656
1977
- msgid "Profile"
1978
- msgstr ""
1979
-
1980
- #: includes/admin/core/class-admin-settings.php:661
1981
- msgid "Profile Default Template"
1982
- msgstr ""
1983
-
1984
- #: includes/admin/core/class-admin-settings.php:662
1985
- msgid "This will be the default template to output profile"
1986
- msgstr ""
1987
-
1988
- #: includes/admin/core/class-admin-settings.php:670
1989
- msgid "Profile Maximum Width"
1990
- msgstr ""
1991
-
1992
- #: includes/admin/core/class-admin-settings.php:679
1993
- msgid "Profile Area Maximum Width"
1994
- msgstr ""
1995
-
1996
- #: includes/admin/core/class-admin-settings.php:681
1997
- #: includes/admin/templates/form/profile_customize.php:56
1998
- msgid ""
1999
- "The maximum width of the profile area inside profile (below profile header)"
2000
- msgstr ""
2001
-
2002
- #: includes/admin/core/class-admin-settings.php:687
2003
- msgid "Profile Field Icons"
2004
- msgstr ""
2005
-
2006
- #: includes/admin/core/class-admin-settings.php:688
2007
- msgid "This is applicable for edit mode only"
2008
- msgstr ""
2009
-
2010
- #: includes/admin/core/class-admin-settings.php:691
2011
- #: includes/admin/core/class-admin-settings.php:887
2012
- #: includes/admin/core/class-admin-settings.php:977
2013
- #: includes/admin/templates/form/login_customize.php:40
2014
- #: includes/admin/templates/form/profile_customize.php:67
2015
- #: includes/admin/templates/form/register_customize.php:55
2016
- msgid "Show inside text field"
2017
- msgstr ""
2018
-
2019
- #: includes/admin/core/class-admin-settings.php:692
2020
- #: includes/admin/core/class-admin-settings.php:888
2021
- #: includes/admin/core/class-admin-settings.php:978
2022
- #: includes/admin/templates/form/login_customize.php:41
2023
- #: includes/admin/templates/form/profile_customize.php:68
2024
- #: includes/admin/templates/form/register_customize.php:56
2025
- msgid "Show with label"
2026
- msgstr ""
2027
-
2028
- #: includes/admin/core/class-admin-settings.php:693
2029
- #: includes/admin/core/class-admin-settings.php:889
2030
- #: includes/admin/core/class-admin-settings.php:979
2031
- #: includes/admin/templates/form/login_customize.php:42
2032
- #: includes/admin/templates/form/profile_customize.php:69
2033
- #: includes/admin/templates/form/register_customize.php:57
2034
- msgid "Turn off"
2035
- msgstr ""
2036
-
2037
- #: includes/admin/core/class-admin-settings.php:700
2038
- msgid "Profile Primary Button Text"
2039
- msgstr ""
2040
-
2041
- #: includes/admin/core/class-admin-settings.php:702
2042
- msgid "The text that is used for updating profile button"
2043
- msgstr ""
2044
-
2045
- #: includes/admin/core/class-admin-settings.php:708
2046
- msgid "Profile Secondary Button"
2047
- msgstr ""
2048
-
2049
- #: includes/admin/core/class-admin-settings.php:710
2050
- #: includes/admin/core/class-admin-settings.php:906
2051
- #: includes/admin/core/class-admin-settings.php:996
2052
- msgid "Switch on/off the secondary button display in the form"
2053
- msgstr ""
2054
-
2055
- #: includes/admin/core/class-admin-settings.php:715
2056
- msgid "Profile Secondary Button Text"
2057
- msgstr ""
2058
-
2059
- #: includes/admin/core/class-admin-settings.php:717
2060
- msgid "The text that is used for cancelling update profile button"
2061
- msgstr ""
2062
-
2063
- #: includes/admin/core/class-admin-settings.php:724
2064
- msgid "Default Profile Photo"
2065
- msgstr ""
2066
-
2067
- #: includes/admin/core/class-admin-settings.php:725
2068
- msgid ""
2069
- "You can change the default profile picture globally here. Please make sure "
2070
- "that the photo is 300x300px."
2071
- msgstr ""
2072
-
2073
- #: includes/admin/core/class-admin-settings.php:726
2074
- msgid "Select Default Profile Photo"
2075
- msgstr ""
2076
-
2077
- #: includes/admin/core/class-admin-settings.php:736
2078
- msgid "Default Cover Photo"
2079
- msgstr ""
2080
-
2081
- #: includes/admin/core/class-admin-settings.php:737
2082
- msgid ""
2083
- "You can change the default cover photo globally here. Please make sure that "
2084
- "the default cover is large enough and respects the ratio you are using for "
2085
- "cover photos."
2086
- msgstr ""
2087
-
2088
- #: includes/admin/core/class-admin-settings.php:738
2089
- msgid "Select Default Cover Photo"
2090
- msgstr ""
2091
-
2092
- #: includes/admin/core/class-admin-settings.php:743
2093
- #: includes/admin/templates/form/profile_customize.php:128
2094
- msgid "Profile Photo Size"
2095
- msgstr ""
2096
-
2097
- #: includes/admin/core/class-admin-settings.php:745
2098
- msgid ""
2099
- "The global default of profile photo size. This can be overridden by "
2100
- "individual form settings"
2101
- msgstr ""
2102
-
2103
- #: includes/admin/core/class-admin-settings.php:751
2104
- msgid "Profile Cover Photos"
2105
- msgstr ""
2106
-
2107
- #: includes/admin/core/class-admin-settings.php:753
2108
- msgid "Switch on/off the profile cover photos"
2109
- msgstr ""
2110
-
2111
- #: includes/admin/core/class-admin-settings.php:758
2112
- msgid "Profile Cover Ratio"
2113
- msgstr ""
2114
-
2115
- #: includes/admin/core/class-admin-settings.php:759
2116
- msgid "Choose global ratio for cover photos of profiles"
2117
- msgstr ""
2118
-
2119
- #: includes/admin/core/class-admin-settings.php:773
2120
- msgid "Profile Header Meta Text Icon"
2121
- msgstr ""
2122
-
2123
- #: includes/admin/core/class-admin-settings.php:775
2124
- msgid "Display field icons for related user meta fields in header or not"
2125
- msgstr ""
2126
-
2127
- #: includes/admin/core/class-admin-settings.php:780
2128
- msgid "Show display name in profile header"
2129
- msgstr ""
2130
-
2131
- #: includes/admin/core/class-admin-settings.php:782
2132
- msgid "Switch on/off the user name on profile header"
2133
- msgstr ""
2134
-
2135
- #: includes/admin/core/class-admin-settings.php:787
2136
- msgid "Show social links in profile header"
2137
- msgstr ""
2138
-
2139
- #: includes/admin/core/class-admin-settings.php:789
2140
- msgid "Switch on/off the social links on profile header"
2141
- msgstr ""
2142
-
2143
- #: includes/admin/core/class-admin-settings.php:794
2144
- msgid "Show user description in header"
2145
- msgstr ""
2146
-
2147
- #: includes/admin/core/class-admin-settings.php:796
2148
- msgid "Switch on/off the user description on profile header"
2149
- msgstr ""
2150
-
2151
- #: includes/admin/core/class-admin-settings.php:801
2152
- msgid "Enable html support for user description"
2153
- msgstr ""
2154
-
2155
- #: includes/admin/core/class-admin-settings.php:803
2156
- msgid ""
2157
- "Switch on/off to enable/disable support for html tags on user description."
2158
- msgstr ""
2159
-
2160
- #: includes/admin/core/class-admin-settings.php:808
2161
- msgid "User description maximum chars"
2162
- msgstr ""
2163
-
2164
- #: includes/admin/core/class-admin-settings.php:810
2165
- msgid ""
2166
- "Maximum number of characters to allow in user description field in header."
2167
- msgstr ""
2168
-
2169
- #: includes/admin/core/class-admin-settings.php:817
2170
- msgid "Profile Header Menu Position"
2171
- msgstr ""
2172
-
2173
- #: includes/admin/core/class-admin-settings.php:819
2174
- msgid ""
2175
- "For incompatible themes, please make the menu open from left instead of "
2176
- "bottom by default."
2177
- msgstr ""
2178
-
2179
- #: includes/admin/core/class-admin-settings.php:829
2180
- msgid "Show a custom message if profile is empty"
2181
- msgstr ""
2182
-
2183
- #: includes/admin/core/class-admin-settings.php:831
2184
- msgid "Switch on/off the custom message that appears when the profile is empty"
2185
- msgstr ""
2186
-
2187
- #: includes/admin/core/class-admin-settings.php:836
2188
- msgid "Show the emoticon"
2189
- msgstr ""
2190
-
2191
- #: includes/admin/core/class-admin-settings.php:838
2192
- msgid "Switch on/off the emoticon (sad face) that appears above the message"
2193
- msgstr ""
2194
-
2195
- #: includes/admin/core/class-admin-settings.php:844
2196
- msgid "Profile Menu"
2197
- msgstr ""
2198
-
2199
- #: includes/admin/core/class-admin-settings.php:848
2200
- #: includes/admin/templates/form/mode.php:9
2201
- msgid "Registration Form"
2202
- msgstr ""
2203
-
2204
- #: includes/admin/core/class-admin-settings.php:853
2205
- msgid "Registration Default Template"
2206
- msgstr ""
2207
-
2208
- #: includes/admin/core/class-admin-settings.php:854
2209
- msgid "This will be the default template to output registration"
2210
- msgstr ""
2211
-
2212
- #: includes/admin/core/class-admin-settings.php:862
2213
- msgid "Registration Maximum Width"
2214
- msgstr ""
2215
-
2216
- #: includes/admin/core/class-admin-settings.php:864
2217
- #: includes/admin/core/class-admin-settings.php:954
2218
- msgid "The maximum width this shortcode can take from the page width"
2219
- msgstr ""
2220
-
2221
- #: includes/admin/core/class-admin-settings.php:870
2222
- msgid "Registration Shortcode Alignment"
2223
- msgstr ""
2224
-
2225
- #: includes/admin/core/class-admin-settings.php:871
2226
- #: includes/admin/core/class-admin-settings.php:961
2227
- #: includes/admin/templates/form/profile_customize.php:115
2228
- msgid "The shortcode is centered by default unless you specify otherwise here"
2229
- msgstr ""
2230
-
2231
- #: includes/admin/core/class-admin-settings.php:874
2232
- #: includes/admin/core/class-admin-settings.php:964
2233
- msgid "Centered"
2234
- msgstr ""
2235
-
2236
- #: includes/admin/core/class-admin-settings.php:875
2237
- #: includes/admin/core/class-admin-settings.php:965
2238
- msgid "Left aligned"
2239
- msgstr ""
2240
-
2241
- #: includes/admin/core/class-admin-settings.php:876
2242
- #: includes/admin/core/class-admin-settings.php:966
2243
- msgid "Right aligned"
2244
- msgstr ""
2245
-
2246
- #: includes/admin/core/class-admin-settings.php:883
2247
- msgid "Registration Field Icons"
2248
- msgstr ""
2249
-
2250
- #: includes/admin/core/class-admin-settings.php:884
2251
- msgid "This controls the display of field icons in the registration form"
2252
- msgstr ""
2253
-
2254
- #: includes/admin/core/class-admin-settings.php:896
2255
- msgid "Registration Primary Button Text"
2256
- msgstr ""
2257
-
2258
- #: includes/admin/core/class-admin-settings.php:898
2259
- #: includes/admin/core/class-admin-settings.php:988
2260
- msgid "The text that is used for primary button text"
2261
- msgstr ""
2262
-
2263
- #: includes/admin/core/class-admin-settings.php:904
2264
- msgid "Registration Secondary Button"
2265
- msgstr ""
2266
-
2267
- #: includes/admin/core/class-admin-settings.php:911
2268
- msgid "Registration Secondary Button Text"
2269
- msgstr ""
2270
-
2271
- #: includes/admin/core/class-admin-settings.php:913
2272
- #: includes/admin/core/class-admin-settings.php:1003
2273
- msgid "The text that is used for the secondary button text"
2274
- msgstr ""
2275
-
2276
- #: includes/admin/core/class-admin-settings.php:920
2277
- msgid "Registration Secondary Button URL"
2278
- msgstr ""
2279
-
2280
- #: includes/admin/core/class-admin-settings.php:922
2281
- #: includes/admin/core/class-admin-settings.php:1012
2282
- msgid "You can replace default link for this button by entering custom URL"
2283
- msgstr ""
2284
-
2285
- #: includes/admin/core/class-admin-settings.php:929
2286
- msgid "Registration Default Role"
2287
- msgstr ""
2288
-
2289
- #: includes/admin/core/class-admin-settings.php:930
2290
- msgid ""
2291
- "This will be the default role assigned to users registering thru "
2292
- "registration form"
2293
- msgstr ""
2294
-
2295
- #: includes/admin/core/class-admin-settings.php:938
2296
- #: includes/admin/templates/form/mode.php:13
2297
- msgid "Login Form"
2298
- msgstr ""
2299
-
2300
- #: includes/admin/core/class-admin-settings.php:943
2301
- msgid "Login Default Template"
2302
- msgstr ""
2303
-
2304
- #: includes/admin/core/class-admin-settings.php:944
2305
- msgid "This will be the default template to output login"
2306
- msgstr ""
2307
-
2308
- #: includes/admin/core/class-admin-settings.php:952
2309
- msgid "Login Maximum Width"
2310
- msgstr ""
2311
-
2312
- #: includes/admin/core/class-admin-settings.php:960
2313
- msgid "Login Shortcode Alignment"
2314
- msgstr ""
2315
-
2316
- #: includes/admin/core/class-admin-settings.php:973
2317
- msgid "Login Field Icons"
2318
- msgstr ""
2319
-
2320
- #: includes/admin/core/class-admin-settings.php:974
2321
- msgid "This controls the display of field icons in the login form"
2322
- msgstr ""
2323
-
2324
- #: includes/admin/core/class-admin-settings.php:986
2325
- msgid "Login Primary Button Text"
2326
- msgstr ""
2327
-
2328
- #: includes/admin/core/class-admin-settings.php:994
2329
- msgid "Login Secondary Button"
2330
- msgstr ""
2331
-
2332
- #: includes/admin/core/class-admin-settings.php:1001
2333
- msgid "Login Secondary Button Text"
2334
- msgstr ""
2335
-
2336
- #: includes/admin/core/class-admin-settings.php:1010
2337
- msgid "Login Secondary Button URL"
2338
- msgstr ""
2339
-
2340
- #: includes/admin/core/class-admin-settings.php:1019
2341
- msgid "Login Forgot Password Link"
2342
- msgstr ""
2343
-
2344
- #: includes/admin/core/class-admin-settings.php:1021
2345
- msgid "Switch on/off the forgot password link in login form"
2346
- msgstr ""
2347
-
2348
- #: includes/admin/core/class-admin-settings.php:1026
2349
- msgid "Show \"Remember Me\""
2350
- msgstr ""
2351
-
2352
- #: includes/admin/core/class-admin-settings.php:1028
2353
- msgid ""
2354
- "Allow users to choose If they want to stay signed in even after closing the "
2355
- "browser. If you do not show this option, the default will be to not remember "
2356
- "login session."
2357
- msgstr ""
2358
-
2359
- #: includes/admin/core/class-admin-settings.php:1038
2360
- msgid "Licenses"
2361
- msgstr ""
2362
-
2363
- #: includes/admin/core/class-admin-settings.php:1041
2364
- msgid "Misc"
2365
- msgstr ""
2366
-
2367
- #: includes/admin/core/class-admin-settings.php:1046
2368
- msgid "Show an asterisk for required fields"
2369
- msgstr ""
2370
-
2371
- #: includes/admin/core/class-admin-settings.php:1051
2372
- msgid "User Profile Title"
2373
- msgstr ""
2374
-
2375
- #: includes/admin/core/class-admin-settings.php:1052
2376
- msgid "This is the title that is displayed on a specific user profile"
2377
- msgstr ""
2378
-
2379
- #: includes/admin/core/class-admin-settings.php:1058
2380
- msgid "User Profile Dynamic Meta Description"
2381
- msgstr ""
2382
-
2383
- #: includes/admin/core/class-admin-settings.php:1059
2384
- msgid ""
2385
- "This will be used in the meta description that is available for search-"
2386
- "engines."
2387
- msgstr ""
2388
-
2389
- #: includes/admin/core/class-admin-settings.php:1067
2390
- msgid "Disable Cache User Profile"
2391
- msgstr ""
2392
-
2393
- #: includes/admin/core/class-admin-settings.php:1068
2394
- msgid ""
2395
- "Check this box if you would like to disable Ultimate Member user's cache."
2396
- msgstr ""
2397
-
2398
- #: includes/admin/core/class-admin-settings.php:1073
2399
- msgid "Enable Gutenberg Blocks"
2400
- msgstr ""
2401
-
2402
- #: includes/admin/core/class-admin-settings.php:1074
2403
- msgid ""
2404
- "Check this box if you would like to use Ultimate Member blocks in Gutenberg "
2405
- "editor. Important some themes have the conflicts with Gutenberg editor."
2406
- msgstr ""
2407
-
2408
- #: includes/admin/core/class-admin-settings.php:1079
2409
- msgid "REST API version"
2410
- msgstr ""
2411
-
2412
- #: includes/admin/core/class-admin-settings.php:1080
2413
- msgid ""
2414
- "This controls the REST API version, we recommend to use the last version"
2415
- msgstr ""
2416
-
2417
- #: includes/admin/core/class-admin-settings.php:1082
2418
- msgid "1.0 version"
2419
- msgstr ""
2420
-
2421
- #: includes/admin/core/class-admin-settings.php:1083
2422
- msgid "2.0 version"
2423
- msgstr ""
2424
-
2425
- #: includes/admin/core/class-admin-settings.php:1089
2426
- msgid "Remove Data on Uninstall?"
2427
- msgstr ""
2428
-
2429
- #: includes/admin/core/class-admin-settings.php:1090
2430
- msgid ""
2431
- "Check this box if you would like Ultimate Member to completely remove all of "
2432
- "its data when the plugin/extensions are deleted."
2433
- msgstr ""
2434
-
2435
- #: includes/admin/core/class-admin-settings.php:1095
2436
- msgid "Install Info"
2437
- msgstr ""
2438
-
2439
- #: includes/admin/core/class-admin-settings.php:1209
2440
- msgid "Ultimate Member - Settings"
2441
- msgstr ""
2442
-
2443
- #: includes/admin/core/class-admin-settings.php:1348
2444
- msgid "Save Changes"
2445
- msgstr ""
2446
-
2447
- #: includes/admin/core/class-admin-settings.php:1792
2448
- msgid "Subject Line"
2449
- msgstr ""
2450
-
2451
- #: includes/admin/core/class-admin-settings.php:1794
2452
- msgid "This is the subject line of the e-mail"
2453
- msgstr ""
2454
-
2455
- #: includes/admin/core/class-admin-settings.php:1799
2456
- msgid "Message Body"
2457
- msgstr ""
2458
-
2459
- #: includes/admin/core/class-admin-settings.php:1801
2460
- msgid "This is the content of the e-mail"
2461
- msgstr ""
2462
-
2463
- #: includes/admin/core/class-admin-settings.php:1851
2464
- #: includes/admin/core/class-admin-settings.php:1949
2465
- #, php-format
2466
- msgid ""
2467
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
2468
- "\">renew your license key</a>."
2469
- msgstr ""
2470
-
2471
- #: includes/admin/core/class-admin-settings.php:1864
2472
- #: includes/admin/core/class-admin-settings.php:1962
2473
- #, php-format
2474
- msgid ""
2475
- "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
2476
- "\">contact support</a> for more information."
2477
- msgstr ""
2478
-
2479
- #: includes/admin/core/class-admin-settings.php:1876
2480
- #: includes/admin/core/class-admin-settings.php:1974
2481
- #, php-format
2482
- msgid ""
2483
- "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
2484
- "page</a> and verify it."
2485
- msgstr ""
2486
-
2487
- #: includes/admin/core/class-admin-settings.php:1889
2488
- #: includes/admin/core/class-admin-settings.php:1987
2489
- #, php-format
2490
- msgid ""
2491
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
2492
- "\">visit your account page</a> to manage your license key URLs."
2493
- msgstr ""
2494
-
2495
- #: includes/admin/core/class-admin-settings.php:1901
2496
- #: includes/admin/core/class-admin-settings.php:1999
2497
- #, php-format
2498
- msgid "This appears to be an invalid license key for %s."
2499
- msgstr ""
2500
-
2501
- #: includes/admin/core/class-admin-settings.php:1910
2502
- #: includes/admin/core/class-admin-settings.php:2008
2503
- #, php-format
2504
- msgid ""
2505
- "Your license key has reached its activation limit. <a href=\"%s\">View "
2506
- "possible upgrades</a> now."
2507
- msgstr ""
2508
-
2509
- #: includes/admin/core/class-admin-settings.php:1919
2510
- #: includes/admin/core/class-admin-settings.php:2017
2511
- msgid ""
2512
- "The key you entered belongs to a bundle, please use the product specific "
2513
- "license key."
2514
- msgstr ""
2515
-
2516
- #: includes/admin/core/class-admin-settings.php:1927
2517
- #: includes/admin/core/class-admin-settings.php:1935
2518
- msgid "unknown_error"
2519
- msgstr ""
2520
-
2521
- #: includes/admin/core/class-admin-settings.php:1928
2522
- #: includes/admin/core/class-admin-settings.php:1936
2523
- #, php-format
2524
- msgid ""
2525
- "There was an error with this license key: %s. Please <a href=\"%s\">contact "
2526
- "our support team</a>."
2527
- msgstr ""
2528
-
2529
- #: includes/admin/core/class-admin-settings.php:2032
2530
- msgid "License key never expires."
2531
- msgstr ""
2532
-
2533
- #: includes/admin/core/class-admin-settings.php:2039
2534
- #, php-format
2535
- msgid ""
2536
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
2537
- "\"_blank\">Renew your license key</a>."
2538
- msgstr ""
2539
-
2540
- #: includes/admin/core/class-admin-settings.php:2049
2541
- #, php-format
2542
- msgid "Your license key expires on %s."
2543
- msgstr ""
2544
-
2545
- #: includes/admin/core/class-admin-settings.php:2067
2546
- #, php-format
2547
- msgid "To receive updates, please enter your valid %s license key."
2548
- msgstr ""
2549
-
2550
- #: includes/admin/core/class-admin-settings.php:2091
2551
- msgid "Clear License"
2552
- msgstr ""
2553
-
2554
- #: includes/admin/core/class-admin-settings.php:2093
2555
- msgid "Activate"
2556
- msgstr ""
2557
-
2558
- #: includes/admin/core/class-admin-settings.php:2095
2559
- msgid "Re-Activate"
2560
- msgstr ""
2561
-
2562
- #: includes/admin/core/class-admin-settings.php:2147
2563
- msgid ""
2564
- "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
2565
- "(Mac)."
2566
- msgstr ""
2567
-
2568
- #: includes/admin/core/class-admin-upgrade.php:130
2569
- #, php-format
2570
- msgid ""
2571
- "%s is a major update, and we highly recommend creating a full backup of your "
2572
- "site before updating."
2573
- msgstr ""
2574
-
2575
- #: includes/admin/core/class-admin-upgrade.php:236
2576
- msgid "Upgrade"
2577
- msgstr ""
2578
-
2579
- #: includes/admin/core/class-admin-upgrade.php:244
2580
- msgid "empty"
2581
- msgstr ""
2582
-
2583
- #: includes/admin/core/class-admin-upgrade.php:247
2584
- #, php-format
2585
- msgid "%s - Upgrade Process"
2586
- msgstr ""
2587
-
2588
- #: includes/admin/core/class-admin-upgrade.php:248
2589
- #, php-format
2590
- msgid ""
2591
- "You have installed %s version. Your latest DB version is %s. Before the "
2592
- "click to \"Run\" button make sure that did the following:"
2593
- msgstr ""
2594
-
2595
- #: includes/admin/core/class-admin-upgrade.php:250
2596
- msgid "Create full site's backup."
2597
- msgstr ""
2598
-
2599
- #: includes/admin/core/class-admin-upgrade.php:251
2600
- msgid "Set maintenance mode (if you need)"
2601
- msgstr ""
2602
-
2603
- #: includes/admin/core/class-admin-upgrade.php:252
2604
- msgid "You have nice Internet connection"
2605
- msgstr ""
2606
-
2607
- #: includes/admin/core/class-admin-upgrade.php:254
2608
- msgid ""
2609
- "After the click to \"Run\" button, the update process will be started. All "
2610
- "information will be displayed in \"Upgrade Log\" field."
2611
- msgstr ""
2612
-
2613
- #: includes/admin/core/class-admin-upgrade.php:255
2614
- msgid ""
2615
- "If the update was successful, you will see a corresponding message. "
2616
- "Otherwise, contact technical support if the update failed."
2617
- msgstr ""
2618
-
2619
- #: includes/admin/core/class-admin-upgrade.php:256
2620
- msgid "Upgrade Log"
2621
- msgstr ""
2622
-
2623
- #: includes/admin/core/class-admin-upgrade.php:259
2624
- msgid "Run"
2625
- msgstr ""
2626
-
2627
- #: includes/admin/core/class-admin-users.php:116
2628
- #: includes/admin/core/class-admin-users.php:119
2629
- msgid "UM Action"
2630
- msgstr ""
2631
-
2632
- #: includes/admin/core/class-admin-users.php:123
2633
- #: includes/core/class-fields.php:2335
2634
- msgid "Apply"
2635
- msgstr ""
2636
-
2637
- #: includes/admin/core/class-admin-users.php:165
2638
- #: includes/core/um-filters-user.php:20 includes/core/um-filters-user.php:25
2639
- msgid "Approve Membership"
2640
- msgstr ""
2641
-
2642
- #: includes/admin/core/class-admin-users.php:168
2643
- #: includes/core/um-filters-user.php:21
2644
- msgid "Reject Membership"
2645
- msgstr ""
2646
-
2647
- #: includes/admin/core/class-admin-users.php:171
2648
- #: includes/core/um-filters-user.php:29
2649
- msgid "Put as Pending Review"
2650
- msgstr ""
2651
-
2652
- #: includes/admin/core/class-admin-users.php:174
2653
- #: includes/core/um-filters-user.php:33
2654
- msgid "Resend Activation E-mail"
2655
- msgstr ""
2656
-
2657
- #: includes/admin/core/class-admin-users.php:177
2658
- msgid "Deactivate"
2659
- msgstr ""
2660
-
2661
- #: includes/admin/core/class-admin-users.php:180
2662
- msgid "Reactivate"
2663
- msgstr ""
2664
-
2665
- #: includes/admin/core/class-admin-users.php:203 templates/account.php:38
2666
- #: templates/account.php:62
2667
- msgid "View profile"
2668
- msgstr ""
2669
-
2670
- #: includes/admin/core/class-admin-users.php:207
2671
- msgid "Info"
2672
- msgstr ""
2673
-
2674
- #: includes/admin/core/class-admin-users.php:312
2675
- #: includes/admin/templates/dashboard/users.php:11
2676
- #: includes/core/class-user.php:825
2677
- msgid "Approved"
2678
- msgstr ""
2679
-
2680
- #: includes/admin/core/class-admin-users.php:313
2681
- msgid "Pending review"
2682
- msgstr ""
2683
-
2684
- #: includes/admin/core/class-admin-users.php:314
2685
- msgid "Waiting e-mail confirmation"
2686
- msgstr ""
2687
-
2688
- #: includes/admin/core/class-admin-users.php:315
2689
- #: includes/admin/templates/dashboard/users.php:37
2690
- msgid "Inactive"
2691
- msgstr ""
2692
-
2693
- #: includes/admin/core/class-admin-users.php:316
2694
- #: includes/admin/templates/dashboard/users.php:16
2695
- msgid "Rejected"
2696
- msgstr ""
2697
-
2698
- #: includes/admin/core/class-admin-users.php:376
2699
- msgid "You do not have enough permissions to do that."
2700
- msgstr ""
2701
-
2702
- #: includes/admin/core/list-tables/emails-list-table.php:70
2703
- #: includes/admin/core/list-tables/roles-list-table.php:172
2704
- msgid "item"
2705
- msgstr ""
2706
-
2707
- #: includes/admin/core/list-tables/emails-list-table.php:71
2708
- #: includes/admin/core/list-tables/roles-list-table.php:173
2709
- msgid "items"
2710
- msgstr ""
2711
-
2712
- #: includes/admin/core/list-tables/emails-list-table.php:75
2713
- #: includes/admin/core/list-tables/roles-list-table.php:177
2714
- msgid "not found."
2715
- msgstr ""
2716
-
2717
- #: includes/admin/core/list-tables/emails-list-table.php:237
2718
- msgid "Member"
2719
- msgstr ""
2720
-
2721
- #: includes/admin/core/list-tables/emails-list-table.php:270
2722
- msgid "Email Notification"
2723
- msgstr ""
2724
-
2725
- #: includes/admin/core/list-tables/emails-list-table.php:271
2726
- msgid "Email Notifications"
2727
- msgstr ""
2728
-
2729
- #: includes/admin/core/list-tables/emails-list-table.php:301
2730
- msgid "Recipient(s)"
2731
- msgstr ""
2732
-
2733
- #: includes/admin/core/list-tables/emails-list-table.php:314
2734
- #, php-format
2735
- msgid ""
2736
- "You may get more details about email notifications customization <a href=\"%s"
2737
- "\">here</a>"
2738
- msgstr ""
2739
-
2740
- #: includes/admin/core/list-tables/roles-list-table.php:23
2741
- #: includes/admin/core/list-tables/roles-list-table.php:88
2742
- #: includes/admin/core/list-tables/roles-list-table.php:398
2743
- msgid "Roles"
2744
- msgstr ""
2745
-
2746
- #: includes/admin/core/list-tables/roles-list-table.php:335
2747
- msgid "Edit"
2748
- msgstr ""
2749
-
2750
- #: includes/admin/core/list-tables/roles-list-table.php:338
2751
- msgid "Are you sure you want to delete this role?"
2752
- msgstr ""
2753
-
2754
- #: includes/admin/core/list-tables/roles-list-table.php:343
2755
- msgid "Are you sure you want to reset UM role meta?"
2756
- msgstr ""
2757
-
2758
- #: includes/admin/core/list-tables/roles-list-table.php:343
2759
- msgid "Reset UM Role meta"
2760
- msgstr ""
2761
-
2762
- #: includes/admin/core/list-tables/roles-list-table.php:397
2763
- msgid "Role"
2764
- msgstr ""
2765
-
2766
- #: includes/admin/core/list-tables/roles-list-table.php:410
2767
- msgid "Role Title"
2768
- msgstr ""
2769
-
2770
- #: includes/admin/core/list-tables/roles-list-table.php:411
2771
- msgid "Role ID"
2772
- msgstr ""
2773
-
2774
- #: includes/admin/core/list-tables/roles-list-table.php:412
2775
- msgid "No.of Members"
2776
- msgstr ""
2777
-
2778
- #: includes/admin/core/list-tables/roles-list-table.php:413
2779
- msgid "UM Custom Role"
2780
- msgstr ""
2781
-
2782
- #: includes/admin/core/list-tables/roles-list-table.php:414
2783
- msgid "WP-Admin Access"
2784
- msgstr ""
2785
-
2786
- #: includes/admin/core/list-tables/roles-list-table.php:415
2787
- msgid "Priority"
2788
- msgstr ""
2789
-
2790
- #: includes/admin/core/list-tables/roles-list-table.php:479
2791
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:14
2792
- #: includes/admin/templates/role/role-edit.php:149
2793
- #: includes/core/class-common.php:56 includes/core/class-common.php:86
2794
- msgid "Add New"
2795
- msgstr ""
2796
-
2797
- #: includes/admin/core/list-tables/roles-list-table.php:486
2798
- msgid "User Role <strong>Deleted</strong> Successfully."
2799
- msgstr ""
2800
-
2801
- #: includes/admin/core/packages/2.0-beta1/functions.php:8
2802
- #: includes/admin/core/packages/2.0.10/functions.php:8
2803
- msgid "Styles was upgraded successfully"
2804
- msgstr ""
2805
-
2806
- #: includes/admin/core/packages/2.0-beta1/functions.php:21
2807
- msgid "User Roles was upgraded successfully"
2808
- msgstr ""
2809
-
2810
- #: includes/admin/core/packages/2.0-beta1/functions.php:89
2811
- #, php-format
2812
- msgid "Users from %s to %s was upgraded successfully..."
2813
- msgstr ""
2814
-
2815
- #: includes/admin/core/packages/2.0-beta1/functions.php:113
2816
- msgid "Settings was upgraded successfully"
2817
- msgstr ""
2818
-
2819
- #: includes/admin/core/packages/2.0-beta1/functions.php:123
2820
- msgid "Menus settings was upgraded successfully"
2821
- msgstr ""
2822
-
2823
- #: includes/admin/core/packages/2.0-beta1/functions.php:133
2824
- msgid "Mailchimp Lists was upgraded successfully"
2825
- msgstr ""
2826
-
2827
- #: includes/admin/core/packages/2.0-beta1/functions.php:143
2828
- msgid "Social login forms was upgraded successfully"
2829
- msgstr ""
2830
-
2831
- #: includes/admin/core/packages/2.0-beta1/functions.php:153
2832
- msgid "UM Custom Posts was upgraded successfully"
2833
- msgstr ""
2834
-
2835
- #: includes/admin/core/packages/2.0-beta1/functions.php:170
2836
- msgid "Forums are ready for upgrade"
2837
- msgstr ""
2838
-
2839
- #: includes/admin/core/packages/2.0-beta1/functions.php:225
2840
- #, php-format
2841
- msgid "Forums from %s to %s was upgraded successfully..."
2842
- msgstr ""
2843
-
2844
- #: includes/admin/core/packages/2.0-beta1/functions.php:243
2845
- msgid "Woocommerce Products are ready for upgrade"
2846
- msgstr ""
2847
-
2848
- #: includes/admin/core/packages/2.0-beta1/functions.php:319
2849
- #, php-format
2850
- msgid "Woocommerce Products from %s to %s was upgraded successfully..."
2851
- msgstr ""
2852
-
2853
- #: includes/admin/core/packages/2.0-beta1/functions.php:337
2854
- msgid "Email Templates was upgraded successfully"
2855
- msgstr ""
2856
-
2857
- #: includes/admin/core/packages/2.0-beta1/init.php:13
2858
- #: includes/admin/core/packages/2.0.10/init.php:6
2859
- msgid "Upgrade Styles..."
2860
- msgstr ""
2861
-
2862
- #: includes/admin/core/packages/2.0-beta1/init.php:38
2863
- msgid "Upgrade Roles..."
2864
- msgstr ""
2865
-
2866
- #: includes/admin/core/packages/2.0-beta1/init.php:52
2867
- msgid "Upgrade Users..."
2868
- msgstr ""
2869
-
2870
- #: includes/admin/core/packages/2.0-beta1/init.php:73
2871
- msgid "Getting "
2872
- msgstr ""
2873
-
2874
- #: includes/admin/core/packages/2.0-beta1/init.php:73
2875
- #: includes/admin/core/packages/2.0-beta1/init.php:85
2876
- msgid " users..."
2877
- msgstr ""
2878
-
2879
- #: includes/admin/core/packages/2.0-beta1/init.php:85
2880
- msgid "There are "
2881
- msgstr ""
2882
-
2883
- #: includes/admin/core/packages/2.0-beta1/init.php:86
2884
- msgid "Start users upgrading..."
2885
- msgstr ""
2886
-
2887
- #: includes/admin/core/packages/2.0-beta1/init.php:139
2888
- msgid "Upgrade Content Restriction Settings..."
2889
- msgstr ""
2890
-
2891
- #: includes/admin/core/packages/2.0-beta1/init.php:165
2892
- msgid "Upgrade Settings..."
2893
- msgstr ""
2894
-
2895
- #: includes/admin/core/packages/2.0-beta1/init.php:191
2896
- msgid "Upgrade Menu Items..."
2897
- msgstr ""
2898
-
2899
- #: includes/admin/core/packages/2.0-beta1/init.php:217
2900
- msgid "Upgrade Mailchimp Lists..."
2901
- msgstr ""
2902
-
2903
- #: includes/admin/core/packages/2.0-beta1/init.php:243
2904
- msgid "Upgrade Social Login Forms..."
2905
- msgstr ""
2906
-
2907
- #: includes/admin/core/packages/2.0-beta1/init.php:269
2908
- msgid "Upgrade UM Custom Post Types..."
2909
- msgstr ""
2910
-
2911
- #: includes/admin/core/packages/2.0-beta1/init.php:295
2912
- msgid "Upgrade bbPress Forums..."
2913
- msgstr ""
2914
-
2915
- #: includes/admin/core/packages/2.0-beta1/init.php:296
2916
- msgid "Get bbPress Forums count..."
2917
- msgstr ""
2918
-
2919
- #: includes/admin/core/packages/2.0-beta1/init.php:355
2920
- msgid "Upgrade Woocommerce Products..."
2921
- msgstr ""
2922
-
2923
- #: includes/admin/core/packages/2.0-beta1/init.php:356
2924
- msgid "Get all Products..."
2925
- msgstr ""
2926
-
2927
- #: includes/admin/core/packages/2.0-beta1/init.php:417
2928
- msgid "Upgrade Email Templates..."
2929
- msgstr ""
2930
-
2931
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:13
2932
- msgid "User Role"
2933
- msgstr ""
2934
-
2935
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:15
2936
- msgid "Add New User Role"
2937
- msgstr ""
2938
-
2939
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:16
2940
- msgid "Edit User Role"
2941
- msgstr ""
2942
-
2943
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:17
2944
- msgid "You did not create any user roles yet"
2945
- msgstr ""
2946
-
2947
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:18
2948
- #: includes/core/class-common.php:60 includes/core/class-common.php:90
2949
- msgid "Nothing found in Trash"
2950
- msgstr ""
2951
-
2952
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:19
2953
- msgid "Search User Roles"
2954
- msgstr ""
2955
-
2956
- #: includes/admin/core/packages/2.0.10/functions.php:21
2957
- msgid "Users cache was cleared successfully"
2958
- msgstr ""
2959
-
2960
- #: includes/admin/core/packages/2.0.10/init.php:32
2961
- msgid "Clear Users Cache..."
2962
- msgstr ""
2963
-
2964
- #: includes/admin/core/packages/2.0.24/functions.php:11
2965
- msgid "Temporary dir was purged successfully"
2966
- msgstr ""
2967
-
2968
- #: includes/admin/core/packages/2.0.24/init.php:6
2969
- msgid "Purge temp files dir..."
2970
- msgstr ""
2971
-
2972
- #: includes/admin/core/packages/2.0.44/functions.php:13
2973
- msgid "Field was upgraded successfully"
2974
- msgstr ""
2975
-
2976
- #: includes/admin/core/packages/2.0.44/init.php:7
2977
- msgid "Upgrade predefined metafields..."
2978
- msgstr ""
2979
-
2980
- #: includes/admin/templates/dashboard/cache.php:9
2981
- msgid "Run this task from time to time to keep your DB clean."
2982
- msgstr ""
2983
-
2984
- #: includes/admin/templates/dashboard/cache.php:12
2985
- #, php-format
2986
- msgid "Clear cache of %s users"
2987
- msgstr ""
2988
-
2989
- #: includes/admin/templates/dashboard/feed.php:4
2990
- msgid "Latest From Ultimate Member"
2991
- msgstr ""
2992
-
2993
- #: includes/admin/templates/dashboard/purge.php:4
2994
- #, php-format
2995
- msgid ""
2996
- "You can free up <span class=\"red\">%s MB</span> by purging your temp upload "
2997
- "directory."
2998
- msgstr ""
2999
-
3000
- #: includes/admin/templates/dashboard/purge.php:9
3001
- msgid "Purge Temp"
3002
- msgstr ""
3003
-
3004
- #: includes/admin/templates/dashboard/purge.php:16
3005
- msgid ""
3006
- "Your temp uploads directory is <span class=\"ok\">clean</span>. There is "
3007
- "nothing to purge."
3008
- msgstr ""
3009
-
3010
- #: includes/admin/templates/dashboard/upgrade-request.php:1
3011
- msgid ""
3012
- "Run this task from time to time if you have issues with WP Cron and need to "
3013
- "get UM extension updates."
3014
- msgstr ""
3015
-
3016
- #: includes/admin/templates/dashboard/upgrade-request.php:4
3017
- msgid "Get latest versions"
3018
- msgstr ""
3019
-
3020
- #: includes/admin/templates/dashboard/users.php:27
3021
- #: includes/core/class-user.php:833
3022
- msgid "Pending Review"
3023
- msgstr ""
3024
-
3025
- #: includes/admin/templates/dashboard/users.php:32
3026
- #: includes/core/class-user.php:829
3027
- msgid "Awaiting E-mail Confirmation"
3028
- msgstr ""
3029
-
3030
- #: includes/admin/templates/directory/appearance.php:9
3031
- #: includes/admin/templates/form/login_customize.php:20
3032
- #: includes/admin/templates/form/profile_customize.php:39
3033
- #: includes/admin/templates/form/register_customize.php:35
3034
- msgid "Template"
3035
- msgstr ""
3036
-
3037
- #: includes/admin/templates/directory/general.php:46
3038
- msgid "New users first"
3039
- msgstr ""
3040
-
3041
- #: includes/admin/templates/directory/general.php:47
3042
- msgid "Old users first"
3043
- msgstr ""
3044
-
3045
- #: includes/admin/templates/directory/general.php:48
3046
- msgid "Last login"
3047
- msgstr ""
3048
-
3049
- #: includes/admin/templates/directory/general.php:49
3050
- msgid "Display Name"
3051
- msgstr ""
3052
-
3053
- #: includes/admin/templates/directory/general.php:50
3054
- #: includes/core/class-builtin.php:712 includes/core/class-builtin.php:715
3055
- msgid "First Name"
3056
- msgstr ""
3057
-
3058
- #: includes/admin/templates/directory/general.php:51
3059
- #: includes/core/class-builtin.php:722 includes/core/class-builtin.php:725
3060
- msgid "Last Name"
3061
- msgstr ""
3062
-
3063
- #: includes/admin/templates/directory/general.php:52
3064
- msgid "Random"
3065
- msgstr ""
3066
-
3067
- #: includes/admin/templates/directory/general.php:53
3068
- msgid "Other (custom field)"
3069
- msgstr ""
3070
-
3071
- #: includes/admin/templates/directory/general.php:65
3072
- msgid "User Roles to Display"
3073
- msgstr ""
3074
-
3075
- #: includes/admin/templates/directory/general.php:66
3076
- msgid ""
3077
- "If you do not want to show all members, select only user roles to appear in "
3078
- "this directory"
3079
- msgstr ""
3080
-
3081
- #: includes/admin/templates/directory/general.php:74
3082
- msgid "Only show members who have uploaded a profile photo"
3083
- msgstr ""
3084
-
3085
- #: includes/admin/templates/directory/general.php:75
3086
- msgid "If 'Use Gravatars' as profile photo is enabled, this option is ignored"
3087
- msgstr ""
3088
-
3089
- #: includes/admin/templates/directory/general.php:81
3090
- msgid "Only show members who have uploaded a cover photo"
3091
- msgstr ""
3092
-
3093
- #: includes/admin/templates/directory/general.php:87
3094
- msgid "Sort users by"
3095
- msgstr ""
3096
-
3097
- #: includes/admin/templates/directory/general.php:88
3098
- msgid "Sort users by a specific parameter in the directory"
3099
- msgstr ""
3100
-
3101
- #: includes/admin/templates/directory/general.php:95
3102
- msgid "Meta key"
3103
- msgstr ""
3104
-
3105
- #: includes/admin/templates/directory/general.php:96
3106
- msgid "To sort by a custom field, enter the meta key of field here"
3107
- msgstr ""
3108
-
3109
- #: includes/admin/templates/directory/general.php:103
3110
- msgid "Only show specific users (Enter one username per line)"
3111
- msgstr ""
3112
-
3113
- #: includes/admin/templates/directory/pagination.php:9
3114
- msgid "Number of profiles per page"
3115
- msgstr ""
3116
-
3117
- #: includes/admin/templates/directory/pagination.php:10
3118
- msgid "Number of profiles to appear on page for standard users"
3119
- msgstr ""
3120
-
3121
- #: includes/admin/templates/directory/pagination.php:17
3122
- msgid "Number of profiles per page (for Mobiles & Tablets)"
3123
- msgstr ""
3124
-
3125
- #: includes/admin/templates/directory/pagination.php:18
3126
- msgid "Number of profiles to appear on page for mobile users"
3127
- msgstr ""
3128
-
3129
- #: includes/admin/templates/directory/pagination.php:25
3130
- msgid "Maximum number of profiles"
3131
- msgstr ""
3132
-
3133
- #: includes/admin/templates/directory/pagination.php:26
3134
- msgid ""
3135
- "Use this setting to control the maximum number of profiles to appear in this "
3136
- "directory. Leave blank to disable this limit"
3137
- msgstr ""
3138
-
3139
- #: includes/admin/templates/directory/profile.php:19
3140
- msgid "Enable Profile Photo"
3141
- msgstr ""
3142
-
3143
- #: includes/admin/templates/directory/profile.php:25
3144
- msgid "Enable Cover Photo"
3145
- msgstr ""
3146
-
3147
- #: includes/admin/templates/directory/profile.php:26
3148
- msgid "If turned on, the users cover photo will appear in the directory"
3149
- msgstr ""
3150
-
3151
- #: includes/admin/templates/directory/profile.php:32
3152
- msgid "Show display name"
3153
- msgstr ""
3154
-
3155
- #: includes/admin/templates/directory/profile.php:38
3156
- msgid "Show tagline below profile name"
3157
- msgstr ""
3158
-
3159
- #: includes/admin/templates/directory/profile.php:44
3160
- msgid "Choose field(s) to display in tagline"
3161
- msgstr ""
3162
-
3163
- #: includes/admin/templates/directory/profile.php:47
3164
- #: includes/admin/templates/directory/profile.php:69
3165
- #: includes/admin/templates/directory/search.php:78
3166
- msgid "Add New Custom Field"
3167
- msgstr ""
3168
-
3169
- #: includes/admin/templates/directory/profile.php:54
3170
- msgid "Show extra user information below tagline?"
3171
- msgstr ""
3172
-
3173
- #: includes/admin/templates/directory/profile.php:60
3174
- msgid "Enable reveal section transition by default"
3175
- msgstr ""
3176
-
3177
- #: includes/admin/templates/directory/profile.php:67
3178
- msgid "Choose field(s) to display in reveal section"
3179
- msgstr ""
3180
-
3181
- #: includes/admin/templates/directory/profile.php:77
3182
- msgid "Show social connect icons"
3183
- msgstr ""
3184
-
3185
- #: includes/admin/templates/directory/search.php:49
3186
- msgid "Enable Search feature"
3187
- msgstr ""
3188
-
3189
- #: includes/admin/templates/directory/search.php:50
3190
- msgid "If turned on, users will be able to search members in this directory"
3191
- msgstr ""
3192
-
3193
- #: includes/admin/templates/directory/search.php:56
3194
- msgid "Show results only after search"
3195
- msgstr ""
3196
-
3197
- #: includes/admin/templates/directory/search.php:57
3198
- msgid "If turned on, member results will only appear after search is performed"
3199
- msgstr ""
3200
-
3201
- #: includes/admin/templates/directory/search.php:65
3202
- msgid "User Roles that can use search"
3203
- msgstr ""
3204
-
3205
- #: includes/admin/templates/directory/search.php:66
3206
- msgid "If you want to allow specific user roles to be able to search only"
3207
- msgstr ""
3208
-
3209
- #: includes/admin/templates/directory/search.php:74
3210
- msgid "Choose field(s) to enable in search"
3211
- msgstr ""
3212
-
3213
- #: includes/admin/templates/directory/search.php:84
3214
- msgid "Additional search filters"
3215
- msgstr ""
3216
-
3217
- #: includes/admin/templates/directory/search.php:85
3218
- msgid "Additional search filters like URL parameters"
3219
- msgstr ""
3220
-
3221
- #: includes/admin/templates/directory/search.php:93
3222
- msgid "Results Text"
3223
- msgstr ""
3224
-
3225
- #: includes/admin/templates/directory/search.php:94
3226
- msgid ""
3227
- "Customize the search result text . e.g. Found 3,000 Members. Leave this "
3228
- "blank to not show result text"
3229
- msgstr ""
3230
-
3231
- #: includes/admin/templates/directory/search.php:95
3232
- #: includes/class-config.php:155 includes/class-config.php:250
3233
- msgid "{total_users} Members"
3234
- msgstr ""
3235
-
3236
- #: includes/admin/templates/directory/search.php:101
3237
- msgid "Single Result Text"
3238
- msgstr ""
3239
-
3240
- #: includes/admin/templates/directory/search.php:102
3241
- msgid "Same as above but in case of 1 user found only"
3242
- msgstr ""
3243
-
3244
- #: includes/admin/templates/directory/search.php:103
3245
- #: includes/class-config.php:156 includes/class-config.php:251
3246
- msgid "{total_users} Member"
3247
- msgstr ""
3248
-
3249
- #: includes/admin/templates/directory/search.php:109
3250
- msgid "Custom text if no users were found"
3251
- msgstr ""
3252
-
3253
- #: includes/admin/templates/directory/search.php:110
3254
- msgid ""
3255
- "This is the text that is displayed if no users are found during a search"
3256
- msgstr ""
3257
-
3258
- #: includes/admin/templates/directory/search.php:111
3259
- #: includes/class-config.php:157
3260
- msgid "We are sorry. We cannot find any users who match your search criteria."
3261
- msgstr ""
3262
-
3263
- #: includes/admin/templates/extensions.php:166
3264
- msgid ""
3265
- "<strong>All Access Pass</strong> – Get access to all Ultimate Member "
3266
- "extensions at a significant discount with our All Access Pass."
3267
- msgstr ""
3268
-
3269
- #: includes/admin/templates/extensions.php:170
3270
- msgid "View Pricing"
3271
- msgstr ""
3272
-
3273
- #: includes/admin/templates/extensions.php:179
3274
- msgid "Premium"
3275
- msgstr ""
3276
-
3277
- #: includes/admin/templates/extensions.php:184
3278
- msgid "Free"
3279
- msgstr ""
3280
-
3281
- #: includes/admin/templates/extensions.php:210
3282
- #: includes/admin/templates/extensions.php:244
3283
- msgid "Get this Add on"
3284
- msgstr ""
3285
-
3286
- #: includes/admin/templates/extensions.php:215
3287
- #: includes/admin/templates/extensions.php:249
3288
- msgid "More Details"
3289
- msgstr ""
3290
-
3291
- #: includes/admin/templates/form/builder.php:9
3292
- msgid "Live Preview"
3293
- msgstr ""
3294
-
3295
- #: includes/admin/templates/form/builder.php:23
3296
- msgid "Add Master Row"
3297
- msgstr ""
3298
-
3299
- #: includes/admin/templates/form/login_customize.php:9
3300
- #: includes/admin/templates/form/profile_customize.php:18
3301
- #: includes/admin/templates/form/register_customize.php:16
3302
- msgid "Apply custom settings to this form"
3303
- msgstr ""
3304
-
3305
- #: includes/admin/templates/form/login_customize.php:10
3306
- #: includes/admin/templates/form/profile_customize.php:19
3307
- #: includes/admin/templates/form/register_customize.php:17
3308
- msgid ""
3309
- "Switch to yes if you want to customize this form settings, styling &amp; "
3310
- "appearance"
3311
- msgstr ""
3312
-
3313
- #: includes/admin/templates/form/login_customize.php:28
3314
- #: includes/admin/templates/form/profile_customize.php:47
3315
- #: includes/admin/templates/form/register_customize.php:43
3316
- msgid "Max. Width (px)"
3317
- msgstr ""
3318
-
3319
- #: includes/admin/templates/form/login_customize.php:29
3320
- #: includes/admin/templates/form/profile_customize.php:48
3321
- #: includes/admin/templates/form/register_customize.php:44
3322
- msgid "The maximum width of shortcode in pixels e.g. 600px"
3323
- msgstr ""
3324
-
3325
- #: includes/admin/templates/form/login_customize.php:36
3326
- #: includes/admin/templates/form/profile_customize.php:63
3327
- #: includes/admin/templates/form/register_customize.php:51
3328
- msgid "Field Icons"
3329
- msgstr ""
3330
-
3331
- #: includes/admin/templates/form/login_customize.php:37
3332
- #: includes/admin/templates/form/profile_customize.php:64
3333
- #: includes/admin/templates/form/register_customize.php:52
3334
- msgid ""
3335
- "Whether to show field icons and where to show them relative to the field"
3336
- msgstr ""
3337
-
3338
- #: includes/admin/templates/form/login_customize.php:49
3339
- #: includes/admin/templates/form/profile_customize.php:76
3340
- #: includes/admin/templates/form/register_customize.php:64
3341
- msgid "Primary Button Text"
3342
- msgstr ""
3343
-
3344
- #: includes/admin/templates/form/login_customize.php:50
3345
- #: includes/admin/templates/form/login_customize.php:69
3346
- #: includes/admin/templates/form/profile_customize.php:77
3347
- #: includes/admin/templates/form/profile_customize.php:96
3348
- #: includes/admin/templates/form/register_customize.php:65
3349
- #: includes/admin/templates/form/register_customize.php:84
3350
- msgid "Customize the button text"
3351
- msgstr ""
3352
-
3353
- #: includes/admin/templates/form/login_customize.php:57
3354
- #: includes/admin/templates/form/profile_customize.php:84
3355
- #: includes/admin/templates/form/register_customize.php:72
3356
- msgid "Show Secondary Button"
3357
- msgstr ""
3358
-
3359
- #: includes/admin/templates/form/login_customize.php:68
3360
- #: includes/admin/templates/form/profile_customize.php:95
3361
- #: includes/admin/templates/form/register_customize.php:83
3362
- msgid "Secondary Button Text"
3363
- msgstr ""
3364
-
3365
- #: includes/admin/templates/form/login_customize.php:76
3366
- msgid "Show Forgot Password Link?"
3367
- msgstr ""
3368
-
3369
- #: includes/admin/templates/form/login_customize.php:87
3370
- msgid "Show \"Remember Me\"?"
3371
- msgstr ""
3372
-
3373
- #: includes/admin/templates/form/login_settings.php:9
3374
- msgid "Redirection after Login"
3375
- msgstr ""
3376
-
3377
- #: includes/admin/templates/form/login_settings.php:10
3378
- msgid ""
3379
- "Change this If you want to override role redirection settings after login "
3380
- "only."
3381
- msgstr ""
3382
-
3383
- #: includes/admin/templates/form/login_settings.php:14
3384
- #: includes/admin/templates/role/login.php:16
3385
- #: includes/admin/templates/role/register.php:27
3386
- msgid "Redirect to profile"
3387
- msgstr ""
3388
-
3389
- #: includes/admin/templates/form/login_settings.php:15
3390
- #: includes/admin/templates/role/login.php:17
3391
- #: includes/admin/templates/role/register.php:28
3392
- #: includes/admin/templates/role/register.php:55
3393
- #: includes/admin/templates/role/register.php:89
3394
- msgid "Redirect to URL"
3395
- msgstr ""
3396
-
3397
- #: includes/admin/templates/form/login_settings.php:16
3398
- #: includes/admin/templates/role/login.php:18
3399
- msgid "Refresh active page"
3400
- msgstr ""
3401
-
3402
- #: includes/admin/templates/form/login_settings.php:17
3403
- #: includes/admin/templates/role/login.php:19
3404
- msgid "Redirect to WordPress Admin"
3405
- msgstr ""
3406
-
3407
- #: includes/admin/templates/form/login_settings.php:23
3408
- #: includes/admin/templates/role/delete.php:23
3409
- #: includes/admin/templates/role/login.php:25
3410
- #: includes/admin/templates/role/logout.php:23
3411
- #: includes/admin/templates/role/register.php:35
3412
- #: includes/admin/templates/role/register.php:69
3413
- #: includes/admin/templates/role/register.php:103
3414
- msgid "Set Custom Redirect URL"
3415
- msgstr ""
3416
-
3417
- #: includes/admin/templates/form/mode.php:6
3418
- msgid ""
3419
- "<strong>Note:</strong> Form type cannot be changed for the default forms."
3420
- msgstr ""
3421
-
3422
- #: includes/admin/templates/form/mode.php:11
3423
- msgid "Profile Form"
3424
- msgstr ""
3425
-
3426
- #: includes/admin/templates/form/profile_customize.php:30
3427
- msgid "Make this profile form role-specific"
3428
- msgstr ""
3429
-
3430
- #: includes/admin/templates/form/profile_customize.php:31
3431
- msgid ""
3432
- "Please note if you make a profile form specific to a role then you must make "
3433
- "sure that every other role is assigned a profile form"
3434
- msgstr ""
3435
-
3436
- #: includes/admin/templates/form/profile_customize.php:55
3437
- msgid "Profile Area Max. Width (px)"
3438
- msgstr ""
3439
-
3440
- #: includes/admin/templates/form/profile_customize.php:103
3441
- msgid "Enable Cover Photos"
3442
- msgstr ""
3443
-
3444
- #: includes/admin/templates/form/profile_customize.php:114
3445
- msgid "Cover photo ratio"
3446
- msgstr ""
3447
-
3448
- #: includes/admin/templates/form/profile_customize.php:129
3449
- msgid "Set the profile photo size in pixels here"
3450
- msgstr ""
3451
-
3452
- #: includes/admin/templates/form/profile_customize.php:136
3453
- msgid "Make Profile Photo Required"
3454
- msgstr ""
3455
-
3456
- #: includes/admin/templates/form/profile_customize.php:137
3457
- msgid "Require user to update a profile photo when updating their profile"
3458
- msgstr ""
3459
-
3460
- #: includes/admin/templates/form/profile_customize.php:148
3461
- msgid "Show display name in profile header?"
3462
- msgstr ""
3463
-
3464
- #: includes/admin/templates/form/profile_customize.php:159
3465
- msgid "Show social links in profile header?"
3466
- msgstr ""
3467
-
3468
- #: includes/admin/templates/form/profile_customize.php:170
3469
- msgid "Show user description in profile header?"
3470
- msgstr ""
3471
-
3472
- #: includes/admin/templates/form/profile_settings.php:20
3473
- msgid "Field(s) to show in user meta"
3474
- msgstr ""
3475
-
3476
- #: includes/admin/templates/form/profile_settings.php:21
3477
- msgid ""
3478
- "Fields selected here will appear in the profile header area below the user's "
3479
- "display name"
3480
- msgstr ""
3481
-
3482
- #: includes/admin/templates/form/profile_settings.php:24
3483
- msgid "Add New Field"
3484
- msgstr ""
3485
-
3486
- #: includes/admin/templates/form/register_customize.php:27
3487
- msgid "Assign role to form"
3488
- msgstr ""
3489
-
3490
- #: includes/admin/templates/form/register_gdpr.php:5
3491
- msgid "Select page"
3492
- msgstr ""
3493
-
3494
- #: includes/admin/templates/form/register_gdpr.php:20
3495
- msgid "Enable on this form"
3496
- msgstr ""
3497
-
3498
- #: includes/admin/templates/form/register_gdpr.php:30
3499
- msgid "Content"
3500
- msgstr ""
3501
-
3502
- #: includes/admin/templates/form/register_gdpr.php:38
3503
- msgid "Toggle Show text"
3504
- msgstr ""
3505
-
3506
- #: includes/admin/templates/form/register_gdpr.php:39
3507
- #: includes/admin/templates/form/register_gdpr.php:40
3508
- #: templates/gdpr-register.php:15 templates/gdpr-register.php:17
3509
- msgid "Show privacy policy"
3510
- msgstr ""
3511
-
3512
- #: includes/admin/templates/form/register_gdpr.php:46
3513
- msgid "Toggle Hide text"
3514
- msgstr ""
3515
-
3516
- #: includes/admin/templates/form/register_gdpr.php:47
3517
- #: includes/admin/templates/form/register_gdpr.php:48
3518
- #: templates/gdpr-register.php:16
3519
- msgid "Hide privacy policy"
3520
- msgstr ""
3521
-
3522
- #: includes/admin/templates/form/register_gdpr.php:54
3523
- msgid "Checkbox agreement description"
3524
- msgstr ""
3525
-
3526
- #: includes/admin/templates/form/register_gdpr.php:55
3527
- #: includes/admin/templates/form/register_gdpr.php:56
3528
- #: templates/gdpr-register.php:28
3529
- msgid "Please confirm that you agree to our privacy policy"
3530
- msgstr ""
3531
-
3532
- #: includes/admin/templates/form/register_gdpr.php:62
3533
- msgid "Error Text"
3534
- msgstr ""
3535
-
3536
- #: includes/admin/templates/form/register_gdpr.php:63
3537
- #: includes/admin/templates/form/register_gdpr.php:64
3538
- #: templates/gdpr-register.php:37
3539
- msgid "Please confirm your acceptance of our privacy policy"
3540
- msgstr ""
3541
-
3542
- #: includes/admin/templates/gdpr.php:4
3543
- msgid "What personal data we collect and why we collect it"
3544
- msgstr ""
3545
-
3546
- #: includes/admin/templates/gdpr.php:10
3547
- #, php-format
3548
- msgid "%s provides you with forms for user registration, login and profiles."
3549
- msgstr ""
3550
-
3551
- #: includes/admin/templates/gdpr.php:13
3552
- msgid "Via these forms you are collecting personal data from your users."
3553
- msgstr ""
3554
-
3555
- #: includes/admin/templates/gdpr.php:16
3556
- msgid ""
3557
- "You should include in your privacy policy what personal data is captured "
3558
- "when someone submits/fills in one of the forms, why you collect it and what "
3559
- "you do with this data and how long you keep it."
3560
- msgstr ""
3561
-
3562
- #: includes/admin/templates/gdpr.php:20
3563
- msgid "How long we retain your data"
3564
- msgstr ""
3565
-
3566
- #: includes/admin/templates/gdpr.php:23
3567
- msgid ""
3568
- "Registered user information is retained in your website’s database "
3569
- "indefinitely."
3570
- msgstr ""
3571
-
3572
- #: includes/admin/templates/gdpr.php:26
3573
- msgid ""
3574
- "Data can be exported or removed upon users request via the existing "
3575
- "WordPress data exporter or eraser."
3576
- msgstr ""
3577
-
3578
- #: includes/admin/templates/gdpr.php:29
3579
- msgid ""
3580
- "If syncing data to a 3rd party service (e.g Mailchimp via our MailChimp "
3581
- "extension), data is retained there until unsubscribed or deleted."
3582
- msgstr ""
3583
-
3584
- #: includes/admin/templates/gdpr.php:33
3585
- msgid "Where we send your data"
3586
- msgstr ""
3587
-
3588
- #: includes/admin/templates/gdpr.php:36
3589
- #, php-format
3590
- msgid "%s does not send any user data outside of your site by default."
3591
- msgstr ""
3592
-
3593
- #: includes/admin/templates/gdpr.php:39
3594
- msgid ""
3595
- "If you have extended the functionality of the plugin (e.g sending registered "
3596
- "user data to MailChimp via our MailChimp extension, this user info may be "
3597
- "passed to these external services. These services may be located abroad and "
3598
- "outwith the EU."
3599
- msgstr ""
3600
-
3601
- #: includes/admin/templates/modal/dynamic_edit_field.php:6
3602
- msgid "Edit Field"
3603
- msgstr ""
3604
-
3605
- #: includes/admin/templates/modal/dynamic_edit_field.php:12
3606
- #: includes/admin/templates/modal/dynamic_edit_row.php:12
3607
- msgid "Update"
3608
- msgstr ""
3609
-
3610
- #: includes/admin/templates/modal/dynamic_edit_field.php:15
3611
- #: includes/admin/templates/modal/dynamic_edit_row.php:15
3612
- #: includes/admin/templates/modal/dynamic_new_divider.php:15
3613
- #: includes/admin/templates/modal/dynamic_new_field.php:15
3614
- #: includes/admin/templates/modal/dynamic_new_group.php:15
3615
- #: includes/admin/templates/modal/fonticons.php:11
3616
- #: includes/admin/templates/role/publish.php:24
3617
- #: includes/core/class-fields.php:2336 includes/core/class-fields.php:2433
3618
- #: includes/core/um-actions-profile.php:603
3619
- #: includes/core/um-actions-profile.php:615
3620
- #: includes/core/um-actions-profile.php:754
3621
- #: includes/core/um-actions-profile.php:787
3622
- #: includes/core/um-actions-profile.php:1132
3623
- #: includes/core/um-actions-profile.php:1139
3624
- msgid "Cancel"
3625
- msgstr ""
3626
-
3627
- #: includes/admin/templates/modal/dynamic_edit_row.php:6
3628
- msgid "Edit Row Settings"
3629
- msgstr ""
3630
-
3631
- #: includes/admin/templates/modal/dynamic_form_preview.php:4
3632
- msgid "Live Form Preview"
3633
- msgstr ""
3634
-
3635
- #: includes/admin/templates/modal/dynamic_form_preview.php:10
3636
- msgid "Continue editing"
3637
- msgstr ""
3638
-
3639
- #: includes/admin/templates/modal/dynamic_new_divider.php:6
3640
- msgid "Add a New Divider"
3641
- msgstr ""
3642
-
3643
- #: includes/admin/templates/modal/dynamic_new_divider.php:12
3644
- #: includes/admin/templates/modal/dynamic_new_field.php:12
3645
- #: includes/admin/templates/modal/dynamic_new_group.php:12
3646
- msgid "Add"
3647
- msgstr ""
3648
-
3649
- #: includes/admin/templates/modal/dynamic_new_field.php:6
3650
- msgid "Add a New Field"
3651
- msgstr ""
3652
-
3653
- #: includes/admin/templates/modal/dynamic_new_group.php:6
3654
- msgid "Add a New Field Group"
3655
- msgstr ""
3656
-
3657
- #: includes/admin/templates/modal/dynamic_registration_preview.php:4
3658
- msgid "Review Registration Details"
3659
- msgstr ""
3660
-
3661
- #: includes/admin/templates/modal/fields.php:4
3662
- msgid "Fields Manager"
3663
- msgstr ""
3664
-
3665
- #: includes/admin/templates/modal/fonticons.php:4
3666
- #, php-format
3667
- msgid "Choose from %s available icons"
3668
- msgstr ""
3669
-
3670
- #: includes/admin/templates/modal/fonticons.php:10
3671
- msgid "Finish"
3672
- msgstr ""
3673
-
3674
- #: includes/admin/templates/role/admin-permissions.php:11
3675
- msgid "Can access wp-admin?"
3676
- msgstr ""
3677
-
3678
- #: includes/admin/templates/role/admin-permissions.php:12
3679
- msgid ""
3680
- "The core admin role must always have access to wp-admin / WordPress backend"
3681
- msgstr ""
3682
-
3683
- #: includes/admin/templates/role/admin-permissions.php:18
3684
- msgid "Force hiding adminbar in frontend?"
3685
- msgstr ""
3686
-
3687
- #: includes/admin/templates/role/admin-permissions.php:19
3688
- msgid "Show/hide the adminbar on frontend"
3689
- msgstr ""
3690
-
3691
- #: includes/admin/templates/role/admin-permissions.php:25
3692
- msgid "Can edit other member accounts?"
3693
- msgstr ""
3694
-
3695
- #: includes/admin/templates/role/admin-permissions.php:26
3696
- #: includes/admin/templates/role/admin-permissions.php:43
3697
- msgid "Allow this role to edit accounts of other members"
3698
- msgstr ""
3699
-
3700
- #: includes/admin/templates/role/admin-permissions.php:32
3701
- msgid "Can edit these user roles only"
3702
- msgstr ""
3703
-
3704
- #: includes/admin/templates/role/admin-permissions.php:33
3705
- #: includes/admin/templates/role/admin-permissions.php:50
3706
- msgid ""
3707
- "Which roles that role can edit, choose none to allow role to edit all member "
3708
- "roles"
3709
- msgstr ""
3710
-
3711
- #: includes/admin/templates/role/admin-permissions.php:42
3712
- msgid "Can delete other member accounts?"
3713
- msgstr ""
3714
-
3715
- #: includes/admin/templates/role/admin-permissions.php:49
3716
- msgid "Can delete these user roles only"
3717
- msgstr ""
3718
-
3719
- #: includes/admin/templates/role/delete.php:12
3720
- msgid "Action to be taken after account is deleted"
3721
- msgstr ""
3722
-
3723
- #: includes/admin/templates/role/delete.php:13
3724
- msgid ""
3725
- "Select what happens when a user with this role deletes their own account"
3726
- msgstr ""
3727
-
3728
- #: includes/admin/templates/role/delete.php:16
3729
- #: includes/admin/templates/role/logout.php:16
3730
- msgid "Go to Homepage"
3731
- msgstr ""
3732
-
3733
- #: includes/admin/templates/role/delete.php:17
3734
- #: includes/admin/templates/role/logout.php:17
3735
- msgid "Go to Custom URL"
3736
- msgstr ""
3737
-
3738
- #: includes/admin/templates/role/delete.php:24
3739
- msgid "Set a url to redirect this user role to after they delete account"
3740
- msgstr ""
3741
-
3742
- #: includes/admin/templates/role/general.php:11
3743
- msgid "Can edit their profile?"
3744
- msgstr ""
3745
-
3746
- #: includes/admin/templates/role/general.php:12
3747
- msgid "Can this role edit his own profile?"
3748
- msgstr ""
3749
-
3750
- #: includes/admin/templates/role/general.php:18
3751
- msgid "Can delete their account?"
3752
- msgstr ""
3753
-
3754
- #: includes/admin/templates/role/general.php:19
3755
- msgid ""
3756
- "Allow this role to delete their account and end their membership on your site"
3757
- msgstr ""
3758
-
3759
- #: includes/admin/templates/role/home.php:12
3760
- msgid "Can view default homepage?"
3761
- msgstr ""
3762
-
3763
- #: includes/admin/templates/role/home.php:13
3764
- msgid "Allow this user role to view your site's homepage"
3765
- msgstr ""
3766
-
3767
- #: includes/admin/templates/role/home.php:19
3768
- msgid "Custom Homepage Redirect"
3769
- msgstr ""
3770
-
3771
- #: includes/admin/templates/role/home.php:20
3772
- msgid ""
3773
- "Set a url to redirect this user role to if they try to view your site's "
3774
- "homepage"
3775
- msgstr ""
3776
-
3777
- #: includes/admin/templates/role/login.php:12
3778
- msgid "Action to be taken after login"
3779
- msgstr ""
3780
-
3781
- #: includes/admin/templates/role/login.php:13
3782
- msgid "Select what happens when a user with this role logins to your site"
3783
- msgstr ""
3784
-
3785
- #: includes/admin/templates/role/login.php:26
3786
- msgid ""
3787
- "Set a url to redirect this user role to after they login with their account"
3788
- msgstr ""
3789
-
3790
- #: includes/admin/templates/role/logout.php:12
3791
- msgid "Action to be taken after logout"
3792
- msgstr ""
3793
-
3794
- #: includes/admin/templates/role/logout.php:13
3795
- msgid "Select what happens when a user with this role logouts of your site"
3796
- msgstr ""
3797
-
3798
- #: includes/admin/templates/role/logout.php:24
3799
- msgid "Set a url to redirect this user role to after they logout from site"
3800
- msgstr ""
3801
-
3802
- #: includes/admin/templates/role/profile.php:11
3803
- msgid "Can view other member profiles?"
3804
- msgstr ""
3805
-
3806
- #: includes/admin/templates/role/profile.php:12
3807
- msgid "Can this role view all member profiles?"
3808
- msgstr ""
3809
-
3810
- #: includes/admin/templates/role/profile.php:18
3811
- msgid "Can view these user roles only"
3812
- msgstr ""
3813
-
3814
- #: includes/admin/templates/role/profile.php:19
3815
- msgid ""
3816
- "Which roles that role can view, choose none to allow role to view all member "
3817
- "roles"
3818
- msgstr ""
3819
-
3820
- #: includes/admin/templates/role/profile.php:29
3821
- msgid "Can make their profile private?"
3822
- msgstr ""
3823
-
3824
- #: includes/admin/templates/role/profile.php:30
3825
- msgid "Can this role make their profile private?"
3826
- msgstr ""
3827
-
3828
- #: includes/admin/templates/role/profile.php:37
3829
- msgid "Can view/access private profiles?"
3830
- msgstr ""
3831
-
3832
- #: includes/admin/templates/role/profile.php:38
3833
- msgid "Can this role view private profiles?"
3834
- msgstr ""
3835
-
3836
- #: includes/admin/templates/role/publish.php:14
3837
- msgid "Role Priority"
3838
- msgstr ""
3839
-
3840
- #: includes/admin/templates/role/publish.php:15
3841
- msgid "The higher the number, the higher the priority"
3842
- msgstr ""
3843
-
3844
- #: includes/admin/templates/role/publish.php:23
3845
- msgid "Update Role"
3846
- msgstr ""
3847
-
3848
- #: includes/admin/templates/role/publish.php:23
3849
- msgid "Create Role"
3850
- msgstr ""
3851
-
3852
- #: includes/admin/templates/role/register.php:11
3853
- msgid "Registration Status"
3854
- msgstr ""
3855
-
3856
- #: includes/admin/templates/role/register.php:12
3857
- msgid ""
3858
- "Select the status you would like this user role to have after they register "
3859
- "on your site"
3860
- msgstr ""
3861
-
3862
- #: includes/admin/templates/role/register.php:15
3863
- msgid "Auto Approve"
3864
- msgstr ""
3865
-
3866
- #: includes/admin/templates/role/register.php:16
3867
- msgid "Require Email Activation"
3868
- msgstr ""
3869
-
3870
- #: includes/admin/templates/role/register.php:17
3871
- msgid "Require Admin Review"
3872
- msgstr ""
3873
-
3874
- #: includes/admin/templates/role/register.php:23
3875
- #: includes/admin/templates/role/register.php:50
3876
- #: includes/admin/templates/role/register.php:84
3877
- msgid "Action to be taken after registration"
3878
- msgstr ""
3879
-
3880
- #: includes/admin/templates/role/register.php:24
3881
- #: includes/admin/templates/role/register.php:51
3882
- #: includes/admin/templates/role/register.php:85
3883
- msgid ""
3884
- "Select what action is taken after a person registers on your site. Depending "
3885
- "on the status you can redirect them to their profile, a custom url or show a "
3886
- "custom message"
3887
- msgstr ""
3888
-
3889
- #: includes/admin/templates/role/register.php:42
3890
- msgid "Login user after validating the activation link?"
3891
- msgstr ""
3892
-
3893
- #: includes/admin/templates/role/register.php:43
3894
- msgid "Login the user after validating the activation link"
3895
- msgstr ""
3896
-
3897
- #: includes/admin/templates/role/register.php:54
3898
- #: includes/admin/templates/role/register.php:88
3899
- msgid "Show custom message"
3900
- msgstr ""
3901
-
3902
- #: includes/admin/templates/role/register.php:62
3903
- #: includes/admin/templates/role/register.php:96
3904
- msgid "Personalize the custom message"
3905
- msgstr ""
3906
-
3907
- #: includes/admin/templates/role/register.php:63
3908
- msgid ""
3909
- "Thank you for registering. Before you can login we need you to activate your "
3910
- "account by clicking the activation link in the email we just sent you."
3911
- msgstr ""
3912
-
3913
- #: includes/admin/templates/role/register.php:76
3914
- msgid "URL redirect after e-mail activation"
3915
- msgstr ""
3916
-
3917
- #: includes/admin/templates/role/register.php:77
3918
- msgid ""
3919
- "If you want users to go to a specific page other than login page after e-"
3920
- "mail activation, enter the URL here."
3921
- msgstr ""
3922
-
3923
- #: includes/admin/templates/role/register.php:97
3924
- msgid ""
3925
- "Thank you for applying for membership to our site. We will review your "
3926
- "details and send you an email letting you know whether your application has "
3927
- "been successful or not."
3928
- msgstr ""
3929
-
3930
- #: includes/admin/templates/role/role-edit.php:68
3931
- #: includes/admin/templates/role/role-edit.php:72
3932
- msgid "Security Issue"
3933
- msgstr ""
3934
-
3935
- #: includes/admin/templates/role/role-edit.php:82
3936
- msgid "Title is empty!"
3937
- msgstr ""
3938
-
3939
- #: includes/admin/templates/role/role-edit.php:107
3940
- msgid "Role already exists!"
3941
- msgstr ""
3942
-
3943
- #: includes/admin/templates/role/role-edit.php:147
3944
- msgid "Add New Role"
3945
- msgstr ""
3946
-
3947
- #: includes/admin/templates/role/role-edit.php:147
3948
- msgid "Edit Role"
3949
- msgstr ""
3950
-
3951
- #: includes/admin/templates/role/role-edit.php:156
3952
- msgid "User Role <strong>Added</strong> Successfully."
3953
- msgstr ""
3954
-
3955
- #: includes/admin/templates/role/role-edit.php:159
3956
- msgid "User Role <strong>Updated</strong> Successfully."
3957
- msgstr ""
3958
-
3959
- #: includes/admin/templates/role/role-edit.php:187
3960
- msgid "Enter Title Here"
3961
- msgstr ""
3962
-
3963
- #: includes/admin/templates/role/wp-capabilities.php:36
3964
- msgid "Uncheck All"
3965
- msgstr ""
3966
-
3967
- #: includes/admin/templates/role/wp-capabilities.php:38
3968
- #: includes/admin/templates/role/wp-capabilities.php:46
3969
- msgid "Check All"
3970
- msgstr ""
3971
-
3972
- #: includes/class-config.php:131 includes/class-config.php:745
3973
- msgid "User"
3974
- msgstr ""
3975
-
3976
- #: includes/class-config.php:132 includes/class-config.php:237
3977
- #: includes/class-config.php:243 includes/class-config.php:746
3978
- msgid "Login"
3979
- msgstr ""
3980
-
3981
- #: includes/class-config.php:133 includes/class-config.php:235
3982
- #: includes/class-config.php:247 includes/class-config.php:747
3983
- msgid "Register"
3984
- msgstr ""
3985
-
3986
- #: includes/class-config.php:134 includes/class-config.php:748
3987
- msgid "Members"
3988
- msgstr ""
3989
-
3990
- #: includes/class-config.php:135 includes/class-config.php:749
3991
- #: includes/core/um-actions-profile.php:1138
3992
- #: includes/core/um-actions-user.php:15
3993
- msgid "Logout"
3994
- msgstr ""
3995
-
3996
- #: includes/class-config.php:137 includes/class-config.php:751
3997
- msgid "Password Reset"
3998
- msgstr ""
3999
-
4000
- #: includes/class-config.php:310
4001
- msgid "Account Welcome Email"
4002
- msgstr ""
4003
-
4004
- #: includes/class-config.php:321
4005
- msgid ""
4006
- "Whether to send the user an email when his account is automatically approved"
4007
- msgstr ""
4008
-
4009
- #: includes/class-config.php:327
4010
- msgid "Account Activation Email"
4011
- msgstr ""
4012
-
4013
- #: includes/class-config.php:335
4014
- msgid ""
4015
- "Whether to send the user an email when his account needs e-mail activation"
4016
- msgstr ""
4017
-
4018
- #: includes/class-config.php:340
4019
- msgid "Your account is pending review"
4020
- msgstr ""
4021
-
4022
- #: includes/class-config.php:348
4023
- msgid "Whether to send the user an email when his account needs admin review"
4024
- msgstr ""
4025
-
4026
- #: includes/class-config.php:353
4027
- msgid "Account Approved Email"
4028
- msgstr ""
4029
-
4030
- #: includes/class-config.php:365
4031
- msgid "Whether to send the user an email when his account is approved"
4032
- msgstr ""
4033
-
4034
- #: includes/class-config.php:370
4035
- msgid "Account Rejected Email"
4036
- msgstr ""
4037
-
4038
- #: includes/class-config.php:377
4039
- msgid "Whether to send the user an email when his account is rejected"
4040
- msgstr ""
4041
-
4042
- #: includes/class-config.php:382
4043
- msgid "Account Deactivated Email"
4044
- msgstr ""
4045
-
4046
- #: includes/class-config.php:389
4047
- msgid "Whether to send the user an email when his account is deactivated"
4048
- msgstr ""
4049
-
4050
- #: includes/class-config.php:395
4051
- msgid "Account Deleted Email"
4052
- msgstr ""
4053
-
4054
- #: includes/class-config.php:402
4055
- msgid "Whether to send the user an email when his account is deleted"
4056
- msgstr ""
4057
-
4058
- #: includes/class-config.php:408
4059
- msgid "Password Reset Email"
4060
- msgstr ""
4061
-
4062
- #: includes/class-config.php:416
4063
- msgid ""
4064
- "Whether to send an email when users changed their password (Recommended, "
4065
- "please keep on)"
4066
- msgstr ""
4067
-
4068
- #: includes/class-config.php:422
4069
- msgid "Password Changed Email"
4070
- msgstr ""
4071
-
4072
- #: includes/class-config.php:429
4073
- msgid ""
4074
- "Whether to send the user an email when he request to reset password "
4075
- "(Recommended, please keep on)"
4076
- msgstr ""
4077
-
4078
- #: includes/class-config.php:435
4079
- msgid "Account Updated Email"
4080
- msgstr ""
4081
-
4082
- #: includes/class-config.php:442
4083
- msgid "Whether to send the user an email when he updated their account"
4084
- msgstr ""
4085
-
4086
- #: includes/class-config.php:448
4087
- msgid "New User Notification"
4088
- msgstr ""
4089
-
4090
- #: includes/class-config.php:454
4091
- msgid "Whether to receive notification when a new user account is approved"
4092
- msgstr ""
4093
-
4094
- #: includes/class-config.php:460
4095
- msgid "Account Needs Review Notification"
4096
- msgstr ""
4097
-
4098
- #: includes/class-config.php:467
4099
- msgid "Whether to receive notification when an account needs admin review"
4100
- msgstr ""
4101
-
4102
- #: includes/class-config.php:472
4103
- msgid "Account Deletion Notification"
4104
- msgstr ""
4105
-
4106
- #: includes/class-config.php:475
4107
- msgid "Whether to receive notification when an account is deleted"
4108
- msgstr ""
4109
-
4110
- #: includes/class-config.php:498
4111
- msgid ""
4112
- "Are you sure you want to delete your account? This will erase all of your "
4113
- "account data from the site. To delete your account enter your password below"
4114
- msgstr ""
4115
-
4116
- #: includes/class-dependencies.php:167
4117
- #, php-format
4118
- msgid ""
4119
- "This version of <strong>\"%s\"</strong> requires the core <strong>%s</"
4120
- "strong> plugin to be <strong>%s</strong> or higher."
4121
- msgstr ""
4122
-
4123
- #: includes/class-dependencies.php:169
4124
- #, php-format
4125
- msgid "Please update <strong>%s</strong> to the latest version."
4126
- msgstr ""
4127
-
4128
- #: includes/class-dependencies.php:171
4129
- #, php-format
4130
- msgid ""
4131
- "Sorry, but this version of <strong>%s</strong> does not work with extension "
4132
- "<strong>\"%s\" %s</strong> version."
4133
- msgstr ""
4134
-
4135
- #: includes/class-dependencies.php:173
4136
- #, php-format
4137
- msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4138
- msgstr ""
4139
-
4140
- #: includes/class-dependencies.php:182
4141
- #, php-format
4142
- msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4143
- msgstr ""
4144
-
4145
- #: includes/class-dependencies.php:184
4146
- #, php-format
4147
- msgid "Correct folder name is <strong>\"%s\"</strong>"
4148
- msgstr ""
4149
-
4150
- #: includes/class-extensions.php:101
4151
- #, php-format
4152
- msgid "%s License Key"
4153
- msgstr ""
4154
-
4155
- #: includes/class-init.php:155 includes/class-init.php:164
4156
- msgid "Cheatin&#8217; huh?"
4157
- msgstr ""
4158
-
4159
- #: includes/core/class-account.php:93
4160
- msgid "Update Account"
4161
- msgstr ""
4162
-
4163
- #: includes/core/class-account.php:98
4164
- msgid "Change Password"
4165
- msgstr ""
4166
-
4167
- #: includes/core/class-account.php:99
4168
- msgid "Update Password"
4169
- msgstr ""
4170
-
4171
- #: includes/core/class-account.php:105
4172
- msgid "Update Privacy"
4173
- msgstr ""
4174
-
4175
- #: includes/core/class-account.php:111
4176
- msgid "Update Notifications"
4177
- msgstr ""
4178
-
4179
- #: includes/core/class-account.php:119 includes/core/class-account.php:120
4180
- #: includes/core/class-builtin.php:1141 includes/core/class-builtin.php:1144
4181
- msgid "Delete Account"
4182
- msgstr ""
4183
-
4184
- #: includes/core/class-builtin.php:132
4185
- msgid "Please provide a meta key"
4186
- msgstr ""
4187
-
4188
- #: includes/core/class-builtin.php:133
4189
- msgid "Your meta key is a reserved core field and cannot be used"
4190
- msgstr ""
4191
-
4192
- #: includes/core/class-builtin.php:134
4193
- msgid "Your meta key is a predefined reserved key and cannot be used"
4194
- msgstr ""
4195
-
4196
- #: includes/core/class-builtin.php:135
4197
- msgid "Your meta key already exists in your fields list"
4198
- msgstr ""
4199
-
4200
- #: includes/core/class-builtin.php:136
4201
- msgid "Your meta key contains illegal characters. Please correct it."
4202
- msgstr ""
4203
-
4204
- #: includes/core/class-builtin.php:149
4205
- msgid "Please provide a date range beginning"
4206
- msgstr ""
4207
-
4208
- #: includes/core/class-builtin.php:150
4209
- msgid "Please enter a valid start date in the date range"
4210
- msgstr ""
4211
-
4212
- #: includes/core/class-builtin.php:164
4213
- msgid "Please provide a date range end"
4214
- msgstr ""
4215
-
4216
- #: includes/core/class-builtin.php:165
4217
- msgid "Please enter a valid end date in the date range"
4218
- msgstr ""
4219
-
4220
- #: includes/core/class-builtin.php:166
4221
- msgid "The end of date range must be greater than the start of date range"
4222
- msgstr ""
4223
-
4224
- #: includes/core/class-builtin.php:208 includes/core/class-builtin.php:224
4225
- #: includes/core/class-builtin.php:240 includes/core/class-builtin.php:256
4226
- #: includes/core/class-builtin.php:276 includes/core/class-builtin.php:296
4227
- #: includes/core/class-builtin.php:316 includes/core/class-builtin.php:336
4228
- #: includes/core/class-builtin.php:352 includes/core/class-builtin.php:368
4229
- #: includes/core/class-builtin.php:388 includes/core/class-builtin.php:408
4230
- #: includes/core/class-builtin.php:434 includes/core/class-builtin.php:450
4231
- #: includes/core/class-builtin.php:467 includes/core/class-builtin.php:480
4232
- #: includes/core/class-builtin.php:497 includes/core/class-builtin.php:510
4233
- #: includes/core/class-builtin.php:523 includes/core/class-builtin.php:539
4234
- #: includes/core/class-builtin.php:555 includes/core/class-builtin.php:571
4235
- msgid "You must provide a title"
4236
- msgstr ""
4237
-
4238
- #: includes/core/class-builtin.php:217
4239
- msgid "Number"
4240
- msgstr ""
4241
-
4242
- #: includes/core/class-builtin.php:263 includes/core/class-builtin.php:283
4243
- #: includes/core/class-builtin.php:303 includes/core/class-builtin.php:323
4244
- msgid "You have not added any choices yet."
4245
- msgstr ""
4246
-
4247
- #: includes/core/class-builtin.php:375 includes/core/class-builtin.php:395
4248
- msgid "Please enter a valid size"
4249
- msgstr ""
4250
-
4251
- #: includes/core/class-builtin.php:415
4252
- msgid "Number of years is not valid"
4253
- msgstr ""
4254
-
4255
- #: includes/core/class-builtin.php:484
4256
- msgid "You must add a shortcode to the content area"
4257
- msgstr ""
4258
-
4259
- #: includes/core/class-builtin.php:663 includes/core/class-user.php:1552
4260
- msgid "Only me"
4261
- msgstr ""
4262
-
4263
- #: includes/core/class-builtin.php:687 includes/core/class-builtin.php:690
4264
- #: includes/core/class-builtin.php:1097
4265
- msgid "Username or E-mail"
4266
- msgstr ""
4267
-
4268
- #: includes/core/class-builtin.php:742 includes/core/class-builtin.php:745
4269
- #: includes/core/class-builtin.php:1338
4270
- msgid "Website URL"
4271
- msgstr ""
4272
-
4273
- #: includes/core/class-builtin.php:753 includes/core/class-builtin.php:756
4274
- msgid "Registration Date"
4275
- msgstr ""
4276
-
4277
- #: includes/core/class-builtin.php:764 includes/core/class-builtin.php:767
4278
- msgid "Last Login"
4279
- msgstr ""
4280
-
4281
- #: includes/core/class-builtin.php:775 includes/core/class-builtin.php:778
4282
- msgid "E-mail Address"
4283
- msgstr ""
4284
-
4285
- #: includes/core/class-builtin.php:786 includes/core/class-builtin.php:789
4286
- msgid "Secondary E-mail Address"
4287
- msgstr ""
4288
-
4289
- #: includes/core/class-builtin.php:798 includes/core/class-builtin.php:801
4290
- msgid "Biography"
4291
- msgstr ""
4292
-
4293
- #: includes/core/class-builtin.php:807
4294
- msgid "Enter a bit about yourself..."
4295
- msgstr ""
4296
-
4297
- #: includes/core/class-builtin.php:811 includes/core/class-builtin.php:814
4298
- msgid "Birth Date"
4299
- msgstr ""
4300
-
4301
- #: includes/core/class-builtin.php:825 includes/core/class-builtin.php:828
4302
- msgid "Gender"
4303
- msgstr ""
4304
-
4305
- #: includes/core/class-builtin.php:832
4306
- msgid "Male"
4307
- msgstr ""
4308
-
4309
- #: includes/core/class-builtin.php:832
4310
- msgid "Female"
4311
- msgstr ""
4312
-
4313
- #: includes/core/class-builtin.php:836 includes/core/class-builtin.php:839
4314
- msgid "Country"
4315
- msgstr ""
4316
-
4317
- #: includes/core/class-builtin.php:840
4318
- msgid "Choose a Country"
4319
- msgstr ""
4320
-
4321
- #: includes/core/class-builtin.php:848 includes/core/class-builtin.php:851
4322
- msgid "Facebook"
4323
- msgstr ""
4324
-
4325
- #: includes/core/class-builtin.php:866 includes/core/class-builtin.php:869
4326
- msgid "Twitter"
4327
- msgstr ""
4328
-
4329
- #: includes/core/class-builtin.php:884 includes/core/class-builtin.php:887
4330
- msgid "LinkedIn"
4331
- msgstr ""
4332
-
4333
- #: includes/core/class-builtin.php:902 includes/core/class-builtin.php:905
4334
- msgid "Google+"
4335
- msgstr ""
4336
-
4337
- #: includes/core/class-builtin.php:920 includes/core/class-builtin.php:923
4338
- msgid "Instagram"
4339
- msgstr ""
4340
-
4341
- #: includes/core/class-builtin.php:938 includes/core/class-builtin.php:941
4342
- #: includes/core/class-builtin.php:1331
4343
- msgid "Skype ID"
4344
- msgstr ""
4345
-
4346
- #: includes/core/class-builtin.php:953 includes/core/class-builtin.php:956
4347
- msgid "YouTube"
4348
- msgstr ""
4349
-
4350
- #: includes/core/class-builtin.php:971 includes/core/class-builtin.php:974
4351
- msgid "SoundCloud"
4352
- msgstr ""
4353
-
4354
- #: includes/core/class-builtin.php:989 includes/core/class-builtin.php:992
4355
- msgid "VKontakte"
4356
- msgstr ""
4357
-
4358
- #: includes/core/class-builtin.php:1007
4359
- msgid "Roles (Dropdown)"
4360
- msgstr ""
4361
-
4362
- #: includes/core/class-builtin.php:1010 includes/core/class-builtin.php:1022
4363
- msgid "Account Type"
4364
- msgstr ""
4365
-
4366
- #: includes/core/class-builtin.php:1019
4367
- msgid "Roles (Radio)"
4368
- msgstr ""
4369
-
4370
- #: includes/core/class-builtin.php:1030
4371
- msgid "Languages"
4372
- msgstr ""
4373
-
4374
- #: includes/core/class-builtin.php:1033
4375
- msgid "Languages Spoken"
4376
- msgstr ""
4377
-
4378
- #: includes/core/class-builtin.php:1034
4379
- msgid "Select languages"
4380
- msgstr ""
4381
-
4382
- #: includes/core/class-builtin.php:1042 includes/core/class-builtin.php:1045
4383
- #: includes/core/class-builtin.php:1330
4384
- msgid "Phone Number"
4385
- msgstr ""
4386
-
4387
- #: includes/core/class-builtin.php:1054 includes/core/class-builtin.php:1057
4388
- msgid "Mobile Number"
4389
- msgstr ""
4390
-
4391
- #: includes/core/class-builtin.php:1068
4392
- msgid "Profile Photo"
4393
- msgstr ""
4394
-
4395
- #: includes/core/class-builtin.php:1071
4396
- msgid "Change your profile photo"
4397
- msgstr ""
4398
-
4399
- #: includes/core/class-builtin.php:1072
4400
- msgid "Upload your photo here"
4401
- msgstr ""
4402
-
4403
- #: includes/core/class-builtin.php:1082
4404
- msgid "Cover Photo"
4405
- msgstr ""
4406
-
4407
- #: includes/core/class-builtin.php:1085
4408
- #: includes/core/um-actions-profile.php:563
4409
- msgid "Change your cover photo"
4410
- msgstr ""
4411
-
4412
- #: includes/core/class-builtin.php:1086
4413
- msgid "Upload profile cover here"
4414
- msgstr ""
4415
-
4416
- #: includes/core/class-builtin.php:1100
4417
- msgid "Enter your username or email"
4418
- msgstr ""
4419
-
4420
- #: includes/core/class-builtin.php:1110 includes/core/class-builtin.php:1113
4421
- msgid "Profile Privacy"
4422
- msgstr ""
4423
-
4424
- #: includes/core/class-builtin.php:1114
4425
- msgid "Who can see your public profile?"
4426
- msgstr ""
4427
-
4428
- #: includes/core/class-builtin.php:1126 includes/core/class-builtin.php:1129
4429
- msgid "Hide my profile from directory"
4430
- msgstr ""
4431
-
4432
- #: includes/core/class-builtin.php:1130
4433
- msgid "Here you can hide yourself from appearing in public directory"
4434
- msgstr ""
4435
-
4436
- #: includes/core/class-builtin.php:1145
4437
- msgid ""
4438
- "If you confirm, everything related to your profile will be deleted "
4439
- "permanently from the site"
4440
- msgstr ""
4441
-
4442
- #: includes/core/class-builtin.php:1320
4443
- msgid "Alphabetic value only"
4444
- msgstr ""
4445
-
4446
- #: includes/core/class-builtin.php:1321
4447
- msgid "Alpha-numeric value"
4448
- msgstr ""
4449
-
4450
- #: includes/core/class-builtin.php:1322
4451
- msgid "English letters only"
4452
- msgstr ""
4453
-
4454
- #: includes/core/class-builtin.php:1323
4455
- msgid "Facebook URL"
4456
- msgstr ""
4457
-
4458
- #: includes/core/class-builtin.php:1324
4459
- msgid "Google+ URL"
4460
- msgstr ""
4461
-
4462
- #: includes/core/class-builtin.php:1325
4463
- msgid "Instagram URL"
4464
- msgstr ""
4465
-
4466
- #: includes/core/class-builtin.php:1326
4467
- msgid "LinkedIn URL"
4468
- msgstr ""
4469
-
4470
- #: includes/core/class-builtin.php:1327
4471
- msgid "VKontakte URL"
4472
- msgstr ""
4473
-
4474
- #: includes/core/class-builtin.php:1328
4475
- msgid "Lowercase only"
4476
- msgstr ""
4477
-
4478
- #: includes/core/class-builtin.php:1329
4479
- msgid "Numeric value only"
4480
- msgstr ""
4481
-
4482
- #: includes/core/class-builtin.php:1332
4483
- msgid "SoundCloud Profile"
4484
- msgstr ""
4485
-
4486
- #: includes/core/class-builtin.php:1333
4487
- msgid "Twitter URL"
4488
- msgstr ""
4489
-
4490
- #: includes/core/class-builtin.php:1334
4491
- msgid "Unique E-mail"
4492
- msgstr ""
4493
-
4494
- #: includes/core/class-builtin.php:1335
4495
- msgid "Unique Metakey value"
4496
- msgstr ""
4497
-
4498
- #: includes/core/class-builtin.php:1336
4499
- msgid "Unique Username"
4500
- msgstr ""
4501
-
4502
- #: includes/core/class-builtin.php:1337
4503
- msgid "Unique Username/E-mail"
4504
- msgstr ""
4505
-
4506
- #: includes/core/class-builtin.php:1339
4507
- msgid "YouTube Profile"
4508
- msgstr ""
4509
-
4510
- #: includes/core/class-builtin.php:1340
4511
- msgid "Custom Validation"
4512
- msgstr ""
4513
-
4514
- #: includes/core/class-builtin.php:1379
4515
- msgid "Afar"
4516
- msgstr ""
4517
-
4518
- #: includes/core/class-builtin.php:1380
4519
- msgid "Abkhazian"
4520
- msgstr ""
4521
-
4522
- #: includes/core/class-builtin.php:1381
4523
- msgid "Avestan"
4524
- msgstr ""
4525
-
4526
- #: includes/core/class-builtin.php:1382
4527
- msgid "Afrikaans"
4528
- msgstr ""
4529
-
4530
- #: includes/core/class-builtin.php:1383
4531
- msgid "Akan"
4532
- msgstr ""
4533
-
4534
- #: includes/core/class-builtin.php:1384
4535
- msgid "Amharic"
4536
- msgstr ""
4537
-
4538
- #: includes/core/class-builtin.php:1385
4539
- msgid "Aragonese"
4540
- msgstr ""
4541
-
4542
- #: includes/core/class-builtin.php:1386
4543
- msgid "Arabic"
4544
- msgstr ""
4545
-
4546
- #: includes/core/class-builtin.php:1387
4547
- msgid "Assamese"
4548
- msgstr ""
4549
-
4550
- #: includes/core/class-builtin.php:1388
4551
- msgid "Avaric"
4552
- msgstr ""
4553
-
4554
- #: includes/core/class-builtin.php:1389
4555
- msgid "Aymara"
4556
- msgstr ""
4557
-
4558
- #: includes/core/class-builtin.php:1390
4559
- msgid "Azerbaijani"
4560
- msgstr ""
4561
-
4562
- #: includes/core/class-builtin.php:1391
4563
- msgid "Bashkir"
4564
- msgstr ""
4565
-
4566
- #: includes/core/class-builtin.php:1392
4567
- msgid "Belarusian"
4568
- msgstr ""
4569
-
4570
- #: includes/core/class-builtin.php:1393
4571
- msgid "Bulgarian"
4572
- msgstr ""
4573
-
4574
- #: includes/core/class-builtin.php:1394
4575
- msgid "Bihari"
4576
- msgstr ""
4577
-
4578
- #: includes/core/class-builtin.php:1395
4579
- msgid "Bislama"
4580
- msgstr ""
4581
-
4582
- #: includes/core/class-builtin.php:1396
4583
- msgid "Bambara"
4584
- msgstr ""
4585
-
4586
- #: includes/core/class-builtin.php:1397
4587
- msgid "Bengali"
4588
- msgstr ""
4589
-
4590
- #: includes/core/class-builtin.php:1398
4591
- msgid "Tibetan"
4592
- msgstr ""
4593
-
4594
- #: includes/core/class-builtin.php:1399
4595
- msgid "Breton"
4596
- msgstr ""
4597
-
4598
- #: includes/core/class-builtin.php:1400
4599
- msgid "Bosnian"
4600
- msgstr ""
4601
-
4602
- #: includes/core/class-builtin.php:1401
4603
- msgid "Catalan"
4604
- msgstr ""
4605
-
4606
- #: includes/core/class-builtin.php:1402
4607
- msgid "Chechen"
4608
- msgstr ""
4609
-
4610
- #: includes/core/class-builtin.php:1403
4611
- msgid "Chamorro"
4612
- msgstr ""
4613
-
4614
- #: includes/core/class-builtin.php:1404
4615
- msgid "Corsican"
4616
- msgstr ""
4617
-
4618
- #: includes/core/class-builtin.php:1405
4619
- msgid "Cree"
4620
- msgstr ""
4621
-
4622
- #: includes/core/class-builtin.php:1406
4623
- msgid "Czech"
4624
- msgstr ""
4625
-
4626
- #: includes/core/class-builtin.php:1407
4627
- msgid "Church Slavic"
4628
- msgstr ""
4629
-
4630
- #: includes/core/class-builtin.php:1408
4631
- msgid "Chuvash"
4632
- msgstr ""
4633
-
4634
- #: includes/core/class-builtin.php:1409
4635
- msgid "Welsh"
4636
- msgstr ""
4637
-
4638
- #: includes/core/class-builtin.php:1410
4639
- msgid "Danish"
4640
- msgstr ""
4641
-
4642
- #: includes/core/class-builtin.php:1411
4643
- msgid "German"
4644
- msgstr ""
4645
-
4646
- #: includes/core/class-builtin.php:1412
4647
- msgid "Divehi"
4648
- msgstr ""
4649
-
4650
- #: includes/core/class-builtin.php:1413
4651
- msgid "Dzongkha"
4652
- msgstr ""
4653
-
4654
- #: includes/core/class-builtin.php:1414
4655
- msgid "Ewe"
4656
- msgstr ""
4657
-
4658
- #: includes/core/class-builtin.php:1415
4659
- msgid "Greek"
4660
- msgstr ""
4661
-
4662
- #: includes/core/class-builtin.php:1416
4663
- msgid "English"
4664
- msgstr ""
4665
-
4666
- #: includes/core/class-builtin.php:1417
4667
- msgid "Esperanto"
4668
- msgstr ""
4669
-
4670
- #: includes/core/class-builtin.php:1418
4671
- msgid "Spanish"
4672
- msgstr ""
4673
-
4674
- #: includes/core/class-builtin.php:1419
4675
- msgid "Estonian"
4676
- msgstr ""
4677
-
4678
- #: includes/core/class-builtin.php:1420
4679
- msgid "Basque"
4680
- msgstr ""
4681
-
4682
- #: includes/core/class-builtin.php:1421
4683
- msgid "Persian"
4684
- msgstr ""
4685
-
4686
- #: includes/core/class-builtin.php:1422
4687
- msgid "Fulah"
4688
- msgstr ""
4689
-
4690
- #: includes/core/class-builtin.php:1423
4691
- msgid "Finnish"
4692
- msgstr ""
4693
-
4694
- #: includes/core/class-builtin.php:1424
4695
- msgid "Fijian"
4696
- msgstr ""
4697
-
4698
- #: includes/core/class-builtin.php:1425
4699
- msgid "Faroese"
4700
- msgstr ""
4701
-
4702
- #: includes/core/class-builtin.php:1426
4703
- msgid "French"
4704
- msgstr ""
4705
-
4706
- #: includes/core/class-builtin.php:1427
4707
- msgid "Western Frisian"
4708
- msgstr ""
4709
-
4710
- #: includes/core/class-builtin.php:1428
4711
- msgid "Irish"
4712
- msgstr ""
4713
-
4714
- #: includes/core/class-builtin.php:1429
4715
- msgid "Scottish Gaelic"
4716
- msgstr ""
4717
-
4718
- #: includes/core/class-builtin.php:1430
4719
- msgid "Galician"
4720
- msgstr ""
4721
-
4722
- #: includes/core/class-builtin.php:1431
4723
- msgid "Guarani"
4724
- msgstr ""
4725
-
4726
- #: includes/core/class-builtin.php:1432
4727
- msgid "Gujarati"
4728
- msgstr ""
4729
-
4730
- #: includes/core/class-builtin.php:1433
4731
- msgid "Manx"
4732
- msgstr ""
4733
-
4734
- #: includes/core/class-builtin.php:1434
4735
- msgid "Hausa"
4736
- msgstr ""
4737
-
4738
- #: includes/core/class-builtin.php:1435
4739
- msgid "Hebrew"
4740
- msgstr ""
4741
-
4742
- #: includes/core/class-builtin.php:1436
4743
- msgid "Hindi"
4744
- msgstr ""
4745
-
4746
- #: includes/core/class-builtin.php:1437
4747
- msgid "Hiri Motu"
4748
- msgstr ""
4749
-
4750
- #: includes/core/class-builtin.php:1438
4751
- msgid "Croatian"
4752
- msgstr ""
4753
-
4754
- #: includes/core/class-builtin.php:1439
4755
- msgid "Haitian"
4756
- msgstr ""
4757
-
4758
- #: includes/core/class-builtin.php:1440
4759
- msgid "Hungarian"
4760
- msgstr ""
4761
-
4762
- #: includes/core/class-builtin.php:1441
4763
- msgid "Armenian"
4764
- msgstr ""
4765
-
4766
- #: includes/core/class-builtin.php:1442
4767
- msgid "Herero"
4768
- msgstr ""
4769
-
4770
- #: includes/core/class-builtin.php:1443
4771
- msgid "Interlingua (International Auxiliary Language Association)"
4772
- msgstr ""
4773
-
4774
- #: includes/core/class-builtin.php:1444
4775
- msgid "Indonesian"
4776
- msgstr ""
4777
-
4778
- #: includes/core/class-builtin.php:1445
4779
- msgid "Interlingue"
4780
- msgstr ""
4781
-
4782
- #: includes/core/class-builtin.php:1446
4783
- msgid "Igbo"
4784
- msgstr ""
4785
-
4786
- #: includes/core/class-builtin.php:1447
4787
- msgid "Sichuan Yi"
4788
- msgstr ""
4789
-
4790
- #: includes/core/class-builtin.php:1448
4791
- msgid "Inupiaq"
4792
- msgstr ""
4793
-
4794
- #: includes/core/class-builtin.php:1449
4795
- msgid "Ido"
4796
- msgstr ""
4797
-
4798
- #: includes/core/class-builtin.php:1450
4799
- msgid "Icelandic"
4800
- msgstr ""
4801
-
4802
- #: includes/core/class-builtin.php:1451
4803
- msgid "Italian"
4804
- msgstr ""
4805
-
4806
- #: includes/core/class-builtin.php:1452
4807
- msgid "Inuktitut"
4808
- msgstr ""
4809
-
4810
- #: includes/core/class-builtin.php:1453
4811
- msgid "Japanese"
4812
- msgstr ""
4813
-
4814
- #: includes/core/class-builtin.php:1454
4815
- msgid "Javanese"
4816
- msgstr ""
4817
-
4818
- #: includes/core/class-builtin.php:1455
4819
- msgid "Georgian"
4820
- msgstr ""
4821
-
4822
- #: includes/core/class-builtin.php:1456
4823
- msgid "Kongo"
4824
- msgstr ""
4825
-
4826
- #: includes/core/class-builtin.php:1457
4827
- msgid "Kikuyu"
4828
- msgstr ""
4829
-
4830
- #: includes/core/class-builtin.php:1458
4831
- msgid "Kwanyama"
4832
- msgstr ""
4833
-
4834
- #: includes/core/class-builtin.php:1459
4835
- msgid "Kazakh"
4836
- msgstr ""
4837
-
4838
- #: includes/core/class-builtin.php:1460
4839
- msgid "Kalaallisut"
4840
- msgstr ""
4841
-
4842
- #: includes/core/class-builtin.php:1461
4843
- msgid "Khmer"
4844
- msgstr ""
4845
-
4846
- #: includes/core/class-builtin.php:1462
4847
- msgid "Kannada"
4848
- msgstr ""
4849
-
4850
- #: includes/core/class-builtin.php:1463
4851
- msgid "Korean"
4852
- msgstr ""
4853
-
4854
- #: includes/core/class-builtin.php:1464
4855
- msgid "Kanuri"
4856
- msgstr ""
4857
-
4858
- #: includes/core/class-builtin.php:1465
4859
- msgid "Kashmiri"
4860
- msgstr ""
4861
-
4862
- #: includes/core/class-builtin.php:1466
4863
- msgid "Kurdish"
4864
- msgstr ""
4865
-
4866
- #: includes/core/class-builtin.php:1467
4867
- msgid "Komi"
4868
- msgstr ""
4869
-
4870
- #: includes/core/class-builtin.php:1468
4871
- msgid "Cornish"
4872
- msgstr ""
4873
-
4874
- #: includes/core/class-builtin.php:1469
4875
- msgid "Kirghiz"
4876
- msgstr ""
4877
-
4878
- #: includes/core/class-builtin.php:1470
4879
- msgid "Latin"
4880
- msgstr ""
4881
-
4882
- #: includes/core/class-builtin.php:1471
4883
- msgid "Luxembourgish"
4884
- msgstr ""
4885
-
4886
- #: includes/core/class-builtin.php:1472
4887
- msgid "Ganda"
4888
- msgstr ""
4889
-
4890
- #: includes/core/class-builtin.php:1473
4891
- msgid "Limburgish"
4892
- msgstr ""
4893
-
4894
- #: includes/core/class-builtin.php:1474
4895
- msgid "Lingala"
4896
- msgstr ""
4897
-
4898
- #: includes/core/class-builtin.php:1475
4899
- msgid "Lao"
4900
- msgstr ""
4901
-
4902
- #: includes/core/class-builtin.php:1476
4903
- msgid "Lithuanian"
4904
- msgstr ""
4905
-
4906
- #: includes/core/class-builtin.php:1477
4907
- msgid "Luba-Katanga"
4908
- msgstr ""
4909
-
4910
- #: includes/core/class-builtin.php:1478
4911
- msgid "Latvian"
4912
- msgstr ""
4913
-
4914
- #: includes/core/class-builtin.php:1479
4915
- msgid "Malagasy"
4916
- msgstr ""
4917
-
4918
- #: includes/core/class-builtin.php:1480
4919
- msgid "Marshallese"
4920
- msgstr ""
4921
-
4922
- #: includes/core/class-builtin.php:1481
4923
- msgid "Maori"
4924
- msgstr ""
4925
-
4926
- #: includes/core/class-builtin.php:1482
4927
- msgid "Macedonian"
4928
- msgstr ""
4929
-
4930
- #: includes/core/class-builtin.php:1483
4931
- msgid "Malayalam"
4932
- msgstr ""
4933
-
4934
- #: includes/core/class-builtin.php:1484
4935
- msgid "Mongolian"
4936
- msgstr ""
4937
-
4938
- #: includes/core/class-builtin.php:1485
4939
- msgid "Marathi"
4940
- msgstr ""
4941
-
4942
- #: includes/core/class-builtin.php:1486
4943
- msgid "Malay"
4944
- msgstr ""
4945
-
4946
- #: includes/core/class-builtin.php:1487
4947
- msgid "Maltese"
4948
- msgstr ""
4949
-
4950
- #: includes/core/class-builtin.php:1488
4951
- msgid "Burmese"
4952
- msgstr ""
4953
-
4954
- #: includes/core/class-builtin.php:1489 includes/core/class-builtin.php:1720
4955
- msgid "Nauru"
4956
- msgstr ""
4957
-
4958
- #: includes/core/class-builtin.php:1490
4959
- msgid "Norwegian Bokmal"
4960
- msgstr ""
4961
-
4962
- #: includes/core/class-builtin.php:1491
4963
- msgid "North Ndebele"
4964
- msgstr ""
4965
-
4966
- #: includes/core/class-builtin.php:1492
4967
- msgid "Nepali"
4968
- msgstr ""
4969
-
4970
- #: includes/core/class-builtin.php:1493
4971
- msgid "Ndonga"
4972
- msgstr ""
4973
-
4974
- #: includes/core/class-builtin.php:1494
4975
- msgid "Dutch"
4976
- msgstr ""
4977
-
4978
- #: includes/core/class-builtin.php:1495
4979
- msgid "Norwegian Nynorsk"
4980
- msgstr ""
4981
-
4982
- #: includes/core/class-builtin.php:1496
4983
- msgid "Norwegian"
4984
- msgstr ""
4985
-
4986
- #: includes/core/class-builtin.php:1497
4987
- msgid "South Ndebele"
4988
- msgstr ""
4989
-
4990
- #: includes/core/class-builtin.php:1498
4991
- msgid "Navajo"
4992
- msgstr ""
4993
-
4994
- #: includes/core/class-builtin.php:1499
4995
- msgid "Chichewa"
4996
- msgstr ""
4997
-
4998
- #: includes/core/class-builtin.php:1500
4999
- msgid "Occitan"
5000
- msgstr ""
5001
-
5002
- #: includes/core/class-builtin.php:1501
5003
- msgid "Ojibwa"
5004
- msgstr ""
5005
-
5006
- #: includes/core/class-builtin.php:1502
5007
- msgid "Oromo"
5008
- msgstr ""
5009
-
5010
- #: includes/core/class-builtin.php:1503
5011
- msgid "Oriya"
5012
- msgstr ""
5013
-
5014
- #: includes/core/class-builtin.php:1504
5015
- msgid "Ossetian"
5016
- msgstr ""
5017
-
5018
- #: includes/core/class-builtin.php:1505
5019
- msgid "Panjabi"
5020
- msgstr ""
5021
-
5022
- #: includes/core/class-builtin.php:1506
5023
- msgid "Pali"
5024
- msgstr ""
5025
-
5026
- #: includes/core/class-builtin.php:1507
5027
- msgid "Polish"
5028
- msgstr ""
5029
-
5030
- #: includes/core/class-builtin.php:1508
5031
- msgid "Pashto"
5032
- msgstr ""
5033
-
5034
- #: includes/core/class-builtin.php:1509
5035
- msgid "Portuguese"
5036
- msgstr ""
5037
-
5038
- #: includes/core/class-builtin.php:1510
5039
- msgid "Quechua"
5040
- msgstr ""
5041
-
5042
- #: includes/core/class-builtin.php:1511
5043
- msgid "Raeto-Romance"
5044
- msgstr ""
5045
-
5046
- #: includes/core/class-builtin.php:1512
5047
- msgid "Kirundi"
5048
- msgstr ""
5049
-
5050
- #: includes/core/class-builtin.php:1513
5051
- msgid "Romanian"
5052
- msgstr ""
5053
-
5054
- #: includes/core/class-builtin.php:1514
5055
- msgid "Russian"
5056
- msgstr ""
5057
-
5058
- #: includes/core/class-builtin.php:1515
5059
- msgid "Kinyarwanda"
5060
- msgstr ""
5061
-
5062
- #: includes/core/class-builtin.php:1516
5063
- msgid "Sanskrit"
5064
- msgstr ""
5065
-
5066
- #: includes/core/class-builtin.php:1517
5067
- msgid "Sardinian"
5068
- msgstr ""
5069
-
5070
- #: includes/core/class-builtin.php:1518
5071
- msgid "Sindhi"
5072
- msgstr ""
5073
-
5074
- #: includes/core/class-builtin.php:1519
5075
- msgid "Northern Sami"
5076
- msgstr ""
5077
-
5078
- #: includes/core/class-builtin.php:1520
5079
- msgid "Sango"
5080
- msgstr ""
5081
-
5082
- #: includes/core/class-builtin.php:1521
5083
- msgid "Sinhala"
5084
- msgstr ""
5085
-
5086
- #: includes/core/class-builtin.php:1522
5087
- msgid "Slovak"
5088
- msgstr ""
5089
-
5090
- #: includes/core/class-builtin.php:1523
5091
- msgid "Slovenian"
5092
- msgstr ""
5093
-
5094
- #: includes/core/class-builtin.php:1524
5095
- msgid "Samoan"
5096
- msgstr ""
5097
-
5098
- #: includes/core/class-builtin.php:1525
5099
- msgid "Shona"
5100
- msgstr ""
5101
-
5102
- #: includes/core/class-builtin.php:1526
5103
- msgid "Somali"
5104
- msgstr ""
5105
-
5106
- #: includes/core/class-builtin.php:1527
5107
- msgid "Albanian"
5108
- msgstr ""
5109
-
5110
- #: includes/core/class-builtin.php:1528
5111
- msgid "Serbian"
5112
- msgstr ""
5113
-
5114
- #: includes/core/class-builtin.php:1529
5115
- msgid "Swati"
5116
- msgstr ""
5117
-
5118
- #: includes/core/class-builtin.php:1530
5119
- msgid "Southern Sotho"
5120
- msgstr ""
5121
-
5122
- #: includes/core/class-builtin.php:1531
5123
- msgid "Sundanese"
5124
- msgstr ""
5125
-
5126
- #: includes/core/class-builtin.php:1532
5127
- msgid "Swedish"
5128
- msgstr ""
5129
-
5130
- #: includes/core/class-builtin.php:1533
5131
- msgid "Swahili"
5132
- msgstr ""
5133
-
5134
- #: includes/core/class-builtin.php:1534
5135
- msgid "Tamil"
5136
- msgstr ""
5137
-
5138
- #: includes/core/class-builtin.php:1535
5139
- msgid "Telugu"
5140
- msgstr ""
5141
-
5142
- #: includes/core/class-builtin.php:1536
5143
- msgid "Tajik"
5144
- msgstr ""
5145
-
5146
- #: includes/core/class-builtin.php:1537
5147
- msgid "Thai"
5148
- msgstr ""
5149
-
5150
- #: includes/core/class-builtin.php:1538
5151
- msgid "Tigrinya"
5152
- msgstr ""
5153
-
5154
- #: includes/core/class-builtin.php:1539
5155
- msgid "Turkmen"
5156
- msgstr ""
5157
-
5158
- #: includes/core/class-builtin.php:1540
5159
- msgid "Tagalog"
5160
- msgstr ""
5161
-
5162
- #: includes/core/class-builtin.php:1541
5163
- msgid "Tswana"
5164
- msgstr ""
5165
-
5166
- #: includes/core/class-builtin.php:1542 includes/core/class-builtin.php:1790
5167
- msgid "Tonga"
5168
- msgstr ""
5169
-
5170
- #: includes/core/class-builtin.php:1543
5171
- msgid "Turkish"
5172
- msgstr ""
5173
-
5174
- #: includes/core/class-builtin.php:1544
5175
- msgid "Tsonga"
5176
- msgstr ""
5177
-
5178
- #: includes/core/class-builtin.php:1545
5179
- msgid "Tatar"
5180
- msgstr ""
5181
-
5182
- #: includes/core/class-builtin.php:1546
5183
- msgid "Twi"
5184
- msgstr ""
5185
-
5186
- #: includes/core/class-builtin.php:1547
5187
- msgid "Tahitian"
5188
- msgstr ""
5189
-
5190
- #: includes/core/class-builtin.php:1548
5191
- msgid "Uighur"
5192
- msgstr ""
5193
-
5194
- #: includes/core/class-builtin.php:1549
5195
- msgid "Ukrainian"
5196
- msgstr ""
5197
-
5198
- #: includes/core/class-builtin.php:1550
5199
- msgid "Urdu"
5200
- msgstr ""
5201
-
5202
- #: includes/core/class-builtin.php:1551
5203
- msgid "Uzbek"
5204
- msgstr ""
5205
-
5206
- #: includes/core/class-builtin.php:1552
5207
- msgid "Venda"
5208
- msgstr ""
5209
-
5210
- #: includes/core/class-builtin.php:1553
5211
- msgid "Vietnamese"
5212
- msgstr ""
5213
-
5214
- #: includes/core/class-builtin.php:1554
5215
- msgid "Volapuk"
5216
- msgstr ""
5217
-
5218
- #: includes/core/class-builtin.php:1555
5219
- msgid "Walloon"
5220
- msgstr ""
5221
-
5222
- #: includes/core/class-builtin.php:1556
5223
- msgid "Wolof"
5224
- msgstr ""
5225
-
5226
- #: includes/core/class-builtin.php:1557
5227
- msgid "Xhosa"
5228
- msgstr ""
5229
-
5230
- #: includes/core/class-builtin.php:1558
5231
- msgid "Yiddish"
5232
- msgstr ""
5233
-
5234
- #: includes/core/class-builtin.php:1559
5235
- msgid "Yoruba"
5236
- msgstr ""
5237
-
5238
- #: includes/core/class-builtin.php:1560
5239
- msgid "Zhuang"
5240
- msgstr ""
5241
-
5242
- #: includes/core/class-builtin.php:1561
5243
- msgid "Chinese"
5244
- msgstr ""
5245
-
5246
- #: includes/core/class-builtin.php:1562
5247
- msgid "Zulu"
5248
- msgstr ""
5249
-
5250
- #: includes/core/class-builtin.php:1568
5251
- msgid "Afghanistan"
5252
- msgstr ""
5253
-
5254
- #: includes/core/class-builtin.php:1569
5255
- msgid "Åland Islands"
5256
- msgstr ""
5257
-
5258
- #: includes/core/class-builtin.php:1570
5259
- msgid "Albania"
5260
- msgstr ""
5261
-
5262
- #: includes/core/class-builtin.php:1571
5263
- msgid "Algeria"
5264
- msgstr ""
5265
-
5266
- #: includes/core/class-builtin.php:1572
5267
- msgid "American Samoa"
5268
- msgstr ""
5269
-
5270
- #: includes/core/class-builtin.php:1573
5271
- msgid "Andorra"
5272
- msgstr ""
5273
-
5274
- #: includes/core/class-builtin.php:1574
5275
- msgid "Angola"
5276
- msgstr ""
5277
-
5278
- #: includes/core/class-builtin.php:1575
5279
- msgid "Anguilla"
5280
- msgstr ""
5281
-
5282
- #: includes/core/class-builtin.php:1576
5283
- msgid "Antarctica"
5284
- msgstr ""
5285
-
5286
- #: includes/core/class-builtin.php:1577
5287
- msgid "Antigua and Barbuda"
5288
- msgstr ""
5289
-
5290
- #: includes/core/class-builtin.php:1578
5291
- msgid "Argentina"
5292
- msgstr ""
5293
-
5294
- #: includes/core/class-builtin.php:1579
5295
- msgid "Armenia"
5296
- msgstr ""
5297
-
5298
- #: includes/core/class-builtin.php:1580
5299
- msgid "Aruba"
5300
- msgstr ""
5301
-
5302
- #: includes/core/class-builtin.php:1581
5303
- msgid "Australia"
5304
- msgstr ""
5305
-
5306
- #: includes/core/class-builtin.php:1582
5307
- msgid "Austria"
5308
- msgstr ""
5309
-
5310
- #: includes/core/class-builtin.php:1583
5311
- msgid "Azerbaijan"
5312
- msgstr ""
5313
-
5314
- #: includes/core/class-builtin.php:1584
5315
- msgid "Bahamas"
5316
- msgstr ""
5317
-
5318
- #: includes/core/class-builtin.php:1585
5319
- msgid "Bahrain"
5320
- msgstr ""
5321
-
5322
- #: includes/core/class-builtin.php:1586
5323
- msgid "Bangladesh"
5324
- msgstr ""
5325
-
5326
- #: includes/core/class-builtin.php:1587
5327
- msgid "Barbados"
5328
- msgstr ""
5329
-
5330
- #: includes/core/class-builtin.php:1588
5331
- msgid "Belarus"
5332
- msgstr ""
5333
-
5334
- #: includes/core/class-builtin.php:1589
5335
- msgid "Belgium"
5336
- msgstr ""
5337
-
5338
- #: includes/core/class-builtin.php:1590
5339
- msgid "Belize"
5340
- msgstr ""
5341
-
5342
- #: includes/core/class-builtin.php:1591
5343
- msgid "Benin"
5344
- msgstr ""
5345
-
5346
- #: includes/core/class-builtin.php:1592
5347
- msgid "Bermuda"
5348
- msgstr ""
5349
-
5350
- #: includes/core/class-builtin.php:1593
5351
- msgid "Bhutan"
5352
- msgstr ""
5353
-
5354
- #: includes/core/class-builtin.php:1594
5355
- msgid "Bolivia, Plurinational State of"
5356
- msgstr ""
5357
-
5358
- #: includes/core/class-builtin.php:1595
5359
- msgid "Bosnia and Herzegovina"
5360
- msgstr ""
5361
-
5362
- #: includes/core/class-builtin.php:1596
5363
- msgid "Botswana"
5364
- msgstr ""
5365
-
5366
- #: includes/core/class-builtin.php:1597
5367
- msgid "Bouvet Island"
5368
- msgstr ""
5369
-
5370
- #: includes/core/class-builtin.php:1598
5371
- msgid "Brazil"
5372
- msgstr ""
5373
-
5374
- #: includes/core/class-builtin.php:1599
5375
- msgid "British Indian Ocean Territory"
5376
- msgstr ""
5377
-
5378
- #: includes/core/class-builtin.php:1600
5379
- msgid "Brunei Darussalam"
5380
- msgstr ""
5381
-
5382
- #: includes/core/class-builtin.php:1601
5383
- msgid "Bulgaria"
5384
- msgstr ""
5385
-
5386
- #: includes/core/class-builtin.php:1602
5387
- msgid "Burkina Faso"
5388
- msgstr ""
5389
-
5390
- #: includes/core/class-builtin.php:1603
5391
- msgid "Burundi"
5392
- msgstr ""
5393
-
5394
- #: includes/core/class-builtin.php:1604
5395
- msgid "Cambodia"
5396
- msgstr ""
5397
-
5398
- #: includes/core/class-builtin.php:1605
5399
- msgid "Cameroon"
5400
- msgstr ""
5401
-
5402
- #: includes/core/class-builtin.php:1606
5403
- msgid "Canada"
5404
- msgstr ""
5405
-
5406
- #: includes/core/class-builtin.php:1607
5407
- msgid "Cape Verde"
5408
- msgstr ""
5409
-
5410
- #: includes/core/class-builtin.php:1608
5411
- msgid "Cayman Islands"
5412
- msgstr ""
5413
-
5414
- #: includes/core/class-builtin.php:1609
5415
- msgid "Central African Republic"
5416
- msgstr ""
5417
-
5418
- #: includes/core/class-builtin.php:1610
5419
- msgid "Chad"
5420
- msgstr ""
5421
-
5422
- #: includes/core/class-builtin.php:1611
5423
- msgid "Chile"
5424
- msgstr ""
5425
-
5426
- #: includes/core/class-builtin.php:1612
5427
- msgid "China"
5428
- msgstr ""
5429
-
5430
- #: includes/core/class-builtin.php:1613
5431
- msgid "Christmas Island"
5432
- msgstr ""
5433
-
5434
- #: includes/core/class-builtin.php:1614
5435
- msgid "Cocos (Keeling) Islands"
5436
- msgstr ""
5437
-
5438
- #: includes/core/class-builtin.php:1615
5439
- msgid "Colombia"
5440
- msgstr ""
5441
-
5442
- #: includes/core/class-builtin.php:1616
5443
- msgid "Comoros"
5444
- msgstr ""
5445
-
5446
- #: includes/core/class-builtin.php:1617
5447
- msgid "Congo"
5448
- msgstr ""
5449
-
5450
- #: includes/core/class-builtin.php:1618
5451
- msgid "Congo, the Democratic Republic of the"
5452
- msgstr ""
5453
-
5454
- #: includes/core/class-builtin.php:1619
5455
- msgid "Cook Islands"
5456
- msgstr ""
5457
-
5458
- #: includes/core/class-builtin.php:1620
5459
- msgid "Costa Rica"
5460
- msgstr ""
5461
-
5462
- #: includes/core/class-builtin.php:1621
5463
- msgid "Côte d'Ivoire"
5464
- msgstr ""
5465
-
5466
- #: includes/core/class-builtin.php:1622
5467
- msgid "Croatia"
5468
- msgstr ""
5469
-
5470
- #: includes/core/class-builtin.php:1623
5471
- msgid "Cuba"
5472
- msgstr ""
5473
-
5474
- #: includes/core/class-builtin.php:1624
5475
- msgid "Cyprus"
5476
- msgstr ""
5477
-
5478
- #: includes/core/class-builtin.php:1625
5479
- msgid "Czech Republic"
5480
- msgstr ""
5481
-
5482
- #: includes/core/class-builtin.php:1626
5483
- msgid "Denmark"
5484
- msgstr ""
5485
-
5486
- #: includes/core/class-builtin.php:1627
5487
- msgid "Djibouti"
5488
- msgstr ""
5489
-
5490
- #: includes/core/class-builtin.php:1628
5491
- msgid "Dominica"
5492
- msgstr ""
5493
-
5494
- #: includes/core/class-builtin.php:1629
5495
- msgid "Dominican Republic"
5496
- msgstr ""
5497
-
5498
- #: includes/core/class-builtin.php:1630
5499
- msgid "Ecuador"
5500
- msgstr ""
5501
-
5502
- #: includes/core/class-builtin.php:1631
5503
- msgid "Egypt"
5504
- msgstr ""
5505
-
5506
- #: includes/core/class-builtin.php:1632
5507
- msgid "El Salvador"
5508
- msgstr ""
5509
-
5510
- #: includes/core/class-builtin.php:1633
5511
- msgid "Equatorial Guinea"
5512
- msgstr ""
5513
-
5514
- #: includes/core/class-builtin.php:1634
5515
- msgid "Eritrea"
5516
- msgstr ""
5517
-
5518
- #: includes/core/class-builtin.php:1635
5519
- msgid "Estonia"
5520
- msgstr ""
5521
-
5522
- #: includes/core/class-builtin.php:1636
5523
- msgid "Ethiopia"
5524
- msgstr ""
5525
-
5526
- #: includes/core/class-builtin.php:1637
5527
- msgid "Falkland Islands (Malvinas)"
5528
- msgstr ""
5529
-
5530
- #: includes/core/class-builtin.php:1638
5531
- msgid "Faroe Islands"
5532
- msgstr ""
5533
-
5534
- #: includes/core/class-builtin.php:1639
5535
- msgid "Fiji"
5536
- msgstr ""
5537
-
5538
- #: includes/core/class-builtin.php:1640
5539
- msgid "Finland"
5540
- msgstr ""
5541
-
5542
- #: includes/core/class-builtin.php:1641
5543
- msgid "France"
5544
- msgstr ""
5545
-
5546
- #: includes/core/class-builtin.php:1642
5547
- msgid "French Guiana"
5548
- msgstr ""
5549
-
5550
- #: includes/core/class-builtin.php:1643
5551
- msgid "French Polynesia"
5552
- msgstr ""
5553
-
5554
- #: includes/core/class-builtin.php:1644
5555
- msgid "French Southern Territories"
5556
- msgstr ""
5557
-
5558
- #: includes/core/class-builtin.php:1645
5559
- msgid "Gabon"
5560
- msgstr ""
5561
-
5562
- #: includes/core/class-builtin.php:1646
5563
- msgid "Gambia"
5564
- msgstr ""
5565
-
5566
- #: includes/core/class-builtin.php:1647
5567
- msgid "Georgia"
5568
- msgstr ""
5569
-
5570
- #: includes/core/class-builtin.php:1648
5571
- msgid "Germany"
5572
- msgstr ""
5573
-
5574
- #: includes/core/class-builtin.php:1649
5575
- msgid "Ghana"
5576
- msgstr ""
5577
-
5578
- #: includes/core/class-builtin.php:1650
5579
- msgid "Gibraltar"
5580
- msgstr ""
5581
-
5582
- #: includes/core/class-builtin.php:1651
5583
- msgid "Greece"
5584
- msgstr ""
5585
-
5586
- #: includes/core/class-builtin.php:1652
5587
- msgid "Greenland"
5588
- msgstr ""
5589
-
5590
- #: includes/core/class-builtin.php:1653
5591
- msgid "Grenada"
5592
- msgstr ""
5593
-
5594
- #: includes/core/class-builtin.php:1654
5595
- msgid "Guadeloupe"
5596
- msgstr ""
5597
-
5598
- #: includes/core/class-builtin.php:1655
5599
- msgid "Guam"
5600
- msgstr ""
5601
-
5602
- #: includes/core/class-builtin.php:1656
5603
- msgid "Guatemala"
5604
- msgstr ""
5605
-
5606
- #: includes/core/class-builtin.php:1657
5607
- msgid "Guernsey"
5608
- msgstr ""
5609
-
5610
- #: includes/core/class-builtin.php:1658
5611
- msgid "Guinea"
5612
- msgstr ""
5613
-
5614
- #: includes/core/class-builtin.php:1659
5615
- msgid "Guinea-Bissau"
5616
- msgstr ""
5617
-
5618
- #: includes/core/class-builtin.php:1660
5619
- msgid "Guyana"
5620
- msgstr ""
5621
-
5622
- #: includes/core/class-builtin.php:1661
5623
- msgid "Haiti"
5624
- msgstr ""
5625
-
5626
- #: includes/core/class-builtin.php:1662
5627
- msgid "Heard Island and McDonald Islands"
5628
- msgstr ""
5629
-
5630
- #: includes/core/class-builtin.php:1663
5631
- msgid "Holy See (Vatican City State)"
5632
- msgstr ""
5633
-
5634
- #: includes/core/class-builtin.php:1664
5635
- msgid "Honduras"
5636
- msgstr ""
5637
-
5638
- #: includes/core/class-builtin.php:1665
5639
- msgid "Hong Kong"
5640
- msgstr ""
5641
-
5642
- #: includes/core/class-builtin.php:1666
5643
- msgid "Hungary"
5644
- msgstr ""
5645
-
5646
- #: includes/core/class-builtin.php:1667
5647
- msgid "Iceland"
5648
- msgstr ""
5649
-
5650
- #: includes/core/class-builtin.php:1668
5651
- msgid "India"
5652
- msgstr ""
5653
-
5654
- #: includes/core/class-builtin.php:1669
5655
- msgid "Indonesia"
5656
- msgstr ""
5657
-
5658
- #: includes/core/class-builtin.php:1670
5659
- msgid "Iran, Islamic Republic of"
5660
- msgstr ""
5661
-
5662
- #: includes/core/class-builtin.php:1671
5663
- msgid "Iraq"
5664
- msgstr ""
5665
-
5666
- #: includes/core/class-builtin.php:1672
5667
- msgid "Ireland"
5668
- msgstr ""
5669
-
5670
- #: includes/core/class-builtin.php:1673
5671
- msgid "Isle of Man"
5672
- msgstr ""
5673
-
5674
- #: includes/core/class-builtin.php:1674
5675
- msgid "Israel"
5676
- msgstr ""
5677
-
5678
- #: includes/core/class-builtin.php:1675
5679
- msgid "Italy"
5680
- msgstr ""
5681
-
5682
- #: includes/core/class-builtin.php:1676
5683
- msgid "Jamaica"
5684
- msgstr ""
5685
-
5686
- #: includes/core/class-builtin.php:1677
5687
- msgid "Japan"
5688
- msgstr ""
5689
-
5690
- #: includes/core/class-builtin.php:1678
5691
- msgid "Jersey"
5692
- msgstr ""
5693
-
5694
- #: includes/core/class-builtin.php:1679
5695
- msgid "Jordan"
5696
- msgstr ""
5697
-
5698
- #: includes/core/class-builtin.php:1680
5699
- msgid "Kazakhstan"
5700
- msgstr ""
5701
-
5702
- #: includes/core/class-builtin.php:1681
5703
- msgid "Kenya"
5704
- msgstr ""
5705
-
5706
- #: includes/core/class-builtin.php:1682
5707
- msgid "Kiribati"
5708
- msgstr ""
5709
-
5710
- #: includes/core/class-builtin.php:1683
5711
- msgid "Korea, Democratic People's Republic of"
5712
- msgstr ""
5713
-
5714
- #: includes/core/class-builtin.php:1684
5715
- msgid "Korea, Republic of"
5716
- msgstr ""
5717
-
5718
- #: includes/core/class-builtin.php:1685
5719
- msgid "Kuwait"
5720
- msgstr ""
5721
-
5722
- #: includes/core/class-builtin.php:1686
5723
- msgid "Kyrgyzstan"
5724
- msgstr ""
5725
-
5726
- #: includes/core/class-builtin.php:1687
5727
- msgid "Lao People's Democratic Republic"
5728
- msgstr ""
5729
-
5730
- #: includes/core/class-builtin.php:1688
5731
- msgid "Latvia"
5732
- msgstr ""
5733
-
5734
- #: includes/core/class-builtin.php:1689
5735
- msgid "Lebanon"
5736
- msgstr ""
5737
-
5738
- #: includes/core/class-builtin.php:1690
5739
- msgid "Lesotho"
5740
- msgstr ""
5741
-
5742
- #: includes/core/class-builtin.php:1691
5743
- msgid "Liberia"
5744
- msgstr ""
5745
-
5746
- #: includes/core/class-builtin.php:1692
5747
- msgid "Libyan Arab Jamahiriya"
5748
- msgstr ""
5749
-
5750
- #: includes/core/class-builtin.php:1693
5751
- msgid "Liechtenstein"
5752
- msgstr ""
5753
-
5754
- #: includes/core/class-builtin.php:1694
5755
- msgid "Lithuania"
5756
- msgstr ""
5757
-
5758
- #: includes/core/class-builtin.php:1695
5759
- msgid "Luxembourg"
5760
- msgstr ""
5761
-
5762
- #: includes/core/class-builtin.php:1696
5763
- msgid "Macao"
5764
- msgstr ""
5765
-
5766
- #: includes/core/class-builtin.php:1697
5767
- msgid "Macedonia, the former Yugoslav Republic of"
5768
- msgstr ""
5769
-
5770
- #: includes/core/class-builtin.php:1698
5771
- msgid "Madagascar"
5772
- msgstr ""
5773
-
5774
- #: includes/core/class-builtin.php:1699
5775
- msgid "Malawi"
5776
- msgstr ""
5777
-
5778
- #: includes/core/class-builtin.php:1700
5779
- msgid "Malaysia"
5780
- msgstr ""
5781
-
5782
- #: includes/core/class-builtin.php:1701
5783
- msgid "Maldives"
5784
- msgstr ""
5785
-
5786
- #: includes/core/class-builtin.php:1702
5787
- msgid "Mali"
5788
- msgstr ""
5789
-
5790
- #: includes/core/class-builtin.php:1703
5791
- msgid "Malta"
5792
- msgstr ""
5793
-
5794
- #: includes/core/class-builtin.php:1704
5795
- msgid "Marshall Islands"
5796
- msgstr ""
5797
-
5798
- #: includes/core/class-builtin.php:1705
5799
- msgid "Martinique"
5800
- msgstr ""
5801
-
5802
- #: includes/core/class-builtin.php:1706
5803
- msgid "Mauritania"
5804
- msgstr ""
5805
-
5806
- #: includes/core/class-builtin.php:1707
5807
- msgid "Mauritius"
5808
- msgstr ""
5809
-
5810
- #: includes/core/class-builtin.php:1708
5811
- msgid "Mayotte"
5812
- msgstr ""
5813
-
5814
- #: includes/core/class-builtin.php:1709
5815
- msgid "Mexico"
5816
- msgstr ""
5817
-
5818
- #: includes/core/class-builtin.php:1710
5819
- msgid "Micronesia, Federated States of"
5820
- msgstr ""
5821
-
5822
- #: includes/core/class-builtin.php:1711
5823
- msgid "Moldova, Republic of"
5824
- msgstr ""
5825
-
5826
- #: includes/core/class-builtin.php:1712
5827
- msgid "Monaco"
5828
- msgstr ""
5829
-
5830
- #: includes/core/class-builtin.php:1713
5831
- msgid "Mongolia"
5832
- msgstr ""
5833
-
5834
- #: includes/core/class-builtin.php:1714
5835
- msgid "Montenegro"
5836
- msgstr ""
5837
-
5838
- #: includes/core/class-builtin.php:1715
5839
- msgid "Montserrat"
5840
- msgstr ""
5841
-
5842
- #: includes/core/class-builtin.php:1716
5843
- msgid "Morocco"
5844
- msgstr ""
5845
-
5846
- #: includes/core/class-builtin.php:1717
5847
- msgid "Mozambique"
5848
- msgstr ""
5849
-
5850
- #: includes/core/class-builtin.php:1718
5851
- msgid "Myanmar"
5852
- msgstr ""
5853
-
5854
- #: includes/core/class-builtin.php:1719
5855
- msgid "Namibia"
5856
- msgstr ""
5857
-
5858
- #: includes/core/class-builtin.php:1721
5859
- msgid "Nepal"
5860
- msgstr ""
5861
-
5862
- #: includes/core/class-builtin.php:1722
5863
- msgid "Netherlands"
5864
- msgstr ""
5865
-
5866
- #: includes/core/class-builtin.php:1723
5867
- msgid "Netherlands Antilles"
5868
- msgstr ""
5869
-
5870
- #: includes/core/class-builtin.php:1724
5871
- msgid "New Caledonia"
5872
- msgstr ""
5873
-
5874
- #: includes/core/class-builtin.php:1725
5875
- msgid "New Zealand"
5876
- msgstr ""
5877
-
5878
- #: includes/core/class-builtin.php:1726
5879
- msgid "Nicaragua"
5880
- msgstr ""
5881
-
5882
- #: includes/core/class-builtin.php:1727
5883
- msgid "Niger"
5884
- msgstr ""
5885
-
5886
- #: includes/core/class-builtin.php:1728
5887
- msgid "Nigeria"
5888
- msgstr ""
5889
-
5890
- #: includes/core/class-builtin.php:1729
5891
- msgid "Niue"
5892
- msgstr ""
5893
-
5894
- #: includes/core/class-builtin.php:1730
5895
- msgid "Norfolk Island"
5896
- msgstr ""
5897
-
5898
- #: includes/core/class-builtin.php:1731
5899
- msgid "Northern Mariana Islands"
5900
- msgstr ""
5901
-
5902
- #: includes/core/class-builtin.php:1732
5903
- msgid "Norway"
5904
- msgstr ""
5905
-
5906
- #: includes/core/class-builtin.php:1733
5907
- msgid "Oman"
5908
- msgstr ""
5909
-
5910
- #: includes/core/class-builtin.php:1734
5911
- msgid "Pakistan"
5912
- msgstr ""
5913
-
5914
- #: includes/core/class-builtin.php:1735
5915
- msgid "Palau"
5916
- msgstr ""
5917
-
5918
- #: includes/core/class-builtin.php:1736
5919
- msgid "Palestine"
5920
- msgstr ""
5921
-
5922
- #: includes/core/class-builtin.php:1737
5923
- msgid "Panama"
5924
- msgstr ""
5925
-
5926
- #: includes/core/class-builtin.php:1738
5927
- msgid "Papua New Guinea"
5928
- msgstr ""
5929
-
5930
- #: includes/core/class-builtin.php:1739
5931
- msgid "Paraguay"
5932
- msgstr ""
5933
-
5934
- #: includes/core/class-builtin.php:1740
5935
- msgid "Peru"
5936
- msgstr ""
5937
-
5938
- #: includes/core/class-builtin.php:1741
5939
- msgid "Philippines"
5940
- msgstr ""
5941
-
5942
- #: includes/core/class-builtin.php:1742
5943
- msgid "Pitcairn"
5944
- msgstr ""
5945
-
5946
- #: includes/core/class-builtin.php:1743
5947
- msgid "Poland"
5948
- msgstr ""
5949
-
5950
- #: includes/core/class-builtin.php:1744
5951
- msgid "Portugal"
5952
- msgstr ""
5953
-
5954
- #: includes/core/class-builtin.php:1745
5955
- msgid "Puerto Rico"
5956
- msgstr ""
5957
-
5958
- #: includes/core/class-builtin.php:1746
5959
- msgid "Qatar"
5960
- msgstr ""
5961
-
5962
- #: includes/core/class-builtin.php:1747
5963
- msgid "Réunion"
5964
- msgstr ""
5965
-
5966
- #: includes/core/class-builtin.php:1748
5967
- msgid "Romania"
5968
- msgstr ""
5969
-
5970
- #: includes/core/class-builtin.php:1749
5971
- msgid "Russian Federation"
5972
- msgstr ""
5973
-
5974
- #: includes/core/class-builtin.php:1750
5975
- msgid "Rwanda"
5976
- msgstr ""
5977
-
5978
- #: includes/core/class-builtin.php:1751
5979
- msgid "Saint Barthélemy"
5980
- msgstr ""
5981
-
5982
- #: includes/core/class-builtin.php:1752
5983
- msgid "Saint Helena"
5984
- msgstr ""
5985
-
5986
- #: includes/core/class-builtin.php:1753
5987
- msgid "Saint Kitts and Nevis"
5988
- msgstr ""
5989
-
5990
- #: includes/core/class-builtin.php:1754
5991
- msgid "Saint Lucia"
5992
- msgstr ""
5993
-
5994
- #: includes/core/class-builtin.php:1755
5995
- msgid "Saint Martin (French part)"
5996
- msgstr ""
5997
-
5998
- #: includes/core/class-builtin.php:1756
5999
- msgid "Saint Pierre and Miquelon"
6000
- msgstr ""
6001
-
6002
- #: includes/core/class-builtin.php:1757
6003
- msgid "Saint Vincent and the Grenadines"
6004
- msgstr ""
6005
-
6006
- #: includes/core/class-builtin.php:1758
6007
- msgid "Samoa"
6008
- msgstr ""
6009
-
6010
- #: includes/core/class-builtin.php:1759
6011
- msgid "San Marino"
6012
- msgstr ""
6013
-
6014
- #: includes/core/class-builtin.php:1760
6015
- msgid "Sao Tome and Principe"
6016
- msgstr ""
6017
-
6018
- #: includes/core/class-builtin.php:1761
6019
- msgid "Saudi Arabia"
6020
- msgstr ""
6021
-
6022
- #: includes/core/class-builtin.php:1762
6023
- msgid "Senegal"
6024
- msgstr ""
6025
-
6026
- #: includes/core/class-builtin.php:1763
6027
- msgid "Serbia"
6028
- msgstr ""
6029
-
6030
- #: includes/core/class-builtin.php:1764
6031
- msgid "Seychelles"
6032
- msgstr ""
6033
-
6034
- #: includes/core/class-builtin.php:1765
6035
- msgid "Sierra Leone"
6036
- msgstr ""
6037
-
6038
- #: includes/core/class-builtin.php:1766
6039
- msgid "Singapore"
6040
- msgstr ""
6041
-
6042
- #: includes/core/class-builtin.php:1767
6043
- msgid "Slovakia"
6044
- msgstr ""
6045
-
6046
- #: includes/core/class-builtin.php:1768
6047
- msgid "Slovenia"
6048
- msgstr ""
6049
-
6050
- #: includes/core/class-builtin.php:1769
6051
- msgid "Solomon Islands"
6052
- msgstr ""
6053
-
6054
- #: includes/core/class-builtin.php:1770
6055
- msgid "Somalia"
6056
- msgstr ""
6057
-
6058
- #: includes/core/class-builtin.php:1771
6059
- msgid "South Africa"
6060
- msgstr ""
6061
-
6062
- #: includes/core/class-builtin.php:1772
6063
- msgid "South Georgia and the South Sandwich Islands"
6064
- msgstr ""
6065
-
6066
- #: includes/core/class-builtin.php:1773
6067
- msgid "South Sudan"
6068
- msgstr ""
6069
-
6070
- #: includes/core/class-builtin.php:1774
6071
- msgid "Spain"
6072
- msgstr ""
6073
-
6074
- #: includes/core/class-builtin.php:1775
6075
- msgid "Sri Lanka"
6076
- msgstr ""
6077
-
6078
- #: includes/core/class-builtin.php:1776
6079
- msgid "Sudan"
6080
- msgstr ""
6081
-
6082
- #: includes/core/class-builtin.php:1777
6083
- msgid "Suriname"
6084
- msgstr ""
6085
-
6086
- #: includes/core/class-builtin.php:1778
6087
- msgid "Svalbard and Jan Mayen"
6088
- msgstr ""
6089
-
6090
- #: includes/core/class-builtin.php:1779
6091
- msgid "Swaziland"
6092
- msgstr ""
6093
-
6094
- #: includes/core/class-builtin.php:1780
6095
- msgid "Sweden"
6096
- msgstr ""
6097
-
6098
- #: includes/core/class-builtin.php:1781
6099
- msgid "Switzerland"
6100
- msgstr ""
6101
-
6102
- #: includes/core/class-builtin.php:1782
6103
- msgid "Syrian Arab Republic"
6104
- msgstr ""
6105
-
6106
- #: includes/core/class-builtin.php:1783
6107
- msgid "Taiwan, Province of China"
6108
- msgstr ""
6109
-
6110
- #: includes/core/class-builtin.php:1784
6111
- msgid "Tajikistan"
6112
- msgstr ""
6113
-
6114
- #: includes/core/class-builtin.php:1785
6115
- msgid "Tanzania, United Republic of"
6116
- msgstr ""
6117
-
6118
- #: includes/core/class-builtin.php:1786
6119
- msgid "Thailand"
6120
- msgstr ""
6121
-
6122
- #: includes/core/class-builtin.php:1787
6123
- msgid "Timor-Leste"
6124
- msgstr ""
6125
-
6126
- #: includes/core/class-builtin.php:1788
6127
- msgid "Togo"
6128
- msgstr ""
6129
-
6130
- #: includes/core/class-builtin.php:1789
6131
- msgid "Tokelau"
6132
- msgstr ""
6133
-
6134
- #: includes/core/class-builtin.php:1791
6135
- msgid "Trinidad and Tobago"
6136
- msgstr ""
6137
-
6138
- #: includes/core/class-builtin.php:1792
6139
- msgid "Tunisia"
6140
- msgstr ""
6141
-
6142
- #: includes/core/class-builtin.php:1793
6143
- msgid "Turkey"
6144
- msgstr ""
6145
-
6146
- #: includes/core/class-builtin.php:1794
6147
- msgid "Turkmenistan"
6148
- msgstr ""
6149
-
6150
- #: includes/core/class-builtin.php:1795
6151
- msgid "Turks and Caicos Islands"
6152
- msgstr ""
6153
-
6154
- #: includes/core/class-builtin.php:1796
6155
- msgid "Tuvalu"
6156
- msgstr ""
6157
-
6158
- #: includes/core/class-builtin.php:1797
6159
- msgid "Uganda"
6160
- msgstr ""
6161
-
6162
- #: includes/core/class-builtin.php:1798
6163
- msgid "Ukraine"
6164
- msgstr ""
6165
-
6166
- #: includes/core/class-builtin.php:1799
6167
- msgid "United Arab Emirates"
6168
- msgstr ""
6169
-
6170
- #: includes/core/class-builtin.php:1800
6171
- msgid "United Kingdom"
6172
- msgstr ""
6173
-
6174
- #: includes/core/class-builtin.php:1801
6175
- msgid "United States"
6176
- msgstr ""
6177
-
6178
- #: includes/core/class-builtin.php:1802
6179
- msgid "United States Minor Outlying Islands"
6180
- msgstr ""
6181
-
6182
- #: includes/core/class-builtin.php:1803
6183
- msgid "Uruguay"
6184
- msgstr ""
6185
-
6186
- #: includes/core/class-builtin.php:1804
6187
- msgid "Uzbekistan"
6188
- msgstr ""
6189
-
6190
- #: includes/core/class-builtin.php:1805
6191
- msgid "Vanuatu"
6192
- msgstr ""
6193
-
6194
- #: includes/core/class-builtin.php:1806
6195
- msgid "Venezuela, Bolivarian Republic of"
6196
- msgstr ""
6197
-
6198
- #: includes/core/class-builtin.php:1807
6199
- msgid "Viet Nam"
6200
- msgstr ""
6201
-
6202
- #: includes/core/class-builtin.php:1808
6203
- msgid "Virgin Islands, British"
6204
- msgstr ""
6205
-
6206
- #: includes/core/class-builtin.php:1809
6207
- msgid "Virgin Islands, U.S."
6208
- msgstr ""
6209
-
6210
- #: includes/core/class-builtin.php:1810
6211
- msgid "Wallis and Futuna"
6212
- msgstr ""
6213
-
6214
- #: includes/core/class-builtin.php:1811
6215
- msgid "Western Sahara"
6216
- msgstr ""
6217
-
6218
- #: includes/core/class-builtin.php:1812
6219
- msgid "Yemen"
6220
- msgstr ""
6221
-
6222
- #: includes/core/class-builtin.php:1813
6223
- msgid "Zambia"
6224
- msgstr ""
6225
-
6226
- #: includes/core/class-builtin.php:1814
6227
- msgid "Zimbabwe"
6228
- msgstr ""
6229
-
6230
- #: includes/core/class-common.php:55
6231
- msgid "Form"
6232
- msgstr ""
6233
-
6234
- #: includes/core/class-common.php:57
6235
- msgid "Add New Form"
6236
- msgstr ""
6237
-
6238
- #: includes/core/class-common.php:58
6239
- msgid "Edit Form"
6240
- msgstr ""
6241
-
6242
- #: includes/core/class-common.php:59
6243
- msgid "You did not create any forms yet"
6244
- msgstr ""
6245
-
6246
- #: includes/core/class-common.php:61
6247
- msgid "Search Forms"
6248
- msgstr ""
6249
-
6250
- #: includes/core/class-common.php:85
6251
- msgid "Member Directory"
6252
- msgstr ""
6253
-
6254
- #: includes/core/class-common.php:87
6255
- msgid "Add New Member Directory"
6256
- msgstr ""
6257
-
6258
- #: includes/core/class-common.php:88
6259
- msgid "Edit Member Directory"
6260
- msgstr ""
6261
-
6262
- #: includes/core/class-common.php:89
6263
- msgid "You did not create any member directories yet"
6264
- msgstr ""
6265
-
6266
- #: includes/core/class-common.php:91
6267
- msgid "Search Member Directories"
6268
- msgstr ""
6269
-
6270
- #: includes/core/class-cron.php:62
6271
- msgid "Once Weekly"
6272
- msgstr ""
6273
-
6274
- #: includes/core/class-date-time.php:54
6275
- msgid "just now"
6276
- msgstr ""
6277
-
6278
- #: includes/core/class-date-time.php:63
6279
- #, php-format
6280
- msgid "%s min"
6281
- msgid_plural "%s mins"
6282
- msgstr[0] ""
6283
- msgstr[1] ""
6284
-
6285
- #: includes/core/class-date-time.php:72
6286
- #, php-format
6287
- msgid "%s hr"
6288
- msgid_plural "%s hrs"
6289
- msgstr[0] ""
6290
- msgstr[1] ""
6291
-
6292
- #: includes/core/class-date-time.php:82
6293
- #, php-format
6294
- msgid "Yesterday at %s"
6295
- msgstr ""
6296
-
6297
- #: includes/core/class-date-time.php:84 includes/core/class-date-time.php:89
6298
- #: includes/core/class-date-time.php:93 includes/core/class-date-time.php:97
6299
- #, php-format
6300
- msgid "%s at %s"
6301
- msgstr ""
6302
-
6303
- #: includes/core/class-date-time.php:146
6304
- #, php-format
6305
- msgid "%s year old"
6306
- msgstr ""
6307
-
6308
- #: includes/core/class-date-time.php:149
6309
- #, php-format
6310
- msgid "%s years old"
6311
- msgstr ""
6312
-
6313
- #: includes/core/class-date-time.php:152
6314
- msgid "Less than 1 year old"
6315
- msgstr ""
6316
-
6317
- #: includes/core/class-external-integrations.php:487
6318
- #, php-format
6319
- msgid "Edit the %s translation"
6320
- msgstr ""
6321
-
6322
- #: includes/core/class-external-integrations.php:494
6323
- #, php-format
6324
- msgid "Add translation to %s"
6325
- msgstr ""
6326
-
6327
- #: includes/core/class-fields.php:1199 templates/message.php:5
6328
- #, php-format
6329
- msgid "%s"
6330
- msgstr ""
6331
-
6332
- #: includes/core/class-fields.php:1218
6333
- msgid "Custom Field"
6334
- msgstr ""
6335
-
6336
- #: includes/core/class-fields.php:1515
6337
- msgid "Please upload a valid image!"
6338
- msgstr ""
6339
-
6340
- #: includes/core/class-fields.php:1522 includes/core/class-fields.php:1543
6341
- msgid "Upload"
6342
- msgstr ""
6343
-
6344
- #: includes/core/class-fields.php:1523
6345
- msgid "Sorry this is not a valid image."
6346
- msgstr ""
6347
-
6348
- #: includes/core/class-fields.php:1524
6349
- msgid "This image is too large!"
6350
- msgstr ""
6351
-
6352
- #: includes/core/class-fields.php:1525
6353
- msgid "This image is too small!"
6354
- msgstr ""
6355
-
6356
- #: includes/core/class-fields.php:1526
6357
- msgid "You can only upload one image"
6358
- msgstr ""
6359
-
6360
- #: includes/core/class-fields.php:1994
6361
- msgid "Current Password"
6362
- msgstr ""
6363
-
6364
- #: includes/core/class-fields.php:2023
6365
- msgid "New Password"
6366
- msgstr ""
6367
-
6368
- #: includes/core/class-fields.php:2055
6369
- #, php-format
6370
- msgid "Confirm %s"
6371
- msgstr ""
6372
-
6373
- #: includes/core/class-fields.php:2290
6374
- msgid "Upload Photo"
6375
- msgstr ""
6376
-
6377
- #: includes/core/class-fields.php:2311 includes/core/class-fields.php:2335
6378
- #: includes/core/um-actions-profile.php:785
6379
- msgid "Change photo"
6380
- msgstr ""
6381
-
6382
- #: includes/core/class-fields.php:2335 includes/core/class-fields.php:2432
6383
- msgid "Processing..."
6384
- msgstr ""
6385
-
6386
- #: includes/core/class-fields.php:2357
6387
- msgid "Upload File"
6388
- msgstr ""
6389
-
6390
- #: includes/core/class-fields.php:2399 includes/core/um-filters-fields.php:243
6391
- msgid "This file has been removed."
6392
- msgstr ""
6393
-
6394
- #: includes/core/class-fields.php:2402 includes/core/class-fields.php:2432
6395
- msgid "Change file"
6396
- msgstr ""
6397
-
6398
- #: includes/core/class-fields.php:2432
6399
- msgid "Save"
6400
- msgstr ""
6401
-
6402
- #: includes/core/class-fields.php:3854
6403
- #, php-format
6404
- msgid ""
6405
- "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
6406
- "information!"
6407
- msgstr ""
6408
-
6409
- #: includes/core/class-fields.php:3856
6410
- msgid "This user has not added any information to their profile yet."
6411
- msgstr ""
6412
-
6413
- #: includes/core/class-files.php:281
6414
- msgid "Invalid parameters"
6415
- msgstr ""
6416
-
6417
- #: includes/core/class-files.php:286
6418
- msgid "Invalid coordinates"
6419
- msgstr ""
6420
-
6421
- #: includes/core/class-files.php:291
6422
- msgid "Invalid file ownership"
6423
- msgstr ""
6424
-
6425
- #: includes/core/class-files.php:346
6426
- msgid "Invalid nonce"
6427
- msgstr ""
6428
-
6429
- #: includes/core/class-files.php:368 includes/core/class-files.php:454
6430
- msgid "A theme or plugin compatibility issue"
6431
- msgstr ""
6432
-
6433
- #: includes/core/class-files.php:997
6434
- msgid "Ultimate Member: Not a valid temp file"
6435
- msgstr ""
6436
-
6437
- #: includes/core/class-files.php:1125
6438
- msgid "Invalid user ID: "
6439
- msgstr ""
6440
-
6441
- #: includes/core/class-files.php:1134 includes/core/class-files.php:1162
6442
- msgid "Unauthorized to do this attempt."
6443
- msgstr ""
6444
-
6445
- #: includes/core/class-form.php:58 includes/core/class-profile.php:56
6446
- #: includes/core/class-profile.php:74
6447
- msgid "You can not edit this user"
6448
- msgstr ""
6449
-
6450
- #: includes/core/class-mail.php:612 includes/core/class-password.php:701
6451
- #: includes/core/class-profile.php:424
6452
- msgid "Your set password"
6453
- msgstr ""
6454
-
6455
- #: includes/core/class-password.php:458
6456
- msgid "Please provide your username or email"
6457
- msgstr ""
6458
-
6459
- #: includes/core/class-password.php:462
6460
- msgid "We can't find an account registered with that address or username"
6461
- msgstr ""
6462
-
6463
- #: includes/core/class-password.php:481
6464
- msgid ""
6465
- "You have reached the limit for requesting password change for this user "
6466
- "already. Contact support if you cannot open the email"
6467
- msgstr ""
6468
-
6469
- #: includes/core/class-password.php:537
6470
- msgid "You must enter a new password"
6471
- msgstr ""
6472
-
6473
- #: includes/core/class-password.php:543 includes/core/um-actions-account.php:59
6474
- msgid "Your password must contain at least 8 characters"
6475
- msgstr ""
6476
-
6477
- #: includes/core/class-password.php:547 includes/core/um-actions-account.php:63
6478
- msgid "Your password must contain less than 30 characters"
6479
- msgstr ""
6480
-
6481
- #: includes/core/class-password.php:551 includes/core/um-actions-account.php:67
6482
- #: includes/core/um-actions-form.php:476
6483
- msgid ""
6484
- "Your password must contain at least one lowercase letter, one capital letter "
6485
- "and one number"
6486
- msgstr ""
6487
-
6488
- #: includes/core/class-password.php:557
6489
- msgid "You must confirm your new password"
6490
- msgstr ""
6491
-
6492
- #: includes/core/class-password.php:561 includes/core/um-actions-form.php:485
6493
- msgid "Your passwords do not match"
6494
- msgstr ""
6495
-
6496
- #: includes/core/class-permalinks.php:186
6497
- msgid "This activation link is expired or have already been used."
6498
- msgstr ""
6499
-
6500
- #. translators: %s: support forums URL
6501
- #: includes/core/class-plugin-updater.php:275
6502
- #, php-format
6503
- msgid ""
6504
- "An unexpected error occurred. Something may be wrong with %s or this "
6505
- "server&#8217;s configuration. If you continue to have problems, please try "
6506
- "the <a href=\"%s\">support forums</a>."
6507
- msgstr ""
6508
-
6509
- #: includes/core/class-plugin-updater.php:277
6510
- msgid "https://wordpress.org/support/"
6511
- msgstr ""
6512
-
6513
- #: includes/core/class-profile.php:110
6514
- msgid "About"
6515
- msgstr ""
6516
-
6517
- #: includes/core/class-profile.php:114
6518
- msgid "Posts"
6519
- msgstr ""
6520
-
6521
- #: includes/core/class-profile.php:118
6522
- msgid "Comments"
6523
- msgstr ""
6524
-
6525
- #: includes/core/class-shortcodes.php:360
6526
- msgid ""
6527
- "This content has been restricted to logged in users only. Please <a href="
6528
- "\"{login_referrer}\">login</a> to view this content."
6529
- msgstr ""
6530
-
6531
- #: includes/core/class-shortcodes.php:647
6532
- msgid "You are already registered"
6533
- msgstr ""
6534
-
6535
- #: includes/core/class-shortcodes.php:894
6536
- msgid "Default Template"
6537
- msgstr ""
6538
-
6539
- #: includes/core/class-uploader.php:668
6540
- msgid "Your image is invalid!"
6541
- msgstr ""
6542
-
6543
- #: includes/core/class-uploader.php:710
6544
- msgid "This media type is not recognized."
6545
- msgstr ""
6546
-
6547
- #: includes/core/class-uploader.php:758
6548
- msgid "Your image is invalid or too large!"
6549
- msgstr ""
6550
-
6551
- #: includes/core/class-uploader.php:764 includes/core/class-uploader.php:766
6552
- #, php-format
6553
- msgid "Your photo is too small. It must be at least %spx wide."
6554
- msgstr ""
6555
-
6556
- #: includes/core/class-uploader.php:819
6557
- msgid "This file type is not recognized."
6558
- msgstr ""
6559
-
6560
- #: includes/core/class-uploader.php:1098
6561
- #, php-format
6562
- msgid "Maximum file size allowed: %s"
6563
- msgstr ""
6564
-
6565
- #: includes/core/class-user.php:619
6566
- msgid "Ultimate Member Role"
6567
- msgstr ""
6568
-
6569
- #: includes/core/class-user.php:622
6570
- msgid "&mdash; No role for Ultimate Member &mdash;"
6571
- msgstr ""
6572
-
6573
- #: includes/core/class-user.php:837
6574
- msgid "Membership Rejected"
6575
- msgstr ""
6576
-
6577
- #: includes/core/class-user.php:841
6578
- msgid "Membership Inactive"
6579
- msgstr ""
6580
-
6581
- #: includes/core/rest/class-api-v1.php:256
6582
- #: includes/core/rest/class-api-v1.php:328
6583
- #: includes/core/rest/class-api-v1.php:365
6584
- #: includes/core/rest/class-api-v2.php:256
6585
- #: includes/core/rest/class-api-v2.php:328
6586
- #: includes/core/rest/class-api-v2.php:365
6587
- msgid "You must provide a user ID"
6588
- msgstr ""
6589
-
6590
- #: includes/core/rest/class-api-v1.php:261
6591
- #: includes/core/rest/class-api-v2.php:261
6592
- msgid "You need to provide data to update"
6593
- msgstr ""
6594
-
6595
- #: includes/core/rest/class-api-v1.php:270
6596
- #: includes/core/rest/class-api-v2.php:270
6597
- msgid "User status has been changed."
6598
- msgstr ""
6599
-
6600
- #: includes/core/rest/class-api-v1.php:299
6601
- #: includes/core/rest/class-api-v2.php:299
6602
- msgid "User role has been changed."
6603
- msgstr ""
6604
-
6605
- #: includes/core/rest/class-api-v1.php:303
6606
- #: includes/core/rest/class-api-v2.php:303
6607
- msgid "User meta has been changed."
6608
- msgstr ""
6609
-
6610
- #: includes/core/rest/class-api-v1.php:334
6611
- #: includes/core/rest/class-api-v1.php:371
6612
- #: includes/core/rest/class-api-v2.php:334
6613
- #: includes/core/rest/class-api-v2.php:371
6614
- msgid "Invalid user specified"
6615
- msgstr ""
6616
-
6617
- #: includes/core/rest/class-api-v1.php:341
6618
- #: includes/core/rest/class-api-v2.php:341
6619
- msgid "User has been successfully deleted."
6620
- msgstr ""
6621
-
6622
- #: includes/core/rest/class-api.php:253
6623
- msgid "You must specify both a token and API key!"
6624
- msgstr ""
6625
-
6626
- #: includes/core/rest/class-api.php:265
6627
- msgid "Your request could not be authenticated"
6628
- msgstr ""
6629
-
6630
- #: includes/core/rest/class-api.php:277
6631
- msgid "Invalid API key"
6632
- msgstr ""
6633
-
6634
- #: includes/core/rest/class-api.php:434
6635
- msgid "Invalid query!"
6636
- msgstr ""
6637
-
6638
- #: includes/core/um-actions-account.php:17
6639
- msgid "Are you hacking? Please try again!"
6640
- msgstr ""
6641
-
6642
- #: includes/core/um-actions-account.php:27
6643
- #: includes/core/um-actions-account.php:115
6644
- msgid "You must enter your password"
6645
- msgstr ""
6646
-
6647
- #: includes/core/um-actions-account.php:30
6648
- #: includes/core/um-actions-account.php:47
6649
- #: includes/core/um-actions-account.php:118
6650
- msgid "This is not your password"
6651
- msgstr ""
6652
-
6653
- #: includes/core/um-actions-account.php:52
6654
- msgid "Your new password does not match"
6655
- msgstr ""
6656
-
6657
- #: includes/core/um-actions-account.php:85
6658
- msgid "Your username is invalid"
6659
- msgstr ""
6660
-
6661
- #: includes/core/um-actions-account.php:90
6662
- msgid "You must provide your first name"
6663
- msgstr ""
6664
-
6665
- #: includes/core/um-actions-account.php:94
6666
- msgid "You must provide your last name"
6667
- msgstr ""
6668
-
6669
- #: includes/core/um-actions-account.php:100
6670
- msgid "You must provide your e-mail"
6671
- msgstr ""
6672
-
6673
- #: includes/core/um-actions-account.php:104
6674
- msgid "Please provide a valid e-mail"
6675
- msgstr ""
6676
-
6677
- #: includes/core/um-actions-account.php:108
6678
- msgid "Email already linked to another account"
6679
- msgstr ""
6680
-
6681
- #: includes/core/um-actions-account.php:416
6682
- msgid "Email me when"
6683
- msgstr ""
6684
-
6685
- #: includes/core/um-actions-core.php:27
6686
- msgid "Super administrators can not be modified."
6687
- msgstr ""
6688
-
6689
- #: includes/core/um-actions-core.php:89 includes/core/um-actions-core.php:100
6690
- #: includes/core/um-actions-core.php:113 includes/core/um-actions-core.php:123
6691
- #: includes/core/um-actions-core.php:136
6692
- msgid "You do not have permission to make this action."
6693
- msgstr ""
6694
-
6695
- #: includes/core/um-actions-core.php:146
6696
- msgid "You do not have permission to delete this user."
6697
- msgstr ""
6698
-
6699
- #: includes/core/um-actions-form.php:86
6700
- msgid "You are not allowed to use this word as your username."
6701
- msgstr ""
6702
-
6703
- #: includes/core/um-actions-form.php:276 includes/core/um-actions-form.php:394
6704
- #: includes/core/um-actions-form.php:398 includes/core/um-actions-form.php:402
6705
- #, php-format
6706
- msgid "%s is required."
6707
- msgstr ""
6708
-
6709
- #: includes/core/um-actions-form.php:407
6710
- msgid "Please specify account type."
6711
- msgstr ""
6712
-
6713
- #: includes/core/um-actions-form.php:439
6714
- msgid "This field is required"
6715
- msgstr ""
6716
-
6717
- #: includes/core/um-actions-form.php:441
6718
- #, php-format
6719
- msgid "%s is required"
6720
- msgstr ""
6721
-
6722
- #: includes/core/um-actions-form.php:448
6723
- #, php-format
6724
- msgid "You are only allowed to enter a maximum of %s words"
6725
- msgstr ""
6726
-
6727
- #: includes/core/um-actions-form.php:454
6728
- #, php-format
6729
- msgid "Your %s must contain at least %s characters"
6730
- msgstr ""
6731
-
6732
- #: includes/core/um-actions-form.php:460
6733
- #, php-format
6734
- msgid "Your %s must contain less than %s characters"
6735
- msgstr ""
6736
-
6737
- #: includes/core/um-actions-form.php:469
6738
- msgid "You can not use HTML tags here"
6739
- msgstr ""
6740
-
6741
- #: includes/core/um-actions-form.php:482
6742
- msgid "Please confirm your password"
6743
- msgstr ""
6744
-
6745
- #: includes/core/um-actions-form.php:491
6746
- #, php-format
6747
- msgid "Please select at least %s choices"
6748
- msgstr ""
6749
-
6750
- #: includes/core/um-actions-form.php:497
6751
- #, php-format
6752
- msgid "You can only select up to %s choices"
6753
- msgstr ""
6754
-
6755
- #: includes/core/um-actions-form.php:503
6756
- #, php-format
6757
- msgid "Minimum number limit is %s"
6758
- msgstr ""
6759
-
6760
- #: includes/core/um-actions-form.php:509
6761
- #, php-format
6762
- msgid "Maximum number limit is %s"
6763
- msgstr ""
6764
-
6765
- #: includes/core/um-actions-form.php:545
6766
- msgid "Please enter numbers only in this field"
6767
- msgstr ""
6768
-
6769
- #: includes/core/um-actions-form.php:551
6770
- msgid "Please enter a valid phone number"
6771
- msgstr ""
6772
-
6773
- #: includes/core/um-actions-form.php:557 includes/core/um-actions-form.php:563
6774
- #: includes/core/um-actions-form.php:569 includes/core/um-actions-form.php:575
6775
- #: includes/core/um-actions-form.php:581 includes/core/um-actions-form.php:587
6776
- #: includes/core/um-actions-form.php:593 includes/core/um-actions-form.php:599
6777
- #: includes/core/um-actions-form.php:611
6778
- #, php-format
6779
- msgid "Please enter a valid %s username or profile URL"
6780
- msgstr ""
6781
-
6782
- #: includes/core/um-actions-form.php:605
6783
- msgid "Please enter a valid URL"
6784
- msgstr ""
6785
-
6786
- #: includes/core/um-actions-form.php:618 includes/core/um-actions-form.php:632
6787
- msgid "You must provide a username"
6788
- msgstr ""
6789
-
6790
- #: includes/core/um-actions-form.php:620 includes/core/um-actions-form.php:634
6791
- msgid "Your username is already taken"
6792
- msgstr ""
6793
-
6794
- #: includes/core/um-actions-form.php:622
6795
- msgid "Username cannot be an email"
6796
- msgstr ""
6797
-
6798
- #: includes/core/um-actions-form.php:624 includes/core/um-actions-form.php:638
6799
- msgid "Your username contains invalid characters"
6800
- msgstr ""
6801
-
6802
- #: includes/core/um-actions-form.php:636 includes/core/um-actions-form.php:658
6803
- #: includes/core/um-actions-form.php:660 includes/core/um-actions-form.php:672
6804
- #: includes/core/um-actions-form.php:679
6805
- msgid "This email is already linked to an existing account"
6806
- msgstr ""
6807
-
6808
- #: includes/core/um-actions-form.php:656
6809
- msgid "You must provide your email"
6810
- msgstr ""
6811
-
6812
- #: includes/core/um-actions-form.php:662 includes/core/um-actions-form.php:670
6813
- msgid "This is not a valid email"
6814
- msgstr ""
6815
-
6816
- #: includes/core/um-actions-form.php:664
6817
- msgid "Your email contains invalid characters"
6818
- msgstr ""
6819
-
6820
- #: includes/core/um-actions-form.php:704
6821
- msgid "You must provide a unique value"
6822
- msgstr ""
6823
-
6824
- #: includes/core/um-actions-form.php:714
6825
- msgid "You must provide alphabetic letters"
6826
- msgstr ""
6827
-
6828
- #: includes/core/um-actions-form.php:724
6829
- msgid "You must provide lowercase letters."
6830
- msgstr ""
6831
-
6832
- #: includes/core/um-actions-form.php:743
6833
- #, php-format
6834
- msgid "Your user description must contain less than %s characters"
6835
- msgstr ""
6836
-
6837
- #: includes/core/um-actions-global.php:30
6838
- msgid "Only fill in if you are not human"
6839
- msgstr ""
6840
-
6841
- #: includes/core/um-actions-login.php:18
6842
- msgid "Please enter your username or email"
6843
- msgstr ""
6844
-
6845
- #: includes/core/um-actions-login.php:22
6846
- msgid "Please enter your username"
6847
- msgstr ""
6848
-
6849
- #: includes/core/um-actions-login.php:26
6850
- msgid "Please enter your email"
6851
- msgstr ""
6852
-
6853
- #: includes/core/um-actions-login.php:59
6854
- msgid "Please enter your password"
6855
- msgstr ""
6856
-
6857
- #: includes/core/um-actions-login.php:66
6858
- msgid "Password is incorrect. Please try again."
6859
- msgstr ""
6860
-
6861
- #: includes/core/um-actions-login.php:196
6862
- msgid "This action has been prevented for security measures."
6863
- msgstr ""
6864
-
6865
- #: includes/core/um-actions-login.php:420
6866
- msgid "Keep me signed in"
6867
- msgstr ""
6868
-
6869
- #: includes/core/um-actions-login.php:464
6870
- msgid "Forgot your password?"
6871
- msgstr ""
6872
-
6873
- #: includes/core/um-actions-members.php:83
6874
- msgid "Search"
6875
- msgstr ""
6876
-
6877
- #: includes/core/um-actions-members.php:84
6878
- msgid "Reset"
6879
- msgstr ""
6880
-
6881
- #: includes/core/um-actions-members.php:159
6882
- msgid "Jump to page:"
6883
- msgstr ""
6884
-
6885
- #: includes/core/um-actions-members.php:164
6886
- #, php-format
6887
- msgid "%s of %d"
6888
- msgstr ""
6889
-
6890
- #: includes/core/um-actions-members.php:174
6891
- msgid "First Page"
6892
- msgstr ""
6893
-
6894
- #: includes/core/um-actions-members.php:180
6895
- msgid "Previous"
6896
- msgstr ""
6897
-
6898
- #: includes/core/um-actions-members.php:200
6899
- msgid "Next"
6900
- msgstr ""
6901
-
6902
- #: includes/core/um-actions-members.php:206
6903
- msgid "Last Page"
6904
- msgstr ""
6905
-
6906
- #: includes/core/um-actions-misc.php:111
6907
- msgid "Your account was updated successfully."
6908
- msgstr ""
6909
-
6910
- #: includes/core/um-actions-misc.php:115
6911
- msgid "You have successfully changed your password."
6912
- msgstr ""
6913
-
6914
- #: includes/core/um-actions-misc.php:119
6915
- msgid "Your account is now active! You can login."
6916
- msgstr ""
6917
-
6918
- #: includes/core/um-actions-misc.php:153
6919
- msgid "An error has been encountered"
6920
- msgstr ""
6921
-
6922
- #: includes/core/um-actions-misc.php:157
6923
- msgid "Registration is currently disabled"
6924
- msgstr ""
6925
-
6926
- #: includes/core/um-actions-misc.php:161 includes/core/um-filters-login.php:40
6927
- msgid "This email address has been blocked."
6928
- msgstr ""
6929
-
6930
- #: includes/core/um-actions-misc.php:165
6931
- msgid "We do not accept registrations from that domain."
6932
- msgstr ""
6933
-
6934
- #: includes/core/um-actions-misc.php:169 includes/core/um-filters-login.php:43
6935
- msgid "Your IP address has been blocked."
6936
- msgstr ""
6937
-
6938
- #: includes/core/um-actions-misc.php:173 includes/core/um-filters-login.php:136
6939
- msgid "Your account has been disabled."
6940
- msgstr ""
6941
-
6942
- #: includes/core/um-actions-misc.php:177 includes/core/um-filters-login.php:139
6943
- msgid "Your account has not been approved yet."
6944
- msgstr ""
6945
-
6946
- #: includes/core/um-actions-misc.php:181 includes/core/um-filters-login.php:142
6947
- msgid "Your account is awaiting e-mail verification."
6948
- msgstr ""
6949
-
6950
- #: includes/core/um-actions-misc.php:185 includes/core/um-filters-login.php:145
6951
- msgid "Your membership request has been rejected."
6952
- msgstr ""
6953
-
6954
- #: includes/core/um-actions-profile.php:192
6955
- msgid "You are not allowed to edit this user."
6956
- msgstr ""
6957
-
6958
- #: includes/core/um-actions-profile.php:284
6959
- #, php-format
6960
- msgid "Your choosed %s"
6961
- msgstr ""
6962
-
6963
- #: includes/core/um-actions-profile.php:598
6964
- #: includes/core/um-actions-profile.php:614
6965
- #: includes/core/um-actions-profile.php:654
6966
- msgid "Upload a cover photo"
6967
- msgstr ""
6968
-
6969
- #: includes/core/um-actions-profile.php:598
6970
- msgid "Change cover photo"
6971
- msgstr ""
6972
-
6973
- #: includes/core/um-actions-profile.php:753
6974
- msgid "Upload photo"
6975
- msgstr ""
6976
-
6977
- #: includes/core/um-actions-profile.php:786
6978
- msgid "Remove photo"
6979
- msgstr ""
6980
-
6981
- #: includes/core/um-actions-profile.php:950
6982
- msgid "Tell us a bit about yourself..."
6983
- msgstr ""
6984
-
6985
- #: includes/core/um-actions-profile.php:966
6986
- #, php-format
6987
- msgid "This user account status is %s"
6988
- msgstr ""
6989
-
6990
- #: includes/core/um-actions-profile.php:1105
6991
- #: includes/core/um-actions-profile.php:1136
6992
- msgid "Edit Profile"
6993
- msgstr ""
6994
-
6995
- #: includes/core/um-actions-profile.php:1137
6996
- msgid "My Account"
6997
- msgstr ""
6998
-
6999
- #: includes/core/um-actions-user.php:14
7000
- msgid "Your account"
7001
- msgstr ""
7002
-
7003
- #: includes/core/um-filters-fields.php:33
7004
- msgid "Invalid soundcloud track ID"
7005
- msgstr ""
7006
-
7007
- #: includes/core/um-filters-fields.php:117
7008
- #, php-format
7009
- msgid "Joined %s"
7010
- msgstr ""
7011
-
7012
- #: includes/core/um-filters-fields.php:274
7013
- msgid "Untitled photo"
7014
- msgstr ""
7015
-
7016
- #: includes/core/um-filters-profile.php:82
7017
- #: includes/core/um-filters-profile.php:101
7018
- msgid "max"
7019
- msgstr ""
7020
-
7021
- #: includes/core/um-filters-user.php:37
7022
- msgid "Deactivate this account"
7023
- msgstr ""
7024
-
7025
- #: includes/core/um-filters-user.php:41
7026
- msgid "Reactivate this account"
7027
- msgstr ""
7028
-
7029
- #: includes/core/um-filters-user.php:47
7030
- msgid "Delete this user"
7031
- msgstr ""
7032
-
7033
- #: includes/core/um-filters-user.php:51
7034
- msgid "Login as this user"
7035
- msgstr ""
7036
-
7037
- #: includes/um-short-functions.php:741
7038
- msgid "date submitted"
7039
- msgstr ""
7040
-
7041
- #: includes/um-short-functions.php:747
7042
- msgid "(empty)"
7043
- msgstr ""
7044
-
7045
- #: includes/widgets/class-um-search-widget.php:27
7046
- msgid "Ultimate Member - Search"
7047
- msgstr ""
7048
-
7049
- #: includes/widgets/class-um-search-widget.php:30
7050
- msgid "Shows the search member form."
7051
- msgstr ""
7052
-
7053
- #: includes/widgets/class-um-search-widget.php:68
7054
- msgid "Search Users"
7055
- msgstr ""
7056
-
7057
- #: includes/widgets/class-um-search-widget.php:81
7058
- msgid "Title:"
7059
- msgstr ""
7060
-
7061
- #: templates/members-grid.php:66
7062
- msgid "Edit profile"
7063
- msgstr ""
7064
-
7065
- #: templates/password-change.php:43
7066
- msgid "Change my password"
7067
- msgstr ""
7068
-
7069
- #: templates/password-reset.php:8
7070
- msgid ""
7071
- "We have sent you a password reset link to your e-mail. Please check your "
7072
- "inbox."
7073
- msgstr ""
7074
-
7075
- #: templates/password-reset.php:43
7076
- msgid "Your password reset link has expired. Please request a new link below."
7077
- msgstr ""
7078
-
7079
- #: templates/password-reset.php:45
7080
- msgid ""
7081
- "Your password reset link appears to be invalid. Please request a new link "
7082
- "below."
7083
- msgstr ""
7084
-
7085
- #: templates/password-reset.php:54
7086
- msgid ""
7087
- "To reset your password, please enter your email address or username below"
7088
- msgstr ""
7089
-
7090
- #: templates/password-reset.php:92
7091
- msgid "Reset my password"
7092
- msgstr ""
7093
-
7094
- #: templates/profile/comments-single.php:24
7095
- #, php-format
7096
- msgid "On <a href=\"%1$s\">%2$s</a>"
7097
- msgstr ""
7098
-
7099
- #: templates/profile/comments-single.php:34 templates/profile/comments.php:14
7100
- msgid "load more comments"
7101
- msgstr ""
7102
-
7103
- #: templates/profile/comments.php:23
7104
- msgid "You have not made any comments."
7105
- msgstr ""
7106
-
7107
- #: templates/profile/comments.php:23
7108
- msgid "This user has not made any comments."
7109
- msgstr ""
7110
-
7111
- #: templates/profile/posts-single.php:21
7112
- #, php-format
7113
- msgid "%s ago"
7114
- msgstr ""
7115
-
7116
- #: templates/profile/posts-single.php:24
7117
- msgid "in"
7118
- msgstr ""
7119
-
7120
- #: templates/profile/posts-single.php:30
7121
- msgid "no comments"
7122
- msgstr ""
7123
-
7124
- #: templates/profile/posts-single.php:32
7125
- #, php-format
7126
- msgid "%s comments"
7127
- msgstr ""
7128
-
7129
- #: templates/profile/posts-single.php:34
7130
- msgid "1 comment"
7131
- msgstr ""
7132
-
7133
- #: templates/profile/posts.php:21
7134
- msgid "load more posts"
7135
- msgstr ""
7136
-
7137
- #: templates/profile/posts.php:32
7138
- msgid "You have not created any posts."
7139
- msgstr ""
7140
-
7141
- #: templates/profile/posts.php:32
7142
- msgid "This user has not created any posts."
7143
- msgstr ""
7144
-
7145
- #: templates/searchform.php:4 templates/searchform.php:5
7146
- msgctxt "label"
7147
- msgid "Search for:"
7148
- msgstr ""
7149
-
7150
- #: templates/searchform.php:5
7151
- msgctxt "placeholder"
7152
- msgid "Search &hellip;"
7153
- msgstr ""
7154
-
7155
- #. Plugin URI of the plugin/theme
7156
- #. Author URI of the plugin/theme
7157
- msgid "http://ultimatemember.com/"
7158
- msgstr ""
7159
-
7160
- #. Description of the plugin/theme
7161
- msgid ""
7162
- "The easiest way to create powerful online communities and beautiful user "
7163
- "profiles with WordPress"
7164
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Ultimate Member\n"
4
+ "POT-Creation-Date: 2019-07-11 19:01+0300\n"
5
+ "PO-Revision-Date: 2019-07-11 19:01+0300\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: en_US\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: ultimate-member.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: includes/admin/class-admin-functions.php:35 includes/class-functions.php:45
25
+ msgid "Wrong Nonce"
26
+ msgstr ""
27
+
28
+ #: includes/admin/class-admin.php:193
29
+ #, php-format
30
+ msgid "Duplicate of %s"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-admin.php:307
34
+ msgid "Docs"
35
+ msgstr ""
36
+
37
+ #: includes/admin/class-admin.php:308
38
+ #: includes/admin/core/class-admin-settings.php:1192
39
+ msgid "Settings"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-admin.php:379 includes/admin/class-admin.php:382
43
+ msgid "Form updated."
44
+ msgstr ""
45
+
46
+ #: includes/admin/class-admin.php:380
47
+ msgid "Custom field updated."
48
+ msgstr ""
49
+
50
+ #: includes/admin/class-admin.php:381
51
+ msgid "Custom field deleted."
52
+ msgstr ""
53
+
54
+ #: includes/admin/class-admin.php:383
55
+ msgid "Form restored to revision."
56
+ msgstr ""
57
+
58
+ #: includes/admin/class-admin.php:384
59
+ msgid "Form created."
60
+ msgstr ""
61
+
62
+ #: includes/admin/class-admin.php:385
63
+ msgid "Form saved."
64
+ msgstr ""
65
+
66
+ #: includes/admin/class-admin.php:386
67
+ msgid "Form submitted."
68
+ msgstr ""
69
+
70
+ #: includes/admin/class-admin.php:387
71
+ msgid "Form scheduled."
72
+ msgstr ""
73
+
74
+ #: includes/admin/class-admin.php:388
75
+ msgid "Form draft updated."
76
+ msgstr ""
77
+
78
+ #: includes/admin/core/class-admin-builder.php:227
79
+ msgid "Manage conditional fields support"
80
+ msgstr ""
81
+
82
+ #: includes/admin/core/class-admin-builder.php:227
83
+ #: includes/admin/core/class-admin-builder.php:229
84
+ msgid ""
85
+ "Here you can setup conditional logic to show/hide this field based on "
86
+ "specific fields value or conditions"
87
+ msgstr ""
88
+
89
+ #: includes/admin/core/class-admin-builder.php:229
90
+ msgid "Add conditional fields support"
91
+ msgstr ""
92
+
93
+ #: includes/admin/core/class-admin-builder.php:244
94
+ msgid "Add new rule"
95
+ msgstr ""
96
+
97
+ #: includes/admin/core/class-admin-builder.php:245
98
+ msgid "Reset all rules"
99
+ msgstr ""
100
+
101
+ #: includes/admin/core/class-admin-builder.php:298
102
+ #: includes/admin/core/class-admin-builder.php:612
103
+ #: includes/admin/core/class-admin-builder.php:767
104
+ #: includes/admin/core/class-admin-dragdrop.php:32
105
+ #: includes/admin/core/class-admin-menu.php:104
106
+ #: includes/core/class-fields.php:4120
107
+ msgid "Please login as administrator"
108
+ msgstr ""
109
+
110
+ #: includes/admin/core/class-admin-builder.php:402
111
+ #: includes/admin/core/class-admin-builder.php:472
112
+ #: includes/admin/core/class-admin-dragdrop.php:163
113
+ msgid "Add Row"
114
+ msgstr ""
115
+
116
+ #: includes/admin/core/class-admin-builder.php:403
117
+ #: includes/admin/core/class-admin-builder.php:473
118
+ #: includes/admin/core/class-admin-dragdrop.php:164
119
+ msgid "Edit Row"
120
+ msgstr ""
121
+
122
+ #: includes/admin/core/class-admin-builder.php:476
123
+ #: includes/admin/core/class-admin-dragdrop.php:166
124
+ #: includes/admin/core/class-admin-dragdrop.php:180
125
+ #: includes/admin/core/class-admin-dragdrop.php:205
126
+ msgid "Delete Row"
127
+ msgstr ""
128
+
129
+ #: includes/admin/core/class-admin-builder.php:833
130
+ msgid "Search Icons..."
131
+ msgstr ""
132
+
133
+ #: includes/admin/core/class-admin-builder.php:853
134
+ msgid "Setup New Field"
135
+ msgstr ""
136
+
137
+ #: includes/admin/core/class-admin-builder.php:869
138
+ msgid "Predefined Fields"
139
+ msgstr ""
140
+
141
+ #: includes/admin/core/class-admin-builder.php:880
142
+ #: includes/core/class-builtin.php:1319
143
+ msgid "None"
144
+ msgstr ""
145
+
146
+ #: includes/admin/core/class-admin-builder.php:884
147
+ msgid "Custom Fields"
148
+ msgstr ""
149
+
150
+ #: includes/admin/core/class-admin-builder.php:895
151
+ msgid "You did not create any custom fields"
152
+ msgstr ""
153
+
154
+ #: includes/admin/core/class-admin-builder.php:926
155
+ #: includes/admin/core/class-admin-builder.php:998
156
+ msgid "This field type is not setup correcty."
157
+ msgstr ""
158
+
159
+ #: includes/admin/core/class-admin-builder.php:1143
160
+ #: includes/core/class-form.php:155 includes/core/class-form.php:328
161
+ #: includes/core/class-password.php:533
162
+ msgid "This is not possible for security reasons."
163
+ msgstr ""
164
+
165
+ #: includes/admin/core/class-admin-columns.php:49
166
+ msgid "Status"
167
+ msgstr ""
168
+
169
+ #: includes/admin/core/class-admin-columns.php:101
170
+ msgid "Duplicate"
171
+ msgstr ""
172
+
173
+ #: includes/admin/core/class-admin-columns.php:130
174
+ #: includes/admin/core/class-admin-columns.php:150
175
+ #: includes/admin/templates/role/role-edit.php:190
176
+ msgid "Title"
177
+ msgstr ""
178
+
179
+ #: includes/admin/core/class-admin-columns.php:131
180
+ #: includes/admin/core/class-admin-columns.php:151
181
+ msgid "ID"
182
+ msgstr ""
183
+
184
+ #: includes/admin/core/class-admin-columns.php:132
185
+ msgid "Type"
186
+ msgstr ""
187
+
188
+ #: includes/admin/core/class-admin-columns.php:133
189
+ #: includes/admin/core/class-admin-columns.php:152
190
+ #: includes/admin/core/class-admin-settings.php:422
191
+ #: includes/admin/templates/form/login_settings.php:13
192
+ #: includes/admin/templates/form/register_customize.php:3
193
+ #: includes/admin/templates/form/register_customize.php:29
194
+ msgid "Default"
195
+ msgstr ""
196
+
197
+ #: includes/admin/core/class-admin-columns.php:134
198
+ #: includes/admin/core/class-admin-columns.php:153
199
+ #: includes/admin/core/class-admin-metabox.php:821
200
+ #: includes/admin/core/class-admin-metabox.php:982
201
+ msgid "Shortcode"
202
+ msgstr ""
203
+
204
+ #: includes/admin/core/class-admin-columns.php:135
205
+ #: includes/admin/core/class-admin-columns.php:154
206
+ msgid "Date"
207
+ msgstr ""
208
+
209
+ #: includes/admin/core/class-admin-columns.php:185
210
+ #: includes/admin/core/class-admin-columns.php:218
211
+ #: includes/admin/core/list-tables/roles-list-table.php:367
212
+ #: includes/admin/core/list-tables/roles-list-table.php:375
213
+ #: includes/admin/templates/form/login_customize.php:13
214
+ #: includes/admin/templates/form/login_customize.php:61
215
+ #: includes/admin/templates/form/login_customize.php:80
216
+ #: includes/admin/templates/form/login_customize.php:91
217
+ #: includes/admin/templates/form/profile_customize.php:22
218
+ #: includes/admin/templates/form/profile_customize.php:88
219
+ #: includes/admin/templates/form/profile_customize.php:107
220
+ #: includes/admin/templates/form/profile_customize.php:141
221
+ #: includes/admin/templates/form/profile_customize.php:152
222
+ #: includes/admin/templates/form/profile_customize.php:163
223
+ #: includes/admin/templates/form/profile_customize.php:174
224
+ #: includes/admin/templates/form/register_customize.php:20
225
+ #: includes/admin/templates/form/register_customize.php:76
226
+ #: includes/admin/templates/form/register_gdpr.php:23
227
+ #: includes/core/class-builtin.php:1135 includes/core/class-builtin.php:1149
228
+ #: includes/core/class-builtin.php:1150
229
+ #: includes/core/um-actions-account.php:271
230
+ msgid "No"
231
+ msgstr ""
232
+
233
+ #: includes/admin/core/class-admin-columns.php:185
234
+ #: includes/admin/core/class-admin-columns.php:218
235
+ #: includes/admin/core/list-tables/roles-list-table.php:367
236
+ #: includes/admin/core/list-tables/roles-list-table.php:375
237
+ #: includes/admin/templates/form/login_customize.php:14
238
+ #: includes/admin/templates/form/login_customize.php:62
239
+ #: includes/admin/templates/form/login_customize.php:81
240
+ #: includes/admin/templates/form/login_customize.php:92
241
+ #: includes/admin/templates/form/profile_customize.php:23
242
+ #: includes/admin/templates/form/profile_customize.php:89
243
+ #: includes/admin/templates/form/profile_customize.php:108
244
+ #: includes/admin/templates/form/profile_customize.php:142
245
+ #: includes/admin/templates/form/profile_customize.php:153
246
+ #: includes/admin/templates/form/profile_customize.php:164
247
+ #: includes/admin/templates/form/profile_customize.php:175
248
+ #: includes/admin/templates/form/register_customize.php:21
249
+ #: includes/admin/templates/form/register_customize.php:77
250
+ #: includes/admin/templates/form/register_gdpr.php:24
251
+ #: includes/core/class-builtin.php:1135 includes/core/class-builtin.php:1150
252
+ #: includes/core/um-filters-members.php:69
253
+ msgid "Yes"
254
+ msgstr ""
255
+
256
+ #: includes/admin/core/class-admin-enqueue.php:184
257
+ msgid "e.g. Member Directory"
258
+ msgstr ""
259
+
260
+ #: includes/admin/core/class-admin-enqueue.php:186
261
+ msgid "e.g. New Registration Form"
262
+ msgstr ""
263
+
264
+ #: includes/admin/core/class-admin-enqueue.php:231
265
+ #: includes/admin/core/class-admin-enqueue.php:262
266
+ #: includes/admin/core/class-admin-forms.php:832
267
+ #: includes/admin/core/class-admin-forms.php:846
268
+ #: includes/admin/core/class-admin-forms.php:951
269
+ #: includes/admin/core/class-admin-forms.php:960
270
+ #: includes/admin/core/class-admin-notices.php:390
271
+ #: includes/core/um-actions-profile.php:602
272
+ msgid "Remove"
273
+ msgstr ""
274
+
275
+ #: includes/admin/core/class-admin-enqueue.php:232
276
+ #: includes/admin/core/class-admin-enqueue.php:263
277
+ #: includes/admin/core/class-admin-forms.php:1028
278
+ msgid "Select"
279
+ msgstr ""
280
+
281
+ #: includes/admin/core/class-admin-enqueue.php:260
282
+ msgid "Are sure, maybe some settings not saved"
283
+ msgstr ""
284
+
285
+ #: includes/admin/core/class-admin-enqueue.php:486
286
+ #: includes/core/class-builtin.php:698 includes/core/class-builtin.php:701
287
+ #: includes/core/class-builtin.php:1155 includes/core/class-builtin.php:1158
288
+ msgid "Password"
289
+ msgstr ""
290
+
291
+ #: includes/admin/core/class-admin-enqueue.php:490
292
+ #: includes/core/class-account.php:104
293
+ msgid "Privacy"
294
+ msgstr ""
295
+
296
+ #: includes/admin/core/class-admin-enqueue.php:494
297
+ #: includes/core/class-account.php:110
298
+ msgid "Notifications"
299
+ msgstr ""
300
+
301
+ #: includes/admin/core/class-admin-enqueue.php:498
302
+ #: includes/admin/core/list-tables/roles-list-table.php:338
303
+ #: includes/admin/core/list-tables/roles-list-table.php:406
304
+ msgid "Delete"
305
+ msgstr ""
306
+
307
+ #: includes/admin/core/class-admin-enqueue.php:548
308
+ msgid "Ultimate Member Blocks"
309
+ msgstr ""
310
+
311
+ #: includes/admin/core/class-admin-forms.php:314
312
+ #: includes/core/um-filters-fields.php:15
313
+ msgid "Required"
314
+ msgstr ""
315
+
316
+ #: includes/admin/core/class-admin-forms.php:470
317
+ msgid "Choose Icon"
318
+ msgstr ""
319
+
320
+ #: includes/admin/core/class-admin-forms.php:476
321
+ msgid "No Icon"
322
+ msgstr ""
323
+
324
+ #: includes/admin/core/class-admin-forms.php:1005
325
+ msgid "Select media"
326
+ msgstr ""
327
+
328
+ #: includes/admin/core/class-admin-forms.php:1029
329
+ msgid "Clear"
330
+ msgstr ""
331
+
332
+ #: includes/admin/core/class-admin-gdpr.php:42
333
+ msgid "Privacy Policy"
334
+ msgstr ""
335
+
336
+ #: includes/admin/core/class-admin-gdpr.php:57
337
+ msgid "Account Status"
338
+ msgstr ""
339
+
340
+ #: includes/admin/core/class-admin-gdpr.php:58
341
+ msgid "Submitted data on Registration"
342
+ msgstr ""
343
+
344
+ #: includes/admin/core/class-admin-gdpr.php:59
345
+ msgid "Registration Form ID"
346
+ msgstr ""
347
+
348
+ #: includes/admin/core/class-admin-gdpr.php:60
349
+ msgid "Registration Timestamp"
350
+ msgstr ""
351
+
352
+ #: includes/admin/core/class-admin-gdpr.php:61
353
+ msgid "Registration Request"
354
+ msgstr ""
355
+
356
+ #: includes/admin/core/class-admin-gdpr.php:62
357
+ msgid "Registration Nonce"
358
+ msgstr ""
359
+
360
+ #: includes/admin/core/class-admin-gdpr.php:63
361
+ msgid "Registration HTTP referer"
362
+ msgstr ""
363
+
364
+ #: includes/admin/core/class-admin-gdpr.php:64
365
+ msgid "Community Role"
366
+ msgstr ""
367
+
368
+ #: includes/admin/core/class-admin-gdpr.php:65
369
+ msgid "Profile Slug \"Username\""
370
+ msgstr ""
371
+
372
+ #: includes/admin/core/class-admin-gdpr.php:66
373
+ msgid "Profile Slug \"First and Last Name with '.'\""
374
+ msgstr ""
375
+
376
+ #: includes/admin/core/class-admin-gdpr.php:67
377
+ msgid "Profile Slug \"First and Last Name with '-'\""
378
+ msgstr ""
379
+
380
+ #: includes/admin/core/class-admin-gdpr.php:68
381
+ msgid "Profile Slug \"First and Last Name with '+'\""
382
+ msgstr ""
383
+
384
+ #: includes/admin/core/class-admin-gdpr.php:69
385
+ msgid "Profile Slug \"User ID\""
386
+ msgstr ""
387
+
388
+ #: includes/admin/core/class-admin-gdpr.php:70
389
+ msgid "Last Login Timestamp"
390
+ msgstr ""
391
+
392
+ #: includes/admin/core/class-admin-gdpr.php:73
393
+ msgid "Private Content Post ID"
394
+ msgstr ""
395
+
396
+ #: includes/admin/core/class-admin-gdpr.php:76
397
+ msgid "Verified Account"
398
+ msgstr ""
399
+
400
+ #: includes/admin/core/class-admin-gdpr.php:79
401
+ msgid "Terms&Conditions Agreement"
402
+ msgstr ""
403
+
404
+ #: includes/admin/core/class-admin-gdpr.php:82
405
+ msgid "Privacy Policy Agreement"
406
+ msgstr ""
407
+
408
+ #: includes/admin/core/class-admin-gdpr.php:298
409
+ #, php-format
410
+ msgid "Your %s was unable to be removed at this time."
411
+ msgstr ""
412
+
413
+ #: includes/admin/core/class-admin-menu.php:63
414
+ msgid "Thanks :)"
415
+ msgstr ""
416
+
417
+ #: includes/admin/core/class-admin-menu.php:70
418
+ #, php-format
419
+ msgid ""
420
+ "If you like Ultimate Member please consider leaving a %s review. It will "
421
+ "help us to grow the plugin and make it more popular. Thank you."
422
+ msgstr ""
423
+
424
+ #: includes/admin/core/class-admin-menu.php:125
425
+ msgctxt "Admin menu name"
426
+ msgid "Users"
427
+ msgstr ""
428
+
429
+ #: includes/admin/core/class-admin-menu.php:133
430
+ msgctxt "Admin menu name"
431
+ msgid "All Users"
432
+ msgstr ""
433
+
434
+ #. Plugin Name of the plugin/theme
435
+ #. Author of the plugin/theme
436
+ #: includes/admin/core/class-admin-menu.php:145
437
+ #: includes/core/class-user.php:561
438
+ msgid "Ultimate Member"
439
+ msgstr ""
440
+
441
+ #: includes/admin/core/class-admin-menu.php:149
442
+ msgid "Dashboard"
443
+ msgstr ""
444
+
445
+ #: includes/admin/core/class-admin-menu.php:157
446
+ #: includes/admin/templates/gdpr.php:7 includes/core/class-common.php:54
447
+ msgid "Forms"
448
+ msgstr ""
449
+
450
+ #: includes/admin/core/class-admin-menu.php:159
451
+ #: includes/admin/core/list-tables/roles-list-table.php:477
452
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:12
453
+ msgid "User Roles"
454
+ msgstr ""
455
+
456
+ #: includes/admin/core/class-admin-menu.php:162
457
+ #: includes/core/class-common.php:84
458
+ msgid "Member Directories"
459
+ msgstr ""
460
+
461
+ #: includes/admin/core/class-admin-menu.php:204
462
+ #: includes/admin/core/class-admin-settings.php:1049
463
+ msgid "Extensions"
464
+ msgstr ""
465
+
466
+ #: includes/admin/core/class-admin-menu.php:217
467
+ msgid "Users Overview"
468
+ msgstr ""
469
+
470
+ #: includes/admin/core/class-admin-menu.php:219
471
+ msgid "Latest from our blog"
472
+ msgstr ""
473
+
474
+ #: includes/admin/core/class-admin-menu.php:221
475
+ msgid "Purge Temp Files"
476
+ msgstr ""
477
+
478
+ #: includes/admin/core/class-admin-menu.php:223
479
+ msgid "User Cache"
480
+ msgstr ""
481
+
482
+ #: includes/admin/core/class-admin-menu.php:228
483
+ msgid "Upgrade's Manual Request"
484
+ msgstr ""
485
+
486
+ #: includes/admin/core/class-admin-metabox.php:262
487
+ msgid "UM Content Restriction"
488
+ msgstr ""
489
+
490
+ #: includes/admin/core/class-admin-metabox.php:418
491
+ #: includes/admin/core/class-admin-metabox.php:568
492
+ #: includes/admin/templates/access/restrict_content.php:47
493
+ msgid "Restrict access to this content?"
494
+ msgstr ""
495
+
496
+ #: includes/admin/core/class-admin-metabox.php:419
497
+ #: includes/admin/core/class-admin-metabox.php:426
498
+ #: includes/admin/core/class-admin-metabox.php:439
499
+ #: includes/admin/core/class-admin-metabox.php:569
500
+ #: includes/admin/core/class-admin-metabox.php:577
501
+ #: includes/admin/core/class-admin-metabox.php:591
502
+ #: includes/admin/templates/access/restrict_content.php:48
503
+ #: includes/admin/templates/access/restrict_content.php:55
504
+ #: includes/admin/templates/access/restrict_content.php:68
505
+ msgid "Activate content restriction for this post"
506
+ msgstr ""
507
+
508
+ #: includes/admin/core/class-admin-metabox.php:425
509
+ #: includes/admin/core/class-admin-metabox.php:576
510
+ #: includes/admin/templates/access/restrict_content.php:54
511
+ msgid "Who can access this content?"
512
+ msgstr ""
513
+
514
+ #: includes/admin/core/class-admin-metabox.php:429
515
+ #: includes/admin/core/class-admin-metabox.php:580
516
+ #: includes/admin/core/class-admin-navmenu.php:141
517
+ #: includes/admin/templates/access/restrict_content.php:58
518
+ #: includes/core/class-builtin.php:662
519
+ msgid "Everyone"
520
+ msgstr ""
521
+
522
+ #: includes/admin/core/class-admin-metabox.php:430
523
+ #: includes/admin/core/class-admin-metabox.php:581
524
+ #: includes/admin/templates/access/restrict_content.php:59
525
+ msgid "Logged out users"
526
+ msgstr ""
527
+
528
+ #: includes/admin/core/class-admin-metabox.php:431
529
+ #: includes/admin/core/class-admin-metabox.php:582
530
+ #: includes/admin/templates/access/restrict_content.php:60
531
+ msgid "Logged in users"
532
+ msgstr ""
533
+
534
+ #: includes/admin/core/class-admin-metabox.php:438
535
+ #: includes/admin/core/class-admin-metabox.php:590
536
+ #: includes/admin/templates/access/restrict_content.php:67
537
+ msgid "Select which roles can access this content"
538
+ msgstr ""
539
+
540
+ #: includes/admin/core/class-admin-metabox.php:447
541
+ #: includes/admin/core/class-admin-metabox.php:601
542
+ #: includes/admin/templates/access/restrict_content.php:77
543
+ msgid "What happens when users without access tries to view the content?"
544
+ msgstr ""
545
+
546
+ #: includes/admin/core/class-admin-metabox.php:448
547
+ #: includes/admin/core/class-admin-metabox.php:460
548
+ #: includes/admin/core/class-admin-metabox.php:602
549
+ #: includes/admin/core/class-admin-metabox.php:615
550
+ #: includes/admin/templates/access/restrict_content.php:78
551
+ #: includes/admin/templates/access/restrict_content.php:90
552
+ msgid "Action when users without access tries to view the content"
553
+ msgstr ""
554
+
555
+ #: includes/admin/core/class-admin-metabox.php:451
556
+ #: includes/admin/core/class-admin-metabox.php:605
557
+ #: includes/admin/templates/access/restrict_content.php:81
558
+ msgid "Show access restricted message"
559
+ msgstr ""
560
+
561
+ #: includes/admin/core/class-admin-metabox.php:452
562
+ #: includes/admin/core/class-admin-metabox.php:606
563
+ #: includes/admin/templates/access/restrict_content.php:82
564
+ msgid "Redirect user"
565
+ msgstr ""
566
+
567
+ #: includes/admin/core/class-admin-metabox.php:459
568
+ #: includes/admin/core/class-admin-metabox.php:614
569
+ #: includes/admin/templates/access/restrict_content.php:89
570
+ msgid ""
571
+ "Would you like to use the global default message or apply a custom message "
572
+ "to this content?"
573
+ msgstr ""
574
+
575
+ #: includes/admin/core/class-admin-metabox.php:463
576
+ #: includes/admin/core/class-admin-metabox.php:618
577
+ #: includes/admin/templates/access/restrict_content.php:93
578
+ msgid "Global default message (default)"
579
+ msgstr ""
580
+
581
+ #: includes/admin/core/class-admin-metabox.php:464
582
+ #: includes/admin/core/class-admin-metabox.php:619
583
+ #: includes/admin/templates/access/restrict_content.php:94
584
+ msgid "Custom message"
585
+ msgstr ""
586
+
587
+ #: includes/admin/core/class-admin-metabox.php:471
588
+ #: includes/admin/core/class-admin-metabox.php:627
589
+ #: includes/admin/templates/access/restrict_content.php:101
590
+ msgid "Custom Restrict Content message"
591
+ msgstr ""
592
+
593
+ #: includes/admin/core/class-admin-metabox.php:472
594
+ #: includes/admin/core/class-admin-metabox.php:492
595
+ #: includes/admin/core/class-admin-metabox.php:628
596
+ #: includes/admin/core/class-admin-metabox.php:650
597
+ #: includes/admin/templates/access/restrict_content.php:102
598
+ #: includes/admin/templates/access/restrict_content.php:122
599
+ msgid "Changed global restrict message"
600
+ msgstr ""
601
+
602
+ #: includes/admin/core/class-admin-metabox.php:479
603
+ #: includes/admin/core/class-admin-metabox.php:636
604
+ #: includes/admin/templates/access/restrict_content.php:109
605
+ msgid "Where should users be redirected to?"
606
+ msgstr ""
607
+
608
+ #: includes/admin/core/class-admin-metabox.php:480
609
+ #: includes/admin/core/class-admin-metabox.php:637
610
+ #: includes/admin/templates/access/restrict_content.php:110
611
+ msgid "Select redirect to page when user hasn't access to content"
612
+ msgstr ""
613
+
614
+ #: includes/admin/core/class-admin-metabox.php:484
615
+ #: includes/admin/core/class-admin-metabox.php:641
616
+ #: includes/admin/templates/access/restrict_content.php:114
617
+ msgid "Login page"
618
+ msgstr ""
619
+
620
+ #: includes/admin/core/class-admin-metabox.php:485
621
+ #: includes/admin/core/class-admin-metabox.php:642
622
+ #: includes/admin/templates/access/restrict_content.php:115
623
+ msgid "Custom URL"
624
+ msgstr ""
625
+
626
+ #: includes/admin/core/class-admin-metabox.php:491
627
+ #: includes/admin/core/class-admin-metabox.php:649
628
+ #: includes/admin/templates/access/restrict_content.php:121
629
+ msgid "Redirect URL"
630
+ msgstr ""
631
+
632
+ #: includes/admin/core/class-admin-metabox.php:499
633
+ #: includes/admin/core/class-admin-metabox.php:658
634
+ #: includes/admin/templates/access/restrict_content.php:129
635
+ msgid "Hide from queries"
636
+ msgstr ""
637
+
638
+ #: includes/admin/core/class-admin-metabox.php:500
639
+ #: includes/admin/core/class-admin-metabox.php:659
640
+ #: includes/admin/templates/access/restrict_content.php:130
641
+ msgid ""
642
+ "Hide this content from archives, RSS feeds etc for users who do not have "
643
+ "permission to view this content"
644
+ msgstr ""
645
+
646
+ #: includes/admin/core/class-admin-metabox.php:817
647
+ msgid "General Options"
648
+ msgstr ""
649
+
650
+ #: includes/admin/core/class-admin-metabox.php:818
651
+ msgid "Profile Card"
652
+ msgstr ""
653
+
654
+ #: includes/admin/core/class-admin-metabox.php:819
655
+ msgid "Search Options"
656
+ msgstr ""
657
+
658
+ #: includes/admin/core/class-admin-metabox.php:820
659
+ msgid "Results &amp; Pagination"
660
+ msgstr ""
661
+
662
+ #: includes/admin/core/class-admin-metabox.php:822
663
+ msgid "Styling: General"
664
+ msgstr ""
665
+
666
+ #: includes/admin/core/class-admin-metabox.php:835
667
+ msgid "Administrative Permissions"
668
+ msgstr ""
669
+
670
+ #: includes/admin/core/class-admin-metabox.php:843
671
+ msgid "General Permissions"
672
+ msgstr ""
673
+
674
+ #: includes/admin/core/class-admin-metabox.php:851
675
+ msgid "Profile Access"
676
+ msgstr ""
677
+
678
+ #: includes/admin/core/class-admin-metabox.php:862
679
+ msgid "Homepage Options"
680
+ msgstr ""
681
+
682
+ #: includes/admin/core/class-admin-metabox.php:873
683
+ msgid "Registration Options"
684
+ msgstr ""
685
+
686
+ #: includes/admin/core/class-admin-metabox.php:881
687
+ msgid "Login Options"
688
+ msgstr ""
689
+
690
+ #: includes/admin/core/class-admin-metabox.php:889
691
+ msgid "Logout Options"
692
+ msgstr ""
693
+
694
+ #: includes/admin/core/class-admin-metabox.php:897
695
+ msgid "Delete Options"
696
+ msgstr ""
697
+
698
+ #: includes/admin/core/class-admin-metabox.php:905
699
+ msgid "Publish"
700
+ msgstr ""
701
+
702
+ #: includes/admin/core/class-admin-metabox.php:953
703
+ msgid "WP Capabilities"
704
+ msgstr ""
705
+
706
+ #: includes/admin/core/class-admin-metabox.php:980
707
+ msgid "Select Form Type"
708
+ msgstr ""
709
+
710
+ #: includes/admin/core/class-admin-metabox.php:981
711
+ msgid "Form Builder"
712
+ msgstr ""
713
+
714
+ #: includes/admin/core/class-admin-metabox.php:984
715
+ #: includes/admin/core/class-admin-metabox.php:1005
716
+ #: includes/admin/core/class-admin-metabox.php:1027
717
+ msgid "Customize this form"
718
+ msgstr ""
719
+
720
+ #: includes/admin/core/class-admin-metabox.php:1006
721
+ msgid "User Meta"
722
+ msgstr ""
723
+
724
+ #: includes/admin/core/class-admin-metabox.php:1028
725
+ msgid "Options"
726
+ msgstr ""
727
+
728
+ #: includes/admin/core/class-admin-metabox.php:1239
729
+ msgid ""
730
+ "Select where this field should appear. This option should only be changed on "
731
+ "the profile form and allows you to show a field in one mode only (edit or "
732
+ "view) or in both modes."
733
+ msgstr ""
734
+
735
+ #: includes/admin/core/class-admin-metabox.php:1273
736
+ msgid "If"
737
+ msgstr ""
738
+
739
+ #: includes/admin/core/class-admin-metabox.php:1350
740
+ msgid "Value"
741
+ msgstr ""
742
+
743
+ #: includes/admin/core/class-admin-metabox.php:1359
744
+ msgid "Does this field require a special validation"
745
+ msgstr ""
746
+
747
+ #: includes/admin/core/class-admin-metabox.php:1404
748
+ msgid ""
749
+ "If you want to apply your custom validation, you can use action hooks to add "
750
+ "custom validation. Please refer to documentation for further details."
751
+ msgstr ""
752
+
753
+ #: includes/admin/core/class-admin-metabox.php:1418
754
+ #: includes/admin/core/class-admin-metabox.php:1446
755
+ msgid ""
756
+ "Select an icon to appear in the field. Leave blank if you do not want an "
757
+ "icon to show in the field."
758
+ msgstr ""
759
+
760
+ #: includes/admin/core/class-admin-metabox.php:1473
761
+ msgid "Specify a custom CSS class to be applied to this element"
762
+ msgstr ""
763
+
764
+ #: includes/admin/core/class-admin-metabox.php:1483
765
+ msgid "This is the width in pixels, e.g. 4 or 2, etc"
766
+ msgstr ""
767
+
768
+ #: includes/admin/core/class-admin-metabox.php:1493
769
+ msgid "Optional text to include with the divider"
770
+ msgstr ""
771
+
772
+ #: includes/admin/core/class-admin-metabox.php:1503
773
+ msgid "Set padding for this section"
774
+ msgstr ""
775
+
776
+ #: includes/admin/core/class-admin-metabox.php:1513
777
+ msgid "Set margin for this section"
778
+ msgstr ""
779
+
780
+ #: includes/admin/core/class-admin-metabox.php:1523
781
+ msgid "Set border for this section"
782
+ msgstr ""
783
+
784
+ #: includes/admin/core/class-admin-metabox.php:1533
785
+ msgid "Choose the border style"
786
+ msgstr ""
787
+
788
+ #: includes/admin/core/class-admin-metabox.php:1548
789
+ msgid "Rounded corners can be applied by setting a pixels value here. e.g. 5px"
790
+ msgstr ""
791
+
792
+ #: includes/admin/core/class-admin-metabox.php:1558
793
+ msgid "Give a color to this border"
794
+ msgstr ""
795
+
796
+ #: includes/admin/core/class-admin-metabox.php:1568
797
+ msgid "Enable Row Heading"
798
+ msgstr ""
799
+
800
+ #: includes/admin/core/class-admin-metabox.php:1568
801
+ msgid "Whether to enable a heading for this row"
802
+ msgstr ""
803
+
804
+ #: includes/admin/core/class-admin-metabox.php:1578
805
+ msgid "Enter the row heading text here"
806
+ msgstr ""
807
+
808
+ #: includes/admin/core/class-admin-metabox.php:1588
809
+ msgid "This will be the background of entire section"
810
+ msgstr ""
811
+
812
+ #: includes/admin/core/class-admin-metabox.php:1598
813
+ msgid "This will be the background of the heading section"
814
+ msgstr ""
815
+
816
+ #: includes/admin/core/class-admin-metabox.php:1608
817
+ msgid "This will be the text color of heading part only"
818
+ msgstr ""
819
+
820
+ #: includes/admin/core/class-admin-metabox.php:1618
821
+ msgid "This will be the text color of entire section"
822
+ msgstr ""
823
+
824
+ #: includes/admin/core/class-admin-metabox.php:1628
825
+ msgid ""
826
+ "This will be the color of selected icon. By default It will be the same "
827
+ "color as heading text color"
828
+ msgstr ""
829
+
830
+ #: includes/admin/core/class-admin-metabox.php:1638
831
+ msgid "Select a color for this divider"
832
+ msgstr ""
833
+
834
+ #: includes/admin/core/class-admin-metabox.php:1648
835
+ msgid "Entering custom text here will replace the url with a text link"
836
+ msgstr ""
837
+
838
+ #: includes/admin/core/class-admin-metabox.php:1658
839
+ msgid "Choose whether to open this link in same window or in a new window"
840
+ msgstr ""
841
+
842
+ #: includes/admin/core/class-admin-metabox.php:1671
843
+ msgid "Whether to follow or nofollow this link by search engines"
844
+ msgstr ""
845
+
846
+ #: includes/admin/core/class-admin-metabox.php:1684
847
+ msgid ""
848
+ "Turn on to force users to create a strong password (A combination of one "
849
+ "lowercase letter, one uppercase letter, and one number). If turned on this "
850
+ "option is only applied to register forms and not to login forms."
851
+ msgstr ""
852
+
853
+ #: includes/admin/core/class-admin-metabox.php:1694
854
+ msgid ""
855
+ "Turn on to add a confirm password field. If turned on the confirm password "
856
+ "field will only show on register forms and not on login forms."
857
+ msgstr ""
858
+
859
+ #: includes/admin/core/class-admin-metabox.php:1704
860
+ msgid "This is the line-style of divider"
861
+ msgstr ""
862
+
863
+ #: includes/admin/core/class-admin-metabox.php:1720
864
+ msgid "Choose the minutes interval between each time in the time picker."
865
+ msgstr ""
866
+
867
+ #: includes/admin/core/class-admin-metabox.php:1733
868
+ msgid "The display format of the date which is visible to user."
869
+ msgstr ""
870
+
871
+ #: includes/admin/core/class-admin-metabox.php:1744
872
+ msgid "Choose the displayed time-format for this field"
873
+ msgstr ""
874
+
875
+ #: includes/admin/core/class-admin-metabox.php:1759
876
+ msgid ""
877
+ "Whether you wish to show the date in full or only show the years e.g. 25 "
878
+ "Years"
879
+ msgstr ""
880
+
881
+ #: includes/admin/core/class-admin-metabox.php:1778
882
+ msgid ""
883
+ "Disable specific week days from being available for selection in this date "
884
+ "picker"
885
+ msgstr ""
886
+
887
+ #: includes/admin/core/class-admin-metabox.php:1796
888
+ msgid ""
889
+ "Number of years available for the date selection. Default to last 50 years"
890
+ msgstr ""
891
+
892
+ #: includes/admin/core/class-admin-metabox.php:1806
893
+ msgid "This decides which years should be shown relative to today date"
894
+ msgstr ""
895
+
896
+ #: includes/admin/core/class-admin-metabox.php:1820
897
+ msgid "Set the minimum date/day in range in the format YYYY/MM/DD"
898
+ msgstr ""
899
+
900
+ #: includes/admin/core/class-admin-metabox.php:1830
901
+ msgid "Set the maximum date/day in range in the format YYYY/MM/DD"
902
+ msgstr ""
903
+
904
+ #: includes/admin/core/class-admin-metabox.php:1840
905
+ msgid ""
906
+ "Whether to show a specific number of years or specify a date range to be "
907
+ "available for the date picker."
908
+ msgstr ""
909
+
910
+ #: includes/admin/core/class-admin-metabox.php:1856
911
+ msgid ""
912
+ "Enter the shortcode in the following textarea and it will be displayed on "
913
+ "the fields"
914
+ msgstr ""
915
+
916
+ #: includes/admin/core/class-admin-metabox.php:1866
917
+ msgid "Edit the content of this field here"
918
+ msgstr ""
919
+
920
+ #: includes/admin/core/class-admin-metabox.php:1879
921
+ msgid "Enable/disable crop feature for this image upload and define ratio"
922
+ msgstr ""
923
+
924
+ #: includes/admin/core/class-admin-metabox.php:1901
925
+ #: includes/admin/core/class-admin-metabox.php:1921
926
+ msgid ""
927
+ "Select the image types that you want to allow to be uploaded via this field."
928
+ msgstr ""
929
+
930
+ #: includes/admin/core/class-admin-metabox.php:1942
931
+ msgid "This is the headline that appears in the upload box for this field"
932
+ msgstr ""
933
+
934
+ #: includes/admin/core/class-admin-metabox.php:1952
935
+ msgid ""
936
+ "If you need to add information or secondary line below the headline of "
937
+ "upload box, enter it here"
938
+ msgstr ""
939
+
940
+ #: includes/admin/core/class-admin-metabox.php:1962
941
+ msgid "The text that appears on the button. e.g. Upload"
942
+ msgstr ""
943
+
944
+ #: includes/admin/core/class-admin-metabox.php:1972
945
+ msgid ""
946
+ "The maximum size for image that can be uploaded through this field. Leave "
947
+ "empty for unlimited size."
948
+ msgstr ""
949
+
950
+ #: includes/admin/core/class-admin-metabox.php:1982
951
+ msgid "The height of textarea in pixels. Default is 100 pixels"
952
+ msgstr ""
953
+
954
+ #: includes/admin/core/class-admin-metabox.php:1992
955
+ msgid "This is the required spacing in pixels. e.g. 20px"
956
+ msgstr ""
957
+
958
+ #: includes/admin/core/class-admin-metabox.php:2002
959
+ msgid "Enable/disable multiple selections for this field"
960
+ msgstr ""
961
+
962
+ #: includes/admin/core/class-admin-metabox.php:2012
963
+ msgid ""
964
+ "Enter a number here to force a maximum number of selections by user for this "
965
+ "field"
966
+ msgstr ""
967
+
968
+ #: includes/admin/core/class-admin-metabox.php:2022
969
+ msgid ""
970
+ "Enter a number here to force a minimum number of selections by user for this "
971
+ "field"
972
+ msgstr ""
973
+
974
+ #: includes/admin/core/class-admin-metabox.php:2032
975
+ msgid "This is the max number of entries the user can add via field group."
976
+ msgstr ""
977
+
978
+ #: includes/admin/core/class-admin-metabox.php:2042
979
+ msgid ""
980
+ "If you want to enable a maximum number of words to be input in this "
981
+ "textarea. Leave empty to disable this setting"
982
+ msgstr ""
983
+
984
+ #: includes/admin/core/class-admin-metabox.php:2052
985
+ msgid "Minimum number that can be entered in this field"
986
+ msgstr ""
987
+
988
+ #: includes/admin/core/class-admin-metabox.php:2062
989
+ msgid "Maximum number that can be entered in this field"
990
+ msgstr ""
991
+
992
+ #: includes/admin/core/class-admin-metabox.php:2072
993
+ msgid ""
994
+ "If you want to enable a minimum number of characters to be input in this "
995
+ "field. Leave empty to disable this setting"
996
+ msgstr ""
997
+
998
+ #: includes/admin/core/class-admin-metabox.php:2082
999
+ msgid ""
1000
+ "If you want to enable a maximum number of characters to be input in this "
1001
+ "field. Leave empty to disable this setting"
1002
+ msgstr ""
1003
+
1004
+ #: includes/admin/core/class-admin-metabox.php:2092
1005
+ msgid "Turn on/off HTML tags for this textarea"
1006
+ msgstr ""
1007
+
1008
+ #: includes/admin/core/class-admin-metabox.php:2111
1009
+ msgid ""
1010
+ "Enter one choice per line. This will represent the available choices or "
1011
+ "selections available for user."
1012
+ msgstr ""
1013
+
1014
+ #: includes/admin/core/class-admin-metabox.php:2121
1015
+ msgid ""
1016
+ "This is the title of the field for your reference in the backend. The title "
1017
+ "will not appear on the front-end of your website."
1018
+ msgstr ""
1019
+
1020
+ #: includes/admin/core/class-admin-metabox.php:2146
1021
+ msgid ""
1022
+ "The meta key cannot be changed for duplicated fields or when editing an "
1023
+ "existing field. If you require a different meta key please create a new "
1024
+ "field."
1025
+ msgstr ""
1026
+
1027
+ #: includes/admin/core/class-admin-metabox.php:2152
1028
+ msgid ""
1029
+ "A meta key is required to store the entered info in this field in the "
1030
+ "database. The meta key should be unique to this field and be written in "
1031
+ "lowercase with an underscore ( _ ) separating words e.g country_list or "
1032
+ "job_title"
1033
+ msgstr ""
1034
+
1035
+ #: includes/admin/core/class-admin-metabox.php:2165
1036
+ msgid ""
1037
+ "This is the text that appears in a tooltip when a user hovers over the info "
1038
+ "icon. Help text is useful for providing users with more information about "
1039
+ "what they should enter in the field. Leave blank if no help text is needed "
1040
+ "for field."
1041
+ msgstr ""
1042
+
1043
+ #: includes/admin/core/class-admin-metabox.php:2177
1044
+ msgid "Default Text"
1045
+ msgstr ""
1046
+
1047
+ #: includes/admin/core/class-admin-metabox.php:2177
1048
+ msgid "Text to display by default in this field"
1049
+ msgstr ""
1050
+
1051
+ #: includes/admin/core/class-admin-metabox.php:2183
1052
+ msgid "Default Date"
1053
+ msgstr ""
1054
+
1055
+ #: includes/admin/core/class-admin-metabox.php:2183
1056
+ #: includes/admin/core/class-admin-metabox.php:2189
1057
+ msgid ""
1058
+ "You may use all PHP compatible date formats such as: 2020-02-02, 02/02/2020, "
1059
+ "yesterday, today, tomorrow, next monday, first day of next month, +3 day"
1060
+ msgstr ""
1061
+
1062
+ #: includes/admin/core/class-admin-metabox.php:2189
1063
+ msgid "Default Time"
1064
+ msgstr ""
1065
+
1066
+ #: includes/admin/core/class-admin-metabox.php:2195
1067
+ msgid "Default Rating"
1068
+ msgstr ""
1069
+
1070
+ #: includes/admin/core/class-admin-metabox.php:2195
1071
+ msgid ""
1072
+ "If you wish the rating field to be prefilled with a number of stars, enter "
1073
+ "it here."
1074
+ msgstr ""
1075
+
1076
+ #: includes/admin/core/class-admin-metabox.php:2201
1077
+ msgid "Default Value"
1078
+ msgstr ""
1079
+
1080
+ #: includes/admin/core/class-admin-metabox.php:2201
1081
+ msgid ""
1082
+ "This option allows you to pre-fill the field with a default value prior to "
1083
+ "the user entering a value in the field. Leave blank to have no default value"
1084
+ msgstr ""
1085
+
1086
+ #: includes/admin/core/class-admin-metabox.php:2213
1087
+ msgid ""
1088
+ "The field label is the text that appears above the field on your front-end "
1089
+ "form. Leave blank to not show a label above field."
1090
+ msgstr ""
1091
+
1092
+ #: includes/admin/core/class-admin-metabox.php:2223
1093
+ msgid ""
1094
+ "This is the text that appears within the field e.g please enter your email "
1095
+ "address. Leave blank to not show any placeholder text."
1096
+ msgstr ""
1097
+
1098
+ #: includes/admin/core/class-admin-metabox.php:2233
1099
+ msgid ""
1100
+ "Field privacy allows you to select who can view this field on the front-end. "
1101
+ "The site admin can view all fields regardless of the option set here."
1102
+ msgstr ""
1103
+
1104
+ #: includes/admin/core/class-admin-metabox.php:2256
1105
+ msgid "Select the member roles that can view this field on the front-end."
1106
+ msgstr ""
1107
+
1108
+ #: includes/admin/core/class-admin-metabox.php:2282
1109
+ msgid ""
1110
+ "This option allows you to set whether the field must be filled in before the "
1111
+ "form can be processed."
1112
+ msgstr ""
1113
+
1114
+ #: includes/admin/core/class-admin-metabox.php:2296
1115
+ msgid ""
1116
+ "This option allows you to set whether or not the user can edit the "
1117
+ "information in this field."
1118
+ msgstr ""
1119
+
1120
+ #: includes/admin/core/class-admin-metabox.php:2309
1121
+ msgid "Choose whether you want a 5-stars or 10-stars ratings based here."
1122
+ msgstr ""
1123
+
1124
+ #: includes/admin/core/class-admin-metabox.php:2322
1125
+ msgid "Add a callback source to retrieve choices."
1126
+ msgstr ""
1127
+
1128
+ #: includes/admin/core/class-admin-metabox.php:2333
1129
+ msgid "Parent Option"
1130
+ msgstr ""
1131
+
1132
+ #: includes/admin/core/class-admin-metabox.php:2333
1133
+ msgid "Dynamically populates the option based from selected parent option."
1134
+ msgstr ""
1135
+
1136
+ #: includes/admin/core/class-admin-metabox.php:2335
1137
+ msgid "No Selected"
1138
+ msgstr ""
1139
+
1140
+ #: includes/admin/core/class-admin-navmenu.php:23
1141
+ msgid "Display Mode"
1142
+ msgstr ""
1143
+
1144
+ #: includes/admin/core/class-admin-navmenu.php:24
1145
+ msgid "By Role"
1146
+ msgstr ""
1147
+
1148
+ #: includes/admin/core/class-admin-navmenu.php:133
1149
+ msgid "Ultimate Member Menu Settings"
1150
+ msgstr ""
1151
+
1152
+ #: includes/admin/core/class-admin-navmenu.php:137
1153
+ msgid "Who can see this menu link?"
1154
+ msgstr ""
1155
+
1156
+ #: includes/admin/core/class-admin-navmenu.php:144
1157
+ msgid "Logged Out Users"
1158
+ msgstr ""
1159
+
1160
+ #: includes/admin/core/class-admin-navmenu.php:147
1161
+ msgid "Logged In Users"
1162
+ msgstr ""
1163
+
1164
+ #: includes/admin/core/class-admin-navmenu.php:153
1165
+ msgid "Select the member roles that can see this link"
1166
+ msgstr ""
1167
+
1168
+ #: includes/admin/core/class-admin-notices.php:279
1169
+ #, php-format
1170
+ msgid ""
1171
+ "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions "
1172
+ "installed on your site. <br /> Please update %s extensions to latest "
1173
+ "versions. For more info see this <a href=\"%s\" target=\"_blank\">doc</a>."
1174
+ msgstr ""
1175
+
1176
+ #: includes/admin/core/class-admin-notices.php:300
1177
+ #, php-format
1178
+ msgid ""
1179
+ "%s needs to create several pages (User Profiles, Account, Registration, "
1180
+ "Login, Password Reset, Logout, Member Directory) to function correctly."
1181
+ msgstr ""
1182
+
1183
+ #: includes/admin/core/class-admin-notices.php:304
1184
+ msgid "Create Pages"
1185
+ msgstr ""
1186
+
1187
+ #: includes/admin/core/class-admin-notices.php:306
1188
+ #: includes/admin/core/class-admin-notices.php:500
1189
+ msgid "No thanks"
1190
+ msgstr ""
1191
+
1192
+ #: includes/admin/core/class-admin-notices.php:326
1193
+ msgid "Ultimate Member Setup Error: User page can not be a child page."
1194
+ msgstr ""
1195
+
1196
+ #: includes/admin/core/class-admin-notices.php:336
1197
+ msgid "Ultimate Member Setup Error: Account page can not be a child page."
1198
+ msgstr ""
1199
+
1200
+ #: includes/admin/core/class-admin-notices.php:354
1201
+ #, php-format
1202
+ msgid ""
1203
+ "Exif is not enabled on your server. Mobile photo uploads will not be rotated "
1204
+ "correctly until you enable the exif extension. <a href=\"%s\">Hide this "
1205
+ "notice</a>"
1206
+ msgstr ""
1207
+
1208
+ #: includes/admin/core/class-admin-notices.php:389
1209
+ #, php-format
1210
+ msgid ""
1211
+ "Are you sure you want to delete the selected user(s)? The following users "
1212
+ "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
1213
+ msgstr ""
1214
+
1215
+ #: includes/admin/core/class-admin-notices.php:390
1216
+ msgid "Undo"
1217
+ msgstr ""
1218
+
1219
+ #: includes/admin/core/class-admin-notices.php:395
1220
+ msgid "Your translation files have been updated successfully."
1221
+ msgstr ""
1222
+
1223
+ #: includes/admin/core/class-admin-notices.php:399
1224
+ msgid "Your temp uploads directory is now clean."
1225
+ msgstr ""
1226
+
1227
+ #: includes/admin/core/class-admin-notices.php:403
1228
+ msgid "Your user cache is now removed."
1229
+ msgstr ""
1230
+
1231
+ #: includes/admin/core/class-admin-notices.php:407
1232
+ msgid "You have the latest updates."
1233
+ msgstr ""
1234
+
1235
+ #: includes/admin/core/class-admin-notices.php:411
1236
+ msgid "Try again later. You can run this action once daily."
1237
+ msgstr ""
1238
+
1239
+ #: includes/admin/core/class-admin-notices.php:415
1240
+ msgid "The form has been duplicated successfully."
1241
+ msgstr ""
1242
+
1243
+ #: includes/admin/core/class-admin-notices.php:419
1244
+ msgid "User has been updated."
1245
+ msgstr ""
1246
+
1247
+ #: includes/admin/core/class-admin-notices.php:423
1248
+ msgid "Users have been updated."
1249
+ msgstr ""
1250
+
1251
+ #: includes/admin/core/class-admin-notices.php:427
1252
+ msgid "Changed roles."
1253
+ msgstr ""
1254
+
1255
+ #: includes/admin/core/class-admin-notices.php:431
1256
+ msgid "Super administrators cannot be modified."
1257
+ msgstr ""
1258
+
1259
+ #: includes/admin/core/class-admin-notices.php:432
1260
+ msgid "Other users have been updated."
1261
+ msgstr ""
1262
+
1263
+ #: includes/admin/core/class-admin-notices.php:469
1264
+ #, php-format
1265
+ msgid ""
1266
+ "You have installed <strong>%s</strong> with wrong folder name. Correct "
1267
+ "folder name is <strong>\"ultimate-member\"</strong>."
1268
+ msgstr ""
1269
+
1270
+ #: includes/admin/core/class-admin-notices.php:494
1271
+ #, php-format
1272
+ msgid ""
1273
+ "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To "
1274
+ "fund full-time development and support of the plugin we also sell "
1275
+ "extensions. If you subscribe to our mailing list we will send you a 20%% "
1276
+ "discount code for one of our <a href=\"%s\" target=\"_blank\">access passes</"
1277
+ "a>."
1278
+ msgstr ""
1279
+
1280
+ #: includes/admin/core/class-admin-notices.php:498
1281
+ #, php-format
1282
+ msgid "Claim 20% discount code"
1283
+ msgstr ""
1284
+
1285
+ #: includes/admin/core/class-admin-notices.php:537
1286
+ #, php-format
1287
+ msgid ""
1288
+ "There are %d inactive %s license keys for this site. This site is not "
1289
+ "authorized to get plugin updates. You can active this site on <a href=\"%s"
1290
+ "\">www.ultimatemember.com</a>."
1291
+ msgstr ""
1292
+
1293
+ #: includes/admin/core/class-admin-notices.php:544
1294
+ #, php-format
1295
+ msgid ""
1296
+ "You have %d invalid or expired license keys for %s. Please go to the <a href="
1297
+ "\"%s\">Licenses page</a> to correct this issue."
1298
+ msgstr ""
1299
+
1300
+ #: includes/admin/core/class-admin-notices.php:558
1301
+ #, php-format
1302
+ msgid ""
1303
+ "<strong>%s version %s</strong> needs to be updated to work correctly.<br /"
1304
+ ">It is necessary to update the structure of the database and options that "
1305
+ "are associated with <strong>%s %s</strong>.<br />Please visit <a href=\"%s\">"
1306
+ "\"Upgrade\"</a> page and run the upgrade process."
1307
+ msgstr ""
1308
+
1309
+ #: includes/admin/core/class-admin-notices.php:562
1310
+ msgid "Upgrade Now"
1311
+ msgstr ""
1312
+
1313
+ #: includes/admin/core/class-admin-notices.php:576
1314
+ #, php-format
1315
+ msgid "<strong>%s %s</strong> Successfully Upgraded"
1316
+ msgstr ""
1317
+
1318
+ #: includes/admin/core/class-admin-notices.php:602
1319
+ #, php-format
1320
+ msgid ""
1321
+ "Hey there! It's been one month since you installed %s. How have you found "
1322
+ "the plugin so far?"
1323
+ msgstr ""
1324
+
1325
+ #: includes/admin/core/class-admin-notices.php:605
1326
+ msgid "I love it!"
1327
+ msgstr ""
1328
+
1329
+ #: includes/admin/core/class-admin-notices.php:606
1330
+ msgid "It's good but could be better"
1331
+ msgstr ""
1332
+
1333
+ #: includes/admin/core/class-admin-notices.php:607
1334
+ msgid "I don't like the plugin"
1335
+ msgstr ""
1336
+
1337
+ #: includes/admin/core/class-admin-notices.php:612
1338
+ #, php-format
1339
+ msgid ""
1340
+ "Great! We're happy to hear that you love the plugin. It would be amazing if "
1341
+ "you could let others know why you like %s by leaving a review of the plugin. "
1342
+ "This will help %s to grow and become more popular and would be massively "
1343
+ "appreciated by us!"
1344
+ msgstr ""
1345
+
1346
+ #: includes/admin/core/class-admin-notices.php:616
1347
+ msgid "Leave Review"
1348
+ msgstr ""
1349
+
1350
+ #: includes/admin/core/class-admin-notices.php:621
1351
+ msgid ""
1352
+ "We're glad to hear that you like the plugin but we would love to get your "
1353
+ "feedback so we can make the plugin better."
1354
+ msgstr ""
1355
+
1356
+ #: includes/admin/core/class-admin-notices.php:625
1357
+ #: includes/admin/core/class-admin-notices.php:634
1358
+ msgid "Provide Feedback"
1359
+ msgstr ""
1360
+
1361
+ #: includes/admin/core/class-admin-notices.php:630
1362
+ #, php-format
1363
+ msgid ""
1364
+ "We're sorry to hear that. If you're having the issue with the plugin you can "
1365
+ "create a topic on our <a href=\"%s\" target=\"_blank\">support forum</a> and "
1366
+ "we will try and help you out with the issue. Alternatively if you have an "
1367
+ "idea on how we can make the plugin better or want to tell us what you don't "
1368
+ "like about the plugin you can tell us know by giving us feedback."
1369
+ msgstr ""
1370
+
1371
+ #: includes/admin/core/class-admin-notices.php:656
1372
+ #, php-format
1373
+ msgid ""
1374
+ "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" "
1375
+ "target=\"_blank\">here</a>"
1376
+ msgstr ""
1377
+
1378
+ #: includes/admin/core/class-admin-notices.php:672
1379
+ msgid "Wrong Data"
1380
+ msgstr ""
1381
+
1382
+ #: includes/admin/core/class-admin-settings.php:109
1383
+ #: includes/admin/core/class-admin-settings.php:118
1384
+ #, php-format
1385
+ msgid "%s page"
1386
+ msgstr ""
1387
+
1388
+ #: includes/admin/core/class-admin-settings.php:110
1389
+ msgid "Add page ID"
1390
+ msgstr ""
1391
+
1392
+ #: includes/admin/core/class-admin-settings.php:120
1393
+ msgid "Choose a page..."
1394
+ msgstr ""
1395
+
1396
+ #: includes/admin/core/class-admin-settings.php:132
1397
+ msgid "Enable profile menu"
1398
+ msgstr ""
1399
+
1400
+ #: includes/admin/core/class-admin-settings.php:144
1401
+ #, php-format
1402
+ msgid "%s Tab"
1403
+ msgstr ""
1404
+
1405
+ #: includes/admin/core/class-admin-settings.php:150
1406
+ #, php-format
1407
+ msgid "Who can see %s Tab?"
1408
+ msgstr ""
1409
+
1410
+ #: includes/admin/core/class-admin-settings.php:151
1411
+ msgid "Select which users can view this tab."
1412
+ msgstr ""
1413
+
1414
+ #: includes/admin/core/class-admin-settings.php:160
1415
+ msgid "Allowed roles"
1416
+ msgstr ""
1417
+
1418
+ #: includes/admin/core/class-admin-settings.php:161
1419
+ msgid "Select the the user roles allowed to view this tab."
1420
+ msgstr ""
1421
+
1422
+ #: includes/admin/core/class-admin-settings.php:163
1423
+ msgid "Choose user roles..."
1424
+ msgstr ""
1425
+
1426
+ #: includes/admin/core/class-admin-settings.php:174
1427
+ msgid "Profile menu default tab"
1428
+ msgstr ""
1429
+
1430
+ #: includes/admin/core/class-admin-settings.php:175
1431
+ msgid "This will be the default tab on user profile page"
1432
+ msgstr ""
1433
+
1434
+ #: includes/admin/core/class-admin-settings.php:183
1435
+ msgid "Enable menu icons in desktop view"
1436
+ msgstr ""
1437
+
1438
+ #: includes/admin/core/class-admin-settings.php:236
1439
+ msgid "Global Site Access"
1440
+ msgstr ""
1441
+
1442
+ #: includes/admin/core/class-admin-settings.php:237
1443
+ msgid ""
1444
+ "Globally control the access of your site, you can have seperate restrict "
1445
+ "options per post/page by editing the desired item."
1446
+ msgstr ""
1447
+
1448
+ #: includes/admin/core/class-admin-settings.php:247
1449
+ msgid "Custom Redirect URL"
1450
+ msgstr ""
1451
+
1452
+ #: includes/admin/core/class-admin-settings.php:248
1453
+ msgid ""
1454
+ "A logged out user will be redirected to this url If he is not permitted to "
1455
+ "access the site"
1456
+ msgstr ""
1457
+
1458
+ #: includes/admin/core/class-admin-settings.php:254
1459
+ msgid "Exclude the following URLs"
1460
+ msgstr ""
1461
+
1462
+ #: includes/admin/core/class-admin-settings.php:255
1463
+ msgid ""
1464
+ "Here you can exclude URLs beside the redirect URI to be accessible to "
1465
+ "everyone"
1466
+ msgstr ""
1467
+
1468
+ #: includes/admin/core/class-admin-settings.php:256
1469
+ msgid "Add New URL"
1470
+ msgstr ""
1471
+
1472
+ #: includes/admin/core/class-admin-settings.php:263
1473
+ msgid "Allow Homepage to be accessible"
1474
+ msgstr ""
1475
+
1476
+ #: includes/admin/core/class-admin-settings.php:269
1477
+ msgid "Allow Category pages to be accessible"
1478
+ msgstr ""
1479
+
1480
+ #: includes/admin/core/class-admin-settings.php:275
1481
+ msgid "Restricted Access Message"
1482
+ msgstr ""
1483
+
1484
+ #: includes/admin/core/class-admin-settings.php:276
1485
+ msgid ""
1486
+ "This is the message shown to users that do not have permission to view the "
1487
+ "content"
1488
+ msgstr ""
1489
+
1490
+ #: includes/admin/core/class-admin-settings.php:284
1491
+ msgid "Allow Gutenberg Blocks restriction options"
1492
+ msgstr ""
1493
+
1494
+ #: includes/admin/core/class-admin-settings.php:289
1495
+ msgid "Restricted Block Message"
1496
+ msgstr ""
1497
+
1498
+ #: includes/admin/core/class-admin-settings.php:290
1499
+ msgid ""
1500
+ "This is the message shown to users that do not have permission to view the "
1501
+ "block's content"
1502
+ msgstr ""
1503
+
1504
+ #: includes/admin/core/class-admin-settings.php:307
1505
+ msgid "Restricted Access to Posts"
1506
+ msgstr ""
1507
+
1508
+ #: includes/admin/core/class-admin-settings.php:308
1509
+ msgid "Restriction content of the current Posts"
1510
+ msgstr ""
1511
+
1512
+ #: includes/admin/core/class-admin-settings.php:317
1513
+ msgid "Restricted Access to Taxonomies"
1514
+ msgstr ""
1515
+
1516
+ #: includes/admin/core/class-admin-settings.php:318
1517
+ msgid "Restriction content of the current Taxonomies"
1518
+ msgstr ""
1519
+
1520
+ #: includes/admin/core/class-admin-settings.php:348
1521
+ msgid "General"
1522
+ msgstr ""
1523
+
1524
+ #: includes/admin/core/class-admin-settings.php:351
1525
+ msgid "Pages"
1526
+ msgstr ""
1527
+
1528
+ #: includes/admin/core/class-admin-settings.php:355
1529
+ #: includes/admin/templates/dashboard/users.php:6
1530
+ msgid "Users"
1531
+ msgstr ""
1532
+
1533
+ #: includes/admin/core/class-admin-settings.php:361
1534
+ msgid "Profile Permalink Base"
1535
+ msgstr ""
1536
+
1537
+ #: includes/admin/core/class-admin-settings.php:362
1538
+ msgid ""
1539
+ "Here you can control the permalink structure of the user profile URL "
1540
+ "globally e.g. "
1541
+ msgstr ""
1542
+
1543
+ #: includes/admin/core/class-admin-settings.php:364
1544
+ #: includes/admin/core/class-admin-settings.php:381
1545
+ #: includes/core/class-builtin.php:674 includes/core/class-builtin.php:677
1546
+ msgid "Username"
1547
+ msgstr ""
1548
+
1549
+ #: includes/admin/core/class-admin-settings.php:365
1550
+ msgid "First and Last Name with '.'"
1551
+ msgstr ""
1552
+
1553
+ #: includes/admin/core/class-admin-settings.php:366
1554
+ msgid "First and Last Name with '-'"
1555
+ msgstr ""
1556
+
1557
+ #: includes/admin/core/class-admin-settings.php:367
1558
+ msgid "First and Last Name with '+'"
1559
+ msgstr ""
1560
+
1561
+ #: includes/admin/core/class-admin-settings.php:368
1562
+ msgid "User ID"
1563
+ msgstr ""
1564
+
1565
+ #: includes/admin/core/class-admin-settings.php:370
1566
+ #: includes/admin/core/class-admin-settings.php:389
1567
+ msgid "Select..."
1568
+ msgstr ""
1569
+
1570
+ #: includes/admin/core/class-admin-settings.php:376
1571
+ msgid "User Display Name"
1572
+ msgstr ""
1573
+
1574
+ #: includes/admin/core/class-admin-settings.php:377
1575
+ msgid ""
1576
+ "This is the name that will be displayed for users on the front end of your "
1577
+ "site. Default setting uses first/last name as display name if it exists"
1578
+ msgstr ""
1579
+
1580
+ #: includes/admin/core/class-admin-settings.php:379
1581
+ msgid "Default WP Display Name"
1582
+ msgstr ""
1583
+
1584
+ #: includes/admin/core/class-admin-settings.php:380
1585
+ #: includes/core/class-builtin.php:732 includes/core/class-builtin.php:735
1586
+ msgid "Nickname"
1587
+ msgstr ""
1588
+
1589
+ #: includes/admin/core/class-admin-settings.php:382
1590
+ msgid "First name & last name"
1591
+ msgstr ""
1592
+
1593
+ #: includes/admin/core/class-admin-settings.php:383
1594
+ msgid "Last name & first name"
1595
+ msgstr ""
1596
+
1597
+ #: includes/admin/core/class-admin-settings.php:384
1598
+ msgid "First name & first initial of last name"
1599
+ msgstr ""
1600
+
1601
+ #: includes/admin/core/class-admin-settings.php:385
1602
+ msgid "First initial of first name & last name"
1603
+ msgstr ""
1604
+
1605
+ #: includes/admin/core/class-admin-settings.php:386
1606
+ msgid "First name only"
1607
+ msgstr ""
1608
+
1609
+ #: includes/admin/core/class-admin-settings.php:387
1610
+ msgid "Custom field(s)"
1611
+ msgstr ""
1612
+
1613
+ #: includes/admin/core/class-admin-settings.php:394
1614
+ msgid "Display Name Custom Field(s)"
1615
+ msgstr ""
1616
+
1617
+ #: includes/admin/core/class-admin-settings.php:395
1618
+ msgid ""
1619
+ "Specify the custom field meta key or custom fields seperated by comma that "
1620
+ "you want to use to display users name on the frontend of your site"
1621
+ msgstr ""
1622
+
1623
+ #: includes/admin/core/class-admin-settings.php:401
1624
+ msgid "Automatically redirect author page to their profile?"
1625
+ msgstr ""
1626
+
1627
+ #: includes/admin/core/class-admin-settings.php:402
1628
+ msgid ""
1629
+ "If enabled, author pages will automatically redirect to the user's profile "
1630
+ "page"
1631
+ msgstr ""
1632
+
1633
+ #: includes/admin/core/class-admin-settings.php:407
1634
+ msgid "Enable Members Directory"
1635
+ msgstr ""
1636
+
1637
+ #: includes/admin/core/class-admin-settings.php:408
1638
+ msgid "Control whether to enable or disable member directories on this site"
1639
+ msgstr ""
1640
+
1641
+ #: includes/admin/core/class-admin-settings.php:413
1642
+ msgid "Use Gravatars?"
1643
+ msgstr ""
1644
+
1645
+ #: includes/admin/core/class-admin-settings.php:414
1646
+ msgid ""
1647
+ "Do you want to use gravatars instead of the default plugin profile photo (If "
1648
+ "the user did not upload a custom profile photo / avatar)"
1649
+ msgstr ""
1650
+
1651
+ #: includes/admin/core/class-admin-settings.php:419
1652
+ msgid "Use Gravatar builtin image"
1653
+ msgstr ""
1654
+
1655
+ #: includes/admin/core/class-admin-settings.php:420
1656
+ msgid ""
1657
+ "Gravatar has a number of built in options which you can also use as defaults"
1658
+ msgstr ""
1659
+
1660
+ #: includes/admin/core/class-admin-settings.php:423
1661
+ msgid "404 ( File Not Found response )"
1662
+ msgstr ""
1663
+
1664
+ #: includes/admin/core/class-admin-settings.php:424
1665
+ msgid "Mystery Man"
1666
+ msgstr ""
1667
+
1668
+ #: includes/admin/core/class-admin-settings.php:425
1669
+ msgid "Identicon"
1670
+ msgstr ""
1671
+
1672
+ #: includes/admin/core/class-admin-settings.php:426
1673
+ msgid "Monsterid"
1674
+ msgstr ""
1675
+
1676
+ #: includes/admin/core/class-admin-settings.php:427
1677
+ msgid "Wavatar"
1678
+ msgstr ""
1679
+
1680
+ #: includes/admin/core/class-admin-settings.php:428
1681
+ msgid "Retro"
1682
+ msgstr ""
1683
+
1684
+ #: includes/admin/core/class-admin-settings.php:429
1685
+ msgid "Blank ( a transparent PNG image )"
1686
+ msgstr ""
1687
+
1688
+ #: includes/admin/core/class-admin-settings.php:437
1689
+ msgid "Use Default plugin avatar as Gravatar's Default avatar"
1690
+ msgstr ""
1691
+
1692
+ #: includes/admin/core/class-admin-settings.php:438
1693
+ msgid ""
1694
+ "Do you want to use the plugin default avatar instead of the gravatar default "
1695
+ "photo (If the user did not upload a custom profile photo / avatar)"
1696
+ msgstr ""
1697
+
1698
+ #: includes/admin/core/class-admin-settings.php:444
1699
+ msgid "Require a strong password? (when user resets password only)"
1700
+ msgstr ""
1701
+
1702
+ #: includes/admin/core/class-admin-settings.php:445
1703
+ msgid ""
1704
+ "Enable or disable a strong password rules on password reset and change "
1705
+ "procedure"
1706
+ msgstr ""
1707
+
1708
+ #: includes/admin/core/class-admin-settings.php:450
1709
+ #: includes/class-config.php:136 includes/class-config.php:750
1710
+ #: includes/core/class-account.php:92
1711
+ msgid "Account"
1712
+ msgstr ""
1713
+
1714
+ #: includes/admin/core/class-admin-settings.php:455
1715
+ msgid "Password Account Tab"
1716
+ msgstr ""
1717
+
1718
+ #: includes/admin/core/class-admin-settings.php:461
1719
+ msgid "Privacy Account Tab"
1720
+ msgstr ""
1721
+
1722
+ #: includes/admin/core/class-admin-settings.php:462
1723
+ msgid "Enable/disable the Privacy account tab in account page"
1724
+ msgstr ""
1725
+
1726
+ #: includes/admin/core/class-admin-settings.php:467
1727
+ msgid "Notifications Account Tab"
1728
+ msgstr ""
1729
+
1730
+ #: includes/admin/core/class-admin-settings.php:468
1731
+ msgid "Enable/disable the Notifications account tab in account page"
1732
+ msgstr ""
1733
+
1734
+ #: includes/admin/core/class-admin-settings.php:473
1735
+ msgid "Delete Account Tab"
1736
+ msgstr ""
1737
+
1738
+ #: includes/admin/core/class-admin-settings.php:474
1739
+ msgid "Enable/disable the Delete account tab in account page"
1740
+ msgstr ""
1741
+
1742
+ #: includes/admin/core/class-admin-settings.php:479
1743
+ msgid "Account Deletion Custom Text"
1744
+ msgstr ""
1745
+
1746
+ #: includes/admin/core/class-admin-settings.php:480
1747
+ msgid ""
1748
+ "This is custom text that will be displayed to users before they delete their "
1749
+ "accounts from your site"
1750
+ msgstr ""
1751
+
1752
+ #: includes/admin/core/class-admin-settings.php:488
1753
+ msgid "Add a First & Last Name fields"
1754
+ msgstr ""
1755
+
1756
+ #: includes/admin/core/class-admin-settings.php:489
1757
+ msgid ""
1758
+ "Whether to enable these fields on the user account page by default or hide "
1759
+ "them."
1760
+ msgstr ""
1761
+
1762
+ #: includes/admin/core/class-admin-settings.php:494
1763
+ msgid "Disable First & Last Name fields"
1764
+ msgstr ""
1765
+
1766
+ #: includes/admin/core/class-admin-settings.php:495
1767
+ msgid ""
1768
+ "Whether to allow users changing their first and last name in account page."
1769
+ msgstr ""
1770
+
1771
+ #: includes/admin/core/class-admin-settings.php:501
1772
+ msgid "Require First & Last Name"
1773
+ msgstr ""
1774
+
1775
+ #: includes/admin/core/class-admin-settings.php:502
1776
+ msgid "Require first and last name?"
1777
+ msgstr ""
1778
+
1779
+ #: includes/admin/core/class-admin-settings.php:508
1780
+ msgid "Allow users to change e-mail"
1781
+ msgstr ""
1782
+
1783
+ #: includes/admin/core/class-admin-settings.php:509
1784
+ msgid "Whether to allow users changing their email in account page."
1785
+ msgstr ""
1786
+
1787
+ #: includes/admin/core/class-admin-settings.php:514
1788
+ msgid "Password is required?"
1789
+ msgstr ""
1790
+
1791
+ #: includes/admin/core/class-admin-settings.php:515
1792
+ msgid "Password is required to save account data."
1793
+ msgstr ""
1794
+
1795
+ #: includes/admin/core/class-admin-settings.php:520
1796
+ msgid "Allow users to hide their profiles from directory"
1797
+ msgstr ""
1798
+
1799
+ #: includes/admin/core/class-admin-settings.php:521
1800
+ msgid ""
1801
+ "Whether to allow users changing their profile visibility from member "
1802
+ "directory in account page."
1803
+ msgstr ""
1804
+
1805
+ #: includes/admin/core/class-admin-settings.php:526
1806
+ msgid "Require a strong password?"
1807
+ msgstr ""
1808
+
1809
+ #: includes/admin/core/class-admin-settings.php:527
1810
+ msgid ""
1811
+ "Enable or disable a strong password rules on account page / change password "
1812
+ "tab"
1813
+ msgstr ""
1814
+
1815
+ #: includes/admin/core/class-admin-settings.php:532
1816
+ msgid "Uploads"
1817
+ msgstr ""
1818
+
1819
+ #: includes/admin/core/class-admin-settings.php:538
1820
+ msgid "Profile Photo Maximum File Size (bytes)"
1821
+ msgstr ""
1822
+
1823
+ #: includes/admin/core/class-admin-settings.php:539
1824
+ msgid "Sets a maximum size for the uploaded photo"
1825
+ msgstr ""
1826
+
1827
+ #: includes/admin/core/class-admin-settings.php:546
1828
+ msgid "Cover Photo Maximum File Size (bytes)"
1829
+ msgstr ""
1830
+
1831
+ #: includes/admin/core/class-admin-settings.php:547
1832
+ msgid "Sets a maximum size for the uploaded cover"
1833
+ msgstr ""
1834
+
1835
+ #: includes/admin/core/class-admin-settings.php:553
1836
+ msgid "Profile Photo Thumbnail Sizes (px)"
1837
+ msgstr ""
1838
+
1839
+ #: includes/admin/core/class-admin-settings.php:554
1840
+ msgid ""
1841
+ "Here you can define which thumbnail sizes will be created for each profile "
1842
+ "photo upload."
1843
+ msgstr ""
1844
+
1845
+ #: includes/admin/core/class-admin-settings.php:556
1846
+ #: includes/admin/core/class-admin-settings.php:566
1847
+ msgid "Add New Size"
1848
+ msgstr ""
1849
+
1850
+ #: includes/admin/core/class-admin-settings.php:563
1851
+ msgid "Cover Photo Thumbnail Sizes (px)"
1852
+ msgstr ""
1853
+
1854
+ #: includes/admin/core/class-admin-settings.php:564
1855
+ msgid ""
1856
+ "Here you can define which thumbnail sizes will be created for each cover "
1857
+ "photo upload."
1858
+ msgstr ""
1859
+
1860
+ #: includes/admin/core/class-admin-settings.php:574
1861
+ msgid "Image Quality"
1862
+ msgstr ""
1863
+
1864
+ #: includes/admin/core/class-admin-settings.php:575
1865
+ msgid ""
1866
+ "Quality is used to determine quality of image uploads, and ranges from 0 "
1867
+ "(worst quality, smaller file) to 100 (best quality, biggest file). The "
1868
+ "default range is 60."
1869
+ msgstr ""
1870
+
1871
+ #: includes/admin/core/class-admin-settings.php:582
1872
+ msgid "Image Upload Maximum Width (px)"
1873
+ msgstr ""
1874
+
1875
+ #: includes/admin/core/class-admin-settings.php:583
1876
+ msgid ""
1877
+ "Any image upload above this width will be resized to this limit "
1878
+ "automatically."
1879
+ msgstr ""
1880
+
1881
+ #: includes/admin/core/class-admin-settings.php:590
1882
+ msgid "Cover Photo Minimum Width (px)"
1883
+ msgstr ""
1884
+
1885
+ #: includes/admin/core/class-admin-settings.php:591
1886
+ msgid "This will be the minimum width for cover photo uploads"
1887
+ msgstr ""
1888
+
1889
+ #: includes/admin/core/class-admin-settings.php:598
1890
+ msgid "Access"
1891
+ msgstr ""
1892
+
1893
+ #: includes/admin/core/class-admin-settings.php:601
1894
+ msgid "Restriction Content"
1895
+ msgstr ""
1896
+
1897
+ #: includes/admin/core/class-admin-settings.php:605
1898
+ msgid "Other"
1899
+ msgstr ""
1900
+
1901
+ #: includes/admin/core/class-admin-settings.php:610
1902
+ msgid "Enable the Reset Password Limit?"
1903
+ msgstr ""
1904
+
1905
+ #: includes/admin/core/class-admin-settings.php:615
1906
+ msgid "Reset Password Limit"
1907
+ msgstr ""
1908
+
1909
+ #: includes/admin/core/class-admin-settings.php:616
1910
+ msgid ""
1911
+ "Set the maximum reset password limit. If reached the maximum limit, user "
1912
+ "will be locked from using this."
1913
+ msgstr ""
1914
+
1915
+ #: includes/admin/core/class-admin-settings.php:624
1916
+ msgid "Blocked Email Addresses"
1917
+ msgstr ""
1918
+
1919
+ #: includes/admin/core/class-admin-settings.php:625
1920
+ msgid ""
1921
+ "This will block the specified e-mail addresses from being able to sign up or "
1922
+ "sign in to your site. To block an entire domain, use something like *@domain."
1923
+ "com"
1924
+ msgstr ""
1925
+
1926
+ #: includes/admin/core/class-admin-settings.php:630
1927
+ msgid "Blacklist Words"
1928
+ msgstr ""
1929
+
1930
+ #: includes/admin/core/class-admin-settings.php:631
1931
+ msgid ""
1932
+ "This option lets you specify blacklist of words to prevent anyone from "
1933
+ "signing up with such a word as their username"
1934
+ msgstr ""
1935
+
1936
+ #: includes/admin/core/class-admin-settings.php:638
1937
+ #: includes/admin/core/list-tables/emails-list-table.php:300
1938
+ msgid "Email"
1939
+ msgstr ""
1940
+
1941
+ #: includes/admin/core/class-admin-settings.php:643
1942
+ msgid "Admin E-mail Address"
1943
+ msgstr ""
1944
+
1945
+ #: includes/admin/core/class-admin-settings.php:644
1946
+ #: includes/admin/core/class-admin-settings.php:656
1947
+ msgid "e.g. admin@companyname.com"
1948
+ msgstr ""
1949
+
1950
+ #: includes/admin/core/class-admin-settings.php:649
1951
+ msgid "Mail appears from"
1952
+ msgstr ""
1953
+
1954
+ #: includes/admin/core/class-admin-settings.php:650
1955
+ msgid "e.g. Site Name"
1956
+ msgstr ""
1957
+
1958
+ #: includes/admin/core/class-admin-settings.php:655
1959
+ msgid "Mail appears from address"
1960
+ msgstr ""
1961
+
1962
+ #: includes/admin/core/class-admin-settings.php:661
1963
+ msgid "Use HTML for E-mails?"
1964
+ msgstr ""
1965
+
1966
+ #: includes/admin/core/class-admin-settings.php:662
1967
+ msgid ""
1968
+ "If you plan use e-mails with HTML, please make sure that this option is "
1969
+ "enabled. Otherwise, HTML will be displayed as plain text."
1970
+ msgstr ""
1971
+
1972
+ #: includes/admin/core/class-admin-settings.php:667
1973
+ msgid "Appearance"
1974
+ msgstr ""
1975
+
1976
+ #: includes/admin/core/class-admin-settings.php:670
1977
+ msgid "Profile"
1978
+ msgstr ""
1979
+
1980
+ #: includes/admin/core/class-admin-settings.php:675
1981
+ msgid "Profile Default Template"
1982
+ msgstr ""
1983
+
1984
+ #: includes/admin/core/class-admin-settings.php:676
1985
+ msgid "This will be the default template to output profile"
1986
+ msgstr ""
1987
+
1988
+ #: includes/admin/core/class-admin-settings.php:684
1989
+ msgid "Profile Maximum Width"
1990
+ msgstr ""
1991
+
1992
+ #: includes/admin/core/class-admin-settings.php:693
1993
+ msgid "Profile Area Maximum Width"
1994
+ msgstr ""
1995
+
1996
+ #: includes/admin/core/class-admin-settings.php:695
1997
+ #: includes/admin/templates/form/profile_customize.php:56
1998
+ msgid ""
1999
+ "The maximum width of the profile area inside profile (below profile header)"
2000
+ msgstr ""
2001
+
2002
+ #: includes/admin/core/class-admin-settings.php:701
2003
+ msgid "Profile Field Icons"
2004
+ msgstr ""
2005
+
2006
+ #: includes/admin/core/class-admin-settings.php:702
2007
+ msgid "This is applicable for edit mode only"
2008
+ msgstr ""
2009
+
2010
+ #: includes/admin/core/class-admin-settings.php:705
2011
+ #: includes/admin/core/class-admin-settings.php:901
2012
+ #: includes/admin/core/class-admin-settings.php:991
2013
+ #: includes/admin/templates/form/login_customize.php:40
2014
+ #: includes/admin/templates/form/profile_customize.php:67
2015
+ #: includes/admin/templates/form/register_customize.php:55
2016
+ msgid "Show inside text field"
2017
+ msgstr ""
2018
+
2019
+ #: includes/admin/core/class-admin-settings.php:706
2020
+ #: includes/admin/core/class-admin-settings.php:902
2021
+ #: includes/admin/core/class-admin-settings.php:992
2022
+ #: includes/admin/templates/form/login_customize.php:41
2023
+ #: includes/admin/templates/form/profile_customize.php:68
2024
+ #: includes/admin/templates/form/register_customize.php:56
2025
+ msgid "Show with label"
2026
+ msgstr ""
2027
+
2028
+ #: includes/admin/core/class-admin-settings.php:707
2029
+ #: includes/admin/core/class-admin-settings.php:903
2030
+ #: includes/admin/core/class-admin-settings.php:993
2031
+ #: includes/admin/templates/form/login_customize.php:42
2032
+ #: includes/admin/templates/form/profile_customize.php:69
2033
+ #: includes/admin/templates/form/register_customize.php:57
2034
+ msgid "Turn off"
2035
+ msgstr ""
2036
+
2037
+ #: includes/admin/core/class-admin-settings.php:714
2038
+ msgid "Profile Primary Button Text"
2039
+ msgstr ""
2040
+
2041
+ #: includes/admin/core/class-admin-settings.php:716
2042
+ msgid "The text that is used for updating profile button"
2043
+ msgstr ""
2044
+
2045
+ #: includes/admin/core/class-admin-settings.php:722
2046
+ msgid "Profile Secondary Button"
2047
+ msgstr ""
2048
+
2049
+ #: includes/admin/core/class-admin-settings.php:724
2050
+ #: includes/admin/core/class-admin-settings.php:920
2051
+ #: includes/admin/core/class-admin-settings.php:1010
2052
+ msgid "Switch on/off the secondary button display in the form"
2053
+ msgstr ""
2054
+
2055
+ #: includes/admin/core/class-admin-settings.php:729
2056
+ msgid "Profile Secondary Button Text"
2057
+ msgstr ""
2058
+
2059
+ #: includes/admin/core/class-admin-settings.php:731
2060
+ msgid "The text that is used for cancelling update profile button"
2061
+ msgstr ""
2062
+
2063
+ #: includes/admin/core/class-admin-settings.php:738
2064
+ msgid "Default Profile Photo"
2065
+ msgstr ""
2066
+
2067
+ #: includes/admin/core/class-admin-settings.php:739
2068
+ msgid ""
2069
+ "You can change the default profile picture globally here. Please make sure "
2070
+ "that the photo is 300x300px."
2071
+ msgstr ""
2072
+
2073
+ #: includes/admin/core/class-admin-settings.php:740
2074
+ msgid "Select Default Profile Photo"
2075
+ msgstr ""
2076
+
2077
+ #: includes/admin/core/class-admin-settings.php:750
2078
+ msgid "Default Cover Photo"
2079
+ msgstr ""
2080
+
2081
+ #: includes/admin/core/class-admin-settings.php:751
2082
+ msgid ""
2083
+ "You can change the default cover photo globally here. Please make sure that "
2084
+ "the default cover is large enough and respects the ratio you are using for "
2085
+ "cover photos."
2086
+ msgstr ""
2087
+
2088
+ #: includes/admin/core/class-admin-settings.php:752
2089
+ msgid "Select Default Cover Photo"
2090
+ msgstr ""
2091
+
2092
+ #: includes/admin/core/class-admin-settings.php:757
2093
+ #: includes/admin/templates/form/profile_customize.php:128
2094
+ msgid "Profile Photo Size"
2095
+ msgstr ""
2096
+
2097
+ #: includes/admin/core/class-admin-settings.php:759
2098
+ msgid ""
2099
+ "The global default of profile photo size. This can be overridden by "
2100
+ "individual form settings"
2101
+ msgstr ""
2102
+
2103
+ #: includes/admin/core/class-admin-settings.php:765
2104
+ msgid "Profile Cover Photos"
2105
+ msgstr ""
2106
+
2107
+ #: includes/admin/core/class-admin-settings.php:767
2108
+ msgid "Switch on/off the profile cover photos"
2109
+ msgstr ""
2110
+
2111
+ #: includes/admin/core/class-admin-settings.php:772
2112
+ msgid "Profile Cover Ratio"
2113
+ msgstr ""
2114
+
2115
+ #: includes/admin/core/class-admin-settings.php:773
2116
+ msgid "Choose global ratio for cover photos of profiles"
2117
+ msgstr ""
2118
+
2119
+ #: includes/admin/core/class-admin-settings.php:787
2120
+ msgid "Profile Header Meta Text Icon"
2121
+ msgstr ""
2122
+
2123
+ #: includes/admin/core/class-admin-settings.php:789
2124
+ msgid "Display field icons for related user meta fields in header or not"
2125
+ msgstr ""
2126
+
2127
+ #: includes/admin/core/class-admin-settings.php:794
2128
+ msgid "Show display name in profile header"
2129
+ msgstr ""
2130
+
2131
+ #: includes/admin/core/class-admin-settings.php:796
2132
+ msgid "Switch on/off the user name on profile header"
2133
+ msgstr ""
2134
+
2135
+ #: includes/admin/core/class-admin-settings.php:801
2136
+ msgid "Show social links in profile header"
2137
+ msgstr ""
2138
+
2139
+ #: includes/admin/core/class-admin-settings.php:803
2140
+ msgid "Switch on/off the social links on profile header"
2141
+ msgstr ""
2142
+
2143
+ #: includes/admin/core/class-admin-settings.php:808
2144
+ msgid "Show user description in header"
2145
+ msgstr ""
2146
+
2147
+ #: includes/admin/core/class-admin-settings.php:810
2148
+ msgid "Switch on/off the user description on profile header"
2149
+ msgstr ""
2150
+
2151
+ #: includes/admin/core/class-admin-settings.php:815
2152
+ msgid "Enable html support for user description"
2153
+ msgstr ""
2154
+
2155
+ #: includes/admin/core/class-admin-settings.php:817
2156
+ msgid ""
2157
+ "Switch on/off to enable/disable support for html tags on user description."
2158
+ msgstr ""
2159
+
2160
+ #: includes/admin/core/class-admin-settings.php:822
2161
+ msgid "User description maximum chars"
2162
+ msgstr ""
2163
+
2164
+ #: includes/admin/core/class-admin-settings.php:824
2165
+ msgid ""
2166
+ "Maximum number of characters to allow in user description field in header."
2167
+ msgstr ""
2168
+
2169
+ #: includes/admin/core/class-admin-settings.php:831
2170
+ msgid "Profile Header Menu Position"
2171
+ msgstr ""
2172
+
2173
+ #: includes/admin/core/class-admin-settings.php:833
2174
+ msgid ""
2175
+ "For incompatible themes, please make the menu open from left instead of "
2176
+ "bottom by default."
2177
+ msgstr ""
2178
+
2179
+ #: includes/admin/core/class-admin-settings.php:843
2180
+ msgid "Show a custom message if profile is empty"
2181
+ msgstr ""
2182
+
2183
+ #: includes/admin/core/class-admin-settings.php:845
2184
+ msgid "Switch on/off the custom message that appears when the profile is empty"
2185
+ msgstr ""
2186
+
2187
+ #: includes/admin/core/class-admin-settings.php:850
2188
+ msgid "Show the emoticon"
2189
+ msgstr ""
2190
+
2191
+ #: includes/admin/core/class-admin-settings.php:852
2192
+ msgid "Switch on/off the emoticon (sad face) that appears above the message"
2193
+ msgstr ""
2194
+
2195
+ #: includes/admin/core/class-admin-settings.php:858
2196
+ msgid "Profile Menu"
2197
+ msgstr ""
2198
+
2199
+ #: includes/admin/core/class-admin-settings.php:862
2200
+ #: includes/admin/templates/form/mode.php:9
2201
+ msgid "Registration Form"
2202
+ msgstr ""
2203
+
2204
+ #: includes/admin/core/class-admin-settings.php:867
2205
+ msgid "Registration Default Template"
2206
+ msgstr ""
2207
+
2208
+ #: includes/admin/core/class-admin-settings.php:868
2209
+ msgid "This will be the default template to output registration"
2210
+ msgstr ""
2211
+
2212
+ #: includes/admin/core/class-admin-settings.php:876
2213
+ msgid "Registration Maximum Width"
2214
+ msgstr ""
2215
+
2216
+ #: includes/admin/core/class-admin-settings.php:878
2217
+ #: includes/admin/core/class-admin-settings.php:968
2218
+ msgid "The maximum width this shortcode can take from the page width"
2219
+ msgstr ""
2220
+
2221
+ #: includes/admin/core/class-admin-settings.php:884
2222
+ msgid "Registration Shortcode Alignment"
2223
+ msgstr ""
2224
+
2225
+ #: includes/admin/core/class-admin-settings.php:885
2226
+ #: includes/admin/core/class-admin-settings.php:975
2227
+ #: includes/admin/templates/form/profile_customize.php:115
2228
+ msgid "The shortcode is centered by default unless you specify otherwise here"
2229
+ msgstr ""
2230
+
2231
+ #: includes/admin/core/class-admin-settings.php:888
2232
+ #: includes/admin/core/class-admin-settings.php:978
2233
+ msgid "Centered"
2234
+ msgstr ""
2235
+
2236
+ #: includes/admin/core/class-admin-settings.php:889
2237
+ #: includes/admin/core/class-admin-settings.php:979
2238
+ msgid "Left aligned"
2239
+ msgstr ""
2240
+
2241
+ #: includes/admin/core/class-admin-settings.php:890
2242
+ #: includes/admin/core/class-admin-settings.php:980
2243
+ msgid "Right aligned"
2244
+ msgstr ""
2245
+
2246
+ #: includes/admin/core/class-admin-settings.php:897
2247
+ msgid "Registration Field Icons"
2248
+ msgstr ""
2249
+
2250
+ #: includes/admin/core/class-admin-settings.php:898
2251
+ msgid "This controls the display of field icons in the registration form"
2252
+ msgstr ""
2253
+
2254
+ #: includes/admin/core/class-admin-settings.php:910
2255
+ msgid "Registration Primary Button Text"
2256
+ msgstr ""
2257
+
2258
+ #: includes/admin/core/class-admin-settings.php:912
2259
+ #: includes/admin/core/class-admin-settings.php:1002
2260
+ msgid "The text that is used for primary button text"
2261
+ msgstr ""
2262
+
2263
+ #: includes/admin/core/class-admin-settings.php:918
2264
+ msgid "Registration Secondary Button"
2265
+ msgstr ""
2266
+
2267
+ #: includes/admin/core/class-admin-settings.php:925
2268
+ msgid "Registration Secondary Button Text"
2269
+ msgstr ""
2270
+
2271
+ #: includes/admin/core/class-admin-settings.php:927
2272
+ #: includes/admin/core/class-admin-settings.php:1017
2273
+ msgid "The text that is used for the secondary button text"
2274
+ msgstr ""
2275
+
2276
+ #: includes/admin/core/class-admin-settings.php:934
2277
+ msgid "Registration Secondary Button URL"
2278
+ msgstr ""
2279
+
2280
+ #: includes/admin/core/class-admin-settings.php:936
2281
+ #: includes/admin/core/class-admin-settings.php:1026
2282
+ msgid "You can replace default link for this button by entering custom URL"
2283
+ msgstr ""
2284
+
2285
+ #: includes/admin/core/class-admin-settings.php:943
2286
+ msgid "Registration Default Role"
2287
+ msgstr ""
2288
+
2289
+ #: includes/admin/core/class-admin-settings.php:944
2290
+ msgid ""
2291
+ "This will be the default role assigned to users registering thru "
2292
+ "registration form"
2293
+ msgstr ""
2294
+
2295
+ #: includes/admin/core/class-admin-settings.php:952
2296
+ #: includes/admin/templates/form/mode.php:13
2297
+ msgid "Login Form"
2298
+ msgstr ""
2299
+
2300
+ #: includes/admin/core/class-admin-settings.php:957
2301
+ msgid "Login Default Template"
2302
+ msgstr ""
2303
+
2304
+ #: includes/admin/core/class-admin-settings.php:958
2305
+ msgid "This will be the default template to output login"
2306
+ msgstr ""
2307
+
2308
+ #: includes/admin/core/class-admin-settings.php:966
2309
+ msgid "Login Maximum Width"
2310
+ msgstr ""
2311
+
2312
+ #: includes/admin/core/class-admin-settings.php:974
2313
+ msgid "Login Shortcode Alignment"
2314
+ msgstr ""
2315
+
2316
+ #: includes/admin/core/class-admin-settings.php:987
2317
+ msgid "Login Field Icons"
2318
+ msgstr ""
2319
+
2320
+ #: includes/admin/core/class-admin-settings.php:988
2321
+ msgid "This controls the display of field icons in the login form"
2322
+ msgstr ""
2323
+
2324
+ #: includes/admin/core/class-admin-settings.php:1000
2325
+ msgid "Login Primary Button Text"
2326
+ msgstr ""
2327
+
2328
+ #: includes/admin/core/class-admin-settings.php:1008
2329
+ msgid "Login Secondary Button"
2330
+ msgstr ""
2331
+
2332
+ #: includes/admin/core/class-admin-settings.php:1015
2333
+ msgid "Login Secondary Button Text"
2334
+ msgstr ""
2335
+
2336
+ #: includes/admin/core/class-admin-settings.php:1024
2337
+ msgid "Login Secondary Button URL"
2338
+ msgstr ""
2339
+
2340
+ #: includes/admin/core/class-admin-settings.php:1033
2341
+ msgid "Login Forgot Password Link"
2342
+ msgstr ""
2343
+
2344
+ #: includes/admin/core/class-admin-settings.php:1035
2345
+ msgid "Switch on/off the forgot password link in login form"
2346
+ msgstr ""
2347
+
2348
+ #: includes/admin/core/class-admin-settings.php:1040
2349
+ msgid "Show \"Remember Me\""
2350
+ msgstr ""
2351
+
2352
+ #: includes/admin/core/class-admin-settings.php:1042
2353
+ msgid ""
2354
+ "Allow users to choose If they want to stay signed in even after closing the "
2355
+ "browser. If you do not show this option, the default will be to not remember "
2356
+ "login session."
2357
+ msgstr ""
2358
+
2359
+ #: includes/admin/core/class-admin-settings.php:1052
2360
+ msgid "Licenses"
2361
+ msgstr ""
2362
+
2363
+ #: includes/admin/core/class-admin-settings.php:1055
2364
+ msgid "Misc"
2365
+ msgstr ""
2366
+
2367
+ #: includes/admin/core/class-admin-settings.php:1060
2368
+ msgid "Show an asterisk for required fields"
2369
+ msgstr ""
2370
+
2371
+ #: includes/admin/core/class-admin-settings.php:1065
2372
+ msgid "User Profile Title"
2373
+ msgstr ""
2374
+
2375
+ #: includes/admin/core/class-admin-settings.php:1066
2376
+ msgid "This is the title that is displayed on a specific user profile"
2377
+ msgstr ""
2378
+
2379
+ #: includes/admin/core/class-admin-settings.php:1072
2380
+ msgid "User Profile Dynamic Meta Description"
2381
+ msgstr ""
2382
+
2383
+ #: includes/admin/core/class-admin-settings.php:1073
2384
+ msgid ""
2385
+ "This will be used in the meta description that is available for search-"
2386
+ "engines."
2387
+ msgstr ""
2388
+
2389
+ #: includes/admin/core/class-admin-settings.php:1081
2390
+ msgid "Disable Cache User Profile"
2391
+ msgstr ""
2392
+
2393
+ #: includes/admin/core/class-admin-settings.php:1082
2394
+ msgid ""
2395
+ "Check this box if you would like to disable Ultimate Member user's cache."
2396
+ msgstr ""
2397
+
2398
+ #: includes/admin/core/class-admin-settings.php:1087
2399
+ msgid "Enable Gutenberg Blocks"
2400
+ msgstr ""
2401
+
2402
+ #: includes/admin/core/class-admin-settings.php:1088
2403
+ msgid ""
2404
+ "Check this box if you would like to use Ultimate Member blocks in Gutenberg "
2405
+ "editor. Important some themes have the conflicts with Gutenberg editor."
2406
+ msgstr ""
2407
+
2408
+ #: includes/admin/core/class-admin-settings.php:1093
2409
+ msgid "REST API version"
2410
+ msgstr ""
2411
+
2412
+ #: includes/admin/core/class-admin-settings.php:1094
2413
+ msgid ""
2414
+ "This controls the REST API version, we recommend to use the last version"
2415
+ msgstr ""
2416
+
2417
+ #: includes/admin/core/class-admin-settings.php:1096
2418
+ msgid "1.0 version"
2419
+ msgstr ""
2420
+
2421
+ #: includes/admin/core/class-admin-settings.php:1097
2422
+ msgid "2.0 version"
2423
+ msgstr ""
2424
+
2425
+ #: includes/admin/core/class-admin-settings.php:1103
2426
+ msgid "Remove Data on Uninstall?"
2427
+ msgstr ""
2428
+
2429
+ #: includes/admin/core/class-admin-settings.php:1104
2430
+ msgid ""
2431
+ "Check this box if you would like Ultimate Member to completely remove all of "
2432
+ "its data when the plugin/extensions are deleted."
2433
+ msgstr ""
2434
+
2435
+ #: includes/admin/core/class-admin-settings.php:1109
2436
+ msgid "Install Info"
2437
+ msgstr ""
2438
+
2439
+ #: includes/admin/core/class-admin-settings.php:1223
2440
+ msgid "Ultimate Member - Settings"
2441
+ msgstr ""
2442
+
2443
+ #: includes/admin/core/class-admin-settings.php:1362
2444
+ msgid "Save Changes"
2445
+ msgstr ""
2446
+
2447
+ #: includes/admin/core/class-admin-settings.php:1806
2448
+ msgid "Subject Line"
2449
+ msgstr ""
2450
+
2451
+ #: includes/admin/core/class-admin-settings.php:1808
2452
+ msgid "This is the subject line of the e-mail"
2453
+ msgstr ""
2454
+
2455
+ #: includes/admin/core/class-admin-settings.php:1813
2456
+ msgid "Message Body"
2457
+ msgstr ""
2458
+
2459
+ #: includes/admin/core/class-admin-settings.php:1815
2460
+ msgid "This is the content of the e-mail"
2461
+ msgstr ""
2462
+
2463
+ #: includes/admin/core/class-admin-settings.php:1865
2464
+ #: includes/admin/core/class-admin-settings.php:1963
2465
+ #, php-format
2466
+ msgid ""
2467
+ "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
2468
+ "\">renew your license key</a>."
2469
+ msgstr ""
2470
+
2471
+ #: includes/admin/core/class-admin-settings.php:1878
2472
+ #: includes/admin/core/class-admin-settings.php:1976
2473
+ #, php-format
2474
+ msgid ""
2475
+ "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
2476
+ "\">contact support</a> for more information."
2477
+ msgstr ""
2478
+
2479
+ #: includes/admin/core/class-admin-settings.php:1890
2480
+ #: includes/admin/core/class-admin-settings.php:1988
2481
+ #, php-format
2482
+ msgid ""
2483
+ "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
2484
+ "page</a> and verify it."
2485
+ msgstr ""
2486
+
2487
+ #: includes/admin/core/class-admin-settings.php:1903
2488
+ #: includes/admin/core/class-admin-settings.php:2001
2489
+ #, php-format
2490
+ msgid ""
2491
+ "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
2492
+ "\">visit your account page</a> to manage your license key URLs."
2493
+ msgstr ""
2494
+
2495
+ #: includes/admin/core/class-admin-settings.php:1915
2496
+ #: includes/admin/core/class-admin-settings.php:2013
2497
+ #, php-format
2498
+ msgid "This appears to be an invalid license key for %s."
2499
+ msgstr ""
2500
+
2501
+ #: includes/admin/core/class-admin-settings.php:1924
2502
+ #: includes/admin/core/class-admin-settings.php:2022
2503
+ #, php-format
2504
+ msgid ""
2505
+ "Your license key has reached its activation limit. <a href=\"%s\">View "
2506
+ "possible upgrades</a> now."
2507
+ msgstr ""
2508
+
2509
+ #: includes/admin/core/class-admin-settings.php:1933
2510
+ #: includes/admin/core/class-admin-settings.php:2031
2511
+ msgid ""
2512
+ "The key you entered belongs to a bundle, please use the product specific "
2513
+ "license key."
2514
+ msgstr ""
2515
+
2516
+ #: includes/admin/core/class-admin-settings.php:1941
2517
+ #: includes/admin/core/class-admin-settings.php:1949
2518
+ msgid "unknown_error"
2519
+ msgstr ""
2520
+
2521
+ #: includes/admin/core/class-admin-settings.php:1942
2522
+ #: includes/admin/core/class-admin-settings.php:1950
2523
+ #, php-format
2524
+ msgid ""
2525
+ "There was an error with this license key: %s. Please <a href=\"%s\">contact "
2526
+ "our support team</a>."
2527
+ msgstr ""
2528
+
2529
+ #: includes/admin/core/class-admin-settings.php:2046
2530
+ msgid "License key never expires."
2531
+ msgstr ""
2532
+
2533
+ #: includes/admin/core/class-admin-settings.php:2053
2534
+ #, php-format
2535
+ msgid ""
2536
+ "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
2537
+ "\"_blank\">Renew your license key</a>."
2538
+ msgstr ""
2539
+
2540
+ #: includes/admin/core/class-admin-settings.php:2063
2541
+ #, php-format
2542
+ msgid "Your license key expires on %s."
2543
+ msgstr ""
2544
+
2545
+ #: includes/admin/core/class-admin-settings.php:2081
2546
+ #, php-format
2547
+ msgid "To receive updates, please enter your valid %s license key."
2548
+ msgstr ""
2549
+
2550
+ #: includes/admin/core/class-admin-settings.php:2105
2551
+ msgid "Clear License"
2552
+ msgstr ""
2553
+
2554
+ #: includes/admin/core/class-admin-settings.php:2107
2555
+ msgid "Activate"
2556
+ msgstr ""
2557
+
2558
+ #: includes/admin/core/class-admin-settings.php:2109
2559
+ msgid "Re-Activate"
2560
+ msgstr ""
2561
+
2562
+ #: includes/admin/core/class-admin-settings.php:2161
2563
+ msgid ""
2564
+ "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
2565
+ "(Mac)."
2566
+ msgstr ""
2567
+
2568
+ #: includes/admin/core/class-admin-upgrade.php:130
2569
+ #, php-format
2570
+ msgid ""
2571
+ "%s is a major update, and we highly recommend creating a full backup of your "
2572
+ "site before updating."
2573
+ msgstr ""
2574
+
2575
+ #: includes/admin/core/class-admin-upgrade.php:236
2576
+ msgid "Upgrade"
2577
+ msgstr ""
2578
+
2579
+ #: includes/admin/core/class-admin-upgrade.php:244
2580
+ msgid "empty"
2581
+ msgstr ""
2582
+
2583
+ #: includes/admin/core/class-admin-upgrade.php:247
2584
+ #, php-format
2585
+ msgid "%s - Upgrade Process"
2586
+ msgstr ""
2587
+
2588
+ #: includes/admin/core/class-admin-upgrade.php:248
2589
+ #, php-format
2590
+ msgid ""
2591
+ "You have installed %s version. Your latest DB version is %s. Before the "
2592
+ "click to \"Run\" button make sure that did the following:"
2593
+ msgstr ""
2594
+
2595
+ #: includes/admin/core/class-admin-upgrade.php:250
2596
+ msgid "Create full site's backup."
2597
+ msgstr ""
2598
+
2599
+ #: includes/admin/core/class-admin-upgrade.php:251
2600
+ msgid "Set maintenance mode (if you need)"
2601
+ msgstr ""
2602
+
2603
+ #: includes/admin/core/class-admin-upgrade.php:252
2604
+ msgid "You have nice Internet connection"
2605
+ msgstr ""
2606
+
2607
+ #: includes/admin/core/class-admin-upgrade.php:254
2608
+ msgid ""
2609
+ "After the click to \"Run\" button, the update process will be started. All "
2610
+ "information will be displayed in \"Upgrade Log\" field."
2611
+ msgstr ""
2612
+
2613
+ #: includes/admin/core/class-admin-upgrade.php:255
2614
+ msgid ""
2615
+ "If the update was successful, you will see a corresponding message. "
2616
+ "Otherwise, contact technical support if the update failed."
2617
+ msgstr ""
2618
+
2619
+ #: includes/admin/core/class-admin-upgrade.php:256
2620
+ msgid "Upgrade Log"
2621
+ msgstr ""
2622
+
2623
+ #: includes/admin/core/class-admin-upgrade.php:259
2624
+ msgid "Run"
2625
+ msgstr ""
2626
+
2627
+ #: includes/admin/core/class-admin-users.php:116
2628
+ #: includes/admin/core/class-admin-users.php:119
2629
+ msgid "UM Action"
2630
+ msgstr ""
2631
+
2632
+ #: includes/admin/core/class-admin-users.php:123
2633
+ #: includes/core/class-fields.php:2335
2634
+ msgid "Apply"
2635
+ msgstr ""
2636
+
2637
+ #: includes/admin/core/class-admin-users.php:165
2638
+ #: includes/core/um-filters-user.php:20 includes/core/um-filters-user.php:25
2639
+ msgid "Approve Membership"
2640
+ msgstr ""
2641
+
2642
+ #: includes/admin/core/class-admin-users.php:168
2643
+ #: includes/core/um-filters-user.php:21
2644
+ msgid "Reject Membership"
2645
+ msgstr ""
2646
+
2647
+ #: includes/admin/core/class-admin-users.php:171
2648
+ #: includes/core/um-filters-user.php:29
2649
+ msgid "Put as Pending Review"
2650
+ msgstr ""
2651
+
2652
+ #: includes/admin/core/class-admin-users.php:174
2653
+ #: includes/core/um-filters-user.php:33
2654
+ msgid "Resend Activation E-mail"
2655
+ msgstr ""
2656
+
2657
+ #: includes/admin/core/class-admin-users.php:177
2658
+ msgid "Deactivate"
2659
+ msgstr ""
2660
+
2661
+ #: includes/admin/core/class-admin-users.php:180
2662
+ msgid "Reactivate"
2663
+ msgstr ""
2664
+
2665
+ #: includes/admin/core/class-admin-users.php:203 templates/account.php:38
2666
+ #: templates/account.php:62
2667
+ msgid "View profile"
2668
+ msgstr ""
2669
+
2670
+ #: includes/admin/core/class-admin-users.php:207
2671
+ msgid "Info"
2672
+ msgstr ""
2673
+
2674
+ #: includes/admin/core/class-admin-users.php:312
2675
+ #: includes/admin/templates/dashboard/users.php:11
2676
+ #: includes/core/class-user.php:825
2677
+ msgid "Approved"
2678
+ msgstr ""
2679
+
2680
+ #: includes/admin/core/class-admin-users.php:313
2681
+ msgid "Pending review"
2682
+ msgstr ""
2683
+
2684
+ #: includes/admin/core/class-admin-users.php:314
2685
+ msgid "Waiting e-mail confirmation"
2686
+ msgstr ""
2687
+
2688
+ #: includes/admin/core/class-admin-users.php:315
2689
+ #: includes/admin/templates/dashboard/users.php:37
2690
+ msgid "Inactive"
2691
+ msgstr ""
2692
+
2693
+ #: includes/admin/core/class-admin-users.php:316
2694
+ #: includes/admin/templates/dashboard/users.php:16
2695
+ msgid "Rejected"
2696
+ msgstr ""
2697
+
2698
+ #: includes/admin/core/class-admin-users.php:376
2699
+ msgid "You do not have enough permissions to do that."
2700
+ msgstr ""
2701
+
2702
+ #: includes/admin/core/list-tables/emails-list-table.php:70
2703
+ #: includes/admin/core/list-tables/roles-list-table.php:172
2704
+ msgid "item"
2705
+ msgstr ""
2706
+
2707
+ #: includes/admin/core/list-tables/emails-list-table.php:71
2708
+ #: includes/admin/core/list-tables/roles-list-table.php:173
2709
+ msgid "items"
2710
+ msgstr ""
2711
+
2712
+ #: includes/admin/core/list-tables/emails-list-table.php:75
2713
+ #: includes/admin/core/list-tables/roles-list-table.php:177
2714
+ msgid "not found."
2715
+ msgstr ""
2716
+
2717
+ #: includes/admin/core/list-tables/emails-list-table.php:237
2718
+ msgid "Member"
2719
+ msgstr ""
2720
+
2721
+ #: includes/admin/core/list-tables/emails-list-table.php:270
2722
+ msgid "Email Notification"
2723
+ msgstr ""
2724
+
2725
+ #: includes/admin/core/list-tables/emails-list-table.php:271
2726
+ msgid "Email Notifications"
2727
+ msgstr ""
2728
+
2729
+ #: includes/admin/core/list-tables/emails-list-table.php:301
2730
+ msgid "Recipient(s)"
2731
+ msgstr ""
2732
+
2733
+ #: includes/admin/core/list-tables/emails-list-table.php:314
2734
+ #, php-format
2735
+ msgid ""
2736
+ "You may get more details about email notifications customization <a href=\"%s"
2737
+ "\">here</a>"
2738
+ msgstr ""
2739
+
2740
+ #: includes/admin/core/list-tables/roles-list-table.php:23
2741
+ #: includes/admin/core/list-tables/roles-list-table.php:88
2742
+ #: includes/admin/core/list-tables/roles-list-table.php:398
2743
+ msgid "Roles"
2744
+ msgstr ""
2745
+
2746
+ #: includes/admin/core/list-tables/roles-list-table.php:335
2747
+ msgid "Edit"
2748
+ msgstr ""
2749
+
2750
+ #: includes/admin/core/list-tables/roles-list-table.php:338
2751
+ msgid "Are you sure you want to delete this role?"
2752
+ msgstr ""
2753
+
2754
+ #: includes/admin/core/list-tables/roles-list-table.php:343
2755
+ msgid "Are you sure you want to reset UM role meta?"
2756
+ msgstr ""
2757
+
2758
+ #: includes/admin/core/list-tables/roles-list-table.php:343
2759
+ msgid "Reset UM Role meta"
2760
+ msgstr ""
2761
+
2762
+ #: includes/admin/core/list-tables/roles-list-table.php:397
2763
+ msgid "Role"
2764
+ msgstr ""
2765
+
2766
+ #: includes/admin/core/list-tables/roles-list-table.php:410
2767
+ msgid "Role Title"
2768
+ msgstr ""
2769
+
2770
+ #: includes/admin/core/list-tables/roles-list-table.php:411
2771
+ msgid "Role ID"
2772
+ msgstr ""
2773
+
2774
+ #: includes/admin/core/list-tables/roles-list-table.php:412
2775
+ msgid "No.of Members"
2776
+ msgstr ""
2777
+
2778
+ #: includes/admin/core/list-tables/roles-list-table.php:413
2779
+ msgid "UM Custom Role"
2780
+ msgstr ""
2781
+
2782
+ #: includes/admin/core/list-tables/roles-list-table.php:414
2783
+ msgid "WP-Admin Access"
2784
+ msgstr ""
2785
+
2786
+ #: includes/admin/core/list-tables/roles-list-table.php:415
2787
+ msgid "Priority"
2788
+ msgstr ""
2789
+
2790
+ #: includes/admin/core/list-tables/roles-list-table.php:479
2791
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:14
2792
+ #: includes/admin/templates/role/role-edit.php:153
2793
+ #: includes/core/class-common.php:56 includes/core/class-common.php:86
2794
+ msgid "Add New"
2795
+ msgstr ""
2796
+
2797
+ #: includes/admin/core/list-tables/roles-list-table.php:486
2798
+ msgid "User Role <strong>Deleted</strong> Successfully."
2799
+ msgstr ""
2800
+
2801
+ #: includes/admin/core/packages/2.0-beta1/functions.php:8
2802
+ #: includes/admin/core/packages/2.0.10/functions.php:8
2803
+ msgid "Styles was upgraded successfully"
2804
+ msgstr ""
2805
+
2806
+ #: includes/admin/core/packages/2.0-beta1/functions.php:21
2807
+ msgid "User Roles was upgraded successfully"
2808
+ msgstr ""
2809
+
2810
+ #: includes/admin/core/packages/2.0-beta1/functions.php:89
2811
+ #, php-format
2812
+ msgid "Users from %s to %s was upgraded successfully..."
2813
+ msgstr ""
2814
+
2815
+ #: includes/admin/core/packages/2.0-beta1/functions.php:113
2816
+ msgid "Settings was upgraded successfully"
2817
+ msgstr ""
2818
+
2819
+ #: includes/admin/core/packages/2.0-beta1/functions.php:123
2820
+ msgid "Menus settings was upgraded successfully"
2821
+ msgstr ""
2822
+
2823
+ #: includes/admin/core/packages/2.0-beta1/functions.php:133
2824
+ msgid "Mailchimp Lists was upgraded successfully"
2825
+ msgstr ""
2826
+
2827
+ #: includes/admin/core/packages/2.0-beta1/functions.php:143
2828
+ msgid "Social login forms was upgraded successfully"
2829
+ msgstr ""
2830
+
2831
+ #: includes/admin/core/packages/2.0-beta1/functions.php:153
2832
+ msgid "UM Custom Posts was upgraded successfully"
2833
+ msgstr ""
2834
+
2835
+ #: includes/admin/core/packages/2.0-beta1/functions.php:170
2836
+ msgid "Forums are ready for upgrade"
2837
+ msgstr ""
2838
+
2839
+ #: includes/admin/core/packages/2.0-beta1/functions.php:225
2840
+ #, php-format
2841
+ msgid "Forums from %s to %s was upgraded successfully..."
2842
+ msgstr ""
2843
+
2844
+ #: includes/admin/core/packages/2.0-beta1/functions.php:243
2845
+ msgid "Woocommerce Products are ready for upgrade"
2846
+ msgstr ""
2847
+
2848
+ #: includes/admin/core/packages/2.0-beta1/functions.php:319
2849
+ #, php-format
2850
+ msgid "Woocommerce Products from %s to %s was upgraded successfully..."
2851
+ msgstr ""
2852
+
2853
+ #: includes/admin/core/packages/2.0-beta1/functions.php:337
2854
+ msgid "Email Templates was upgraded successfully"
2855
+ msgstr ""
2856
+
2857
+ #: includes/admin/core/packages/2.0-beta1/init.php:13
2858
+ #: includes/admin/core/packages/2.0.10/init.php:6
2859
+ msgid "Upgrade Styles..."
2860
+ msgstr ""
2861
+
2862
+ #: includes/admin/core/packages/2.0-beta1/init.php:38
2863
+ msgid "Upgrade Roles..."
2864
+ msgstr ""
2865
+
2866
+ #: includes/admin/core/packages/2.0-beta1/init.php:52
2867
+ msgid "Upgrade Users..."
2868
+ msgstr ""
2869
+
2870
+ #: includes/admin/core/packages/2.0-beta1/init.php:73
2871
+ msgid "Getting "
2872
+ msgstr ""
2873
+
2874
+ #: includes/admin/core/packages/2.0-beta1/init.php:73
2875
+ #: includes/admin/core/packages/2.0-beta1/init.php:85
2876
+ msgid " users..."
2877
+ msgstr ""
2878
+
2879
+ #: includes/admin/core/packages/2.0-beta1/init.php:85
2880
+ msgid "There are "
2881
+ msgstr ""
2882
+
2883
+ #: includes/admin/core/packages/2.0-beta1/init.php:86
2884
+ msgid "Start users upgrading..."
2885
+ msgstr ""
2886
+
2887
+ #: includes/admin/core/packages/2.0-beta1/init.php:139
2888
+ msgid "Upgrade Content Restriction Settings..."
2889
+ msgstr ""
2890
+
2891
+ #: includes/admin/core/packages/2.0-beta1/init.php:165
2892
+ msgid "Upgrade Settings..."
2893
+ msgstr ""
2894
+
2895
+ #: includes/admin/core/packages/2.0-beta1/init.php:191
2896
+ msgid "Upgrade Menu Items..."
2897
+ msgstr ""
2898
+
2899
+ #: includes/admin/core/packages/2.0-beta1/init.php:217
2900
+ msgid "Upgrade Mailchimp Lists..."
2901
+ msgstr ""
2902
+
2903
+ #: includes/admin/core/packages/2.0-beta1/init.php:243
2904
+ msgid "Upgrade Social Login Forms..."
2905
+ msgstr ""
2906
+
2907
+ #: includes/admin/core/packages/2.0-beta1/init.php:269
2908
+ msgid "Upgrade UM Custom Post Types..."
2909
+ msgstr ""
2910
+
2911
+ #: includes/admin/core/packages/2.0-beta1/init.php:295
2912
+ msgid "Upgrade bbPress Forums..."
2913
+ msgstr ""
2914
+
2915
+ #: includes/admin/core/packages/2.0-beta1/init.php:296
2916
+ msgid "Get bbPress Forums count..."
2917
+ msgstr ""
2918
+
2919
+ #: includes/admin/core/packages/2.0-beta1/init.php:355
2920
+ msgid "Upgrade Woocommerce Products..."
2921
+ msgstr ""
2922
+
2923
+ #: includes/admin/core/packages/2.0-beta1/init.php:356
2924
+ msgid "Get all Products..."
2925
+ msgstr ""
2926
+
2927
+ #: includes/admin/core/packages/2.0-beta1/init.php:417
2928
+ msgid "Upgrade Email Templates..."
2929
+ msgstr ""
2930
+
2931
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:13
2932
+ msgid "User Role"
2933
+ msgstr ""
2934
+
2935
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:15
2936
+ msgid "Add New User Role"
2937
+ msgstr ""
2938
+
2939
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:16
2940
+ msgid "Edit User Role"
2941
+ msgstr ""
2942
+
2943
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:17
2944
+ msgid "You did not create any user roles yet"
2945
+ msgstr ""
2946
+
2947
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:18
2948
+ #: includes/core/class-common.php:60 includes/core/class-common.php:90
2949
+ msgid "Nothing found in Trash"
2950
+ msgstr ""
2951
+
2952
+ #: includes/admin/core/packages/2.0-beta1/user_roles.php:19
2953
+ msgid "Search User Roles"
2954
+ msgstr ""
2955
+
2956
+ #: includes/admin/core/packages/2.0.10/functions.php:21
2957
+ msgid "Users cache was cleared successfully"
2958
+ msgstr ""
2959
+
2960
+ #: includes/admin/core/packages/2.0.10/init.php:32
2961
+ msgid "Clear Users Cache..."
2962
+ msgstr ""
2963
+
2964
+ #: includes/admin/core/packages/2.0.24/functions.php:11
2965
+ msgid "Temporary dir was purged successfully"
2966
+ msgstr ""
2967
+
2968
+ #: includes/admin/core/packages/2.0.24/init.php:6
2969
+ msgid "Purge temp files dir..."
2970
+ msgstr ""
2971
+
2972
+ #: includes/admin/core/packages/2.0.44/functions.php:13
2973
+ msgid "Field was upgraded successfully"
2974
+ msgstr ""
2975
+
2976
+ #: includes/admin/core/packages/2.0.44/init.php:7
2977
+ msgid "Upgrade predefined metafields..."
2978
+ msgstr ""
2979
+
2980
+ #: includes/admin/templates/dashboard/cache.php:9
2981
+ msgid "Run this task from time to time to keep your DB clean."
2982
+ msgstr ""
2983
+
2984
+ #: includes/admin/templates/dashboard/cache.php:12
2985
+ #, php-format
2986
+ msgid "Clear cache of %s users"
2987
+ msgstr ""
2988
+
2989
+ #: includes/admin/templates/dashboard/feed.php:4
2990
+ msgid "Latest From Ultimate Member"
2991
+ msgstr ""
2992
+
2993
+ #: includes/admin/templates/dashboard/purge.php:4
2994
+ #, php-format
2995
+ msgid ""
2996
+ "You can free up <span class=\"red\">%s MB</span> by purging your temp upload "
2997
+ "directory."
2998
+ msgstr ""
2999
+
3000
+ #: includes/admin/templates/dashboard/purge.php:9
3001
+ msgid "Purge Temp"
3002
+ msgstr ""
3003
+
3004
+ #: includes/admin/templates/dashboard/purge.php:16
3005
+ msgid ""
3006
+ "Your temp uploads directory is <span class=\"ok\">clean</span>. There is "
3007
+ "nothing to purge."
3008
+ msgstr ""
3009
+
3010
+ #: includes/admin/templates/dashboard/upgrade-request.php:1
3011
+ msgid ""
3012
+ "Run this task from time to time if you have issues with WP Cron and need to "
3013
+ "get UM extension updates."
3014
+ msgstr ""
3015
+
3016
+ #: includes/admin/templates/dashboard/upgrade-request.php:4
3017
+ msgid "Get latest versions"
3018
+ msgstr ""
3019
+
3020
+ #: includes/admin/templates/dashboard/users.php:27
3021
+ #: includes/core/class-user.php:833
3022
+ msgid "Pending Review"
3023
+ msgstr ""
3024
+
3025
+ #: includes/admin/templates/dashboard/users.php:32
3026
+ #: includes/core/class-user.php:829
3027
+ msgid "Awaiting E-mail Confirmation"
3028
+ msgstr ""
3029
+
3030
+ #: includes/admin/templates/directory/appearance.php:9
3031
+ #: includes/admin/templates/form/login_customize.php:20
3032
+ #: includes/admin/templates/form/profile_customize.php:39
3033
+ #: includes/admin/templates/form/register_customize.php:35
3034
+ msgid "Template"
3035
+ msgstr ""
3036
+
3037
+ #: includes/admin/templates/directory/general.php:46
3038
+ msgid "New users first"
3039
+ msgstr ""
3040
+
3041
+ #: includes/admin/templates/directory/general.php:47
3042
+ msgid "Old users first"
3043
+ msgstr ""
3044
+
3045
+ #: includes/admin/templates/directory/general.php:48
3046
+ msgid "Last login"
3047
+ msgstr ""
3048
+
3049
+ #: includes/admin/templates/directory/general.php:49
3050
+ msgid "Display Name"
3051
+ msgstr ""
3052
+
3053
+ #: includes/admin/templates/directory/general.php:50
3054
+ #: includes/core/class-builtin.php:712 includes/core/class-builtin.php:715
3055
+ msgid "First Name"
3056
+ msgstr ""
3057
+
3058
+ #: includes/admin/templates/directory/general.php:51
3059
+ #: includes/core/class-builtin.php:722 includes/core/class-builtin.php:725
3060
+ msgid "Last Name"
3061
+ msgstr ""
3062
+
3063
+ #: includes/admin/templates/directory/general.php:52
3064
+ msgid "Random"
3065
+ msgstr ""
3066
+
3067
+ #: includes/admin/templates/directory/general.php:53
3068
+ msgid "Other (custom field)"
3069
+ msgstr ""
3070
+
3071
+ #: includes/admin/templates/directory/general.php:65
3072
+ msgid "User Roles to Display"
3073
+ msgstr ""
3074
+
3075
+ #: includes/admin/templates/directory/general.php:66
3076
+ msgid ""
3077
+ "If you do not want to show all members, select only user roles to appear in "
3078
+ "this directory"
3079
+ msgstr ""
3080
+
3081
+ #: includes/admin/templates/directory/general.php:74
3082
+ msgid "Only show members who have uploaded a profile photo"
3083
+ msgstr ""
3084
+
3085
+ #: includes/admin/templates/directory/general.php:75
3086
+ msgid "If 'Use Gravatars' as profile photo is enabled, this option is ignored"
3087
+ msgstr ""
3088
+
3089
+ #: includes/admin/templates/directory/general.php:81
3090
+ msgid "Only show members who have uploaded a cover photo"
3091
+ msgstr ""
3092
+
3093
+ #: includes/admin/templates/directory/general.php:87
3094
+ msgid "Sort users by"
3095
+ msgstr ""
3096
+
3097
+ #: includes/admin/templates/directory/general.php:88
3098
+ msgid "Sort users by a specific parameter in the directory"
3099
+ msgstr ""
3100
+
3101
+ #: includes/admin/templates/directory/general.php:95
3102
+ msgid "Meta key"
3103
+ msgstr ""
3104
+
3105
+ #: includes/admin/templates/directory/general.php:96
3106
+ msgid "To sort by a custom field, enter the meta key of field here"
3107
+ msgstr ""
3108
+
3109
+ #: includes/admin/templates/directory/general.php:103
3110
+ msgid "Only show specific users (Enter one username per line)"
3111
+ msgstr ""
3112
+
3113
+ #: includes/admin/templates/directory/pagination.php:9
3114
+ msgid "Number of profiles per page"
3115
+ msgstr ""
3116
+
3117
+ #: includes/admin/templates/directory/pagination.php:10
3118
+ msgid "Number of profiles to appear on page for standard users"
3119
+ msgstr ""
3120
+
3121
+ #: includes/admin/templates/directory/pagination.php:17
3122
+ msgid "Number of profiles per page (for Mobiles & Tablets)"
3123
+ msgstr ""
3124
+
3125
+ #: includes/admin/templates/directory/pagination.php:18
3126
+ msgid "Number of profiles to appear on page for mobile users"
3127
+ msgstr ""
3128
+
3129
+ #: includes/admin/templates/directory/pagination.php:25
3130
+ msgid "Maximum number of profiles"
3131
+ msgstr ""
3132
+
3133
+ #: includes/admin/templates/directory/pagination.php:26
3134
+ msgid ""
3135
+ "Use this setting to control the maximum number of profiles to appear in this "
3136
+ "directory. Leave blank to disable this limit"
3137
+ msgstr ""
3138
+
3139
+ #: includes/admin/templates/directory/profile.php:19
3140
+ msgid "Enable Profile Photo"
3141
+ msgstr ""
3142
+
3143
+ #: includes/admin/templates/directory/profile.php:25
3144
+ msgid "Enable Cover Photo"
3145
+ msgstr ""
3146
+
3147
+ #: includes/admin/templates/directory/profile.php:26
3148
+ msgid "If turned on, the users cover photo will appear in the directory"
3149
+ msgstr ""
3150
+
3151
+ #: includes/admin/templates/directory/profile.php:32
3152
+ msgid "Show display name"
3153
+ msgstr ""
3154
+
3155
+ #: includes/admin/templates/directory/profile.php:38
3156
+ msgid "Show tagline below profile name"
3157
+ msgstr ""
3158
+
3159
+ #: includes/admin/templates/directory/profile.php:44
3160
+ msgid "Choose field(s) to display in tagline"
3161
+ msgstr ""
3162
+
3163
+ #: includes/admin/templates/directory/profile.php:47
3164
+ #: includes/admin/templates/directory/profile.php:69
3165
+ #: includes/admin/templates/directory/search.php:78
3166
+ msgid "Add New Custom Field"
3167
+ msgstr ""
3168
+
3169
+ #: includes/admin/templates/directory/profile.php:54
3170
+ msgid "Show extra user information below tagline?"
3171
+ msgstr ""
3172
+
3173
+ #: includes/admin/templates/directory/profile.php:60
3174
+ msgid "Enable reveal section transition by default"
3175
+ msgstr ""
3176
+
3177
+ #: includes/admin/templates/directory/profile.php:67
3178
+ msgid "Choose field(s) to display in reveal section"
3179
+ msgstr ""
3180
+
3181
+ #: includes/admin/templates/directory/profile.php:77
3182
+ msgid "Show social connect icons"
3183
+ msgstr ""
3184
+
3185
+ #: includes/admin/templates/directory/search.php:49
3186
+ msgid "Enable Search feature"
3187
+ msgstr ""
3188
+
3189
+ #: includes/admin/templates/directory/search.php:50
3190
+ msgid "If turned on, users will be able to search members in this directory"
3191
+ msgstr ""
3192
+
3193
+ #: includes/admin/templates/directory/search.php:56
3194
+ msgid "Show results only after search"
3195
+ msgstr ""
3196
+
3197
+ #: includes/admin/templates/directory/search.php:57
3198
+ msgid "If turned on, member results will only appear after search is performed"
3199
+ msgstr ""
3200
+
3201
+ #: includes/admin/templates/directory/search.php:65
3202
+ msgid "User Roles that can use search"
3203
+ msgstr ""
3204
+
3205
+ #: includes/admin/templates/directory/search.php:66
3206
+ msgid "If you want to allow specific user roles to be able to search only"
3207
+ msgstr ""
3208
+
3209
+ #: includes/admin/templates/directory/search.php:74
3210
+ msgid "Choose field(s) to enable in search"
3211
+ msgstr ""
3212
+
3213
+ #: includes/admin/templates/directory/search.php:84
3214
+ msgid "Additional search filters"
3215
+ msgstr ""
3216
+
3217
+ #: includes/admin/templates/directory/search.php:85
3218
+ msgid "Additional search filters like URL parameters"
3219
+ msgstr ""
3220
+
3221
+ #: includes/admin/templates/directory/search.php:93
3222
+ msgid "Results Text"
3223
+ msgstr ""
3224
+
3225
+ #: includes/admin/templates/directory/search.php:94
3226
+ msgid ""
3227
+ "Customize the search result text . e.g. Found 3,000 Members. Leave this "
3228
+ "blank to not show result text"
3229
+ msgstr ""
3230
+
3231
+ #: includes/admin/templates/directory/search.php:95
3232
+ #: includes/class-config.php:155 includes/class-config.php:250
3233
+ msgid "{total_users} Members"
3234
+ msgstr ""
3235
+
3236
+ #: includes/admin/templates/directory/search.php:101
3237
+ msgid "Single Result Text"
3238
+ msgstr ""
3239
+
3240
+ #: includes/admin/templates/directory/search.php:102
3241
+ msgid "Same as above but in case of 1 user found only"
3242
+ msgstr ""
3243
+
3244
+ #: includes/admin/templates/directory/search.php:103
3245
+ #: includes/class-config.php:156 includes/class-config.php:251
3246
+ msgid "{total_users} Member"
3247
+ msgstr ""
3248
+
3249
+ #: includes/admin/templates/directory/search.php:109
3250
+ msgid "Custom text if no users were found"
3251
+ msgstr ""
3252
+
3253
+ #: includes/admin/templates/directory/search.php:110
3254
+ msgid ""
3255
+ "This is the text that is displayed if no users are found during a search"
3256
+ msgstr ""
3257
+
3258
+ #: includes/admin/templates/directory/search.php:111
3259
+ #: includes/class-config.php:157
3260
+ msgid "We are sorry. We cannot find any users who match your search criteria."
3261
+ msgstr ""
3262
+
3263
+ #: includes/admin/templates/extensions.php:173
3264
+ msgid ""
3265
+ "<strong>All Access Pass</strong> – Get access to all Ultimate Member "
3266
+ "extensions at a significant discount with our All Access Pass."
3267
+ msgstr ""
3268
+
3269
+ #: includes/admin/templates/extensions.php:177
3270
+ msgid "View Pricing"
3271
+ msgstr ""
3272
+
3273
+ #: includes/admin/templates/extensions.php:186
3274
+ msgid "Premium"
3275
+ msgstr ""
3276
+
3277
+ #: includes/admin/templates/extensions.php:191
3278
+ msgid "Free"
3279
+ msgstr ""
3280
+
3281
+ #: includes/admin/templates/extensions.php:217
3282
+ #: includes/admin/templates/extensions.php:251
3283
+ msgid "Get this Add on"
3284
+ msgstr ""
3285
+
3286
+ #: includes/admin/templates/extensions.php:222
3287
+ #: includes/admin/templates/extensions.php:256
3288
+ msgid "More Details"
3289
+ msgstr ""
3290
+
3291
+ #: includes/admin/templates/form/builder.php:9
3292
+ msgid "Live Preview"
3293
+ msgstr ""
3294
+
3295
+ #: includes/admin/templates/form/builder.php:23
3296
+ msgid "Add Master Row"
3297
+ msgstr ""
3298
+
3299
+ #: includes/admin/templates/form/login_customize.php:9
3300
+ #: includes/admin/templates/form/profile_customize.php:18
3301
+ #: includes/admin/templates/form/register_customize.php:16
3302
+ msgid "Apply custom settings to this form"
3303
+ msgstr ""
3304
+
3305
+ #: includes/admin/templates/form/login_customize.php:10
3306
+ #: includes/admin/templates/form/profile_customize.php:19
3307
+ #: includes/admin/templates/form/register_customize.php:17
3308
+ msgid ""
3309
+ "Switch to yes if you want to customize this form settings, styling &amp; "
3310
+ "appearance"
3311
+ msgstr ""
3312
+
3313
+ #: includes/admin/templates/form/login_customize.php:28
3314
+ #: includes/admin/templates/form/profile_customize.php:47
3315
+ #: includes/admin/templates/form/register_customize.php:43
3316
+ msgid "Max. Width (px)"
3317
+ msgstr ""
3318
+
3319
+ #: includes/admin/templates/form/login_customize.php:29
3320
+ #: includes/admin/templates/form/profile_customize.php:48
3321
+ #: includes/admin/templates/form/register_customize.php:44
3322
+ msgid "The maximum width of shortcode in pixels e.g. 600px"
3323
+ msgstr ""
3324
+
3325
+ #: includes/admin/templates/form/login_customize.php:36
3326
+ #: includes/admin/templates/form/profile_customize.php:63
3327
+ #: includes/admin/templates/form/register_customize.php:51
3328
+ msgid "Field Icons"
3329
+ msgstr ""
3330
+
3331
+ #: includes/admin/templates/form/login_customize.php:37
3332
+ #: includes/admin/templates/form/profile_customize.php:64
3333
+ #: includes/admin/templates/form/register_customize.php:52
3334
+ msgid ""
3335
+ "Whether to show field icons and where to show them relative to the field"
3336
+ msgstr ""
3337
+
3338
+ #: includes/admin/templates/form/login_customize.php:49
3339
+ #: includes/admin/templates/form/profile_customize.php:76
3340
+ #: includes/admin/templates/form/register_customize.php:64
3341
+ msgid "Primary Button Text"
3342
+ msgstr ""
3343
+
3344
+ #: includes/admin/templates/form/login_customize.php:50
3345
+ #: includes/admin/templates/form/login_customize.php:69
3346
+ #: includes/admin/templates/form/profile_customize.php:77
3347
+ #: includes/admin/templates/form/profile_customize.php:96
3348
+ #: includes/admin/templates/form/register_customize.php:65
3349
+ #: includes/admin/templates/form/register_customize.php:84
3350
+ msgid "Customize the button text"
3351
+ msgstr ""
3352
+
3353
+ #: includes/admin/templates/form/login_customize.php:57
3354
+ #: includes/admin/templates/form/profile_customize.php:84
3355
+ #: includes/admin/templates/form/register_customize.php:72
3356
+ msgid "Show Secondary Button"
3357
+ msgstr ""
3358
+
3359
+ #: includes/admin/templates/form/login_customize.php:68
3360
+ #: includes/admin/templates/form/profile_customize.php:95
3361
+ #: includes/admin/templates/form/register_customize.php:83
3362
+ msgid "Secondary Button Text"
3363
+ msgstr ""
3364
+
3365
+ #: includes/admin/templates/form/login_customize.php:76
3366
+ msgid "Show Forgot Password Link?"
3367
+ msgstr ""
3368
+
3369
+ #: includes/admin/templates/form/login_customize.php:87
3370
+ msgid "Show \"Remember Me\"?"
3371
+ msgstr ""
3372
+
3373
+ #: includes/admin/templates/form/login_settings.php:9
3374
+ msgid "Redirection after Login"
3375
+ msgstr ""
3376
+
3377
+ #: includes/admin/templates/form/login_settings.php:10
3378
+ msgid ""
3379
+ "Change this If you want to override role redirection settings after login "
3380
+ "only."
3381
+ msgstr ""
3382
+
3383
+ #: includes/admin/templates/form/login_settings.php:14
3384
+ #: includes/admin/templates/role/login.php:16
3385
+ #: includes/admin/templates/role/register.php:27
3386
+ msgid "Redirect to profile"
3387
+ msgstr ""
3388
+
3389
+ #: includes/admin/templates/form/login_settings.php:15
3390
+ #: includes/admin/templates/role/login.php:17
3391
+ #: includes/admin/templates/role/register.php:28
3392
+ #: includes/admin/templates/role/register.php:55
3393
+ #: includes/admin/templates/role/register.php:89
3394
+ msgid "Redirect to URL"
3395
+ msgstr ""
3396
+
3397
+ #: includes/admin/templates/form/login_settings.php:16
3398
+ #: includes/admin/templates/role/login.php:18
3399
+ msgid "Refresh active page"
3400
+ msgstr ""
3401
+
3402
+ #: includes/admin/templates/form/login_settings.php:17
3403
+ #: includes/admin/templates/role/login.php:19
3404
+ msgid "Redirect to WordPress Admin"
3405
+ msgstr ""
3406
+
3407
+ #: includes/admin/templates/form/login_settings.php:23
3408
+ #: includes/admin/templates/role/delete.php:23
3409
+ #: includes/admin/templates/role/login.php:25
3410
+ #: includes/admin/templates/role/logout.php:23
3411
+ #: includes/admin/templates/role/register.php:35
3412
+ #: includes/admin/templates/role/register.php:69
3413
+ #: includes/admin/templates/role/register.php:103
3414
+ msgid "Set Custom Redirect URL"
3415
+ msgstr ""
3416
+
3417
+ #: includes/admin/templates/form/mode.php:6
3418
+ msgid ""
3419
+ "<strong>Note:</strong> Form type cannot be changed for the default forms."
3420
+ msgstr ""
3421
+
3422
+ #: includes/admin/templates/form/mode.php:11
3423
+ msgid "Profile Form"
3424
+ msgstr ""
3425
+
3426
+ #: includes/admin/templates/form/profile_customize.php:30
3427
+ msgid "Make this profile form role-specific"
3428
+ msgstr ""
3429
+
3430
+ #: includes/admin/templates/form/profile_customize.php:31
3431
+ msgid ""
3432
+ "Please note if you make a profile form specific to a role then you must make "
3433
+ "sure that every other role is assigned a profile form"
3434
+ msgstr ""
3435
+
3436
+ #: includes/admin/templates/form/profile_customize.php:55
3437
+ msgid "Profile Area Max. Width (px)"
3438
+ msgstr ""
3439
+
3440
+ #: includes/admin/templates/form/profile_customize.php:103
3441
+ msgid "Enable Cover Photos"
3442
+ msgstr ""
3443
+
3444
+ #: includes/admin/templates/form/profile_customize.php:114
3445
+ msgid "Cover photo ratio"
3446
+ msgstr ""
3447
+
3448
+ #: includes/admin/templates/form/profile_customize.php:129
3449
+ msgid "Set the profile photo size in pixels here"
3450
+ msgstr ""
3451
+
3452
+ #: includes/admin/templates/form/profile_customize.php:136
3453
+ msgid "Make Profile Photo Required"
3454
+ msgstr ""
3455
+
3456
+ #: includes/admin/templates/form/profile_customize.php:137
3457
+ msgid "Require user to update a profile photo when updating their profile"
3458
+ msgstr ""
3459
+
3460
+ #: includes/admin/templates/form/profile_customize.php:148
3461
+ msgid "Show display name in profile header?"
3462
+ msgstr ""
3463
+
3464
+ #: includes/admin/templates/form/profile_customize.php:159
3465
+ msgid "Show social links in profile header?"
3466
+ msgstr ""
3467
+
3468
+ #: includes/admin/templates/form/profile_customize.php:170
3469
+ msgid "Show user description in profile header?"
3470
+ msgstr ""
3471
+
3472
+ #: includes/admin/templates/form/profile_settings.php:20
3473
+ msgid "Field(s) to show in user meta"
3474
+ msgstr ""
3475
+
3476
+ #: includes/admin/templates/form/profile_settings.php:21
3477
+ msgid ""
3478
+ "Fields selected here will appear in the profile header area below the user's "
3479
+ "display name"
3480
+ msgstr ""
3481
+
3482
+ #: includes/admin/templates/form/profile_settings.php:24
3483
+ msgid "Add New Field"
3484
+ msgstr ""
3485
+
3486
+ #: includes/admin/templates/form/register_customize.php:27
3487
+ msgid "Assign role to form"
3488
+ msgstr ""
3489
+
3490
+ #: includes/admin/templates/form/register_gdpr.php:5
3491
+ msgid "Select page"
3492
+ msgstr ""
3493
+
3494
+ #: includes/admin/templates/form/register_gdpr.php:20
3495
+ msgid "Enable on this form"
3496
+ msgstr ""
3497
+
3498
+ #: includes/admin/templates/form/register_gdpr.php:30
3499
+ msgid "Content"
3500
+ msgstr ""
3501
+
3502
+ #: includes/admin/templates/form/register_gdpr.php:38
3503
+ msgid "Toggle Show text"
3504
+ msgstr ""
3505
+
3506
+ #: includes/admin/templates/form/register_gdpr.php:39
3507
+ #: includes/admin/templates/form/register_gdpr.php:40
3508
+ #: templates/gdpr-register.php:15 templates/gdpr-register.php:17
3509
+ msgid "Show privacy policy"
3510
+ msgstr ""
3511
+
3512
+ #: includes/admin/templates/form/register_gdpr.php:46
3513
+ msgid "Toggle Hide text"
3514
+ msgstr ""
3515
+
3516
+ #: includes/admin/templates/form/register_gdpr.php:47
3517
+ #: includes/admin/templates/form/register_gdpr.php:48
3518
+ #: templates/gdpr-register.php:16
3519
+ msgid "Hide privacy policy"
3520
+ msgstr ""
3521
+
3522
+ #: includes/admin/templates/form/register_gdpr.php:54
3523
+ msgid "Checkbox agreement description"
3524
+ msgstr ""
3525
+
3526
+ #: includes/admin/templates/form/register_gdpr.php:55
3527
+ #: includes/admin/templates/form/register_gdpr.php:56
3528
+ #: templates/gdpr-register.php:28
3529
+ msgid "Please confirm that you agree to our privacy policy"
3530
+ msgstr ""
3531
+
3532
+ #: includes/admin/templates/form/register_gdpr.php:62
3533
+ msgid "Error Text"
3534
+ msgstr ""
3535
+
3536
+ #: includes/admin/templates/form/register_gdpr.php:63
3537
+ #: includes/admin/templates/form/register_gdpr.php:64
3538
+ #: templates/gdpr-register.php:37
3539
+ msgid "Please confirm your acceptance of our privacy policy"
3540
+ msgstr ""
3541
+
3542
+ #: includes/admin/templates/gdpr.php:4
3543
+ msgid "What personal data we collect and why we collect it"
3544
+ msgstr ""
3545
+
3546
+ #: includes/admin/templates/gdpr.php:10
3547
+ #, php-format
3548
+ msgid "%s provides you with forms for user registration, login and profiles."
3549
+ msgstr ""
3550
+
3551
+ #: includes/admin/templates/gdpr.php:13
3552
+ msgid "Via these forms you are collecting personal data from your users."
3553
+ msgstr ""
3554
+
3555
+ #: includes/admin/templates/gdpr.php:16
3556
+ msgid ""
3557
+ "You should include in your privacy policy what personal data is captured "
3558
+ "when someone submits/fills in one of the forms, why you collect it and what "
3559
+ "you do with this data and how long you keep it."
3560
+ msgstr ""
3561
+
3562
+ #: includes/admin/templates/gdpr.php:20
3563
+ msgid "How long we retain your data"
3564
+ msgstr ""
3565
+
3566
+ #: includes/admin/templates/gdpr.php:23
3567
+ msgid ""
3568
+ "Registered user information is retained in your website’s database "
3569
+ "indefinitely."
3570
+ msgstr ""
3571
+
3572
+ #: includes/admin/templates/gdpr.php:26
3573
+ msgid ""
3574
+ "Data can be exported or removed upon users request via the existing "
3575
+ "WordPress data exporter or eraser."
3576
+ msgstr ""
3577
+
3578
+ #: includes/admin/templates/gdpr.php:29
3579
+ msgid ""
3580
+ "If syncing data to a 3rd party service (e.g Mailchimp via our MailChimp "
3581
+ "extension), data is retained there until unsubscribed or deleted."
3582
+ msgstr ""
3583
+
3584
+ #: includes/admin/templates/gdpr.php:33
3585
+ msgid "Where we send your data"
3586
+ msgstr ""
3587
+
3588
+ #: includes/admin/templates/gdpr.php:36
3589
+ #, php-format
3590
+ msgid "%s does not send any user data outside of your site by default."
3591
+ msgstr ""
3592
+
3593
+ #: includes/admin/templates/gdpr.php:39
3594
+ msgid ""
3595
+ "If you have extended the functionality of the plugin (e.g sending registered "
3596
+ "user data to MailChimp via our MailChimp extension, this user info may be "
3597
+ "passed to these external services. These services may be located abroad and "
3598
+ "outwith the EU."
3599
+ msgstr ""
3600
+
3601
+ #: includes/admin/templates/modal/dynamic_edit_field.php:6
3602
+ msgid "Edit Field"
3603
+ msgstr ""
3604
+
3605
+ #: includes/admin/templates/modal/dynamic_edit_field.php:12
3606
+ #: includes/admin/templates/modal/dynamic_edit_row.php:12
3607
+ msgid "Update"
3608
+ msgstr ""
3609
+
3610
+ #: includes/admin/templates/modal/dynamic_edit_field.php:15
3611
+ #: includes/admin/templates/modal/dynamic_edit_row.php:15
3612
+ #: includes/admin/templates/modal/dynamic_new_divider.php:15
3613
+ #: includes/admin/templates/modal/dynamic_new_field.php:15
3614
+ #: includes/admin/templates/modal/dynamic_new_group.php:15
3615
+ #: includes/admin/templates/modal/fonticons.php:11
3616
+ #: includes/admin/templates/role/publish.php:24
3617
+ #: includes/core/class-fields.php:2336 includes/core/class-fields.php:2433
3618
+ #: includes/core/um-actions-profile.php:603
3619
+ #: includes/core/um-actions-profile.php:615
3620
+ #: includes/core/um-actions-profile.php:754
3621
+ #: includes/core/um-actions-profile.php:787
3622
+ #: includes/core/um-actions-profile.php:1132
3623
+ #: includes/core/um-actions-profile.php:1139
3624
+ msgid "Cancel"
3625
+ msgstr ""
3626
+
3627
+ #: includes/admin/templates/modal/dynamic_edit_row.php:6
3628
+ msgid "Edit Row Settings"
3629
+ msgstr ""
3630
+
3631
+ #: includes/admin/templates/modal/dynamic_form_preview.php:4
3632
+ msgid "Live Form Preview"
3633
+ msgstr ""
3634
+
3635
+ #: includes/admin/templates/modal/dynamic_form_preview.php:10
3636
+ msgid "Continue editing"
3637
+ msgstr ""
3638
+
3639
+ #: includes/admin/templates/modal/dynamic_new_divider.php:6
3640
+ msgid "Add a New Divider"
3641
+ msgstr ""
3642
+
3643
+ #: includes/admin/templates/modal/dynamic_new_divider.php:12
3644
+ #: includes/admin/templates/modal/dynamic_new_field.php:12
3645
+ #: includes/admin/templates/modal/dynamic_new_group.php:12
3646
+ msgid "Add"
3647
+ msgstr ""
3648
+
3649
+ #: includes/admin/templates/modal/dynamic_new_field.php:6
3650
+ msgid "Add a New Field"
3651
+ msgstr ""
3652
+
3653
+ #: includes/admin/templates/modal/dynamic_new_group.php:6
3654
+ msgid "Add a New Field Group"
3655
+ msgstr ""
3656
+
3657
+ #: includes/admin/templates/modal/dynamic_registration_preview.php:4
3658
+ msgid "Review Registration Details"
3659
+ msgstr ""
3660
+
3661
+ #: includes/admin/templates/modal/fields.php:4
3662
+ msgid "Fields Manager"
3663
+ msgstr ""
3664
+
3665
+ #: includes/admin/templates/modal/fonticons.php:4
3666
+ #, php-format
3667
+ msgid "Choose from %s available icons"
3668
+ msgstr ""
3669
+
3670
+ #: includes/admin/templates/modal/fonticons.php:10
3671
+ msgid "Finish"
3672
+ msgstr ""
3673
+
3674
+ #: includes/admin/templates/role/admin-permissions.php:11
3675
+ msgid "Can access wp-admin?"
3676
+ msgstr ""
3677
+
3678
+ #: includes/admin/templates/role/admin-permissions.php:12
3679
+ msgid ""
3680
+ "The core admin role must always have access to wp-admin / WordPress backend"
3681
+ msgstr ""
3682
+
3683
+ #: includes/admin/templates/role/admin-permissions.php:18
3684
+ msgid "Force hiding adminbar in frontend?"
3685
+ msgstr ""
3686
+
3687
+ #: includes/admin/templates/role/admin-permissions.php:19
3688
+ msgid "Show/hide the adminbar on frontend"
3689
+ msgstr ""
3690
+
3691
+ #: includes/admin/templates/role/admin-permissions.php:25
3692
+ msgid "Can edit other member accounts?"
3693
+ msgstr ""
3694
+
3695
+ #: includes/admin/templates/role/admin-permissions.php:26
3696
+ #: includes/admin/templates/role/admin-permissions.php:43
3697
+ msgid "Allow this role to edit accounts of other members"
3698
+ msgstr ""
3699
+
3700
+ #: includes/admin/templates/role/admin-permissions.php:32
3701
+ msgid "Can edit these user roles only"
3702
+ msgstr ""
3703
+
3704
+ #: includes/admin/templates/role/admin-permissions.php:33
3705
+ #: includes/admin/templates/role/admin-permissions.php:50
3706
+ msgid ""
3707
+ "Which roles that role can edit, choose none to allow role to edit all member "
3708
+ "roles"
3709
+ msgstr ""
3710
+
3711
+ #: includes/admin/templates/role/admin-permissions.php:42
3712
+ msgid "Can delete other member accounts?"
3713
+ msgstr ""
3714
+
3715
+ #: includes/admin/templates/role/admin-permissions.php:49
3716
+ msgid "Can delete these user roles only"
3717
+ msgstr ""
3718
+
3719
+ #: includes/admin/templates/role/delete.php:12
3720
+ msgid "Action to be taken after account is deleted"
3721
+ msgstr ""
3722
+
3723
+ #: includes/admin/templates/role/delete.php:13
3724
+ msgid ""
3725
+ "Select what happens when a user with this role deletes their own account"
3726
+ msgstr ""
3727
+
3728
+ #: includes/admin/templates/role/delete.php:16
3729
+ #: includes/admin/templates/role/logout.php:16
3730
+ msgid "Go to Homepage"
3731
+ msgstr ""
3732
+
3733
+ #: includes/admin/templates/role/delete.php:17
3734
+ #: includes/admin/templates/role/logout.php:17
3735
+ msgid "Go to Custom URL"
3736
+ msgstr ""
3737
+
3738
+ #: includes/admin/templates/role/delete.php:24
3739
+ msgid "Set a url to redirect this user role to after they delete account"
3740
+ msgstr ""
3741
+
3742
+ #: includes/admin/templates/role/general.php:11
3743
+ msgid "Can edit their profile?"
3744
+ msgstr ""
3745
+
3746
+ #: includes/admin/templates/role/general.php:12
3747
+ msgid "Can this role edit his own profile?"
3748
+ msgstr ""
3749
+
3750
+ #: includes/admin/templates/role/general.php:18
3751
+ msgid "Can delete their account?"
3752
+ msgstr ""
3753
+
3754
+ #: includes/admin/templates/role/general.php:19
3755
+ msgid ""
3756
+ "Allow this role to delete their account and end their membership on your site"
3757
+ msgstr ""
3758
+
3759
+ #: includes/admin/templates/role/home.php:12
3760
+ msgid "Can view default homepage?"
3761
+ msgstr ""
3762
+
3763
+ #: includes/admin/templates/role/home.php:13
3764
+ msgid "Allow this user role to view your site's homepage"
3765
+ msgstr ""
3766
+
3767
+ #: includes/admin/templates/role/home.php:19
3768
+ msgid "Custom Homepage Redirect"
3769
+ msgstr ""
3770
+
3771
+ #: includes/admin/templates/role/home.php:20
3772
+ msgid ""
3773
+ "Set a url to redirect this user role to if they try to view your site's "
3774
+ "homepage"
3775
+ msgstr ""
3776
+
3777
+ #: includes/admin/templates/role/login.php:12
3778
+ msgid "Action to be taken after login"
3779
+ msgstr ""
3780
+
3781
+ #: includes/admin/templates/role/login.php:13
3782
+ msgid "Select what happens when a user with this role logins to your site"
3783
+ msgstr ""
3784
+
3785
+ #: includes/admin/templates/role/login.php:26
3786
+ msgid ""
3787
+ "Set a url to redirect this user role to after they login with their account"
3788
+ msgstr ""
3789
+
3790
+ #: includes/admin/templates/role/logout.php:12
3791
+ msgid "Action to be taken after logout"
3792
+ msgstr ""
3793
+
3794
+ #: includes/admin/templates/role/logout.php:13
3795
+ msgid "Select what happens when a user with this role logouts of your site"
3796
+ msgstr ""
3797
+
3798
+ #: includes/admin/templates/role/logout.php:24
3799
+ msgid "Set a url to redirect this user role to after they logout from site"
3800
+ msgstr ""
3801
+
3802
+ #: includes/admin/templates/role/profile.php:11
3803
+ msgid "Can view other member profiles?"
3804
+ msgstr ""
3805
+
3806
+ #: includes/admin/templates/role/profile.php:12
3807
+ msgid "Can this role view all member profiles?"
3808
+ msgstr ""
3809
+
3810
+ #: includes/admin/templates/role/profile.php:18
3811
+ msgid "Can view these user roles only"
3812
+ msgstr ""
3813
+
3814
+ #: includes/admin/templates/role/profile.php:19
3815
+ msgid ""
3816
+ "Which roles that role can view, choose none to allow role to view all member "
3817
+ "roles"
3818
+ msgstr ""
3819
+
3820
+ #: includes/admin/templates/role/profile.php:29
3821
+ msgid "Can make their profile private?"
3822
+ msgstr ""
3823
+
3824
+ #: includes/admin/templates/role/profile.php:30
3825
+ msgid "Can this role make their profile private?"
3826
+ msgstr ""
3827
+
3828
+ #: includes/admin/templates/role/profile.php:37
3829
+ msgid "Can view/access private profiles?"
3830
+ msgstr ""
3831
+
3832
+ #: includes/admin/templates/role/profile.php:38
3833
+ msgid "Can this role view private profiles?"
3834
+ msgstr ""
3835
+
3836
+ #: includes/admin/templates/role/publish.php:14
3837
+ msgid "Role Priority"
3838
+ msgstr ""
3839
+
3840
+ #: includes/admin/templates/role/publish.php:15
3841
+ msgid "The higher the number, the higher the priority"
3842
+ msgstr ""
3843
+
3844
+ #: includes/admin/templates/role/publish.php:23
3845
+ msgid "Update Role"
3846
+ msgstr ""
3847
+
3848
+ #: includes/admin/templates/role/publish.php:23
3849
+ msgid "Create Role"
3850
+ msgstr ""
3851
+
3852
+ #: includes/admin/templates/role/register.php:11
3853
+ msgid "Registration Status"
3854
+ msgstr ""
3855
+
3856
+ #: includes/admin/templates/role/register.php:12
3857
+ msgid ""
3858
+ "Select the status you would like this user role to have after they register "
3859
+ "on your site"
3860
+ msgstr ""
3861
+
3862
+ #: includes/admin/templates/role/register.php:15
3863
+ msgid "Auto Approve"
3864
+ msgstr ""
3865
+
3866
+ #: includes/admin/templates/role/register.php:16
3867
+ msgid "Require Email Activation"
3868
+ msgstr ""
3869
+
3870
+ #: includes/admin/templates/role/register.php:17
3871
+ msgid "Require Admin Review"
3872
+ msgstr ""
3873
+
3874
+ #: includes/admin/templates/role/register.php:23
3875
+ #: includes/admin/templates/role/register.php:50
3876
+ #: includes/admin/templates/role/register.php:84
3877
+ msgid "Action to be taken after registration"
3878
+ msgstr ""
3879
+
3880
+ #: includes/admin/templates/role/register.php:24
3881
+ #: includes/admin/templates/role/register.php:51
3882
+ #: includes/admin/templates/role/register.php:85
3883
+ msgid ""
3884
+ "Select what action is taken after a person registers on your site. Depending "
3885
+ "on the status you can redirect them to their profile, a custom url or show a "
3886
+ "custom message"
3887
+ msgstr ""
3888
+
3889
+ #: includes/admin/templates/role/register.php:42
3890
+ msgid "Login user after validating the activation link?"
3891
+ msgstr ""
3892
+
3893
+ #: includes/admin/templates/role/register.php:43
3894
+ msgid "Login the user after validating the activation link"
3895
+ msgstr ""
3896
+
3897
+ #: includes/admin/templates/role/register.php:54
3898
+ #: includes/admin/templates/role/register.php:88
3899
+ msgid "Show custom message"
3900
+ msgstr ""
3901
+
3902
+ #: includes/admin/templates/role/register.php:62
3903
+ #: includes/admin/templates/role/register.php:96
3904
+ msgid "Personalize the custom message"
3905
+ msgstr ""
3906
+
3907
+ #: includes/admin/templates/role/register.php:63
3908
+ msgid ""
3909
+ "Thank you for registering. Before you can login we need you to activate your "
3910
+ "account by clicking the activation link in the email we just sent you."
3911
+ msgstr ""
3912
+
3913
+ #: includes/admin/templates/role/register.php:76
3914
+ msgid "URL redirect after e-mail activation"
3915
+ msgstr ""
3916
+
3917
+ #: includes/admin/templates/role/register.php:77
3918
+ msgid ""
3919
+ "If you want users to go to a specific page other than login page after e-"
3920
+ "mail activation, enter the URL here."
3921
+ msgstr ""
3922
+
3923
+ #: includes/admin/templates/role/register.php:97
3924
+ msgid ""
3925
+ "Thank you for applying for membership to our site. We will review your "
3926
+ "details and send you an email letting you know whether your application has "
3927
+ "been successful or not."
3928
+ msgstr ""
3929
+
3930
+ #: includes/admin/templates/role/role-edit.php:68
3931
+ #: includes/admin/templates/role/role-edit.php:72
3932
+ msgid "Security Issue"
3933
+ msgstr ""
3934
+
3935
+ #: includes/admin/templates/role/role-edit.php:85
3936
+ msgid "Title is empty!"
3937
+ msgstr ""
3938
+
3939
+ #: includes/admin/templates/role/role-edit.php:110
3940
+ msgid "Role already exists!"
3941
+ msgstr ""
3942
+
3943
+ #: includes/admin/templates/role/role-edit.php:151
3944
+ msgid "Add New Role"
3945
+ msgstr ""
3946
+
3947
+ #: includes/admin/templates/role/role-edit.php:151
3948
+ msgid "Edit Role"
3949
+ msgstr ""
3950
+
3951
+ #: includes/admin/templates/role/role-edit.php:160
3952
+ msgid "User Role <strong>Added</strong> Successfully."
3953
+ msgstr ""
3954
+
3955
+ #: includes/admin/templates/role/role-edit.php:163
3956
+ msgid "User Role <strong>Updated</strong> Successfully."
3957
+ msgstr ""
3958
+
3959
+ #: includes/admin/templates/role/role-edit.php:191
3960
+ msgid "Enter Title Here"
3961
+ msgstr ""
3962
+
3963
+ #: includes/admin/templates/role/wp-capabilities.php:36
3964
+ msgid "Uncheck All"
3965
+ msgstr ""
3966
+
3967
+ #: includes/admin/templates/role/wp-capabilities.php:38
3968
+ #: includes/admin/templates/role/wp-capabilities.php:46
3969
+ msgid "Check All"
3970
+ msgstr ""
3971
+
3972
+ #: includes/class-config.php:131 includes/class-config.php:745
3973
+ msgid "User"
3974
+ msgstr ""
3975
+
3976
+ #: includes/class-config.php:132 includes/class-config.php:237
3977
+ #: includes/class-config.php:243 includes/class-config.php:746
3978
+ msgid "Login"
3979
+ msgstr ""
3980
+
3981
+ #: includes/class-config.php:133 includes/class-config.php:235
3982
+ #: includes/class-config.php:247 includes/class-config.php:747
3983
+ msgid "Register"
3984
+ msgstr ""
3985
+
3986
+ #: includes/class-config.php:134 includes/class-config.php:748
3987
+ msgid "Members"
3988
+ msgstr ""
3989
+
3990
+ #: includes/class-config.php:135 includes/class-config.php:749
3991
+ #: includes/core/um-actions-profile.php:1138
3992
+ #: includes/core/um-actions-user.php:15
3993
+ msgid "Logout"
3994
+ msgstr ""
3995
+
3996
+ #: includes/class-config.php:137 includes/class-config.php:751
3997
+ msgid "Password Reset"
3998
+ msgstr ""
3999
+
4000
+ #: includes/class-config.php:310
4001
+ msgid "Account Welcome Email"
4002
+ msgstr ""
4003
+
4004
+ #: includes/class-config.php:321
4005
+ msgid ""
4006
+ "Whether to send the user an email when his account is automatically approved"
4007
+ msgstr ""
4008
+
4009
+ #: includes/class-config.php:327
4010
+ msgid "Account Activation Email"
4011
+ msgstr ""
4012
+
4013
+ #: includes/class-config.php:335
4014
+ msgid ""
4015
+ "Whether to send the user an email when his account needs e-mail activation"
4016
+ msgstr ""
4017
+
4018
+ #: includes/class-config.php:340
4019
+ msgid "Your account is pending review"
4020
+ msgstr ""
4021
+
4022
+ #: includes/class-config.php:348
4023
+ msgid "Whether to send the user an email when his account needs admin review"
4024
+ msgstr ""
4025
+
4026
+ #: includes/class-config.php:353
4027
+ msgid "Account Approved Email"
4028
+ msgstr ""
4029
+
4030
+ #: includes/class-config.php:365
4031
+ msgid "Whether to send the user an email when his account is approved"
4032
+ msgstr ""
4033
+
4034
+ #: includes/class-config.php:370
4035
+ msgid "Account Rejected Email"
4036
+ msgstr ""
4037
+
4038
+ #: includes/class-config.php:377
4039
+ msgid "Whether to send the user an email when his account is rejected"
4040
+ msgstr ""
4041
+
4042
+ #: includes/class-config.php:382
4043
+ msgid "Account Deactivated Email"
4044
+ msgstr ""
4045
+
4046
+ #: includes/class-config.php:389
4047
+ msgid "Whether to send the user an email when his account is deactivated"
4048
+ msgstr ""
4049
+
4050
+ #: includes/class-config.php:395
4051
+ msgid "Account Deleted Email"
4052
+ msgstr ""
4053
+
4054
+ #: includes/class-config.php:402
4055
+ msgid "Whether to send the user an email when his account is deleted"
4056
+ msgstr ""
4057
+
4058
+ #: includes/class-config.php:408
4059
+ msgid "Password Reset Email"
4060
+ msgstr ""
4061
+
4062
+ #: includes/class-config.php:416
4063
+ msgid ""
4064
+ "Whether to send an email when users changed their password (Recommended, "
4065
+ "please keep on)"
4066
+ msgstr ""
4067
+
4068
+ #: includes/class-config.php:422
4069
+ msgid "Password Changed Email"
4070
+ msgstr ""
4071
+
4072
+ #: includes/class-config.php:429
4073
+ msgid ""
4074
+ "Whether to send the user an email when he request to reset password "
4075
+ "(Recommended, please keep on)"
4076
+ msgstr ""
4077
+
4078
+ #: includes/class-config.php:435
4079
+ msgid "Account Updated Email"
4080
+ msgstr ""
4081
+
4082
+ #: includes/class-config.php:442
4083
+ msgid "Whether to send the user an email when he updated their account"
4084
+ msgstr ""
4085
+
4086
+ #: includes/class-config.php:448
4087
+ msgid "New User Notification"
4088
+ msgstr ""
4089
+
4090
+ #: includes/class-config.php:454
4091
+ msgid "Whether to receive notification when a new user account is approved"
4092
+ msgstr ""
4093
+
4094
+ #: includes/class-config.php:460
4095
+ msgid "Account Needs Review Notification"
4096
+ msgstr ""
4097
+
4098
+ #: includes/class-config.php:467
4099
+ msgid "Whether to receive notification when an account needs admin review"
4100
+ msgstr ""
4101
+
4102
+ #: includes/class-config.php:472
4103
+ msgid "Account Deletion Notification"
4104
+ msgstr ""
4105
+
4106
+ #: includes/class-config.php:475
4107
+ msgid "Whether to receive notification when an account is deleted"
4108
+ msgstr ""
4109
+
4110
+ #: includes/class-config.php:498
4111
+ msgid ""
4112
+ "Are you sure you want to delete your account? This will erase all of your "
4113
+ "account data from the site. To delete your account enter your password below"
4114
+ msgstr ""
4115
+
4116
+ #: includes/class-dependencies.php:167
4117
+ #, php-format
4118
+ msgid ""
4119
+ "This version of <strong>\"%s\"</strong> requires the core <strong>%s</"
4120
+ "strong> plugin to be <strong>%s</strong> or higher."
4121
+ msgstr ""
4122
+
4123
+ #: includes/class-dependencies.php:169
4124
+ #, php-format
4125
+ msgid "Please update <strong>%s</strong> to the latest version."
4126
+ msgstr ""
4127
+
4128
+ #: includes/class-dependencies.php:171
4129
+ #, php-format
4130
+ msgid ""
4131
+ "Sorry, but this version of <strong>%s</strong> does not work with extension "
4132
+ "<strong>\"%s\" %s</strong> version."
4133
+ msgstr ""
4134
+
4135
+ #: includes/class-dependencies.php:173
4136
+ #, php-format
4137
+ msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4138
+ msgstr ""
4139
+
4140
+ #: includes/class-dependencies.php:182
4141
+ #, php-format
4142
+ msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4143
+ msgstr ""
4144
+
4145
+ #: includes/class-dependencies.php:184
4146
+ #, php-format
4147
+ msgid "Correct folder name is <strong>\"%s\"</strong>"
4148
+ msgstr ""
4149
+
4150
+ #: includes/class-extensions.php:101
4151
+ #, php-format
4152
+ msgid "%s License Key"
4153
+ msgstr ""
4154
+
4155
+ #: includes/class-init.php:155 includes/class-init.php:164
4156
+ msgid "Cheatin&#8217; huh?"
4157
+ msgstr ""
4158
+
4159
+ #: includes/core/class-account.php:93
4160
+ msgid "Update Account"
4161
+ msgstr ""
4162
+
4163
+ #: includes/core/class-account.php:98
4164
+ msgid "Change Password"
4165
+ msgstr ""
4166
+
4167
+ #: includes/core/class-account.php:99
4168
+ msgid "Update Password"
4169
+ msgstr ""
4170
+
4171
+ #: includes/core/class-account.php:105
4172
+ msgid "Update Privacy"
4173
+ msgstr ""
4174
+
4175
+ #: includes/core/class-account.php:111
4176
+ msgid "Update Notifications"
4177
+ msgstr ""
4178
+
4179
+ #: includes/core/class-account.php:119 includes/core/class-account.php:120
4180
+ #: includes/core/class-builtin.php:1141 includes/core/class-builtin.php:1144
4181
+ msgid "Delete Account"
4182
+ msgstr ""
4183
+
4184
+ #: includes/core/class-builtin.php:132
4185
+ msgid "Please provide a meta key"
4186
+ msgstr ""
4187
+
4188
+ #: includes/core/class-builtin.php:133
4189
+ msgid "Your meta key is a reserved core field and cannot be used"
4190
+ msgstr ""
4191
+
4192
+ #: includes/core/class-builtin.php:134
4193
+ msgid "Your meta key is a predefined reserved key and cannot be used"
4194
+ msgstr ""
4195
+
4196
+ #: includes/core/class-builtin.php:135
4197
+ msgid "Your meta key already exists in your fields list"
4198
+ msgstr ""
4199
+
4200
+ #: includes/core/class-builtin.php:136
4201
+ msgid "Your meta key contains illegal characters. Please correct it."
4202
+ msgstr ""
4203
+
4204
+ #: includes/core/class-builtin.php:149
4205
+ msgid "Please provide a date range beginning"
4206
+ msgstr ""
4207
+
4208
+ #: includes/core/class-builtin.php:150
4209
+ msgid "Please enter a valid start date in the date range"
4210
+ msgstr ""
4211
+
4212
+ #: includes/core/class-builtin.php:164
4213
+ msgid "Please provide a date range end"
4214
+ msgstr ""
4215
+
4216
+ #: includes/core/class-builtin.php:165
4217
+ msgid "Please enter a valid end date in the date range"
4218
+ msgstr ""
4219
+
4220
+ #: includes/core/class-builtin.php:166
4221
+ msgid "The end of date range must be greater than the start of date range"
4222
+ msgstr ""
4223
+
4224
+ #: includes/core/class-builtin.php:208 includes/core/class-builtin.php:224
4225
+ #: includes/core/class-builtin.php:240 includes/core/class-builtin.php:256
4226
+ #: includes/core/class-builtin.php:276 includes/core/class-builtin.php:296
4227
+ #: includes/core/class-builtin.php:316 includes/core/class-builtin.php:336
4228
+ #: includes/core/class-builtin.php:352 includes/core/class-builtin.php:368
4229
+ #: includes/core/class-builtin.php:388 includes/core/class-builtin.php:408
4230
+ #: includes/core/class-builtin.php:434 includes/core/class-builtin.php:450
4231
+ #: includes/core/class-builtin.php:467 includes/core/class-builtin.php:480
4232
+ #: includes/core/class-builtin.php:497 includes/core/class-builtin.php:510
4233
+ #: includes/core/class-builtin.php:523 includes/core/class-builtin.php:539
4234
+ #: includes/core/class-builtin.php:555 includes/core/class-builtin.php:571
4235
+ msgid "You must provide a title"
4236
+ msgstr ""
4237
+
4238
+ #: includes/core/class-builtin.php:217
4239
+ msgid "Number"
4240
+ msgstr ""
4241
+
4242
+ #: includes/core/class-builtin.php:263 includes/core/class-builtin.php:283
4243
+ #: includes/core/class-builtin.php:303 includes/core/class-builtin.php:323
4244
+ msgid "You have not added any choices yet."
4245
+ msgstr ""
4246
+
4247
+ #: includes/core/class-builtin.php:375 includes/core/class-builtin.php:395
4248
+ msgid "Please enter a valid size"
4249
+ msgstr ""
4250
+
4251
+ #: includes/core/class-builtin.php:415
4252
+ msgid "Number of years is not valid"
4253
+ msgstr ""
4254
+
4255
+ #: includes/core/class-builtin.php:484
4256
+ msgid "You must add a shortcode to the content area"
4257
+ msgstr ""
4258
+
4259
+ #: includes/core/class-builtin.php:663 includes/core/class-user.php:1552
4260
+ msgid "Only me"
4261
+ msgstr ""
4262
+
4263
+ #: includes/core/class-builtin.php:687 includes/core/class-builtin.php:690
4264
+ #: includes/core/class-builtin.php:1097
4265
+ msgid "Username or E-mail"
4266
+ msgstr ""
4267
+
4268
+ #: includes/core/class-builtin.php:742 includes/core/class-builtin.php:745
4269
+ #: includes/core/class-builtin.php:1338
4270
+ msgid "Website URL"
4271
+ msgstr ""
4272
+
4273
+ #: includes/core/class-builtin.php:753 includes/core/class-builtin.php:756
4274
+ msgid "Registration Date"
4275
+ msgstr ""
4276
+
4277
+ #: includes/core/class-builtin.php:764 includes/core/class-builtin.php:767
4278
+ msgid "Last Login"
4279
+ msgstr ""
4280
+
4281
+ #: includes/core/class-builtin.php:775 includes/core/class-builtin.php:778
4282
+ msgid "E-mail Address"
4283
+ msgstr ""
4284
+
4285
+ #: includes/core/class-builtin.php:786 includes/core/class-builtin.php:789
4286
+ msgid "Secondary E-mail Address"
4287
+ msgstr ""
4288
+
4289
+ #: includes/core/class-builtin.php:798 includes/core/class-builtin.php:801
4290
+ msgid "Biography"
4291
+ msgstr ""
4292
+
4293
+ #: includes/core/class-builtin.php:807
4294
+ msgid "Enter a bit about yourself..."
4295
+ msgstr ""
4296
+
4297
+ #: includes/core/class-builtin.php:811 includes/core/class-builtin.php:814
4298
+ msgid "Birth Date"
4299
+ msgstr ""
4300
+
4301
+ #: includes/core/class-builtin.php:825 includes/core/class-builtin.php:828
4302
+ msgid "Gender"
4303
+ msgstr ""
4304
+
4305
+ #: includes/core/class-builtin.php:832
4306
+ msgid "Male"
4307
+ msgstr ""
4308
+
4309
+ #: includes/core/class-builtin.php:832
4310
+ msgid "Female"
4311
+ msgstr ""
4312
+
4313
+ #: includes/core/class-builtin.php:836 includes/core/class-builtin.php:839
4314
+ msgid "Country"
4315
+ msgstr ""
4316
+
4317
+ #: includes/core/class-builtin.php:840
4318
+ msgid "Choose a Country"
4319
+ msgstr ""
4320
+
4321
+ #: includes/core/class-builtin.php:848 includes/core/class-builtin.php:851
4322
+ msgid "Facebook"
4323
+ msgstr ""
4324
+
4325
+ #: includes/core/class-builtin.php:866 includes/core/class-builtin.php:869
4326
+ msgid "Twitter"
4327
+ msgstr ""
4328
+
4329
+ #: includes/core/class-builtin.php:884 includes/core/class-builtin.php:887
4330
+ msgid "LinkedIn"
4331
+ msgstr ""
4332
+
4333
+ #: includes/core/class-builtin.php:902 includes/core/class-builtin.php:905
4334
+ msgid "Google+"
4335
+ msgstr ""
4336
+
4337
+ #: includes/core/class-builtin.php:920 includes/core/class-builtin.php:923
4338
+ msgid "Instagram"
4339
+ msgstr ""
4340
+
4341
+ #: includes/core/class-builtin.php:938 includes/core/class-builtin.php:941
4342
+ #: includes/core/class-builtin.php:1331
4343
+ msgid "Skype ID"
4344
+ msgstr ""
4345
+
4346
+ #: includes/core/class-builtin.php:953 includes/core/class-builtin.php:956
4347
+ msgid "YouTube"
4348
+ msgstr ""
4349
+
4350
+ #: includes/core/class-builtin.php:971 includes/core/class-builtin.php:974
4351
+ msgid "SoundCloud"
4352
+ msgstr ""
4353
+
4354
+ #: includes/core/class-builtin.php:989 includes/core/class-builtin.php:992
4355
+ msgid "VKontakte"
4356
+ msgstr ""
4357
+
4358
+ #: includes/core/class-builtin.php:1007
4359
+ msgid "Roles (Dropdown)"
4360
+ msgstr ""
4361
+
4362
+ #: includes/core/class-builtin.php:1010 includes/core/class-builtin.php:1022
4363
+ msgid "Account Type"
4364
+ msgstr ""
4365
+
4366
+ #: includes/core/class-builtin.php:1019
4367
+ msgid "Roles (Radio)"
4368
+ msgstr ""
4369
+
4370
+ #: includes/core/class-builtin.php:1030
4371
+ msgid "Languages"
4372
+ msgstr ""
4373
+
4374
+ #: includes/core/class-builtin.php:1033
4375
+ msgid "Languages Spoken"
4376
+ msgstr ""
4377
+
4378
+ #: includes/core/class-builtin.php:1034
4379
+ msgid "Select languages"
4380
+ msgstr ""
4381
+
4382
+ #: includes/core/class-builtin.php:1042 includes/core/class-builtin.php:1045
4383
+ #: includes/core/class-builtin.php:1330
4384
+ msgid "Phone Number"
4385
+ msgstr ""
4386
+
4387
+ #: includes/core/class-builtin.php:1054 includes/core/class-builtin.php:1057
4388
+ msgid "Mobile Number"
4389
+ msgstr ""
4390
+
4391
+ #: includes/core/class-builtin.php:1068
4392
+ msgid "Profile Photo"
4393
+ msgstr ""
4394
+
4395
+ #: includes/core/class-builtin.php:1071
4396
+ msgid "Change your profile photo"
4397
+ msgstr ""
4398
+
4399
+ #: includes/core/class-builtin.php:1072
4400
+ msgid "Upload your photo here"
4401
+ msgstr ""
4402
+
4403
+ #: includes/core/class-builtin.php:1082
4404
+ msgid "Cover Photo"
4405
+ msgstr ""
4406
+
4407
+ #: includes/core/class-builtin.php:1085
4408
+ #: includes/core/um-actions-profile.php:563
4409
+ msgid "Change your cover photo"
4410
+ msgstr ""
4411
+
4412
+ #: includes/core/class-builtin.php:1086
4413
+ msgid "Upload profile cover here"
4414
+ msgstr ""
4415
+
4416
+ #: includes/core/class-builtin.php:1100
4417
+ msgid "Enter your username or email"
4418
+ msgstr ""
4419
+
4420
+ #: includes/core/class-builtin.php:1110 includes/core/class-builtin.php:1113
4421
+ msgid "Profile Privacy"
4422
+ msgstr ""
4423
+
4424
+ #: includes/core/class-builtin.php:1114
4425
+ msgid "Who can see your public profile?"
4426
+ msgstr ""
4427
+
4428
+ #: includes/core/class-builtin.php:1126 includes/core/class-builtin.php:1129
4429
+ msgid "Hide my profile from directory"
4430
+ msgstr ""
4431
+
4432
+ #: includes/core/class-builtin.php:1130
4433
+ msgid "Here you can hide yourself from appearing in public directory"
4434
+ msgstr ""
4435
+
4436
+ #: includes/core/class-builtin.php:1145
4437
+ msgid ""
4438
+ "If you confirm, everything related to your profile will be deleted "
4439
+ "permanently from the site"
4440
+ msgstr ""
4441
+
4442
+ #: includes/core/class-builtin.php:1320
4443
+ msgid "Alphabetic value only"
4444
+ msgstr ""
4445
+
4446
+ #: includes/core/class-builtin.php:1321
4447
+ msgid "Alpha-numeric value"
4448
+ msgstr ""
4449
+
4450
+ #: includes/core/class-builtin.php:1322
4451
+ msgid "English letters only"
4452
+ msgstr ""
4453
+
4454
+ #: includes/core/class-builtin.php:1323
4455
+ msgid "Facebook URL"
4456
+ msgstr ""
4457
+
4458
+ #: includes/core/class-builtin.php:1324
4459
+ msgid "Google+ URL"
4460
+ msgstr ""
4461
+
4462
+ #: includes/core/class-builtin.php:1325
4463
+ msgid "Instagram URL"
4464
+ msgstr ""
4465
+
4466
+ #: includes/core/class-builtin.php:1326
4467
+ msgid "LinkedIn URL"
4468
+ msgstr ""
4469
+
4470
+ #: includes/core/class-builtin.php:1327
4471
+ msgid "VKontakte URL"
4472
+ msgstr ""
4473
+
4474
+ #: includes/core/class-builtin.php:1328
4475
+ msgid "Lowercase only"
4476
+ msgstr ""
4477
+
4478
+ #: includes/core/class-builtin.php:1329
4479
+ msgid "Numeric value only"
4480
+ msgstr ""
4481
+
4482
+ #: includes/core/class-builtin.php:1332
4483
+ msgid "SoundCloud Profile"
4484
+ msgstr ""
4485
+
4486
+ #: includes/core/class-builtin.php:1333
4487
+ msgid "Twitter URL"
4488
+ msgstr ""
4489
+
4490
+ #: includes/core/class-builtin.php:1334
4491
+ msgid "Unique E-mail"
4492
+ msgstr ""
4493
+
4494
+ #: includes/core/class-builtin.php:1335
4495
+ msgid "Unique Metakey value"
4496
+ msgstr ""
4497
+
4498
+ #: includes/core/class-builtin.php:1336
4499
+ msgid "Unique Username"
4500
+ msgstr ""
4501
+
4502
+ #: includes/core/class-builtin.php:1337
4503
+ msgid "Unique Username/E-mail"
4504
+ msgstr ""
4505
+
4506
+ #: includes/core/class-builtin.php:1339
4507
+ msgid "YouTube Profile"
4508
+ msgstr ""
4509
+
4510
+ #: includes/core/class-builtin.php:1340
4511
+ msgid "Custom Validation"
4512
+ msgstr ""
4513
+
4514
+ #: includes/core/class-builtin.php:1379
4515
+ msgid "Afar"
4516
+ msgstr ""
4517
+
4518
+ #: includes/core/class-builtin.php:1380
4519
+ msgid "Abkhazian"
4520
+ msgstr ""
4521
+
4522
+ #: includes/core/class-builtin.php:1381
4523
+ msgid "Avestan"
4524
+ msgstr ""
4525
+
4526
+ #: includes/core/class-builtin.php:1382
4527
+ msgid "Afrikaans"
4528
+ msgstr ""
4529
+
4530
+ #: includes/core/class-builtin.php:1383
4531
+ msgid "Akan"
4532
+ msgstr ""
4533
+
4534
+ #: includes/core/class-builtin.php:1384
4535
+ msgid "Amharic"
4536
+ msgstr ""
4537
+
4538
+ #: includes/core/class-builtin.php:1385
4539
+ msgid "Aragonese"
4540
+ msgstr ""
4541
+
4542
+ #: includes/core/class-builtin.php:1386
4543
+ msgid "Arabic"
4544
+ msgstr ""
4545
+
4546
+ #: includes/core/class-builtin.php:1387
4547
+ msgid "Assamese"
4548
+ msgstr ""
4549
+
4550
+ #: includes/core/class-builtin.php:1388
4551
+ msgid "Avaric"
4552
+ msgstr ""
4553
+
4554
+ #: includes/core/class-builtin.php:1389
4555
+ msgid "Aymara"
4556
+ msgstr ""
4557
+
4558
+ #: includes/core/class-builtin.php:1390
4559
+ msgid "Azerbaijani"
4560
+ msgstr ""
4561
+
4562
+ #: includes/core/class-builtin.php:1391
4563
+ msgid "Bashkir"
4564
+ msgstr ""
4565
+
4566
+ #: includes/core/class-builtin.php:1392
4567
+ msgid "Belarusian"
4568
+ msgstr ""
4569
+
4570
+ #: includes/core/class-builtin.php:1393
4571
+ msgid "Bulgarian"
4572
+ msgstr ""
4573
+
4574
+ #: includes/core/class-builtin.php:1394
4575
+ msgid "Bihari"
4576
+ msgstr ""
4577
+
4578
+ #: includes/core/class-builtin.php:1395
4579
+ msgid "Bislama"
4580
+ msgstr ""
4581
+
4582
+ #: includes/core/class-builtin.php:1396
4583
+ msgid "Bambara"
4584
+ msgstr ""
4585
+
4586
+ #: includes/core/class-builtin.php:1397
4587
+ msgid "Bengali"
4588
+ msgstr ""
4589
+
4590
+ #: includes/core/class-builtin.php:1398
4591
+ msgid "Tibetan"
4592
+ msgstr ""
4593
+
4594
+ #: includes/core/class-builtin.php:1399
4595
+ msgid "Breton"
4596
+ msgstr ""
4597
+
4598
+ #: includes/core/class-builtin.php:1400
4599
+ msgid "Bosnian"
4600
+ msgstr ""
4601
+
4602
+ #: includes/core/class-builtin.php:1401
4603
+ msgid "Catalan"
4604
+ msgstr ""
4605
+
4606
+ #: includes/core/class-builtin.php:1402
4607
+ msgid "Chechen"
4608
+ msgstr ""
4609
+
4610
+ #: includes/core/class-builtin.php:1403
4611
+ msgid "Chamorro"
4612
+ msgstr ""
4613
+
4614
+ #: includes/core/class-builtin.php:1404
4615
+ msgid "Corsican"
4616
+ msgstr ""
4617
+
4618
+ #: includes/core/class-builtin.php:1405
4619
+ msgid "Cree"
4620
+ msgstr ""
4621
+
4622
+ #: includes/core/class-builtin.php:1406
4623
+ msgid "Czech"
4624
+ msgstr ""
4625
+
4626
+ #: includes/core/class-builtin.php:1407
4627
+ msgid "Church Slavic"
4628
+ msgstr ""
4629
+
4630
+ #: includes/core/class-builtin.php:1408
4631
+ msgid "Chuvash"
4632
+ msgstr ""
4633
+
4634
+ #: includes/core/class-builtin.php:1409
4635
+ msgid "Welsh"
4636
+ msgstr ""
4637
+
4638
+ #: includes/core/class-builtin.php:1410
4639
+ msgid "Danish"
4640
+ msgstr ""
4641
+
4642
+ #: includes/core/class-builtin.php:1411
4643
+ msgid "German"
4644
+ msgstr ""
4645
+
4646
+ #: includes/core/class-builtin.php:1412
4647
+ msgid "Divehi"
4648
+ msgstr ""
4649
+
4650
+ #: includes/core/class-builtin.php:1413
4651
+ msgid "Dzongkha"
4652
+ msgstr ""
4653
+
4654
+ #: includes/core/class-builtin.php:1414
4655
+ msgid "Ewe"
4656
+ msgstr ""
4657
+
4658
+ #: includes/core/class-builtin.php:1415
4659
+ msgid "Greek"
4660
+ msgstr ""
4661
+
4662
+ #: includes/core/class-builtin.php:1416
4663
+ msgid "English"
4664
+ msgstr ""
4665
+
4666
+ #: includes/core/class-builtin.php:1417
4667
+ msgid "Esperanto"
4668
+ msgstr ""
4669
+
4670
+ #: includes/core/class-builtin.php:1418
4671
+ msgid "Spanish"
4672
+ msgstr ""
4673
+
4674
+ #: includes/core/class-builtin.php:1419
4675
+ msgid "Estonian"
4676
+ msgstr ""
4677
+
4678
+ #: includes/core/class-builtin.php:1420
4679
+ msgid "Basque"
4680
+ msgstr ""
4681
+
4682
+ #: includes/core/class-builtin.php:1421
4683
+ msgid "Persian"
4684
+ msgstr ""
4685
+
4686
+ #: includes/core/class-builtin.php:1422
4687
+ msgid "Fulah"
4688
+ msgstr ""
4689
+
4690
+ #: includes/core/class-builtin.php:1423
4691
+ msgid "Finnish"
4692
+ msgstr ""
4693
+
4694
+ #: includes/core/class-builtin.php:1424
4695
+ msgid "Fijian"
4696
+ msgstr ""
4697
+
4698
+ #: includes/core/class-builtin.php:1425
4699
+ msgid "Faroese"
4700
+ msgstr ""
4701
+
4702
+ #: includes/core/class-builtin.php:1426
4703
+ msgid "French"
4704
+ msgstr ""
4705
+
4706
+ #: includes/core/class-builtin.php:1427
4707
+ msgid "Western Frisian"
4708
+ msgstr ""
4709
+
4710
+ #: includes/core/class-builtin.php:1428
4711
+ msgid "Irish"
4712
+ msgstr ""
4713
+
4714
+ #: includes/core/class-builtin.php:1429
4715
+ msgid "Scottish Gaelic"
4716
+ msgstr ""
4717
+
4718
+ #: includes/core/class-builtin.php:1430
4719
+ msgid "Galician"
4720
+ msgstr ""
4721
+
4722
+ #: includes/core/class-builtin.php:1431
4723
+ msgid "Guarani"
4724
+ msgstr ""
4725
+
4726
+ #: includes/core/class-builtin.php:1432
4727
+ msgid "Gujarati"
4728
+ msgstr ""
4729
+
4730
+ #: includes/core/class-builtin.php:1433
4731
+ msgid "Manx"
4732
+ msgstr ""
4733
+
4734
+ #: includes/core/class-builtin.php:1434
4735
+ msgid "Hausa"
4736
+ msgstr ""
4737
+
4738
+ #: includes/core/class-builtin.php:1435
4739
+ msgid "Hebrew"
4740
+ msgstr ""
4741
+
4742
+ #: includes/core/class-builtin.php:1436
4743
+ msgid "Hindi"
4744
+ msgstr ""
4745
+
4746
+ #: includes/core/class-builtin.php:1437
4747
+ msgid "Hiri Motu"
4748
+ msgstr ""
4749
+
4750
+ #: includes/core/class-builtin.php:1438
4751
+ msgid "Croatian"
4752
+ msgstr ""
4753
+
4754
+ #: includes/core/class-builtin.php:1439
4755
+ msgid "Haitian"
4756
+ msgstr ""
4757
+
4758
+ #: includes/core/class-builtin.php:1440
4759
+ msgid "Hungarian"
4760
+ msgstr ""
4761
+
4762
+ #: includes/core/class-builtin.php:1441
4763
+ msgid "Armenian"
4764
+ msgstr ""
4765
+
4766
+ #: includes/core/class-builtin.php:1442
4767
+ msgid "Herero"
4768
+ msgstr ""
4769
+
4770
+ #: includes/core/class-builtin.php:1443
4771
+ msgid "Interlingua (International Auxiliary Language Association)"
4772
+ msgstr ""
4773
+
4774
+ #: includes/core/class-builtin.php:1444
4775
+ msgid "Indonesian"
4776
+ msgstr ""
4777
+
4778
+ #: includes/core/class-builtin.php:1445
4779
+ msgid "Interlingue"
4780
+ msgstr ""
4781
+
4782
+ #: includes/core/class-builtin.php:1446
4783
+ msgid "Igbo"
4784
+ msgstr ""
4785
+
4786
+ #: includes/core/class-builtin.php:1447
4787
+ msgid "Sichuan Yi"
4788
+ msgstr ""
4789
+
4790
+ #: includes/core/class-builtin.php:1448
4791
+ msgid "Inupiaq"
4792
+ msgstr ""
4793
+
4794
+ #: includes/core/class-builtin.php:1449
4795
+ msgid "Ido"
4796
+ msgstr ""
4797
+
4798
+ #: includes/core/class-builtin.php:1450
4799
+ msgid "Icelandic"
4800
+ msgstr ""
4801
+
4802
+ #: includes/core/class-builtin.php:1451
4803
+ msgid "Italian"
4804
+ msgstr ""
4805
+
4806
+ #: includes/core/class-builtin.php:1452
4807
+ msgid "Inuktitut"
4808
+ msgstr ""
4809
+
4810
+ #: includes/core/class-builtin.php:1453
4811
+ msgid "Japanese"
4812
+ msgstr ""
4813
+
4814
+ #: includes/core/class-builtin.php:1454
4815
+ msgid "Javanese"
4816
+ msgstr ""
4817
+
4818
+ #: includes/core/class-builtin.php:1455
4819
+ msgid "Georgian"
4820
+ msgstr ""
4821
+
4822
+ #: includes/core/class-builtin.php:1456
4823
+ msgid "Kongo"
4824
+ msgstr ""
4825
+
4826
+ #: includes/core/class-builtin.php:1457
4827
+ msgid "Kikuyu"
4828
+ msgstr ""
4829
+
4830
+ #: includes/core/class-builtin.php:1458
4831
+ msgid "Kwanyama"
4832
+ msgstr ""
4833
+
4834
+ #: includes/core/class-builtin.php:1459
4835
+ msgid "Kazakh"
4836
+ msgstr ""
4837
+
4838
+ #: includes/core/class-builtin.php:1460
4839
+ msgid "Kalaallisut"
4840
+ msgstr ""
4841
+
4842
+ #: includes/core/class-builtin.php:1461
4843
+ msgid "Khmer"
4844
+ msgstr ""
4845
+
4846
+ #: includes/core/class-builtin.php:1462
4847
+ msgid "Kannada"
4848
+ msgstr ""
4849
+
4850
+ #: includes/core/class-builtin.php:1463
4851
+ msgid "Korean"
4852
+ msgstr ""
4853
+
4854
+ #: includes/core/class-builtin.php:1464
4855
+ msgid "Kanuri"
4856
+ msgstr ""
4857
+
4858
+ #: includes/core/class-builtin.php:1465
4859
+ msgid "Kashmiri"
4860
+ msgstr ""
4861
+
4862
+ #: includes/core/class-builtin.php:1466
4863
+ msgid "Kurdish"
4864
+ msgstr ""
4865
+
4866
+ #: includes/core/class-builtin.php:1467
4867
+ msgid "Komi"
4868
+ msgstr ""
4869
+
4870
+ #: includes/core/class-builtin.php:1468
4871
+ msgid "Cornish"
4872
+ msgstr ""
4873
+
4874
+ #: includes/core/class-builtin.php:1469
4875
+ msgid "Kirghiz"
4876
+ msgstr ""
4877
+
4878
+ #: includes/core/class-builtin.php:1470
4879
+ msgid "Latin"
4880
+ msgstr ""
4881
+
4882
+ #: includes/core/class-builtin.php:1471
4883
+ msgid "Luxembourgish"
4884
+ msgstr ""
4885
+
4886
+ #: includes/core/class-builtin.php:1472
4887
+ msgid "Ganda"
4888
+ msgstr ""
4889
+
4890
+ #: includes/core/class-builtin.php:1473
4891
+ msgid "Limburgish"
4892
+ msgstr ""
4893
+
4894
+ #: includes/core/class-builtin.php:1474
4895
+ msgid "Lingala"
4896
+ msgstr ""
4897
+
4898
+ #: includes/core/class-builtin.php:1475
4899
+ msgid "Lao"
4900
+ msgstr ""
4901
+
4902
+ #: includes/core/class-builtin.php:1476
4903
+ msgid "Lithuanian"
4904
+ msgstr ""
4905
+
4906
+ #: includes/core/class-builtin.php:1477
4907
+ msgid "Luba-Katanga"
4908
+ msgstr ""
4909
+
4910
+ #: includes/core/class-builtin.php:1478
4911
+ msgid "Latvian"
4912
+ msgstr ""
4913
+
4914
+ #: includes/core/class-builtin.php:1479
4915
+ msgid "Malagasy"
4916
+ msgstr ""
4917
+
4918
+ #: includes/core/class-builtin.php:1480
4919
+ msgid "Marshallese"
4920
+ msgstr ""
4921
+
4922
+ #: includes/core/class-builtin.php:1481
4923
+ msgid "Maori"
4924
+ msgstr ""
4925
+
4926
+ #: includes/core/class-builtin.php:1482
4927
+ msgid "Macedonian"
4928
+ msgstr ""
4929
+
4930
+ #: includes/core/class-builtin.php:1483
4931
+ msgid "Malayalam"
4932
+ msgstr ""
4933
+
4934
+ #: includes/core/class-builtin.php:1484
4935
+ msgid "Mongolian"
4936
+ msgstr ""
4937
+
4938
+ #: includes/core/class-builtin.php:1485
4939
+ msgid "Marathi"
4940
+ msgstr ""
4941
+
4942
+ #: includes/core/class-builtin.php:1486
4943
+ msgid "Malay"
4944
+ msgstr ""
4945
+
4946
+ #: includes/core/class-builtin.php:1487
4947
+ msgid "Maltese"
4948
+ msgstr ""
4949
+
4950
+ #: includes/core/class-builtin.php:1488
4951
+ msgid "Burmese"
4952
+ msgstr ""
4953
+
4954
+ #: includes/core/class-builtin.php:1489 includes/core/class-builtin.php:1720
4955
+ msgid "Nauru"
4956
+ msgstr ""
4957
+
4958
+ #: includes/core/class-builtin.php:1490
4959
+ msgid "Norwegian Bokmal"
4960
+ msgstr ""
4961
+
4962
+ #: includes/core/class-builtin.php:1491
4963
+ msgid "North Ndebele"
4964
+ msgstr ""
4965
+
4966
+ #: includes/core/class-builtin.php:1492
4967
+ msgid "Nepali"
4968
+ msgstr ""
4969
+
4970
+ #: includes/core/class-builtin.php:1493
4971
+ msgid "Ndonga"
4972
+ msgstr ""
4973
+
4974
+ #: includes/core/class-builtin.php:1494
4975
+ msgid "Dutch"
4976
+ msgstr ""
4977
+
4978
+ #: includes/core/class-builtin.php:1495
4979
+ msgid "Norwegian Nynorsk"
4980
+ msgstr ""
4981
+
4982
+ #: includes/core/class-builtin.php:1496
4983
+ msgid "Norwegian"
4984
+ msgstr ""
4985
+
4986
+ #: includes/core/class-builtin.php:1497
4987
+ msgid "South Ndebele"
4988
+ msgstr ""
4989
+
4990
+ #: includes/core/class-builtin.php:1498
4991
+ msgid "Navajo"
4992
+ msgstr ""
4993
+
4994
+ #: includes/core/class-builtin.php:1499
4995
+ msgid "Chichewa"
4996
+ msgstr ""
4997
+
4998
+ #: includes/core/class-builtin.php:1500
4999
+ msgid "Occitan"
5000
+ msgstr ""
5001
+
5002
+ #: includes/core/class-builtin.php:1501
5003
+ msgid "Ojibwa"
5004
+ msgstr ""
5005
+
5006
+ #: includes/core/class-builtin.php:1502
5007
+ msgid "Oromo"
5008
+ msgstr ""
5009
+
5010
+ #: includes/core/class-builtin.php:1503
5011
+ msgid "Oriya"
5012
+ msgstr ""
5013
+
5014
+ #: includes/core/class-builtin.php:1504
5015
+ msgid "Ossetian"
5016
+ msgstr ""
5017
+
5018
+ #: includes/core/class-builtin.php:1505
5019
+ msgid "Panjabi"
5020
+ msgstr ""
5021
+
5022
+ #: includes/core/class-builtin.php:1506
5023
+ msgid "Pali"
5024
+ msgstr ""
5025
+
5026
+ #: includes/core/class-builtin.php:1507
5027
+ msgid "Polish"
5028
+ msgstr ""
5029
+
5030
+ #: includes/core/class-builtin.php:1508
5031
+ msgid "Pashto"
5032
+ msgstr ""
5033
+
5034
+ #: includes/core/class-builtin.php:1509
5035
+ msgid "Portuguese"
5036
+ msgstr ""
5037
+
5038
+ #: includes/core/class-builtin.php:1510
5039
+ msgid "Quechua"
5040
+ msgstr ""
5041
+
5042
+ #: includes/core/class-builtin.php:1511
5043
+ msgid "Raeto-Romance"
5044
+ msgstr ""
5045
+
5046
+ #: includes/core/class-builtin.php:1512
5047
+ msgid "Kirundi"
5048
+ msgstr ""
5049
+
5050
+ #: includes/core/class-builtin.php:1513
5051
+ msgid "Romanian"
5052
+ msgstr ""
5053
+
5054
+ #: includes/core/class-builtin.php:1514
5055
+ msgid "Russian"
5056
+ msgstr ""
5057
+
5058
+ #: includes/core/class-builtin.php:1515
5059
+ msgid "Kinyarwanda"
5060
+ msgstr ""
5061
+
5062
+ #: includes/core/class-builtin.php:1516
5063
+ msgid "Sanskrit"
5064
+ msgstr ""
5065
+
5066
+ #: includes/core/class-builtin.php:1517
5067
+ msgid "Sardinian"
5068
+ msgstr ""
5069
+
5070
+ #: includes/core/class-builtin.php:1518
5071
+ msgid "Sindhi"
5072
+ msgstr ""
5073
+
5074
+ #: includes/core/class-builtin.php:1519
5075
+ msgid "Northern Sami"
5076
+ msgstr ""
5077
+
5078
+ #: includes/core/class-builtin.php:1520
5079
+ msgid "Sango"
5080
+ msgstr ""
5081
+
5082
+ #: includes/core/class-builtin.php:1521
5083
+ msgid "Sinhala"
5084
+ msgstr ""
5085
+
5086
+ #: includes/core/class-builtin.php:1522
5087
+ msgid "Slovak"
5088
+ msgstr ""
5089
+
5090
+ #: includes/core/class-builtin.php:1523
5091
+ msgid "Slovenian"
5092
+ msgstr ""
5093
+
5094
+ #: includes/core/class-builtin.php:1524
5095
+ msgid "Samoan"
5096
+ msgstr ""
5097
+
5098
+ #: includes/core/class-builtin.php:1525
5099
+ msgid "Shona"
5100
+ msgstr ""
5101
+
5102
+ #: includes/core/class-builtin.php:1526
5103
+ msgid "Somali"
5104
+ msgstr ""
5105
+
5106
+ #: includes/core/class-builtin.php:1527
5107
+ msgid "Albanian"
5108
+ msgstr ""
5109
+
5110
+ #: includes/core/class-builtin.php:1528
5111
+ msgid "Serbian"
5112
+ msgstr ""
5113
+
5114
+ #: includes/core/class-builtin.php:1529
5115
+ msgid "Swati"
5116
+ msgstr ""
5117
+
5118
+ #: includes/core/class-builtin.php:1530
5119
+ msgid "Southern Sotho"
5120
+ msgstr ""
5121
+
5122
+ #: includes/core/class-builtin.php:1531
5123
+ msgid "Sundanese"
5124
+ msgstr ""
5125
+
5126
+ #: includes/core/class-builtin.php:1532
5127
+ msgid "Swedish"
5128
+ msgstr ""
5129
+
5130
+ #: includes/core/class-builtin.php:1533
5131
+ msgid "Swahili"
5132
+ msgstr ""
5133
+
5134
+ #: includes/core/class-builtin.php:1534
5135
+ msgid "Tamil"
5136
+ msgstr ""
5137
+
5138
+ #: includes/core/class-builtin.php:1535
5139
+ msgid "Telugu"
5140
+ msgstr ""
5141
+
5142
+ #: includes/core/class-builtin.php:1536
5143
+ msgid "Tajik"
5144
+ msgstr ""
5145
+
5146
+ #: includes/core/class-builtin.php:1537
5147
+ msgid "Thai"
5148
+ msgstr ""
5149
+
5150
+ #: includes/core/class-builtin.php:1538
5151
+ msgid "Tigrinya"
5152
+ msgstr ""
5153
+
5154
+ #: includes/core/class-builtin.php:1539
5155
+ msgid "Turkmen"
5156
+ msgstr ""
5157
+
5158
+ #: includes/core/class-builtin.php:1540
5159
+ msgid "Tagalog"
5160
+ msgstr ""
5161
+
5162
+ #: includes/core/class-builtin.php:1541
5163
+ msgid "Tswana"
5164
+ msgstr ""
5165
+
5166
+ #: includes/core/class-builtin.php:1542 includes/core/class-builtin.php:1790
5167
+ msgid "Tonga"
5168
+ msgstr ""
5169
+
5170
+ #: includes/core/class-builtin.php:1543
5171
+ msgid "Turkish"
5172
+ msgstr ""
5173
+
5174
+ #: includes/core/class-builtin.php:1544
5175
+ msgid "Tsonga"
5176
+ msgstr ""
5177
+
5178
+ #: includes/core/class-builtin.php:1545
5179
+ msgid "Tatar"
5180
+ msgstr ""
5181
+
5182
+ #: includes/core/class-builtin.php:1546
5183
+ msgid "Twi"
5184
+ msgstr ""
5185
+
5186
+ #: includes/core/class-builtin.php:1547
5187
+ msgid "Tahitian"
5188
+ msgstr ""
5189
+
5190
+ #: includes/core/class-builtin.php:1548
5191
+ msgid "Uighur"
5192
+ msgstr ""
5193
+
5194
+ #: includes/core/class-builtin.php:1549
5195
+ msgid "Ukrainian"
5196
+ msgstr ""
5197
+
5198
+ #: includes/core/class-builtin.php:1550
5199
+ msgid "Urdu"
5200
+ msgstr ""
5201
+
5202
+ #: includes/core/class-builtin.php:1551
5203
+ msgid "Uzbek"
5204
+ msgstr ""
5205
+
5206
+ #: includes/core/class-builtin.php:1552
5207
+ msgid "Venda"
5208
+ msgstr ""
5209
+
5210
+ #: includes/core/class-builtin.php:1553
5211
+ msgid "Vietnamese"
5212
+ msgstr ""
5213
+
5214
+ #: includes/core/class-builtin.php:1554
5215
+ msgid "Volapuk"
5216
+ msgstr ""
5217
+
5218
+ #: includes/core/class-builtin.php:1555
5219
+ msgid "Walloon"
5220
+ msgstr ""
5221
+
5222
+ #: includes/core/class-builtin.php:1556
5223
+ msgid "Wolof"
5224
+ msgstr ""
5225
+
5226
+ #: includes/core/class-builtin.php:1557
5227
+ msgid "Xhosa"
5228
+ msgstr ""
5229
+
5230
+ #: includes/core/class-builtin.php:1558
5231
+ msgid "Yiddish"
5232
+ msgstr ""
5233
+
5234
+ #: includes/core/class-builtin.php:1559
5235
+ msgid "Yoruba"
5236
+ msgstr ""
5237
+
5238
+ #: includes/core/class-builtin.php:1560
5239
+ msgid "Zhuang"
5240
+ msgstr ""
5241
+
5242
+ #: includes/core/class-builtin.php:1561
5243
+ msgid "Chinese"
5244
+ msgstr ""
5245
+
5246
+ #: includes/core/class-builtin.php:1562
5247
+ msgid "Zulu"
5248
+ msgstr ""
5249
+
5250
+ #: includes/core/class-builtin.php:1568
5251
+ msgid "Afghanistan"
5252
+ msgstr ""
5253
+
5254
+ #: includes/core/class-builtin.php:1569
5255
+ msgid "Åland Islands"
5256
+ msgstr ""
5257
+
5258
+ #: includes/core/class-builtin.php:1570
5259
+ msgid "Albania"
5260
+ msgstr ""
5261
+
5262
+ #: includes/core/class-builtin.php:1571
5263
+ msgid "Algeria"
5264
+ msgstr ""
5265
+
5266
+ #: includes/core/class-builtin.php:1572
5267
+ msgid "American Samoa"
5268
+ msgstr ""
5269
+
5270
+ #: includes/core/class-builtin.php:1573
5271
+ msgid "Andorra"
5272
+ msgstr ""
5273
+
5274
+ #: includes/core/class-builtin.php:1574
5275
+ msgid "Angola"
5276
+ msgstr ""
5277
+
5278
+ #: includes/core/class-builtin.php:1575
5279
+ msgid "Anguilla"
5280
+ msgstr ""
5281
+
5282
+ #: includes/core/class-builtin.php:1576
5283
+ msgid "Antarctica"
5284
+ msgstr ""
5285
+
5286
+ #: includes/core/class-builtin.php:1577
5287
+ msgid "Antigua and Barbuda"
5288
+ msgstr ""
5289
+
5290
+ #: includes/core/class-builtin.php:1578
5291
+ msgid "Argentina"
5292
+ msgstr ""
5293
+
5294
+ #: includes/core/class-builtin.php:1579
5295
+ msgid "Armenia"
5296
+ msgstr ""
5297
+
5298
+ #: includes/core/class-builtin.php:1580
5299
+ msgid "Aruba"
5300
+ msgstr ""
5301
+
5302
+ #: includes/core/class-builtin.php:1581
5303
+ msgid "Australia"
5304
+ msgstr ""
5305
+
5306
+ #: includes/core/class-builtin.php:1582
5307
+ msgid "Austria"
5308
+ msgstr ""
5309
+
5310
+ #: includes/core/class-builtin.php:1583
5311
+ msgid "Azerbaijan"
5312
+ msgstr ""
5313
+
5314
+ #: includes/core/class-builtin.php:1584
5315
+ msgid "Bahamas"
5316
+ msgstr ""
5317
+
5318
+ #: includes/core/class-builtin.php:1585
5319
+ msgid "Bahrain"
5320
+ msgstr ""
5321
+
5322
+ #: includes/core/class-builtin.php:1586
5323
+ msgid "Bangladesh"
5324
+ msgstr ""
5325
+
5326
+ #: includes/core/class-builtin.php:1587
5327
+ msgid "Barbados"
5328
+ msgstr ""
5329
+
5330
+ #: includes/core/class-builtin.php:1588
5331
+ msgid "Belarus"
5332
+ msgstr ""
5333
+
5334
+ #: includes/core/class-builtin.php:1589
5335
+ msgid "Belgium"
5336
+ msgstr ""
5337
+
5338
+ #: includes/core/class-builtin.php:1590
5339
+ msgid "Belize"
5340
+ msgstr ""
5341
+
5342
+ #: includes/core/class-builtin.php:1591
5343
+ msgid "Benin"
5344
+ msgstr ""
5345
+
5346
+ #: includes/core/class-builtin.php:1592
5347
+ msgid "Bermuda"
5348
+ msgstr ""
5349
+
5350
+ #: includes/core/class-builtin.php:1593
5351
+ msgid "Bhutan"
5352
+ msgstr ""
5353
+
5354
+ #: includes/core/class-builtin.php:1594
5355
+ msgid "Bolivia, Plurinational State of"
5356
+ msgstr ""
5357
+
5358
+ #: includes/core/class-builtin.php:1595
5359
+ msgid "Bosnia and Herzegovina"
5360
+ msgstr ""
5361
+
5362
+ #: includes/core/class-builtin.php:1596
5363
+ msgid "Botswana"
5364
+ msgstr ""
5365
+
5366
+ #: includes/core/class-builtin.php:1597
5367
+ msgid "Bouvet Island"
5368
+ msgstr ""
5369
+
5370
+ #: includes/core/class-builtin.php:1598
5371
+ msgid "Brazil"
5372
+ msgstr ""
5373
+
5374
+ #: includes/core/class-builtin.php:1599
5375
+ msgid "British Indian Ocean Territory"
5376
+ msgstr ""
5377
+
5378
+ #: includes/core/class-builtin.php:1600
5379
+ msgid "Brunei Darussalam"
5380
+ msgstr ""
5381
+
5382
+ #: includes/core/class-builtin.php:1601
5383
+ msgid "Bulgaria"
5384
+ msgstr ""
5385
+
5386
+ #: includes/core/class-builtin.php:1602
5387
+ msgid "Burkina Faso"
5388
+ msgstr ""
5389
+
5390
+ #: includes/core/class-builtin.php:1603
5391
+ msgid "Burundi"
5392
+ msgstr ""
5393
+
5394
+ #: includes/core/class-builtin.php:1604
5395
+ msgid "Cambodia"
5396
+ msgstr ""
5397
+
5398
+ #: includes/core/class-builtin.php:1605
5399
+ msgid "Cameroon"
5400
+ msgstr ""
5401
+
5402
+ #: includes/core/class-builtin.php:1606
5403
+ msgid "Canada"
5404
+ msgstr ""
5405
+
5406
+ #: includes/core/class-builtin.php:1607
5407
+ msgid "Cape Verde"
5408
+ msgstr ""
5409
+
5410
+ #: includes/core/class-builtin.php:1608
5411
+ msgid "Cayman Islands"
5412
+ msgstr ""
5413
+
5414
+ #: includes/core/class-builtin.php:1609
5415
+ msgid "Central African Republic"
5416
+ msgstr ""
5417
+
5418
+ #: includes/core/class-builtin.php:1610
5419
+ msgid "Chad"
5420
+ msgstr ""
5421
+
5422
+ #: includes/core/class-builtin.php:1611
5423
+ msgid "Chile"
5424
+ msgstr ""
5425
+
5426
+ #: includes/core/class-builtin.php:1612
5427
+ msgid "China"
5428
+ msgstr ""
5429
+
5430
+ #: includes/core/class-builtin.php:1613
5431
+ msgid "Christmas Island"
5432
+ msgstr ""
5433
+
5434
+ #: includes/core/class-builtin.php:1614
5435
+ msgid "Cocos (Keeling) Islands"
5436
+ msgstr ""
5437
+
5438
+ #: includes/core/class-builtin.php:1615
5439
+ msgid "Colombia"
5440
+ msgstr ""
5441
+
5442
+ #: includes/core/class-builtin.php:1616
5443
+ msgid "Comoros"
5444
+ msgstr ""
5445
+
5446
+ #: includes/core/class-builtin.php:1617
5447
+ msgid "Congo"
5448
+ msgstr ""
5449
+
5450
+ #: includes/core/class-builtin.php:1618
5451
+ msgid "Congo, the Democratic Republic of the"
5452
+ msgstr ""
5453
+
5454
+ #: includes/core/class-builtin.php:1619
5455
+ msgid "Cook Islands"
5456
+ msgstr ""
5457
+
5458
+ #: includes/core/class-builtin.php:1620
5459
+ msgid "Costa Rica"
5460
+ msgstr ""
5461
+
5462
+ #: includes/core/class-builtin.php:1621
5463
+ msgid "Côte d'Ivoire"
5464
+ msgstr ""
5465
+
5466
+ #: includes/core/class-builtin.php:1622
5467
+ msgid "Croatia"
5468
+ msgstr ""
5469
+
5470
+ #: includes/core/class-builtin.php:1623
5471
+ msgid "Cuba"
5472
+ msgstr ""
5473
+
5474
+ #: includes/core/class-builtin.php:1624
5475
+ msgid "Cyprus"
5476
+ msgstr ""
5477
+
5478
+ #: includes/core/class-builtin.php:1625
5479
+ msgid "Czech Republic"
5480
+ msgstr ""
5481
+
5482
+ #: includes/core/class-builtin.php:1626
5483
+ msgid "Denmark"
5484
+ msgstr ""
5485
+
5486
+ #: includes/core/class-builtin.php:1627
5487
+ msgid "Djibouti"
5488
+ msgstr ""
5489
+
5490
+ #: includes/core/class-builtin.php:1628
5491
+ msgid "Dominica"
5492
+ msgstr ""
5493
+
5494
+ #: includes/core/class-builtin.php:1629
5495
+ msgid "Dominican Republic"
5496
+ msgstr ""
5497
+
5498
+ #: includes/core/class-builtin.php:1630
5499
+ msgid "Ecuador"
5500
+ msgstr ""
5501
+
5502
+ #: includes/core/class-builtin.php:1631
5503
+ msgid "Egypt"
5504
+ msgstr ""
5505
+
5506
+ #: includes/core/class-builtin.php:1632
5507
+ msgid "El Salvador"
5508
+ msgstr ""
5509
+
5510
+ #: includes/core/class-builtin.php:1633
5511
+ msgid "Equatorial Guinea"
5512
+ msgstr ""
5513
+
5514
+ #: includes/core/class-builtin.php:1634
5515
+ msgid "Eritrea"
5516
+ msgstr ""
5517
+
5518
+ #: includes/core/class-builtin.php:1635
5519
+ msgid "Estonia"
5520
+ msgstr ""
5521
+
5522
+ #: includes/core/class-builtin.php:1636
5523
+ msgid "Ethiopia"
5524
+ msgstr ""
5525
+
5526
+ #: includes/core/class-builtin.php:1637
5527
+ msgid "Falkland Islands (Malvinas)"
5528
+ msgstr ""
5529
+
5530
+ #: includes/core/class-builtin.php:1638
5531
+ msgid "Faroe Islands"
5532
+ msgstr ""
5533
+
5534
+ #: includes/core/class-builtin.php:1639
5535
+ msgid "Fiji"
5536
+ msgstr ""
5537
+
5538
+ #: includes/core/class-builtin.php:1640
5539
+ msgid "Finland"
5540
+ msgstr ""
5541
+
5542
+ #: includes/core/class-builtin.php:1641
5543
+ msgid "France"
5544
+ msgstr ""
5545
+
5546
+ #: includes/core/class-builtin.php:1642
5547
+ msgid "French Guiana"
5548
+ msgstr ""
5549
+
5550
+ #: includes/core/class-builtin.php:1643
5551
+ msgid "French Polynesia"
5552
+ msgstr ""
5553
+
5554
+ #: includes/core/class-builtin.php:1644
5555
+ msgid "French Southern Territories"
5556
+ msgstr ""
5557
+
5558
+ #: includes/core/class-builtin.php:1645
5559
+ msgid "Gabon"
5560
+ msgstr ""
5561
+
5562
+ #: includes/core/class-builtin.php:1646
5563
+ msgid "Gambia"
5564
+ msgstr ""
5565
+
5566
+ #: includes/core/class-builtin.php:1647
5567
+ msgid "Georgia"
5568
+ msgstr ""
5569
+
5570
+ #: includes/core/class-builtin.php:1648
5571
+ msgid "Germany"
5572
+ msgstr ""
5573
+
5574
+ #: includes/core/class-builtin.php:1649
5575
+ msgid "Ghana"
5576
+ msgstr ""
5577
+
5578
+ #: includes/core/class-builtin.php:1650
5579
+ msgid "Gibraltar"
5580
+ msgstr ""
5581
+
5582
+ #: includes/core/class-builtin.php:1651
5583
+ msgid "Greece"
5584
+ msgstr ""
5585
+
5586
+ #: includes/core/class-builtin.php:1652
5587
+ msgid "Greenland"
5588
+ msgstr ""
5589
+
5590
+ #: includes/core/class-builtin.php:1653
5591
+ msgid "Grenada"
5592
+ msgstr ""
5593
+
5594
+ #: includes/core/class-builtin.php:1654
5595
+ msgid "Guadeloupe"
5596
+ msgstr ""
5597
+
5598
+ #: includes/core/class-builtin.php:1655
5599
+ msgid "Guam"
5600
+ msgstr ""
5601
+
5602
+ #: includes/core/class-builtin.php:1656
5603
+ msgid "Guatemala"
5604
+ msgstr ""
5605
+
5606
+ #: includes/core/class-builtin.php:1657
5607
+ msgid "Guernsey"
5608
+ msgstr ""
5609
+
5610
+ #: includes/core/class-builtin.php:1658
5611
+ msgid "Guinea"
5612
+ msgstr ""
5613
+
5614
+ #: includes/core/class-builtin.php:1659
5615
+ msgid "Guinea-Bissau"
5616
+ msgstr ""
5617
+
5618
+ #: includes/core/class-builtin.php:1660
5619
+ msgid "Guyana"
5620
+ msgstr ""
5621
+
5622
+ #: includes/core/class-builtin.php:1661
5623
+ msgid "Haiti"
5624
+ msgstr ""
5625
+
5626
+ #: includes/core/class-builtin.php:1662
5627
+ msgid "Heard Island and McDonald Islands"
5628
+ msgstr ""
5629
+
5630
+ #: includes/core/class-builtin.php:1663
5631
+ msgid "Holy See (Vatican City State)"
5632
+ msgstr ""
5633
+
5634
+ #: includes/core/class-builtin.php:1664
5635
+ msgid "Honduras"
5636
+ msgstr ""
5637
+
5638
+ #: includes/core/class-builtin.php:1665
5639
+ msgid "Hong Kong"
5640
+ msgstr ""
5641
+
5642
+ #: includes/core/class-builtin.php:1666
5643
+ msgid "Hungary"
5644
+ msgstr ""
5645
+
5646
+ #: includes/core/class-builtin.php:1667
5647
+ msgid "Iceland"
5648
+ msgstr ""
5649
+
5650
+ #: includes/core/class-builtin.php:1668
5651
+ msgid "India"
5652
+ msgstr ""
5653
+
5654
+ #: includes/core/class-builtin.php:1669
5655
+ msgid "Indonesia"
5656
+ msgstr ""
5657
+
5658
+ #: includes/core/class-builtin.php:1670
5659
+ msgid "Iran, Islamic Republic of"
5660
+ msgstr ""
5661
+
5662
+ #: includes/core/class-builtin.php:1671
5663
+ msgid "Iraq"
5664
+ msgstr ""
5665
+
5666
+ #: includes/core/class-builtin.php:1672
5667
+ msgid "Ireland"
5668
+ msgstr ""
5669
+
5670
+ #: includes/core/class-builtin.php:1673
5671
+ msgid "Isle of Man"
5672
+ msgstr ""
5673
+
5674
+ #: includes/core/class-builtin.php:1674
5675
+ msgid "Israel"
5676
+ msgstr ""
5677
+
5678
+ #: includes/core/class-builtin.php:1675
5679
+ msgid "Italy"
5680
+ msgstr ""
5681
+
5682
+ #: includes/core/class-builtin.php:1676
5683
+ msgid "Jamaica"
5684
+ msgstr ""
5685
+
5686
+ #: includes/core/class-builtin.php:1677
5687
+ msgid "Japan"
5688
+ msgstr ""
5689
+
5690
+ #: includes/core/class-builtin.php:1678
5691
+ msgid "Jersey"
5692
+ msgstr ""
5693
+
5694
+ #: includes/core/class-builtin.php:1679
5695
+ msgid "Jordan"
5696
+ msgstr ""
5697
+
5698
+ #: includes/core/class-builtin.php:1680
5699
+ msgid "Kazakhstan"
5700
+ msgstr ""
5701
+
5702
+ #: includes/core/class-builtin.php:1681
5703
+ msgid "Kenya"
5704
+ msgstr ""
5705
+
5706
+ #: includes/core/class-builtin.php:1682
5707
+ msgid "Kiribati"
5708
+ msgstr ""
5709
+
5710
+ #: includes/core/class-builtin.php:1683
5711
+ msgid "Korea, Democratic People's Republic of"
5712
+ msgstr ""
5713
+
5714
+ #: includes/core/class-builtin.php:1684
5715
+ msgid "Korea, Republic of"
5716
+ msgstr ""
5717
+
5718
+ #: includes/core/class-builtin.php:1685
5719
+ msgid "Kuwait"
5720
+ msgstr ""
5721
+
5722
+ #: includes/core/class-builtin.php:1686
5723
+ msgid "Kyrgyzstan"
5724
+ msgstr ""
5725
+
5726
+ #: includes/core/class-builtin.php:1687
5727
+ msgid "Lao People's Democratic Republic"
5728
+ msgstr ""
5729
+
5730
+ #: includes/core/class-builtin.php:1688
5731
+ msgid "Latvia"
5732
+ msgstr ""
5733
+
5734
+ #: includes/core/class-builtin.php:1689
5735
+ msgid "Lebanon"
5736
+ msgstr ""
5737
+
5738
+ #: includes/core/class-builtin.php:1690
5739
+ msgid "Lesotho"
5740
+ msgstr ""
5741
+
5742
+ #: includes/core/class-builtin.php:1691
5743
+ msgid "Liberia"
5744
+ msgstr ""
5745
+
5746
+ #: includes/core/class-builtin.php:1692
5747
+ msgid "Libyan Arab Jamahiriya"
5748
+ msgstr ""
5749
+
5750
+ #: includes/core/class-builtin.php:1693
5751
+ msgid "Liechtenstein"
5752
+ msgstr ""
5753
+
5754
+ #: includes/core/class-builtin.php:1694
5755
+ msgid "Lithuania"
5756
+ msgstr ""
5757
+
5758
+ #: includes/core/class-builtin.php:1695
5759
+ msgid "Luxembourg"
5760
+ msgstr ""
5761
+
5762
+ #: includes/core/class-builtin.php:1696
5763
+ msgid "Macao"
5764
+ msgstr ""
5765
+
5766
+ #: includes/core/class-builtin.php:1697
5767
+ msgid "Macedonia, the former Yugoslav Republic of"
5768
+ msgstr ""
5769
+
5770
+ #: includes/core/class-builtin.php:1698
5771
+ msgid "Madagascar"
5772
+ msgstr ""
5773
+
5774
+ #: includes/core/class-builtin.php:1699
5775
+ msgid "Malawi"
5776
+ msgstr ""
5777
+
5778
+ #: includes/core/class-builtin.php:1700
5779
+ msgid "Malaysia"
5780
+ msgstr ""
5781
+
5782
+ #: includes/core/class-builtin.php:1701
5783
+ msgid "Maldives"
5784
+ msgstr ""
5785
+
5786
+ #: includes/core/class-builtin.php:1702
5787
+ msgid "Mali"
5788
+ msgstr ""
5789
+
5790
+ #: includes/core/class-builtin.php:1703
5791
+ msgid "Malta"
5792
+ msgstr ""
5793
+
5794
+ #: includes/core/class-builtin.php:1704
5795
+ msgid "Marshall Islands"
5796
+ msgstr ""
5797
+
5798
+ #: includes/core/class-builtin.php:1705
5799
+ msgid "Martinique"
5800
+ msgstr ""
5801
+
5802
+ #: includes/core/class-builtin.php:1706
5803
+ msgid "Mauritania"
5804
+ msgstr ""
5805
+
5806
+ #: includes/core/class-builtin.php:1707
5807
+ msgid "Mauritius"
5808
+ msgstr ""
5809
+
5810
+ #: includes/core/class-builtin.php:1708
5811
+ msgid "Mayotte"
5812
+ msgstr ""
5813
+
5814
+ #: includes/core/class-builtin.php:1709
5815
+ msgid "Mexico"
5816
+ msgstr ""
5817
+
5818
+ #: includes/core/class-builtin.php:1710
5819
+ msgid "Micronesia, Federated States of"
5820
+ msgstr ""
5821
+
5822
+ #: includes/core/class-builtin.php:1711
5823
+ msgid "Moldova, Republic of"
5824
+ msgstr ""
5825
+
5826
+ #: includes/core/class-builtin.php:1712
5827
+ msgid "Monaco"
5828
+ msgstr ""
5829
+
5830
+ #: includes/core/class-builtin.php:1713
5831
+ msgid "Mongolia"
5832
+ msgstr ""
5833
+
5834
+ #: includes/core/class-builtin.php:1714
5835
+ msgid "Montenegro"
5836
+ msgstr ""
5837
+
5838
+ #: includes/core/class-builtin.php:1715
5839
+ msgid "Montserrat"
5840
+ msgstr ""
5841
+
5842
+ #: includes/core/class-builtin.php:1716
5843
+ msgid "Morocco"
5844
+ msgstr ""
5845
+
5846
+ #: includes/core/class-builtin.php:1717
5847
+ msgid "Mozambique"
5848
+ msgstr ""
5849
+
5850
+ #: includes/core/class-builtin.php:1718
5851
+ msgid "Myanmar"
5852
+ msgstr ""
5853
+
5854
+ #: includes/core/class-builtin.php:1719
5855
+ msgid "Namibia"
5856
+ msgstr ""
5857
+
5858
+ #: includes/core/class-builtin.php:1721
5859
+ msgid "Nepal"
5860
+ msgstr ""
5861
+
5862
+ #: includes/core/class-builtin.php:1722
5863
+ msgid "Netherlands"
5864
+ msgstr ""
5865
+
5866
+ #: includes/core/class-builtin.php:1723
5867
+ msgid "Netherlands Antilles"
5868
+ msgstr ""
5869
+
5870
+ #: includes/core/class-builtin.php:1724
5871
+ msgid "New Caledonia"
5872
+ msgstr ""
5873
+
5874
+ #: includes/core/class-builtin.php:1725
5875
+ msgid "New Zealand"
5876
+ msgstr ""
5877
+
5878
+ #: includes/core/class-builtin.php:1726
5879
+ msgid "Nicaragua"
5880
+ msgstr ""
5881
+
5882
+ #: includes/core/class-builtin.php:1727
5883
+ msgid "Niger"
5884
+ msgstr ""
5885
+
5886
+ #: includes/core/class-builtin.php:1728
5887
+ msgid "Nigeria"
5888
+ msgstr ""
5889
+
5890
+ #: includes/core/class-builtin.php:1729
5891
+ msgid "Niue"
5892
+ msgstr ""
5893
+
5894
+ #: includes/core/class-builtin.php:1730
5895
+ msgid "Norfolk Island"
5896
+ msgstr ""
5897
+
5898
+ #: includes/core/class-builtin.php:1731
5899
+ msgid "Northern Mariana Islands"
5900
+ msgstr ""
5901
+
5902
+ #: includes/core/class-builtin.php:1732
5903
+ msgid "Norway"
5904
+ msgstr ""
5905
+
5906
+ #: includes/core/class-builtin.php:1733
5907
+ msgid "Oman"
5908
+ msgstr ""
5909
+
5910
+ #: includes/core/class-builtin.php:1734
5911
+ msgid "Pakistan"
5912
+ msgstr ""
5913
+
5914
+ #: includes/core/class-builtin.php:1735
5915
+ msgid "Palau"
5916
+ msgstr ""
5917
+
5918
+ #: includes/core/class-builtin.php:1736
5919
+ msgid "Palestine"
5920
+ msgstr ""
5921
+
5922
+ #: includes/core/class-builtin.php:1737
5923
+ msgid "Panama"
5924
+ msgstr ""
5925
+
5926
+ #: includes/core/class-builtin.php:1738
5927
+ msgid "Papua New Guinea"
5928
+ msgstr ""
5929
+
5930
+ #: includes/core/class-builtin.php:1739
5931
+ msgid "Paraguay"
5932
+ msgstr ""
5933
+
5934
+ #: includes/core/class-builtin.php:1740
5935
+ msgid "Peru"
5936
+ msgstr ""
5937
+
5938
+ #: includes/core/class-builtin.php:1741
5939
+ msgid "Philippines"
5940
+ msgstr ""
5941
+
5942
+ #: includes/core/class-builtin.php:1742
5943
+ msgid "Pitcairn"
5944
+ msgstr ""
5945
+
5946
+ #: includes/core/class-builtin.php:1743
5947
+ msgid "Poland"
5948
+ msgstr ""
5949
+
5950
+ #: includes/core/class-builtin.php:1744
5951
+ msgid "Portugal"
5952
+ msgstr ""
5953
+
5954
+ #: includes/core/class-builtin.php:1745
5955
+ msgid "Puerto Rico"
5956
+ msgstr ""
5957
+
5958
+ #: includes/core/class-builtin.php:1746
5959
+ msgid "Qatar"
5960
+ msgstr ""
5961
+
5962
+ #: includes/core/class-builtin.php:1747
5963
+ msgid "Réunion"
5964
+ msgstr ""
5965
+
5966
+ #: includes/core/class-builtin.php:1748
5967
+ msgid "Romania"
5968
+ msgstr ""
5969
+
5970
+ #: includes/core/class-builtin.php:1749
5971
+ msgid "Russian Federation"
5972
+ msgstr ""
5973
+
5974
+ #: includes/core/class-builtin.php:1750
5975
+ msgid "Rwanda"
5976
+ msgstr ""
5977
+
5978
+ #: includes/core/class-builtin.php:1751
5979
+ msgid "Saint Barthélemy"
5980
+ msgstr ""
5981
+
5982
+ #: includes/core/class-builtin.php:1752
5983
+ msgid "Saint Helena"
5984
+ msgstr ""
5985
+
5986
+ #: includes/core/class-builtin.php:1753
5987
+ msgid "Saint Kitts and Nevis"
5988
+ msgstr ""
5989
+
5990
+ #: includes/core/class-builtin.php:1754
5991
+ msgid "Saint Lucia"
5992
+ msgstr ""
5993
+
5994
+ #: includes/core/class-builtin.php:1755
5995
+ msgid "Saint Martin (French part)"
5996
+ msgstr ""
5997
+
5998
+ #: includes/core/class-builtin.php:1756
5999
+ msgid "Saint Pierre and Miquelon"
6000
+ msgstr ""
6001
+
6002
+ #: includes/core/class-builtin.php:1757
6003
+ msgid "Saint Vincent and the Grenadines"
6004
+ msgstr ""
6005
+
6006
+ #: includes/core/class-builtin.php:1758
6007
+ msgid "Samoa"
6008
+ msgstr ""
6009
+
6010
+ #: includes/core/class-builtin.php:1759
6011
+ msgid "San Marino"
6012
+ msgstr ""
6013
+
6014
+ #: includes/core/class-builtin.php:1760
6015
+ msgid "Sao Tome and Principe"
6016
+ msgstr ""
6017
+
6018
+ #: includes/core/class-builtin.php:1761
6019
+ msgid "Saudi Arabia"
6020
+ msgstr ""
6021
+
6022
+ #: includes/core/class-builtin.php:1762
6023
+ msgid "Senegal"
6024
+ msgstr ""
6025
+
6026
+ #: includes/core/class-builtin.php:1763
6027
+ msgid "Serbia"
6028
+ msgstr ""
6029
+
6030
+ #: includes/core/class-builtin.php:1764
6031
+ msgid "Seychelles"
6032
+ msgstr ""
6033
+
6034
+ #: includes/core/class-builtin.php:1765
6035
+ msgid "Sierra Leone"
6036
+ msgstr ""
6037
+
6038
+ #: includes/core/class-builtin.php:1766
6039
+ msgid "Singapore"
6040
+ msgstr ""
6041
+
6042
+ #: includes/core/class-builtin.php:1767
6043
+ msgid "Slovakia"
6044
+ msgstr ""
6045
+
6046
+ #: includes/core/class-builtin.php:1768
6047
+ msgid "Slovenia"
6048
+ msgstr ""
6049
+
6050
+ #: includes/core/class-builtin.php:1769
6051
+ msgid "Solomon Islands"
6052
+ msgstr ""
6053
+
6054
+ #: includes/core/class-builtin.php:1770
6055
+ msgid "Somalia"
6056
+ msgstr ""
6057
+
6058
+ #: includes/core/class-builtin.php:1771
6059
+ msgid "South Africa"
6060
+ msgstr ""
6061
+
6062
+ #: includes/core/class-builtin.php:1772
6063
+ msgid "South Georgia and the South Sandwich Islands"
6064
+ msgstr ""
6065
+
6066
+ #: includes/core/class-builtin.php:1773
6067
+ msgid "South Sudan"
6068
+ msgstr ""
6069
+
6070
+ #: includes/core/class-builtin.php:1774
6071
+ msgid "Spain"
6072
+ msgstr ""
6073
+
6074
+ #: includes/core/class-builtin.php:1775
6075
+ msgid "Sri Lanka"
6076
+ msgstr ""
6077
+
6078
+ #: includes/core/class-builtin.php:1776
6079
+ msgid "Sudan"
6080
+ msgstr ""
6081
+
6082
+ #: includes/core/class-builtin.php:1777
6083
+ msgid "Suriname"
6084
+ msgstr ""
6085
+
6086
+ #: includes/core/class-builtin.php:1778
6087
+ msgid "Svalbard and Jan Mayen"
6088
+ msgstr ""
6089
+
6090
+ #: includes/core/class-builtin.php:1779
6091
+ msgid "Swaziland"
6092
+ msgstr ""
6093
+
6094
+ #: includes/core/class-builtin.php:1780
6095
+ msgid "Sweden"
6096
+ msgstr ""
6097
+
6098
+ #: includes/core/class-builtin.php:1781
6099
+ msgid "Switzerland"
6100
+ msgstr ""
6101
+
6102
+ #: includes/core/class-builtin.php:1782
6103
+ msgid "Syrian Arab Republic"
6104
+ msgstr ""
6105
+
6106
+ #: includes/core/class-builtin.php:1783
6107
+ msgid "Taiwan, Province of China"
6108
+ msgstr ""
6109
+
6110
+ #: includes/core/class-builtin.php:1784
6111
+ msgid "Tajikistan"
6112
+ msgstr ""
6113
+
6114
+ #: includes/core/class-builtin.php:1785
6115
+ msgid "Tanzania, United Republic of"
6116
+ msgstr ""
6117
+
6118
+ #: includes/core/class-builtin.php:1786
6119
+ msgid "Thailand"
6120
+ msgstr ""
6121
+
6122
+ #: includes/core/class-builtin.php:1787
6123
+ msgid "Timor-Leste"
6124
+ msgstr ""
6125
+
6126
+ #: includes/core/class-builtin.php:1788
6127
+ msgid "Togo"
6128
+ msgstr ""
6129
+
6130
+ #: includes/core/class-builtin.php:1789
6131
+ msgid "Tokelau"
6132
+ msgstr ""
6133
+
6134
+ #: includes/core/class-builtin.php:1791
6135
+ msgid "Trinidad and Tobago"
6136
+ msgstr ""
6137
+
6138
+ #: includes/core/class-builtin.php:1792
6139
+ msgid "Tunisia"
6140
+ msgstr ""
6141
+
6142
+ #: includes/core/class-builtin.php:1793
6143
+ msgid "Turkey"
6144
+ msgstr ""
6145
+
6146
+ #: includes/core/class-builtin.php:1794
6147
+ msgid "Turkmenistan"
6148
+ msgstr ""
6149
+
6150
+ #: includes/core/class-builtin.php:1795
6151
+ msgid "Turks and Caicos Islands"
6152
+ msgstr ""
6153
+
6154
+ #: includes/core/class-builtin.php:1796
6155
+ msgid "Tuvalu"
6156
+ msgstr ""
6157
+
6158
+ #: includes/core/class-builtin.php:1797
6159
+ msgid "Uganda"
6160
+ msgstr ""
6161
+
6162
+ #: includes/core/class-builtin.php:1798
6163
+ msgid "Ukraine"
6164
+ msgstr ""
6165
+
6166
+ #: includes/core/class-builtin.php:1799
6167
+ msgid "United Arab Emirates"
6168
+ msgstr ""
6169
+
6170
+ #: includes/core/class-builtin.php:1800
6171
+ msgid "United Kingdom"
6172
+ msgstr ""
6173
+
6174
+ #: includes/core/class-builtin.php:1801
6175
+ msgid "United States"
6176
+ msgstr ""
6177
+
6178
+ #: includes/core/class-builtin.php:1802
6179
+ msgid "United States Minor Outlying Islands"
6180
+ msgstr ""
6181
+
6182
+ #: includes/core/class-builtin.php:1803
6183
+ msgid "Uruguay"
6184
+ msgstr ""
6185
+
6186
+ #: includes/core/class-builtin.php:1804
6187
+ msgid "Uzbekistan"
6188
+ msgstr ""
6189
+
6190
+ #: includes/core/class-builtin.php:1805
6191
+ msgid "Vanuatu"
6192
+ msgstr ""
6193
+
6194
+ #: includes/core/class-builtin.php:1806
6195
+ msgid "Venezuela, Bolivarian Republic of"
6196
+ msgstr ""
6197
+
6198
+ #: includes/core/class-builtin.php:1807
6199
+ msgid "Viet Nam"
6200
+ msgstr ""
6201
+
6202
+ #: includes/core/class-builtin.php:1808
6203
+ msgid "Virgin Islands, British"
6204
+ msgstr ""
6205
+
6206
+ #: includes/core/class-builtin.php:1809
6207
+ msgid "Virgin Islands, U.S."
6208
+ msgstr ""
6209
+
6210
+ #: includes/core/class-builtin.php:1810
6211
+ msgid "Wallis and Futuna"
6212
+ msgstr ""
6213
+
6214
+ #: includes/core/class-builtin.php:1811
6215
+ msgid "Western Sahara"
6216
+ msgstr ""
6217
+
6218
+ #: includes/core/class-builtin.php:1812
6219
+ msgid "Yemen"
6220
+ msgstr ""
6221
+
6222
+ #: includes/core/class-builtin.php:1813
6223
+ msgid "Zambia"
6224
+ msgstr ""
6225
+
6226
+ #: includes/core/class-builtin.php:1814
6227
+ msgid "Zimbabwe"
6228
+ msgstr ""
6229
+
6230
+ #: includes/core/class-common.php:55
6231
+ msgid "Form"
6232
+ msgstr ""
6233
+
6234
+ #: includes/core/class-common.php:57
6235
+ msgid "Add New Form"
6236
+ msgstr ""
6237
+
6238
+ #: includes/core/class-common.php:58
6239
+ msgid "Edit Form"
6240
+ msgstr ""
6241
+
6242
+ #: includes/core/class-common.php:59
6243
+ msgid "You did not create any forms yet"
6244
+ msgstr ""
6245
+
6246
+ #: includes/core/class-common.php:61
6247
+ msgid "Search Forms"
6248
+ msgstr ""
6249
+
6250
+ #: includes/core/class-common.php:85
6251
+ msgid "Member Directory"
6252
+ msgstr ""
6253
+
6254
+ #: includes/core/class-common.php:87
6255
+ msgid "Add New Member Directory"
6256
+ msgstr ""
6257
+
6258
+ #: includes/core/class-common.php:88
6259
+ msgid "Edit Member Directory"
6260
+ msgstr ""
6261
+
6262
+ #: includes/core/class-common.php:89
6263
+ msgid "You did not create any member directories yet"
6264
+ msgstr ""
6265
+
6266
+ #: includes/core/class-common.php:91
6267
+ msgid "Search Member Directories"
6268
+ msgstr ""
6269
+
6270
+ #: includes/core/class-cron.php:62
6271
+ msgid "Once Weekly"
6272
+ msgstr ""
6273
+
6274
+ #: includes/core/class-date-time.php:54
6275
+ msgid "just now"
6276
+ msgstr ""
6277
+
6278
+ #: includes/core/class-date-time.php:63
6279
+ #, php-format
6280
+ msgid "%s min"
6281
+ msgid_plural "%s mins"
6282
+ msgstr[0] ""
6283
+ msgstr[1] ""
6284
+
6285
+ #: includes/core/class-date-time.php:72
6286
+ #, php-format
6287
+ msgid "%s hr"
6288
+ msgid_plural "%s hrs"
6289
+ msgstr[0] ""
6290
+ msgstr[1] ""
6291
+
6292
+ #: includes/core/class-date-time.php:82
6293
+ #, php-format
6294
+ msgid "Yesterday at %s"
6295
+ msgstr ""
6296
+
6297
+ #: includes/core/class-date-time.php:84 includes/core/class-date-time.php:89
6298
+ #: includes/core/class-date-time.php:93 includes/core/class-date-time.php:97
6299
+ #, php-format
6300
+ msgid "%s at %s"
6301
+ msgstr ""
6302
+
6303
+ #: includes/core/class-date-time.php:146
6304
+ #, php-format
6305
+ msgid "%s year old"
6306
+ msgstr ""
6307
+
6308
+ #: includes/core/class-date-time.php:149
6309
+ #, php-format
6310
+ msgid "%s years old"
6311
+ msgstr ""
6312
+
6313
+ #: includes/core/class-date-time.php:152
6314
+ msgid "Less than 1 year old"
6315
+ msgstr ""
6316
+
6317
+ #: includes/core/class-external-integrations.php:498
6318
+ #, php-format
6319
+ msgid "Edit the %s translation"
6320
+ msgstr ""
6321
+
6322
+ #: includes/core/class-external-integrations.php:505
6323
+ #, php-format
6324
+ msgid "Add translation to %s"
6325
+ msgstr ""
6326
+
6327
+ #: includes/core/class-fields.php:1199 templates/message.php:5
6328
+ #, php-format
6329
+ msgid "%s"
6330
+ msgstr ""
6331
+
6332
+ #: includes/core/class-fields.php:1218
6333
+ msgid "Custom Field"
6334
+ msgstr ""
6335
+
6336
+ #: includes/core/class-fields.php:1515
6337
+ msgid "Please upload a valid image!"
6338
+ msgstr ""
6339
+
6340
+ #: includes/core/class-fields.php:1522 includes/core/class-fields.php:1543
6341
+ msgid "Upload"
6342
+ msgstr ""
6343
+
6344
+ #: includes/core/class-fields.php:1523
6345
+ msgid "Sorry this is not a valid image."
6346
+ msgstr ""
6347
+
6348
+ #: includes/core/class-fields.php:1524
6349
+ msgid "This image is too large!"
6350
+ msgstr ""
6351
+
6352
+ #: includes/core/class-fields.php:1525
6353
+ msgid "This image is too small!"
6354
+ msgstr ""
6355
+
6356
+ #: includes/core/class-fields.php:1526
6357
+ msgid "You can only upload one image"
6358
+ msgstr ""
6359
+
6360
+ #: includes/core/class-fields.php:1994
6361
+ msgid "Current Password"
6362
+ msgstr ""
6363
+
6364
+ #: includes/core/class-fields.php:2023
6365
+ msgid "New Password"
6366
+ msgstr ""
6367
+
6368
+ #: includes/core/class-fields.php:2055
6369
+ #, php-format
6370
+ msgid "Confirm %s"
6371
+ msgstr ""
6372
+
6373
+ #: includes/core/class-fields.php:2290
6374
+ msgid "Upload Photo"
6375
+ msgstr ""
6376
+
6377
+ #: includes/core/class-fields.php:2311 includes/core/class-fields.php:2335
6378
+ #: includes/core/um-actions-profile.php:785
6379
+ msgid "Change photo"
6380
+ msgstr ""
6381
+
6382
+ #: includes/core/class-fields.php:2335 includes/core/class-fields.php:2432
6383
+ msgid "Processing..."
6384
+ msgstr ""
6385
+
6386
+ #: includes/core/class-fields.php:2357
6387
+ msgid "Upload File"
6388
+ msgstr ""
6389
+
6390
+ #: includes/core/class-fields.php:2399 includes/core/um-filters-fields.php:243
6391
+ msgid "This file has been removed."
6392
+ msgstr ""
6393
+
6394
+ #: includes/core/class-fields.php:2402 includes/core/class-fields.php:2432
6395
+ msgid "Change file"
6396
+ msgstr ""
6397
+
6398
+ #: includes/core/class-fields.php:2432
6399
+ msgid "Save"
6400
+ msgstr ""
6401
+
6402
+ #: includes/core/class-fields.php:3854
6403
+ #, php-format
6404
+ msgid ""
6405
+ "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
6406
+ "information!"
6407
+ msgstr ""
6408
+
6409
+ #: includes/core/class-fields.php:3856
6410
+ msgid "This user has not added any information to their profile yet."
6411
+ msgstr ""
6412
+
6413
+ #: includes/core/class-files.php:281
6414
+ msgid "Invalid parameters"
6415
+ msgstr ""
6416
+
6417
+ #: includes/core/class-files.php:286
6418
+ msgid "Invalid coordinates"
6419
+ msgstr ""
6420
+
6421
+ #: includes/core/class-files.php:291
6422
+ msgid "Invalid file ownership"
6423
+ msgstr ""
6424
+
6425
+ #: includes/core/class-files.php:346
6426
+ msgid "Invalid nonce"
6427
+ msgstr ""
6428
+
6429
+ #: includes/core/class-files.php:368 includes/core/class-files.php:454
6430
+ msgid "A theme or plugin compatibility issue"
6431
+ msgstr ""
6432
+
6433
+ #: includes/core/class-files.php:997
6434
+ msgid "Ultimate Member: Not a valid temp file"
6435
+ msgstr ""
6436
+
6437
+ #: includes/core/class-files.php:1125
6438
+ msgid "Invalid user ID: "
6439
+ msgstr ""
6440
+
6441
+ #: includes/core/class-files.php:1134 includes/core/class-files.php:1162
6442
+ msgid "Unauthorized to do this attempt."
6443
+ msgstr ""
6444
+
6445
+ #: includes/core/class-form.php:58 includes/core/class-profile.php:56
6446
+ #: includes/core/class-profile.php:74
6447
+ msgid "You can not edit this user"
6448
+ msgstr ""
6449
+
6450
+ #: includes/core/class-mail.php:612 includes/core/class-password.php:701
6451
+ #: includes/core/class-profile.php:424
6452
+ msgid "Your set password"
6453
+ msgstr ""
6454
+
6455
+ #: includes/core/class-password.php:458
6456
+ msgid "Please provide your username or email"
6457
+ msgstr ""
6458
+
6459
+ #: includes/core/class-password.php:462
6460
+ msgid "We can't find an account registered with that address or username"
6461
+ msgstr ""
6462
+
6463
+ #: includes/core/class-password.php:481
6464
+ msgid ""
6465
+ "You have reached the limit for requesting password change for this user "
6466
+ "already. Contact support if you cannot open the email"
6467
+ msgstr ""
6468
+
6469
+ #: includes/core/class-password.php:537
6470
+ msgid "You must enter a new password"
6471
+ msgstr ""
6472
+
6473
+ #: includes/core/class-password.php:543 includes/core/um-actions-account.php:59
6474
+ msgid "Your password must contain at least 8 characters"
6475
+ msgstr ""
6476
+
6477
+ #: includes/core/class-password.php:547 includes/core/um-actions-account.php:63
6478
+ msgid "Your password must contain less than 30 characters"
6479
+ msgstr ""
6480
+
6481
+ #: includes/core/class-password.php:551 includes/core/um-actions-account.php:67
6482
+ #: includes/core/um-actions-form.php:476
6483
+ msgid ""
6484
+ "Your password must contain at least one lowercase letter, one capital letter "
6485
+ "and one number"
6486
+ msgstr ""
6487
+
6488
+ #: includes/core/class-password.php:557
6489
+ msgid "You must confirm your new password"
6490
+ msgstr ""
6491
+
6492
+ #: includes/core/class-password.php:561 includes/core/um-actions-form.php:485
6493
+ msgid "Your passwords do not match"
6494
+ msgstr ""
6495
+
6496
+ #: includes/core/class-permalinks.php:186
6497
+ msgid "This activation link is expired or have already been used."
6498
+ msgstr ""
6499
+
6500
+ #. translators: %s: support forums URL
6501
+ #: includes/core/class-plugin-updater.php:275
6502
+ #, php-format
6503
+ msgid ""
6504
+ "An unexpected error occurred. Something may be wrong with %s or this "
6505
+ "server&#8217;s configuration. If you continue to have problems, please try "
6506
+ "the <a href=\"%s\">support forums</a>."
6507
+ msgstr ""
6508
+
6509
+ #: includes/core/class-plugin-updater.php:277
6510
+ msgid "https://wordpress.org/support/"
6511
+ msgstr ""
6512
+
6513
+ #: includes/core/class-profile.php:110
6514
+ msgid "About"
6515
+ msgstr ""
6516
+
6517
+ #: includes/core/class-profile.php:114
6518
+ msgid "Posts"
6519
+ msgstr ""
6520
+
6521
+ #: includes/core/class-profile.php:118
6522
+ msgid "Comments"
6523
+ msgstr ""
6524
+
6525
+ #: includes/core/class-shortcodes.php:360
6526
+ msgid ""
6527
+ "This content has been restricted to logged in users only. Please <a href="
6528
+ "\"{login_referrer}\">login</a> to view this content."
6529
+ msgstr ""
6530
+
6531
+ #: includes/core/class-shortcodes.php:647
6532
+ msgid "You are already registered"
6533
+ msgstr ""
6534
+
6535
+ #: includes/core/class-shortcodes.php:894
6536
+ msgid "Default Template"
6537
+ msgstr ""
6538
+
6539
+ #: includes/core/class-uploader.php:668
6540
+ msgid "Your image is invalid!"
6541
+ msgstr ""
6542
+
6543
+ #: includes/core/class-uploader.php:710
6544
+ msgid "This media type is not recognized."
6545
+ msgstr ""
6546
+
6547
+ #: includes/core/class-uploader.php:758
6548
+ msgid "Your image is invalid or too large!"
6549
+ msgstr ""
6550
+
6551
+ #: includes/core/class-uploader.php:764 includes/core/class-uploader.php:766
6552
+ #, php-format
6553
+ msgid "Your photo is too small. It must be at least %spx wide."
6554
+ msgstr ""
6555
+
6556
+ #: includes/core/class-uploader.php:819
6557
+ msgid "This file type is not recognized."
6558
+ msgstr ""
6559
+
6560
+ #: includes/core/class-uploader.php:1098
6561
+ #, php-format
6562
+ msgid "Maximum file size allowed: %s"
6563
+ msgstr ""
6564
+
6565
+ #: includes/core/class-user.php:619
6566
+ msgid "Ultimate Member Role"
6567
+ msgstr ""
6568
+
6569
+ #: includes/core/class-user.php:622
6570
+ msgid "&mdash; No role for Ultimate Member &mdash;"
6571
+ msgstr ""
6572
+
6573
+ #: includes/core/class-user.php:837
6574
+ msgid "Membership Rejected"
6575
+ msgstr ""
6576
+
6577
+ #: includes/core/class-user.php:841
6578
+ msgid "Membership Inactive"
6579
+ msgstr ""
6580
+
6581
+ #: includes/core/rest/class-api-v1.php:256
6582
+ #: includes/core/rest/class-api-v1.php:328
6583
+ #: includes/core/rest/class-api-v1.php:365
6584
+ #: includes/core/rest/class-api-v2.php:256
6585
+ #: includes/core/rest/class-api-v2.php:328
6586
+ #: includes/core/rest/class-api-v2.php:365
6587
+ msgid "You must provide a user ID"
6588
+ msgstr ""
6589
+
6590
+ #: includes/core/rest/class-api-v1.php:261
6591
+ #: includes/core/rest/class-api-v2.php:261
6592
+ msgid "You need to provide data to update"
6593
+ msgstr ""
6594
+
6595
+ #: includes/core/rest/class-api-v1.php:270
6596
+ #: includes/core/rest/class-api-v2.php:270
6597
+ msgid "User status has been changed."
6598
+ msgstr ""
6599
+
6600
+ #: includes/core/rest/class-api-v1.php:299
6601
+ #: includes/core/rest/class-api-v2.php:299
6602
+ msgid "User role has been changed."
6603
+ msgstr ""
6604
+
6605
+ #: includes/core/rest/class-api-v1.php:303
6606
+ #: includes/core/rest/class-api-v2.php:303
6607
+ msgid "User meta has been changed."
6608
+ msgstr ""
6609
+
6610
+ #: includes/core/rest/class-api-v1.php:334
6611
+ #: includes/core/rest/class-api-v1.php:371
6612
+ #: includes/core/rest/class-api-v2.php:334
6613
+ #: includes/core/rest/class-api-v2.php:371
6614
+ msgid "Invalid user specified"
6615
+ msgstr ""
6616
+
6617
+ #: includes/core/rest/class-api-v1.php:341
6618
+ #: includes/core/rest/class-api-v2.php:341
6619
+ msgid "User has been successfully deleted."
6620
+ msgstr ""
6621
+
6622
+ #: includes/core/rest/class-api.php:253
6623
+ msgid "You must specify both a token and API key!"
6624
+ msgstr ""
6625
+
6626
+ #: includes/core/rest/class-api.php:265
6627
+ msgid "Your request could not be authenticated"
6628
+ msgstr ""
6629
+
6630
+ #: includes/core/rest/class-api.php:277
6631
+ msgid "Invalid API key"
6632
+ msgstr ""
6633
+
6634
+ #: includes/core/rest/class-api.php:434
6635
+ msgid "Invalid query!"
6636
+ msgstr ""
6637
+
6638
+ #: includes/core/um-actions-account.php:17
6639
+ msgid "Are you hacking? Please try again!"
6640
+ msgstr ""
6641
+
6642
+ #: includes/core/um-actions-account.php:27
6643
+ #: includes/core/um-actions-account.php:115
6644
+ msgid "You must enter your password"
6645
+ msgstr ""
6646
+
6647
+ #: includes/core/um-actions-account.php:30
6648
+ #: includes/core/um-actions-account.php:47
6649
+ #: includes/core/um-actions-account.php:118
6650
+ msgid "This is not your password"
6651
+ msgstr ""
6652
+
6653
+ #: includes/core/um-actions-account.php:52
6654
+ msgid "Your new password does not match"
6655
+ msgstr ""
6656
+
6657
+ #: includes/core/um-actions-account.php:85
6658
+ msgid "Your username is invalid"
6659
+ msgstr ""
6660
+
6661
+ #: includes/core/um-actions-account.php:90
6662
+ msgid "You must provide your first name"
6663
+ msgstr ""
6664
+
6665
+ #: includes/core/um-actions-account.php:94
6666
+ msgid "You must provide your last name"
6667
+ msgstr ""
6668
+
6669
+ #: includes/core/um-actions-account.php:100
6670
+ msgid "You must provide your e-mail"
6671
+ msgstr ""
6672
+
6673
+ #: includes/core/um-actions-account.php:104
6674
+ msgid "Please provide a valid e-mail"
6675
+ msgstr ""
6676
+
6677
+ #: includes/core/um-actions-account.php:108
6678
+ msgid "Email already linked to another account"
6679
+ msgstr ""
6680
+
6681
+ #: includes/core/um-actions-account.php:416
6682
+ msgid "Email me when"
6683
+ msgstr ""
6684
+
6685
+ #: includes/core/um-actions-core.php:27
6686
+ msgid "Super administrators can not be modified."
6687
+ msgstr ""
6688
+
6689
+ #: includes/core/um-actions-core.php:89 includes/core/um-actions-core.php:100
6690
+ #: includes/core/um-actions-core.php:113 includes/core/um-actions-core.php:123
6691
+ #: includes/core/um-actions-core.php:136
6692
+ msgid "You do not have permission to make this action."
6693
+ msgstr ""
6694
+
6695
+ #: includes/core/um-actions-core.php:146
6696
+ msgid "You do not have permission to delete this user."
6697
+ msgstr ""
6698
+
6699
+ #: includes/core/um-actions-form.php:86
6700
+ msgid "You are not allowed to use this word as your username."
6701
+ msgstr ""
6702
+
6703
+ #: includes/core/um-actions-form.php:276 includes/core/um-actions-form.php:394
6704
+ #: includes/core/um-actions-form.php:398 includes/core/um-actions-form.php:402
6705
+ #, php-format
6706
+ msgid "%s is required."
6707
+ msgstr ""
6708
+
6709
+ #: includes/core/um-actions-form.php:407
6710
+ msgid "Please specify account type."
6711
+ msgstr ""
6712
+
6713
+ #: includes/core/um-actions-form.php:439
6714
+ msgid "This field is required"
6715
+ msgstr ""
6716
+
6717
+ #: includes/core/um-actions-form.php:441
6718
+ #, php-format
6719
+ msgid "%s is required"
6720
+ msgstr ""
6721
+
6722
+ #: includes/core/um-actions-form.php:448
6723
+ #, php-format
6724
+ msgid "You are only allowed to enter a maximum of %s words"
6725
+ msgstr ""
6726
+
6727
+ #: includes/core/um-actions-form.php:454
6728
+ #, php-format
6729
+ msgid "Your %s must contain at least %s characters"
6730
+ msgstr ""
6731
+
6732
+ #: includes/core/um-actions-form.php:460
6733
+ #, php-format
6734
+ msgid "Your %s must contain less than %s characters"
6735
+ msgstr ""
6736
+
6737
+ #: includes/core/um-actions-form.php:469
6738
+ msgid "You can not use HTML tags here"
6739
+ msgstr ""
6740
+
6741
+ #: includes/core/um-actions-form.php:482
6742
+ msgid "Please confirm your password"
6743
+ msgstr ""
6744
+
6745
+ #: includes/core/um-actions-form.php:491
6746
+ #, php-format
6747
+ msgid "Please select at least %s choices"
6748
+ msgstr ""
6749
+
6750
+ #: includes/core/um-actions-form.php:497
6751
+ #, php-format
6752
+ msgid "You can only select up to %s choices"
6753
+ msgstr ""
6754
+
6755
+ #: includes/core/um-actions-form.php:503
6756
+ #, php-format
6757
+ msgid "Minimum number limit is %s"
6758
+ msgstr ""
6759
+
6760
+ #: includes/core/um-actions-form.php:509
6761
+ #, php-format
6762
+ msgid "Maximum number limit is %s"
6763
+ msgstr ""
6764
+
6765
+ #: includes/core/um-actions-form.php:545
6766
+ msgid "Please enter numbers only in this field"
6767
+ msgstr ""
6768
+
6769
+ #: includes/core/um-actions-form.php:551
6770
+ msgid "Please enter a valid phone number"
6771
+ msgstr ""
6772
+
6773
+ #: includes/core/um-actions-form.php:557 includes/core/um-actions-form.php:563
6774
+ #: includes/core/um-actions-form.php:569 includes/core/um-actions-form.php:575
6775
+ #: includes/core/um-actions-form.php:581 includes/core/um-actions-form.php:587
6776
+ #: includes/core/um-actions-form.php:593 includes/core/um-actions-form.php:599
6777
+ #: includes/core/um-actions-form.php:611
6778
+ #, php-format
6779
+ msgid "Please enter a valid %s username or profile URL"
6780
+ msgstr ""
6781
+
6782
+ #: includes/core/um-actions-form.php:605
6783
+ msgid "Please enter a valid URL"
6784
+ msgstr ""
6785
+
6786
+ #: includes/core/um-actions-form.php:618 includes/core/um-actions-form.php:632
6787
+ msgid "You must provide a username"
6788
+ msgstr ""
6789
+
6790
+ #: includes/core/um-actions-form.php:620 includes/core/um-actions-form.php:634
6791
+ msgid "Your username is already taken"
6792
+ msgstr ""
6793
+
6794
+ #: includes/core/um-actions-form.php:622
6795
+ msgid "Username cannot be an email"
6796
+ msgstr ""
6797
+
6798
+ #: includes/core/um-actions-form.php:624 includes/core/um-actions-form.php:638
6799
+ msgid "Your username contains invalid characters"
6800
+ msgstr ""
6801
+
6802
+ #: includes/core/um-actions-form.php:636 includes/core/um-actions-form.php:658
6803
+ #: includes/core/um-actions-form.php:660 includes/core/um-actions-form.php:672
6804
+ #: includes/core/um-actions-form.php:679
6805
+ msgid "This email is already linked to an existing account"
6806
+ msgstr ""
6807
+
6808
+ #: includes/core/um-actions-form.php:656
6809
+ msgid "You must provide your email"
6810
+ msgstr ""
6811
+
6812
+ #: includes/core/um-actions-form.php:662 includes/core/um-actions-form.php:670
6813
+ msgid "This is not a valid email"
6814
+ msgstr ""
6815
+
6816
+ #: includes/core/um-actions-form.php:664
6817
+ msgid "Your email contains invalid characters"
6818
+ msgstr ""
6819
+
6820
+ #: includes/core/um-actions-form.php:704
6821
+ msgid "You must provide a unique value"
6822
+ msgstr ""
6823
+
6824
+ #: includes/core/um-actions-form.php:714
6825
+ msgid "You must provide alphabetic letters"
6826
+ msgstr ""
6827
+
6828
+ #: includes/core/um-actions-form.php:724
6829
+ msgid "You must provide lowercase letters."
6830
+ msgstr ""
6831
+
6832
+ #: includes/core/um-actions-form.php:743
6833
+ #, php-format
6834
+ msgid "Your user description must contain less than %s characters"
6835
+ msgstr ""
6836
+
6837
+ #: includes/core/um-actions-global.php:30
6838
+ msgid "Only fill in if you are not human"
6839
+ msgstr ""
6840
+
6841
+ #: includes/core/um-actions-login.php:18
6842
+ msgid "Please enter your username or email"
6843
+ msgstr ""
6844
+
6845
+ #: includes/core/um-actions-login.php:22
6846
+ msgid "Please enter your username"
6847
+ msgstr ""
6848
+
6849
+ #: includes/core/um-actions-login.php:26
6850
+ msgid "Please enter your email"
6851
+ msgstr ""
6852
+
6853
+ #: includes/core/um-actions-login.php:59
6854
+ msgid "Please enter your password"
6855
+ msgstr ""
6856
+
6857
+ #: includes/core/um-actions-login.php:66
6858
+ msgid "Password is incorrect. Please try again."
6859
+ msgstr ""
6860
+
6861
+ #: includes/core/um-actions-login.php:196
6862
+ msgid "This action has been prevented for security measures."
6863
+ msgstr ""
6864
+
6865
+ #: includes/core/um-actions-login.php:420
6866
+ msgid "Keep me signed in"
6867
+ msgstr ""
6868
+
6869
+ #: includes/core/um-actions-login.php:464
6870
+ msgid "Forgot your password?"
6871
+ msgstr ""
6872
+
6873
+ #: includes/core/um-actions-members.php:83
6874
+ msgid "Search"
6875
+ msgstr ""
6876
+
6877
+ #: includes/core/um-actions-members.php:84
6878
+ msgid "Reset"
6879
+ msgstr ""
6880
+
6881
+ #: includes/core/um-actions-members.php:159
6882
+ msgid "Jump to page:"
6883
+ msgstr ""
6884
+
6885
+ #: includes/core/um-actions-members.php:164
6886
+ #, php-format
6887
+ msgid "%s of %d"
6888
+ msgstr ""
6889
+
6890
+ #: includes/core/um-actions-members.php:174
6891
+ msgid "First Page"
6892
+ msgstr ""
6893
+
6894
+ #: includes/core/um-actions-members.php:180
6895
+ msgid "Previous"
6896
+ msgstr ""
6897
+
6898
+ #: includes/core/um-actions-members.php:200
6899
+ msgid "Next"
6900
+ msgstr ""
6901
+
6902
+ #: includes/core/um-actions-members.php:206
6903
+ msgid "Last Page"
6904
+ msgstr ""
6905
+
6906
+ #: includes/core/um-actions-misc.php:111
6907
+ msgid "Your account was updated successfully."
6908
+ msgstr ""
6909
+
6910
+ #: includes/core/um-actions-misc.php:115
6911
+ msgid "You have successfully changed your password."
6912
+ msgstr ""
6913
+
6914
+ #: includes/core/um-actions-misc.php:119
6915
+ msgid "Your account is now active! You can login."
6916
+ msgstr ""
6917
+
6918
+ #: includes/core/um-actions-misc.php:153
6919
+ msgid "An error has been encountered"
6920
+ msgstr ""
6921
+
6922
+ #: includes/core/um-actions-misc.php:157
6923
+ msgid "Registration is currently disabled"
6924
+ msgstr ""
6925
+
6926
+ #: includes/core/um-actions-misc.php:161 includes/core/um-filters-login.php:40
6927
+ msgid "This email address has been blocked."
6928
+ msgstr ""
6929
+
6930
+ #: includes/core/um-actions-misc.php:165
6931
+ msgid "We do not accept registrations from that domain."
6932
+ msgstr ""
6933
+
6934
+ #: includes/core/um-actions-misc.php:169 includes/core/um-filters-login.php:43
6935
+ msgid "Your IP address has been blocked."
6936
+ msgstr ""
6937
+
6938
+ #: includes/core/um-actions-misc.php:173 includes/core/um-filters-login.php:136
6939
+ msgid "Your account has been disabled."
6940
+ msgstr ""
6941
+
6942
+ #: includes/core/um-actions-misc.php:177 includes/core/um-filters-login.php:139
6943
+ msgid "Your account has not been approved yet."
6944
+ msgstr ""
6945
+
6946
+ #: includes/core/um-actions-misc.php:181 includes/core/um-filters-login.php:142
6947
+ msgid "Your account is awaiting e-mail verification."
6948
+ msgstr ""
6949
+
6950
+ #: includes/core/um-actions-misc.php:185 includes/core/um-filters-login.php:145
6951
+ msgid "Your membership request has been rejected."
6952
+ msgstr ""
6953
+
6954
+ #: includes/core/um-actions-profile.php:192
6955
+ msgid "You are not allowed to edit this user."
6956
+ msgstr ""
6957
+
6958
+ #: includes/core/um-actions-profile.php:284
6959
+ #, php-format
6960
+ msgid "Your choosed %s"
6961
+ msgstr ""
6962
+
6963
+ #: includes/core/um-actions-profile.php:598
6964
+ #: includes/core/um-actions-profile.php:614
6965
+ #: includes/core/um-actions-profile.php:654
6966
+ msgid "Upload a cover photo"
6967
+ msgstr ""
6968
+
6969
+ #: includes/core/um-actions-profile.php:598
6970
+ msgid "Change cover photo"
6971
+ msgstr ""
6972
+
6973
+ #: includes/core/um-actions-profile.php:753
6974
+ msgid "Upload photo"
6975
+ msgstr ""
6976
+
6977
+ #: includes/core/um-actions-profile.php:786
6978
+ msgid "Remove photo"
6979
+ msgstr ""
6980
+
6981
+ #: includes/core/um-actions-profile.php:950
6982
+ msgid "Tell us a bit about yourself..."
6983
+ msgstr ""
6984
+
6985
+ #: includes/core/um-actions-profile.php:966
6986
+ #, php-format
6987
+ msgid "This user account status is %s"
6988
+ msgstr ""
6989
+
6990
+ #: includes/core/um-actions-profile.php:1105
6991
+ #: includes/core/um-actions-profile.php:1136
6992
+ msgid "Edit Profile"
6993
+ msgstr ""
6994
+
6995
+ #: includes/core/um-actions-profile.php:1137
6996
+ msgid "My Account"
6997
+ msgstr ""
6998
+
6999
+ #: includes/core/um-actions-user.php:14
7000
+ msgid "Your account"
7001
+ msgstr ""
7002
+
7003
+ #: includes/core/um-filters-fields.php:33
7004
+ msgid "Invalid soundcloud track ID"
7005
+ msgstr ""
7006
+
7007
+ #: includes/core/um-filters-fields.php:117
7008
+ #, php-format
7009
+ msgid "Joined %s"
7010
+ msgstr ""
7011
+
7012
+ #: includes/core/um-filters-fields.php:274
7013
+ msgid "Untitled photo"
7014
+ msgstr ""
7015
+
7016
+ #: includes/core/um-filters-profile.php:82
7017
+ #: includes/core/um-filters-profile.php:101
7018
+ msgid "max"
7019
+ msgstr ""
7020
+
7021
+ #: includes/core/um-filters-user.php:37
7022
+ msgid "Deactivate this account"
7023
+ msgstr ""
7024
+
7025
+ #: includes/core/um-filters-user.php:41
7026
+ msgid "Reactivate this account"
7027
+ msgstr ""
7028
+
7029
+ #: includes/core/um-filters-user.php:47
7030
+ msgid "Delete this user"
7031
+ msgstr ""
7032
+
7033
+ #: includes/core/um-filters-user.php:51
7034
+ msgid "Login as this user"
7035
+ msgstr ""
7036
+
7037
+ #: includes/um-short-functions.php:741
7038
+ msgid "date submitted"
7039
+ msgstr ""
7040
+
7041
+ #: includes/um-short-functions.php:747
7042
+ msgid "(empty)"
7043
+ msgstr ""
7044
+
7045
+ #: includes/widgets/class-um-search-widget.php:27
7046
+ msgid "Ultimate Member - Search"
7047
+ msgstr ""
7048
+
7049
+ #: includes/widgets/class-um-search-widget.php:30
7050
+ msgid "Shows the search member form."
7051
+ msgstr ""
7052
+
7053
+ #: includes/widgets/class-um-search-widget.php:68
7054
+ msgid "Search Users"
7055
+ msgstr ""
7056
+
7057
+ #: includes/widgets/class-um-search-widget.php:81
7058
+ msgid "Title:"
7059
+ msgstr ""
7060
+
7061
+ #: templates/members-grid.php:66
7062
+ msgid "Edit profile"
7063
+ msgstr ""
7064
+
7065
+ #: templates/password-change.php:43
7066
+ msgid "Change my password"
7067
+ msgstr ""
7068
+
7069
+ #: templates/password-reset.php:8
7070
+ msgid ""
7071
+ "We have sent you a password reset link to your e-mail. Please check your "
7072
+ "inbox."
7073
+ msgstr ""
7074
+
7075
+ #: templates/password-reset.php:43
7076
+ msgid "Your password reset link has expired. Please request a new link below."
7077
+ msgstr ""
7078
+
7079
+ #: templates/password-reset.php:45
7080
+ msgid ""
7081
+ "Your password reset link appears to be invalid. Please request a new link "
7082
+ "below."
7083
+ msgstr ""
7084
+
7085
+ #: templates/password-reset.php:54
7086
+ msgid ""
7087
+ "To reset your password, please enter your email address or username below"
7088
+ msgstr ""
7089
+
7090
+ #: templates/password-reset.php:92
7091
+ msgid "Reset my password"
7092
+ msgstr ""
7093
+
7094
+ #: templates/profile/comments-single.php:24
7095
+ #, php-format
7096
+ msgid "On <a href=\"%1$s\">%2$s</a>"
7097
+ msgstr ""
7098
+
7099
+ #: templates/profile/comments-single.php:34 templates/profile/comments.php:14
7100
+ msgid "load more comments"
7101
+ msgstr ""
7102
+
7103
+ #: templates/profile/comments.php:23
7104
+ msgid "You have not made any comments."
7105
+ msgstr ""
7106
+
7107
+ #: templates/profile/comments.php:23
7108
+ msgid "This user has not made any comments."
7109
+ msgstr ""
7110
+
7111
+ #: templates/profile/posts-single.php:21
7112
+ #, php-format
7113
+ msgid "%s ago"
7114
+ msgstr ""
7115
+
7116
+ #: templates/profile/posts-single.php:24
7117
+ msgid "in"
7118
+ msgstr ""
7119
+
7120
+ #: templates/profile/posts-single.php:30
7121
+ msgid "no comments"
7122
+ msgstr ""
7123
+
7124
+ #: templates/profile/posts-single.php:32
7125
+ #, php-format
7126
+ msgid "%s comments"
7127
+ msgstr ""
7128
+
7129
+ #: templates/profile/posts-single.php:34
7130
+ msgid "1 comment"
7131
+ msgstr ""
7132
+
7133
+ #: templates/profile/posts.php:21
7134
+ msgid "load more posts"
7135
+ msgstr ""
7136
+
7137
+ #: templates/profile/posts.php:32
7138
+ msgid "You have not created any posts."
7139
+ msgstr ""
7140
+
7141
+ #: templates/profile/posts.php:32
7142
+ msgid "This user has not created any posts."
7143
+ msgstr ""
7144
+
7145
+ #: templates/searchform.php:4 templates/searchform.php:5
7146
+ msgctxt "label"
7147
+ msgid "Search for:"
7148
+ msgstr ""
7149
+
7150
+ #: templates/searchform.php:5
7151
+ msgctxt "placeholder"
7152
+ msgid "Search &hellip;"
7153
+ msgstr ""
7154
+
7155
+ #. Plugin URI of the plugin/theme
7156
+ #. Author URI of the plugin/theme
7157
+ msgid "http://ultimatemember.com/"
7158
+ msgstr ""
7159
+
7160
+ #. Description of the plugin/theme
7161
+ msgid ""
7162
+ "The easiest way to create powerful online communities and beautiful user "
7163
+ "profiles with WordPress"
7164
+ msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link:
6
  Tags: community, member, membership, user-profile, user-registration
7
  Requires at least: 4.9
8
  Tested up to: 5.2
9
- Stable tag: 2.0.51
10
  License: GNU Version 2 or Any Later Version
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
12
 
@@ -137,6 +137,16 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
137
 
138
  = Important: UM2.0+ is a significant update to the code base from 1.3.88. Please make sure you take a full-site backup with restore point before updating the plugin =
139
 
 
 
 
 
 
 
 
 
 
 
140
  = 2.0.51: July 09, 2019 =
141
 
142
  * Bugfixes:
6
  Tags: community, member, membership, user-profile, user-registration
7
  Requires at least: 4.9
8
  Tested up to: 5.2
9
+ Stable tag: 2.0.52
10
  License: GNU Version 2 or Any Later Version
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
12
 
137
 
138
  = Important: UM2.0+ is a significant update to the code base from 1.3.88. Please make sure you take a full-site backup with restore point before updating the plugin =
139
 
140
+ = 2.0.52: July 11, 2019 =
141
+
142
+ * Enhancements:
143
+ - Extended hooks for 3rd party integrations
144
+
145
+ * Bugfixes:
146
+ - Fixed settings labels with CPT & Taxonomies
147
+ - Fixed UM Roles create/edit XSS security issue
148
+ - Fixed XSS security issue on account upgrade
149
+
150
  = 2.0.51: July 09, 2019 =
151
 
152
  * Bugfixes:
ultimate-member.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
- Version: 2.0.51
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimate-member
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
+ Version: 2.0.52
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimate-member