Ultimate Member – User Profile & Membership Plugin - Version 1.3.72

Version Description

Download this release

Release Info

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

Code changes from version 1.3.71 to 1.3.72

addons/generate_random_users.php CHANGED
@@ -51,10 +51,21 @@ class UM_ADDON_generate_random_users {
51
  $json_url = add_query_arg('results', $total_users, $json_url );
52
  $arr_post_header['results'] = $total_users;
53
  }
 
 
 
 
54
 
55
- $response = file_get_contents( $json_url );
56
- $json = json_decode( $response );
57
-
 
 
 
 
 
 
 
58
  if( ! empty( $json ) ){
59
 
60
  remove_action('um_after_new_user_register', 'um_after_new_user_register', 10, 2);
51
  $json_url = add_query_arg('results', $total_users, $json_url );
52
  $arr_post_header['results'] = $total_users;
53
  }
54
+
55
+
56
+ $response = wp_remote_get( $json_url, array('timeout' => 120 ) );
57
+ $json = '';
58
 
59
+ if( is_array($response) ) {
60
+ if( isset( $response['body'] ) && ! empty( $response['body'] ) ){
61
+ $json = json_decode( $response['body'] );
62
+ }
63
+ }
64
+
65
+ if( is_wp_error( $response ) ){
66
+ wp_die( $response->get_error_message() );
67
+ }
68
+
69
  if( ! empty( $json ) ){
70
 
71
  remove_action('um_after_new_user_register', 'um_after_new_user_register', 10, 2);
admin/assets/css/um-admin-global.css CHANGED
@@ -86,4 +86,5 @@
86
  opacity: 0.8;
87
  }
88
  .um-admin-tip.n {margin-left: 5px}
89
- .um-admin-tip i {cursor: pointer; vertical-align: middle; font-size: 20px; line-height: 20px;color: #3ba1da !important;}
 
86
  opacity: 0.8;
87
  }
88
  .um-admin-tip.n {margin-left: 5px}
89
+ .um-admin-tip i {cursor: pointer; vertical-align: middle; font-size: 20px; line-height: 20px;color: #3ba1da !important;}
90
+ a.um-delete{ color: #a00; }
admin/core/um-admin-dashboard.php CHANGED
@@ -68,7 +68,7 @@ class UM_Admin_Dashboard {
68
  */
69
  function get_pending_users_count() {
70
 
71
- if ( get_option('um_cached_users_queue') > 0 ) {
72
  return get_option('um_cached_users_queue');
73
  }
74
 
68
  */
69
  function get_pending_users_count() {
70
 
71
+ if ( get_option('um_cached_users_queue') > 0 && ! isset( $_REQUEST['delete_count'] ) ) {
72
  return get_option('um_cached_users_queue');
73
  }
74
 
admin/core/um-admin-notices.php CHANGED
@@ -200,6 +200,10 @@ class UM_Admin_Notices {
200
  $messages[0]['content'] = __('Users have been updated.','ultimatemember');
201
  break;
202
 
 
 
 
 
203
  case 'err_users_updated':
204
  $messages[0]['err_content'] = __('Super administrators cannot be modified.','ultimatemember');
205
  $messages[1]['content'] = __('Other users have been updated.','ultimatemember');
200
  $messages[0]['content'] = __('Users have been updated.','ultimatemember');
201
  break;
202
 
203
+ case 'users_role_updated':
204
+ $messages[0]['content'] = __('Changed roles.','ultimatemember');
205
+ break;
206
+
207
  case 'err_users_updated':
208
  $messages[0]['err_content'] = __('Super administrators cannot be modified.','ultimatemember');
209
  $messages[1]['content'] = __('Other users have been updated.','ultimatemember');
admin/core/um-admin-users.php CHANGED
@@ -193,16 +193,38 @@ class UM_Admin_Users {
193
  }
194
 
195
  if ( $admin_err == 0 ){
196
- wp_redirect( admin_url('users.php?update=promote') );
 
 
 
 
 
 
 
 
197
  exit;
 
198
  } else {
199
- wp_redirect( admin_url('users.php?update=err_admin_role') );
 
 
 
 
 
 
 
 
200
  exit;
201
  }
202
 
203
  } else if ( isset($_REQUEST['um_changeit']) && $_REQUEST['um_changeit'] != '' ) {
204
 
205
- wp_redirect( admin_url('users.php') );
 
 
 
 
 
206
  exit;
207
 
208
  }
@@ -233,7 +255,15 @@ class UM_Admin_Users {
233
 
234
  // Finished. redirect now
235
  if ( $admin_err == 0 ){
236
- wp_redirect( admin_url('users.php?update=users_updated') );
 
 
 
 
 
 
 
 
237
  exit;
238
  } else {
239
  wp_redirect( admin_url('users.php?update=err_users_updated') );
@@ -242,7 +272,12 @@ class UM_Admin_Users {
242
 
243
  } else if ( isset($_REQUEST['um_bulkedit']) && $_REQUEST['um_bulkedit'] != '' ) {
244
 
245
- wp_redirect( admin_url('users.php') );
 
 
 
 
 
246
  exit;
247
 
248
  }
@@ -309,6 +344,10 @@ class UM_Admin_Users {
309
 
310
  </div>
311
 
 
 
 
 
312
  <?php
313
 
314
  }
@@ -344,4 +383,28 @@ class UM_Admin_Users {
344
  return $value;
345
  }
346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  }
193
  }
194
 
195
  if ( $admin_err == 0 ){
196
+
197
+ $uri = admin_url('users.php');
198
+
199
+ $uri = $this->set_redirect_uri( $uri );
200
+
201
+ $uri = add_query_arg( 'update', 'users_role_updated', $uri );
202
+
203
+ wp_redirect( $uri );
204
+
205
  exit;
206
+
207
  } else {
208
+
209
+ $uri = admin_url('users.php');
210
+
211
+ $uri = $this->set_redirect_uri( $uri );
212
+
213
+ $uri = add_query_arg( 'update', 'err_admin_role', $uri );
214
+
215
+ wp_redirect( $uri );
216
+
217
  exit;
218
  }
219
 
220
  } else if ( isset($_REQUEST['um_changeit']) && $_REQUEST['um_changeit'] != '' ) {
221
 
222
+ $uri = admin_url('users.php');
223
+
224
+ $uri = $this->set_redirect_uri( $uri );
225
+
226
+ wp_redirect( $uri );
227
+
228
  exit;
229
 
230
  }
255
 
256
  // Finished. redirect now
257
  if ( $admin_err == 0 ){
258
+
259
+ $uri = admin_url('users.php');
260
+
261
+ $uri = $this->set_redirect_uri( $uri );
262
+
263
+ $uri = add_query_arg( 'update', 'users_updated', $uri );
264
+
265
+ wp_redirect( $uri );
266
+
267
  exit;
268
  } else {
269
  wp_redirect( admin_url('users.php?update=err_users_updated') );
272
 
273
  } else if ( isset($_REQUEST['um_bulkedit']) && $_REQUEST['um_bulkedit'] != '' ) {
274
 
275
+ $uri = admin_url('users.php');
276
+
277
+ $uri = $this->set_redirect_uri( $uri );
278
+
279
+ wp_redirect( $uri );
280
+
281
  exit;
282
 
283
  }
344
 
345
  </div>
346
 
347
+ <?php if( isset( $_REQUEST['status'] ) && ! empty( $_REQUEST['status'] ) ){ ?>
348
+ <input type="hidden" name="status" id="um_status" value="<?php echo esc_attr( $_REQUEST['status'] );?>"/>
349
+ <?php } ?>
350
+
351
  <?php
352
 
353
  }
383
  return $value;
384
  }
385
 
386
+ /**
387
+ * Sets redirect URI
388
+ * @param string $uri
389
+ */
390
+ function set_redirect_uri( $uri ){
391
+
392
+ if( isset( $_REQUEST['s'] ) && ! empty( $_REQUEST['s'] ) ){
393
+ $uri = add_query_arg( 's', $_REQUEST['s'], $uri );
394
+ }
395
+
396
+ if( isset( $_REQUEST['status'] ) && ! empty( $_REQUEST['status'] ) ){
397
+ $uri = add_query_arg( 'status', $_REQUEST['status'], $uri );
398
+ }
399
+
400
+ if( isset( $_REQUEST['um_filter_role'] ) && ! empty( $_REQUEST['um_filter_role'] ) ){
401
+ foreach ( $_REQUEST['um_filter_role'] as $key => $value) {
402
+ $uri = add_query_arg( 'um_filter_role', $value, $uri );
403
+ }
404
+ }
405
+
406
+ return $uri;
407
+
408
+ }
409
+
410
  }
core/um-actions-access.php CHANGED
@@ -37,6 +37,26 @@
37
  }else {
38
  $ultimatemember->access->redirect_handler = $ultimatemember->access->set_referer( $redirect, "global" );
39
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
 
42
 
@@ -537,6 +557,8 @@
537
  }
538
 
539
  $args = $ultimatemember->access->get_meta( $um_post_id );
 
 
540
  extract( $args );
541
 
542
  // Check for parent page's custom access settings
@@ -712,7 +734,7 @@
712
  }
713
  }
714
 
715
- if( um_is_core_page('user') && ! is_user_logged_in() && ! empty( $access_redirect ) ){
716
  $ultimatemember->access->allow_access = false;
717
  $access_redirect = $ultimatemember->access->set_referer( $access_redirect, "user_page" );
718
  $ultimatemember->access->redirect_handler = esc_url( $access_redirect );
37
  }else {
38
  $ultimatemember->access->redirect_handler = $ultimatemember->access->set_referer( $redirect, "global" );
39
  }
40
+
41
+ // Disallow access in homepage
42
+ if( is_front_page() || is_home() ){
43
+ $home_page_accessible = um_get_option("home_page_accessible");
44
+ if( $home_page_accessible == 0 ){
45
+ $ultimatemember->access->redirect_handler = $ultimatemember->access->set_referer( $redirect, "global" );
46
+
47
+ wp_redirect( $ultimatemember->access->redirect_handler ); exit;
48
+ }
49
+
50
+ }
51
+
52
+ // Disallow access in category pages
53
+ if( is_category() ){
54
+ $category_page_accessible = um_get_option("category_page_accessible");
55
+ if( $category_page_accessible == 0 ){
56
+ $ultimatemember->access->redirect_handler = $ultimatemember->access->set_referer( $redirect, "global" );
57
+ wp_redirect( $ultimatemember->access->redirect_handler ); exit;
58
+ }
59
+ }
60
  }
61
 
62
 
557
  }
558
 
559
  $args = $ultimatemember->access->get_meta( $um_post_id );
560
+
561
+
562
  extract( $args );
563
 
564
  // Check for parent page's custom access settings
734
  }
735
  }
736
 
737
+ if( um_is_core_page('user') && ! is_user_logged_in() && ! empty( $access_redirect ) && isset( $args['custom_access_settings'] ) && $args['custom_access_settings'] != 0 ){
738
  $ultimatemember->access->allow_access = false;
739
  $access_redirect = $ultimatemember->access->set_referer( $access_redirect, "user_page" );
740
  $ultimatemember->access->redirect_handler = esc_url( $access_redirect );
core/um-actions-form.php CHANGED
@@ -158,10 +158,34 @@
158
  $ultimatemember->form->add_error('profile_photo', sprintf(__('%s is required.','ultimatemember'), 'Profile Photo' ) );
159
  }
160
 
161
- if( isset( $fields ) && ! empty( $fields ) ){
 
162
  foreach( $fields as $key => $array ) {
163
 
164
  $array = apply_filters('um_get_custom_field_array', $array, $fields );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
 
166
  if ( isset( $array['type'] ) && $array['type'] == 'checkbox' && isset( $array['required'] ) && $array['required'] == 1 && !isset( $args[$key] ) ) {
167
  $ultimatemember->form->add_error($key, sprintf(__('%s is required.','ultimatemember'), $array['title'] ) );
158
  $ultimatemember->form->add_error('profile_photo', sprintf(__('%s is required.','ultimatemember'), 'Profile Photo' ) );
159
  }
160
 
161
+
162
+ if( isset( $fields ) && ! empty( $fields ) ){
163
  foreach( $fields as $key => $array ) {
164
 
165
  $array = apply_filters('um_get_custom_field_array', $array, $fields );
166
+
167
+ if( isset( $array ['conditions'] ) && ! empty( $array ['conditions'] ) ){
168
+
169
+ foreach( $array ['conditions'] as $condition ){
170
+
171
+ $visibility = $condition[0];
172
+ $parent_key = $condition[1];
173
+ $op = $condition[2];
174
+ $parent_value = $condition[3];
175
+
176
+ if( $visibility == 'hide' ){
177
+ if( $op == 'equals to' ){
178
+
179
+ if( $args[ $parent_key ] == $parent_value ){
180
+ continue 2;
181
+ }
182
+
183
+ }
184
+ }
185
+
186
+ }
187
+
188
+ }
189
 
190
  if ( isset( $array['type'] ) && $array['type'] == 'checkbox' && isset( $array['required'] ) && $array['required'] == 1 && !isset( $args[$key] ) ) {
191
  $ultimatemember->form->add_error($key, sprintf(__('%s is required.','ultimatemember'), $array['title'] ) );
core/um-actions-login.php CHANGED
@@ -173,8 +173,11 @@
173
  exit( wp_redirect( $args['redirect_to'] ) );
174
  }
175
 
 
 
 
176
  // Role redirect
177
- $after = um_user('after_login');
178
  switch( $after ) {
179
 
180
  case 'redirect_admin':
@@ -186,7 +189,7 @@
186
  break;
187
 
188
  case 'redirect_url':
189
- exit( wp_redirect( um_user('login_redirect_url') ) );
190
  break;
191
 
192
  case 'refresh':
173
  exit( wp_redirect( $args['redirect_to'] ) );
174
  }
175
 
176
+ $role = um_user('role');
177
+ $role_data = $ultimatemember->query->role_data( $role );
178
+
179
  // Role redirect
180
+ $after = $role_data['after_login'];
181
  switch( $after ) {
182
 
183
  case 'redirect_admin':
189
  break;
190
 
191
  case 'redirect_url':
192
+ exit( wp_redirect( $role_data['login_redirect_url'] ) );
193
  break;
194
 
195
  case 'refresh':
core/um-actions-misc.php CHANGED
@@ -4,10 +4,12 @@
4
  *** @add a force redirect to from $_get
5
  ***/
6
  add_action('um_after_form_fields', 'um_browser_url_redirect_to');
7
- function um_browser_url_redirect_to($args) {
8
 
9
  global $ultimatemember;
10
 
 
 
11
  if ( isset( $_REQUEST['redirect_to'] ) && !empty( $_REQUEST['redirect_to'] ) ) {
12
  $url = $_REQUEST['redirect_to'];
13
  echo '<input type="hidden" name="redirect_to" id="redirect_to" value="'.esc_url( $url ).'" />';
@@ -29,14 +31,19 @@
29
  break;
30
 
31
  case 'refresh':
 
32
  $url = $ultimatemember->permalinks->get_current_url();
 
33
  break;
34
 
35
  }
36
 
 
 
37
 
 
 
38
  echo '<input type="hidden" name="redirect_to" id="redirect_to" value="' . esc_url( $url ) . '" />';
39
-
40
  }
41
 
42
  }
4
  *** @add a force redirect to from $_get
5
  ***/
6
  add_action('um_after_form_fields', 'um_browser_url_redirect_to');
7
+ function um_browser_url_redirect_to( $args ) {
8
 
9
  global $ultimatemember;
10
 
11
+ $url = '';
12
+
13
  if ( isset( $_REQUEST['redirect_to'] ) && !empty( $_REQUEST['redirect_to'] ) ) {
14
  $url = $_REQUEST['redirect_to'];
15
  echo '<input type="hidden" name="redirect_to" id="redirect_to" value="'.esc_url( $url ).'" />';
31
  break;
32
 
33
  case 'refresh':
34
+
35
  $url = $ultimatemember->permalinks->get_current_url();
36
+
37
  break;
38
 
39
  }
40
 
41
+ }
42
+
43
 
44
+ $url = apply_filters('um_browser_url_redirect_to__filter', $url );
45
+ if( ! empty( $url ) ){
46
  echo '<input type="hidden" name="redirect_to" id="redirect_to" value="' . esc_url( $url ) . '" />';
 
47
  }
48
 
49
  }
core/um-actions-password.php CHANGED
@@ -7,7 +7,13 @@
7
  function um_reset_password_process_hook( $args ) {
8
  global $ultimatemember;
9
 
10
- $user = $_POST['username_b'];
 
 
 
 
 
 
11
 
12
  if ( !is_email( $user ) ) {
13
  $data = get_user_by( 'login', $user );
@@ -60,6 +66,7 @@
60
  function um_send_password_change_email( $args ){
61
 
62
  global $ultimatemember;
 
63
 
64
  um_fetch_user( $user_id );
65
 
7
  function um_reset_password_process_hook( $args ) {
8
  global $ultimatemember;
9
 
10
+ $user = null;
11
+
12
+ foreach ( $_POST as $key => $val ) {
13
+ if( strstr( $key, "username_b") ){
14
+ $user = trim( $val );
15
+ }
16
+ }
17
 
18
  if ( !is_email( $user ) ) {
19
  $data = get_user_by( 'login', $user );
66
  function um_send_password_change_email( $args ){
67
 
68
  global $ultimatemember;
69
+ extract( $args );
70
 
71
  um_fetch_user( $user_id );
72
 
core/um-actions-profile.php CHANGED
@@ -42,7 +42,7 @@
42
  *** @update user's profile
43
  ***/
44
  add_action('um_user_edit_profile', 'um_user_edit_profile', 10);
45
- function um_user_edit_profile($args){
46
 
47
  global $ultimatemember;
48
 
@@ -109,17 +109,22 @@
109
 
110
  if ( is_array( $to_update ) ) {
111
  $ultimatemember->user->update_profile( $to_update );
 
 
112
  }
113
 
 
 
114
  if ( is_array( $files ) ) {
115
  $ultimatemember->user->update_files( $files );
 
116
  }
117
 
118
- do_action('um_after_user_updated', um_user('ID') );
119
- do_action('um_after_user_upload', um_user('ID') );
120
  do_action('um_user_after_updating_profile', $to_update );
 
121
  do_action('um_update_profile_full_name', $to_update );
122
 
 
123
  if ( !isset( $args['is_signup'] ) ) {
124
  $url = $ultimatemember->permalinks->profile_url( true );
125
  exit( wp_redirect( um_edit_my_profile_cancel_uri( $url ) ) );
@@ -201,6 +206,8 @@
201
 
202
  <div class="um-cover <?php if ( um_profile('cover_photo') || ( $default_cover && $default_cover['url'] ) ) echo 'has-cover'; ?>" data-user_id="<?php echo um_profile_id(); ?>" data-ratio="<?php echo $args['cover_ratio']; ?>">
203
 
 
 
204
  <?php
205
 
206
  if ( $ultimatemember->fields->editing ) {
42
  *** @update user's profile
43
  ***/
44
  add_action('um_user_edit_profile', 'um_user_edit_profile', 10);
45
+ function um_user_edit_profile( $args ){
46
 
47
  global $ultimatemember;
48
 
109
 
110
  if ( is_array( $to_update ) ) {
111
  $ultimatemember->user->update_profile( $to_update );
112
+ do_action('um_after_user_updated', um_user('ID') );
113
+
114
  }
115
 
116
+ $files = apply_filters('um_user_pre_updating_files_array', $files);
117
+
118
  if ( is_array( $files ) ) {
119
  $ultimatemember->user->update_files( $files );
120
+ do_action('um_after_user_upload', um_user('ID'), $files );
121
  }
122
 
 
 
123
  do_action('um_user_after_updating_profile', $to_update );
124
+
125
  do_action('um_update_profile_full_name', $to_update );
126
 
127
+
128
  if ( !isset( $args['is_signup'] ) ) {
129
  $url = $ultimatemember->permalinks->profile_url( true );
130
  exit( wp_redirect( um_edit_my_profile_cancel_uri( $url ) ) );
206
 
207
  <div class="um-cover <?php if ( um_profile('cover_photo') || ( $default_cover && $default_cover['url'] ) ) echo 'has-cover'; ?>" data-user_id="<?php echo um_profile_id(); ?>" data-ratio="<?php echo $args['cover_ratio']; ?>">
208
 
209
+ <?php do_action('um_cover_area_content', um_profile_id() ); ?>
210
+
211
  <?php
212
 
213
  if ( $ultimatemember->fields->editing ) {
core/um-builtin.php CHANGED
@@ -1082,7 +1082,7 @@ class UM_Builtin {
1082
  $fields_without_metakey = apply_filters('um_fields_without_metakey', $fields_without_metakey );
1083
 
1084
  if ( !$show_all ) {
1085
- $this->fields_dropdown = array('image','file','password','textarea','rating');
1086
  $this->fields_dropdown = array_merge( $this->fields_dropdown, $fields_without_metakey );
1087
  } else {
1088
  $this->fields_dropdown = $fields_without_metakey;
1082
  $fields_without_metakey = apply_filters('um_fields_without_metakey', $fields_without_metakey );
1083
 
1084
  if ( !$show_all ) {
1085
+ $this->fields_dropdown = array('image','file','password','rating');
1086
  $this->fields_dropdown = array_merge( $this->fields_dropdown, $fields_without_metakey );
1087
  } else {
1088
  $this->fields_dropdown = $fields_without_metakey;
core/um-fields.php CHANGED
@@ -435,7 +435,8 @@ class UM_Fields {
435
  $field_value = um_user( $key );
436
  $field_value= apply_filters('um_is_selected_filter_value', $field_value);
437
 
438
- if ( $field_value && $this->editing == true && is_array( $field_value ) && in_array( $value, $field_value ) ) {
 
439
  return true;
440
  }
441
 
@@ -1620,7 +1621,7 @@ class UM_Fields {
1620
  $val = (string) $val;
1621
  $val = trim( $val );
1622
  $post_id = $wpdb->get_var(
1623
- $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'um_role' AND post_name = %s OR post_title = %s", $key, $val )
1624
  );
1625
  $_role = get_post( $post_id );
1626
  if( isset( $_role->post_title ) ){
@@ -1804,7 +1805,7 @@ class UM_Fields {
1804
  $val = (string) $val;
1805
  $val = trim( $val );
1806
  $post_id = $wpdb->get_var(
1807
- $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'um_role' AND post_name = %s OR post_title = %s", $rkey, $val )
1808
  );
1809
  $_role = get_post($post_id);
1810
  $new_roles[$_role->post_name] = $_role->post_title;
435
  $field_value = um_user( $key );
436
  $field_value= apply_filters('um_is_selected_filter_value', $field_value);
437
 
438
+
439
+ if ( $field_value && $this->editing == true && is_array( $field_value ) && ( in_array( $value, $field_value ) || in_array( html_entity_decode( $value ), $field_value ) ) ) {
440
  return true;
441
  }
442
 
1621
  $val = (string) $val;
1622
  $val = trim( $val );
1623
  $post_id = $wpdb->get_var(
1624
+ $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'um_role' AND ( post_name = %s OR post_title = %s )", $key, $val )
1625
  );
1626
  $_role = get_post( $post_id );
1627
  if( isset( $_role->post_title ) ){
1805
  $val = (string) $val;
1806
  $val = trim( $val );
1807
  $post_id = $wpdb->get_var(
1808
+ $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'um_role' AND ( post_name = %s OR post_title = %s )", $rkey, $val )
1809
  );
1810
  $_role = get_post($post_id);
1811
  $new_roles[$_role->post_name] = $_role->post_title;
core/um-files.php CHANGED
@@ -378,6 +378,9 @@ class UM_Files {
378
  }
379
  }
380
 
 
 
 
381
  if ( $fileinfo['invalid_image'] == true ) {
382
  $error = sprintf(__('Your image is invalid or too large!','ultimatemember') );
383
  } elseif ( isset( $data['allowed_types'] ) && !$this->in_array( $fileinfo['extension'], $data['allowed_types'] ) ) {
@@ -537,7 +540,9 @@ class UM_Files {
537
  wp_die( __('Unauthorized to do this attempt.','ultimatemember') );
538
  }
539
 
540
- if ( !is_user_logged_in() && ( $key == 'profile_photo' || $key == 'cover_photo' ) ) {
 
 
541
  wp_die( __('Unauthorized to do this attempt.','ultimatemember') );
542
  }
543
 
378
  }
379
  }
380
 
381
+ $data = apply_filters("um_image_handle_global__option", $data );
382
+ $data = apply_filters("um_image_handle_{$field}__option", $data );
383
+
384
  if ( $fileinfo['invalid_image'] == true ) {
385
  $error = sprintf(__('Your image is invalid or too large!','ultimatemember') );
386
  } elseif ( isset( $data['allowed_types'] ) && !$this->in_array( $fileinfo['extension'], $data['allowed_types'] ) ) {
540
  wp_die( __('Unauthorized to do this attempt.','ultimatemember') );
541
  }
542
 
543
+ $allow_frontend_image_uploads = apply_filters('um_allow_frontend_image_uploads', false, $user_id, $key );
544
+
545
+ if ( $allow_frontend_image_uploads == false && !is_user_logged_in() && ( $key == 'profile_photo' || $key == 'cover_photo' ) ) {
546
  wp_die( __('Unauthorized to do this attempt.','ultimatemember') );
547
  }
548
 
core/um-filters-members.php CHANGED
@@ -53,7 +53,7 @@
53
 
54
  }
55
 
56
- if ( ! um_user_can('can_edit_everyone') ) {
57
  $query_args['meta_query'][] = array(
58
  "relation" => "OR",
59
  array(
@@ -104,7 +104,7 @@
104
 
105
  if ( !in_array( $field, $ultimatemember->members->core_search_fields ) ) {
106
 
107
- $query_args['meta_query'][] = array(
108
  array(
109
  'key' => $field,
110
  'value' => trim( $value ),
@@ -123,7 +123,9 @@
123
  'relation' => 'OR',
124
  );
125
 
126
-
 
 
127
 
128
  }
129
 
@@ -134,9 +136,7 @@
134
 
135
  }
136
 
137
-
138
-
139
- // allow filtering
140
  $query_args = apply_filters('um_query_args_filter', $query_args );
141
 
142
  if ( count ($query_args['meta_query']) == 1 ) {
53
 
54
  }
55
 
56
+ if ( ! um_user_can('can_edit_everyone') && um_get_option('account_hide_in_directory') ) {
57
  $query_args['meta_query'][] = array(
58
  "relation" => "OR",
59
  array(
104
 
105
  if ( !in_array( $field, $ultimatemember->members->core_search_fields ) ) {
106
 
107
+ $field_query = array(
108
  array(
109
  'key' => $field,
110
  'value' => trim( $value ),
123
  'relation' => 'OR',
124
  );
125
 
126
+
127
+ $field_query = apply_filters("um_query_args_{$field}__filter", $field_query );
128
+ $query_args['meta_query'][] = $field_query;
129
 
130
  }
131
 
136
 
137
  }
138
 
139
+ // allow filtering
 
 
140
  $query_args = apply_filters('um_query_args_filter', $query_args );
141
 
142
  if ( count ($query_args['meta_query']) == 1 ) {
core/um-members.php CHANGED
@@ -136,7 +136,7 @@ class UM_Members {
136
  /***
137
  *** @Generate a loop of results
138
  ***/
139
- function get_members($args){
140
 
141
  global $ultimatemember, $wpdb, $post;
142
 
@@ -154,9 +154,17 @@ class UM_Members {
154
  }
155
 
156
  $query_args['number'] = $profiles_per_page;
157
-
158
- $members_page = isset( $_REQUEST['members_page'] ) ? $_REQUEST['members_page'] : 1;
159
-
 
 
 
 
 
 
 
 
160
  $query_args['paged'] = $members_page;
161
 
162
  $users = new WP_User_Query( $query_args );
@@ -165,7 +173,7 @@ class UM_Members {
165
 
166
  $array['total_users'] = (isset( $max_users ) && $max_users && $max_users <= $users->total_users ) ? $max_users : $users->total_users;
167
 
168
- $array['page'] = ! isset( $_REQUEST['members_page'] ) && isset( $args['page'] ) ? $args['page'] : $members_page;
169
 
170
  $array['total_pages'] = ceil( $array['total_users'] / $profiles_per_page );
171
 
136
  /***
137
  *** @Generate a loop of results
138
  ***/
139
+ function get_members( $args ){
140
 
141
  global $ultimatemember, $wpdb, $post;
142
 
154
  }
155
 
156
  $query_args['number'] = $profiles_per_page;
157
+
158
+ if( isset( $args['number'] ) ){
159
+ $query_args['number'] = $args['number'];
160
+ }
161
+
162
+ if( isset( $args['page'] ) ){
163
+ $members_page = $args['page'];
164
+ }else{
165
+ $members_page = isset( $_REQUEST['members_page'] ) ? $_REQUEST['members_page'] : 1;
166
+ }
167
+
168
  $query_args['paged'] = $members_page;
169
 
170
  $users = new WP_User_Query( $query_args );
173
 
174
  $array['total_users'] = (isset( $max_users ) && $max_users && $max_users <= $users->total_users ) ? $max_users : $users->total_users;
175
 
176
+ $array['page'] = $members_page;
177
 
178
  $array['total_pages'] = ceil( $array['total_users'] / $profiles_per_page );
179
 
core/um-query.php CHANGED
@@ -6,11 +6,11 @@ class UM_Query {
6
  public $roles = array();
7
 
8
  function __construct() {
9
-
10
  add_action('wp_loaded', array(&$this, 'get_post_types'), 100 );
11
-
12
  }
13
-
14
  /***
15
  *** @get wp pages
16
  ***/
@@ -22,11 +22,11 @@ class UM_Query {
22
  }
23
 
24
  $count_pages = wp_count_posts('page');
25
-
26
  if ( $count_pages->publish > 300 ){
27
  return 'reached_maximum_limit';
28
  }
29
-
30
 
31
  $pages = $wpdb->get_results('SELECT * FROM '.$wpdb->posts.' WHERE post_type = "page" AND post_status = "publish" ', OBJECT);
32
 
@@ -41,27 +41,27 @@ class UM_Query {
41
 
42
  return $array;
43
  }
44
-
45
  /***
46
  *** @get all forms
47
  ***/
48
  function forms() {
49
-
50
  $args = array(
51
  'post_type' => 'um_form',
52
  'posts_per_page' => 200,
53
  'post_status' => array('publish')
54
  );
55
-
56
  $query = new WP_Query( $args );
57
  foreach( $query->posts as $post ) {
58
  setup_postdata( $post );
59
  $results[ $post->ID ] = $post->post_title;
60
  }
61
  return $results;
62
-
63
  }
64
-
65
  /***
66
  *** @get all post types
67
  ***/
@@ -71,18 +71,18 @@ class UM_Query {
71
  $this->get_post_types[] = $k;
72
  }
73
  }
74
-
75
  /***
76
  *** @Do custom queries
77
  ***/
78
  function make( $args ) {
79
-
80
  $defaults = array(
81
  'post_type' => 'post',
82
  'post_status' => array('publish')
83
  );
84
  $args = wp_parse_args( $args, $defaults );
85
-
86
  if ( isset( $args['post__in'] ) && empty( $args['post__in'] ) )
87
  return false;
88
 
@@ -91,34 +91,34 @@ class UM_Query {
91
  if ( $post_type == 'comment' ) { // comments
92
 
93
  unset( $args['post_type'] );
94
-
95
  $args['type__not_in'] = apply_filters( 'um_excluded_comment_types', array('') );
96
-
97
  $comments = get_comments($args);
98
  return $comments;
99
-
100
  } else {
101
 
102
  $custom_posts = new WP_Query();
103
  $custom_posts->query( $args );
104
  return $custom_posts;
105
-
106
  }
107
-
108
  }
109
-
110
  /***
111
  *** @Get last users
112
  ***/
113
  function get_recent_users($number = 5){
114
  global $wpdb;
115
-
116
  $args = array( 'fields' => 'ID', 'number' => $number, 'orderby' => 'user_registered', 'order' => 'desc' );
117
-
118
  $users = new WP_User_Query( $args );
119
  return $users->results;
120
  }
121
-
122
  /***
123
  *** @Count users by status
124
  ***/
@@ -136,13 +136,13 @@ class UM_Query {
136
  $users = new WP_User_Query( $args );
137
  return count($users->results);
138
  }
139
-
140
  /***
141
  *** @Get users by status
142
  ***/
143
  function get_users_by_status($status, $number = 5){
144
  global $wpdb;
145
-
146
  $args = array( 'fields' => 'ID', 'number' => $number, 'orderby' => 'user_registered', 'order' => 'desc' );
147
 
148
  $args['meta_query'][] = array(
@@ -152,11 +152,11 @@ class UM_Query {
152
  'compare' => '='
153
  )
154
  );
155
-
156
  $users = new WP_User_Query( $args );
157
  return $users->results;
158
  }
159
-
160
  /***
161
  *** @get user's role
162
  ***/
@@ -171,7 +171,7 @@ class UM_Query {
171
  }
172
  return $role;
173
  }
174
-
175
  /***
176
  *** @Count all users
177
  ***/
@@ -179,13 +179,13 @@ class UM_Query {
179
  $result = count_users();
180
  return $result['total_users'];
181
  }
182
-
183
  /***
184
  *** @Count users of specific role
185
  ***/
186
  function count_users_by_role($role){
187
  global $wpdb;
188
-
189
  $args['fields'] = 'ID';
190
  $args['meta_query'] = array(
191
  array(
@@ -194,19 +194,19 @@ class UM_Query {
194
  'compare' => '='
195
  )
196
  );
197
-
198
  $users = new WP_User_Query( $args );
199
-
200
  return count($users->results);
201
  }
202
-
203
  /***
204
  *** @Using wpdb instead of update_post_meta
205
  ***/
206
  function update_attr( $key, $post_id, $new_value ){
207
  update_post_meta( $post_id, '_um_' . $key, $new_value );
208
  }
209
-
210
  /***
211
  *** @get data
212
  ***/
@@ -214,7 +214,7 @@ class UM_Query {
214
  $meta = get_post_meta( $post_id, '_um_' . $key, true );
215
  return $meta;
216
  }
217
-
218
  /***
219
  *** @delete data
220
  ***/
@@ -222,7 +222,7 @@ class UM_Query {
222
  $meta = delete_post_meta( $post_id, '_um_' . $key );
223
  return $meta;
224
  }
225
-
226
  /***
227
  *** @Checks if post has a specific meta key
228
  ***/
@@ -240,7 +240,7 @@ class UM_Query {
240
  }
241
  return false;
242
  }
243
-
244
  /***
245
  *** @Get posts with specific meta key/value
246
  ***/
@@ -250,7 +250,7 @@ class UM_Query {
250
  return $posts[0]->ID;
251
  return false;
252
  }
253
-
254
  /***
255
  *** @Get role data
256
  ***/
@@ -260,7 +260,7 @@ class UM_Query {
260
  if ( get_option("um_cached_role_{$role_slug}") ) {
261
  return get_option("um_cached_role_{$role_slug}");
262
  }
263
-
264
  if ($role_slug == 'admin' || $role_slug == 'member'){
265
  $try = $this->find_post_id('um_role','_um_core',$role_slug);
266
  if ( isset( $try ) ){
@@ -271,7 +271,7 @@ class UM_Query {
271
  $post_id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'um_role' AND post_name = '$role_slug'");
272
  $real_role_slug = $role_slug;
273
  }
274
-
275
  if ( isset($post_id) && $post_id != '' ){
276
  $meta = get_post_custom( $post_id );
277
  $array['role'] = $real_role_slug;
@@ -280,22 +280,22 @@ class UM_Query {
280
  $k = str_replace('_um_', '', $k);
281
  $array[$k] = $v[0];
282
  }
283
-
284
  }
285
  } else {
286
-
287
  // no permissions, something wrong
288
  $array = $ultimatemember->setup->get_initial_permissions( $role_slug );
289
 
290
  }
291
-
292
  if ( !get_option("um_cached_role_{$role_slug}") ) {
293
  update_option("um_cached_role_{$role_slug}", $array );
294
  }
295
 
296
  return $array;
297
  }
298
-
299
  /***
300
  *** @Get post data
301
  ***/
@@ -314,9 +314,9 @@ class UM_Query {
314
  $k = str_replace('_um_', '', $k);
315
  $array[$k] = $v[0];
316
  }
317
-
318
  }
319
-
320
  foreach( $array as $k => $v ) {
321
  if ( strstr( $k, 'login_') || strstr( $k, 'register_' ) || strstr( $k, 'profile_' ) ){
322
  if ( $mode != 'directory' ) {
@@ -326,7 +326,7 @@ class UM_Query {
326
  }
327
  return $array;
328
  }
329
-
330
  /***
331
  *** @Capture selected value
332
  ***/
@@ -334,7 +334,7 @@ class UM_Query {
334
  global $post;
335
  $post_id = get_the_ID();
336
  $try = get_post_meta( $post_id, $key, true);
337
-
338
  if (isset($try) && !empty($try))
339
  if (is_array($try) && in_array($array_key, $try) ){
340
  return $array_key;
@@ -343,7 +343,7 @@ class UM_Query {
343
  } else {
344
  return $try;
345
  }
346
-
347
  if ($fallback == 'na') {
348
  $fallback = 0;
349
  $none = '';
@@ -352,7 +352,7 @@ class UM_Query {
352
  }
353
  return (!empty($fallback)) ? $fallback : $none;
354
  }
355
-
356
  /***
357
  *** @Checks if its a core page of UM
358
  ***/
@@ -364,12 +364,12 @@ class UM_Query {
364
  return false;
365
  }
366
  }
367
-
368
  /***
369
  *** @Query for UM roles
370
  ***/
371
  function get_roles( $add_default = false, $exclude = null ){
372
-
373
  $exclude_str = '';
374
 
375
  if( ! is_null( $exclude ) && is_array( $exclude ) ){
@@ -381,48 +381,48 @@ class UM_Query {
381
  }
382
 
383
  $roles = array();
384
-
385
  if ( $add_default ) {
386
  $roles[0] = $add_default;
387
  }
388
-
389
  $args = array(
390
  'post_type' => 'um_role',
391
  'posts_per_page' => -1,
392
  'post_status' => array('publish')
393
  );
394
-
395
- $results = new WP_Query($args);
396
 
397
- if ( $results->posts ){
 
 
 
 
398
 
399
- foreach($results->posts as $post) { setup_postdata( $post );
400
-
401
  if ( $this->is_core( $post->ID ) ){
402
  $roles[ $this->is_core( $post->ID ) ] = $post->post_title;
403
  } else {
404
  $roles[ $post->post_name ] = $post->post_title;
405
  }
406
-
407
  }
408
 
409
  } else {
410
-
411
  $roles['member'] = 'Member';
412
  $roles['admin'] = 'Admin';
413
-
414
  }
415
-
416
  if ( $exclude ) {
417
  foreach( $exclude as $role ) {
418
  unset($roles[$role]);
419
  }
420
  }
421
-
422
  $this->roles['is_add_default_'.$add_default ][ 'is_exclude_'.$exclude_str ] = $roles;
423
 
424
  return $roles;
425
-
426
  }
427
 
428
- }
6
  public $roles = array();
7
 
8
  function __construct() {
9
+
10
  add_action('wp_loaded', array(&$this, 'get_post_types'), 100 );
11
+
12
  }
13
+
14
  /***
15
  *** @get wp pages
16
  ***/
22
  }
23
 
24
  $count_pages = wp_count_posts('page');
25
+
26
  if ( $count_pages->publish > 300 ){
27
  return 'reached_maximum_limit';
28
  }
29
+
30
 
31
  $pages = $wpdb->get_results('SELECT * FROM '.$wpdb->posts.' WHERE post_type = "page" AND post_status = "publish" ', OBJECT);
32
 
41
 
42
  return $array;
43
  }
44
+
45
  /***
46
  *** @get all forms
47
  ***/
48
  function forms() {
49
+
50
  $args = array(
51
  'post_type' => 'um_form',
52
  'posts_per_page' => 200,
53
  'post_status' => array('publish')
54
  );
55
+
56
  $query = new WP_Query( $args );
57
  foreach( $query->posts as $post ) {
58
  setup_postdata( $post );
59
  $results[ $post->ID ] = $post->post_title;
60
  }
61
  return $results;
62
+
63
  }
64
+
65
  /***
66
  *** @get all post types
67
  ***/
71
  $this->get_post_types[] = $k;
72
  }
73
  }
74
+
75
  /***
76
  *** @Do custom queries
77
  ***/
78
  function make( $args ) {
79
+
80
  $defaults = array(
81
  'post_type' => 'post',
82
  'post_status' => array('publish')
83
  );
84
  $args = wp_parse_args( $args, $defaults );
85
+
86
  if ( isset( $args['post__in'] ) && empty( $args['post__in'] ) )
87
  return false;
88
 
91
  if ( $post_type == 'comment' ) { // comments
92
 
93
  unset( $args['post_type'] );
94
+
95
  $args['type__not_in'] = apply_filters( 'um_excluded_comment_types', array('') );
96
+
97
  $comments = get_comments($args);
98
  return $comments;
99
+
100
  } else {
101
 
102
  $custom_posts = new WP_Query();
103
  $custom_posts->query( $args );
104
  return $custom_posts;
105
+
106
  }
107
+
108
  }
109
+
110
  /***
111
  *** @Get last users
112
  ***/
113
  function get_recent_users($number = 5){
114
  global $wpdb;
115
+
116
  $args = array( 'fields' => 'ID', 'number' => $number, 'orderby' => 'user_registered', 'order' => 'desc' );
117
+
118
  $users = new WP_User_Query( $args );
119
  return $users->results;
120
  }
121
+
122
  /***
123
  *** @Count users by status
124
  ***/
136
  $users = new WP_User_Query( $args );
137
  return count($users->results);
138
  }
139
+
140
  /***
141
  *** @Get users by status
142
  ***/
143
  function get_users_by_status($status, $number = 5){
144
  global $wpdb;
145
+
146
  $args = array( 'fields' => 'ID', 'number' => $number, 'orderby' => 'user_registered', 'order' => 'desc' );
147
 
148
  $args['meta_query'][] = array(
152
  'compare' => '='
153
  )
154
  );
155
+
156
  $users = new WP_User_Query( $args );
157
  return $users->results;
158
  }
159
+
160
  /***
161
  *** @get user's role
162
  ***/
171
  }
172
  return $role;
173
  }
174
+
175
  /***
176
  *** @Count all users
177
  ***/
179
  $result = count_users();
180
  return $result['total_users'];
181
  }
182
+
183
  /***
184
  *** @Count users of specific role
185
  ***/
186
  function count_users_by_role($role){
187
  global $wpdb;
188
+
189
  $args['fields'] = 'ID';
190
  $args['meta_query'] = array(
191
  array(
194
  'compare' => '='
195
  )
196
  );
197
+
198
  $users = new WP_User_Query( $args );
199
+
200
  return count($users->results);
201
  }
202
+
203
  /***
204
  *** @Using wpdb instead of update_post_meta
205
  ***/
206
  function update_attr( $key, $post_id, $new_value ){
207
  update_post_meta( $post_id, '_um_' . $key, $new_value );
208
  }
209
+
210
  /***
211
  *** @get data
212
  ***/
214
  $meta = get_post_meta( $post_id, '_um_' . $key, true );
215
  return $meta;
216
  }
217
+
218
  /***
219
  *** @delete data
220
  ***/
222
  $meta = delete_post_meta( $post_id, '_um_' . $key );
223
  return $meta;
224
  }
225
+
226
  /***
227
  *** @Checks if post has a specific meta key
228
  ***/
240
  }
241
  return false;
242
  }
243
+
244
  /***
245
  *** @Get posts with specific meta key/value
246
  ***/
250
  return $posts[0]->ID;
251
  return false;
252
  }
253
+
254
  /***
255
  *** @Get role data
256
  ***/
260
  if ( get_option("um_cached_role_{$role_slug}") ) {
261
  return get_option("um_cached_role_{$role_slug}");
262
  }
263
+
264
  if ($role_slug == 'admin' || $role_slug == 'member'){
265
  $try = $this->find_post_id('um_role','_um_core',$role_slug);
266
  if ( isset( $try ) ){
271
  $post_id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'um_role' AND post_name = '$role_slug'");
272
  $real_role_slug = $role_slug;
273
  }
274
+
275
  if ( isset($post_id) && $post_id != '' ){
276
  $meta = get_post_custom( $post_id );
277
  $array['role'] = $real_role_slug;
280
  $k = str_replace('_um_', '', $k);
281
  $array[$k] = $v[0];
282
  }
283
+
284
  }
285
  } else {
286
+
287
  // no permissions, something wrong
288
  $array = $ultimatemember->setup->get_initial_permissions( $role_slug );
289
 
290
  }
291
+
292
  if ( !get_option("um_cached_role_{$role_slug}") ) {
293
  update_option("um_cached_role_{$role_slug}", $array );
294
  }
295
 
296
  return $array;
297
  }
298
+
299
  /***
300
  *** @Get post data
301
  ***/
314
  $k = str_replace('_um_', '', $k);
315
  $array[$k] = $v[0];
316
  }
317
+
318
  }
319
+
320
  foreach( $array as $k => $v ) {
321
  if ( strstr( $k, 'login_') || strstr( $k, 'register_' ) || strstr( $k, 'profile_' ) ){
322
  if ( $mode != 'directory' ) {
326
  }
327
  return $array;
328
  }
329
+
330
  /***
331
  *** @Capture selected value
332
  ***/
334
  global $post;
335
  $post_id = get_the_ID();
336
  $try = get_post_meta( $post_id, $key, true);
337
+
338
  if (isset($try) && !empty($try))
339
  if (is_array($try) && in_array($array_key, $try) ){
340
  return $array_key;
343
  } else {
344
  return $try;
345
  }
346
+
347
  if ($fallback == 'na') {
348
  $fallback = 0;
349
  $none = '';
352
  }
353
  return (!empty($fallback)) ? $fallback : $none;
354
  }
355
+
356
  /***
357
  *** @Checks if its a core page of UM
358
  ***/
364
  return false;
365
  }
366
  }
367
+
368
  /***
369
  *** @Query for UM roles
370
  ***/
371
  function get_roles( $add_default = false, $exclude = null ){
372
+
373
  $exclude_str = '';
374
 
375
  if( ! is_null( $exclude ) && is_array( $exclude ) ){
381
  }
382
 
383
  $roles = array();
384
+
385
  if ( $add_default ) {
386
  $roles[0] = $add_default;
387
  }
388
+
389
  $args = array(
390
  'post_type' => 'um_role',
391
  'posts_per_page' => -1,
392
  'post_status' => array('publish')
393
  );
 
 
394
 
395
+ $posts = get_posts($args);
396
+
397
+ if ( $posts ){
398
+
399
+ foreach($posts as $post) {
400
 
 
 
401
  if ( $this->is_core( $post->ID ) ){
402
  $roles[ $this->is_core( $post->ID ) ] = $post->post_title;
403
  } else {
404
  $roles[ $post->post_name ] = $post->post_title;
405
  }
406
+
407
  }
408
 
409
  } else {
410
+
411
  $roles['member'] = 'Member';
412
  $roles['admin'] = 'Admin';
413
+
414
  }
415
+
416
  if ( $exclude ) {
417
  foreach( $exclude as $role ) {
418
  unset($roles[$role]);
419
  }
420
  }
421
+
422
  $this->roles['is_add_default_'.$add_default ][ 'is_exclude_'.$exclude_str ] = $roles;
423
 
424
  return $roles;
425
+
426
  }
427
 
428
+ }
core/um-rewrite.php CHANGED
@@ -173,11 +173,17 @@ class UM_Rewrite {
173
 
174
  exit( wp_redirect( $url ) );
175
  }else{
176
- exit( wp_redirect( home_url() ) );
 
 
 
 
 
177
  }
178
 
179
  }
180
 
181
  }
182
 
 
183
  }
173
 
174
  exit( wp_redirect( $url ) );
175
  }else{
176
+
177
+ $redirect_to = apply_filters('um_locate_user_profile_not_loggedin__redirect', home_url() );
178
+ if( ! empty( $redirect_to ) ){
179
+ exit( wp_redirect( $redirect_to ) );
180
+ }
181
+
182
  }
183
 
184
  }
185
 
186
  }
187
 
188
+
189
  }
core/um-short-functions.php CHANGED
@@ -479,16 +479,16 @@ function um_user_ip() {
479
  }
480
 
481
 
482
- function um_profile_id() {
483
 
484
- if ( um_get_requested_user() ) {
485
- return um_get_requested_user();
486
- } else if ( is_user_logged_in() && get_current_user_id() ) {
487
- return get_current_user_id();
488
- }
489
 
490
- return 0;
491
- }
492
 
493
  /***
494
  *** @Check that temp upload is valid
479
  }
480
 
481
 
482
+ function um_profile_id() {
483
 
484
+ if ( um_get_requested_user() ) {
485
+ return um_get_requested_user();
486
+ } else if ( is_user_logged_in() && get_current_user_id() ) {
487
+ return get_current_user_id();
488
+ }
489
 
490
+ return 0;
491
+ }
492
 
493
  /***
494
  *** @Check that temp upload is valid
core/um-shortcodes.php CHANGED
@@ -547,9 +547,16 @@ class UM_Shortcodes {
547
  $a = shortcode_atts( array(
548
  'roles' => '',
549
  'not' => '',
 
550
  ), $atts );
551
 
552
- um_fetch_user( $user_ID );
 
 
 
 
 
 
553
 
554
  $current_user_role = um_user('role');
555
 
547
  $a = shortcode_atts( array(
548
  'roles' => '',
549
  'not' => '',
550
+ 'is_profile' => false,
551
  ), $atts );
552
 
553
+ if( $a['is_profile'] ){
554
+ um_fetch_user( um_profile_id() );
555
+ }else{
556
+ um_fetch_user( $user_ID );
557
+ }
558
+
559
+
560
 
561
  $current_user_role = um_user('role');
562
 
core/um-user.php CHANGED
@@ -690,6 +690,8 @@ class UM_User {
690
  }
691
  }
692
 
 
 
693
  $ultimatemember->profile->arr_user_roles[ 'is_1' ][ $slug ] = $role_id;
694
  $ultimatemember->profile->arr_user_roles[ 'is_' ][ $slug ] = $role_title;
695
 
690
  }
691
  }
692
 
693
+ wp_reset_query();
694
+
695
  $ultimatemember->profile->arr_user_roles[ 'is_1' ][ $slug ] = $role_id;
696
  $ultimatemember->profile->arr_user_roles[ 'is_' ][ $slug ] = $role_title;
697
 
index.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: 1.3.71
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimatemember
@@ -55,7 +55,7 @@ Domain Path: /languages
55
 
56
  $links = $more_links + $links;
57
 
58
- $links[] = '<a href="'.admin_url().'?um_adm_action=uninstall_ultimatemember" class="delete" title="'.__('Remove this plugin','ultimatemember').'">' . __( 'Uninstall','ultimatemember' ) . '</a>';
59
 
60
  return $links;
61
 
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: 1.3.72
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimatemember
55
 
56
  $links = $more_links + $links;
57
 
58
+ $links[] = '<a href="'.admin_url().'?um_adm_action=uninstall_ultimatemember" class="um-delete" title="'.__('Remove this plugin','ultimatemember').'">' . __( 'Uninstall','ultimatemember' ) . '</a>';
59
 
60
  return $links;
61
 
languages/ultimatemember-en_US.mo CHANGED
Binary file
languages/ultimatemember-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-07 09:57+0800\n"
6
- "PO-Revision-Date: 2016-07-07 09:58+0800\n"
7
  "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
  "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
  "Language: en_US\n"
@@ -21,6 +21,12 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-2: admin/core/lib/ReduxFramework\n"
22
  "X-Poedit-SearchPathExcluded-3: assets/vendor\n"
23
 
 
 
 
 
 
 
24
  #: admin/core/um-admin-access.php:107 admin/core/um-admin-dashboard.php:127
25
  #: admin/core/um-admin-redux.php:55
26
  msgid "Ultimate Member"
@@ -74,8 +80,8 @@ msgstr ""
74
  msgid "This field type is not setup correcty."
75
  msgstr ""
76
 
77
- #: admin/core/um-admin-actions.php:19 admin/core/um-admin-users.php:323
78
- #: core/um-user.php:67
79
  msgid "Community Role"
80
  msgstr ""
81
 
@@ -116,15 +122,15 @@ msgstr ""
116
  msgid "Users who cannot see content will get redirected to that URL."
117
  msgstr ""
118
 
119
- #: admin/core/um-admin-actions.php:209
120
  msgid "This is a translation of UM profile page?"
121
  msgstr ""
122
 
123
- #: admin/core/um-admin-actions.php:215
124
  msgid "This is a translation of UM account page?"
125
  msgstr ""
126
 
127
- #: admin/core/um-admin-actions.php:299
128
  #, php-format
129
  msgid "Duplicate of %s"
130
  msgstr ""
@@ -293,9 +299,9 @@ msgstr ""
293
 
294
  #: admin/core/um-admin-metabox.php:115 core/um-builtin.php:1011
295
  #: core/um-builtin.php:1026 um-config.php:159 um-config.php:169
296
- #: um-config.php:179 um-config.php:189 um-config.php:219 um-config.php:421
297
- #: um-config.php:431 um-config.php:463 um-config.php:494 um-config.php:503
298
- #: um-config.php:523 um-config.php:1315
299
  msgid "Yes"
300
  msgstr ""
301
 
@@ -303,8 +309,9 @@ msgstr ""
303
  #: core/um-actions-account.php:41 core/um-builtin.php:1010
304
  #: core/um-builtin.php:1011 core/um-builtin.php:1025 core/um-builtin.php:1026
305
  #: um-config.php:160 um-config.php:170 um-config.php:180 um-config.php:190
306
- #: um-config.php:220 um-config.php:422 um-config.php:432 um-config.php:464
307
- #: um-config.php:495 um-config.php:504 um-config.php:524 um-config.php:1316
 
308
  msgid "No"
309
  msgstr ""
310
 
@@ -384,8 +391,8 @@ msgstr ""
384
  #: admin/core/um-admin-metabox.php:286 admin/core/um-admin-metabox.php:292
385
  #: admin/core/um-admin-metabox.php:298 admin/templates/form/login_css.php:4
386
  #: admin/templates/form/profile_css.php:4
387
- #: admin/templates/form/register_css.php:4 um-config.php:1952
388
- #: um-config.php:1958
389
  msgid "Custom CSS"
390
  msgstr ""
391
 
@@ -412,28 +419,28 @@ msgstr ""
412
  msgid "Value"
413
  msgstr ""
414
 
415
- #: admin/core/um-admin-metabox.php:688
416
  msgid "Optional text to include with the divider"
417
  msgstr ""
418
 
419
- #: admin/core/um-admin-metabox.php:879
420
  msgid ""
421
  "Turn on to force users to create a strong password (A combination of one "
422
  "lowercase letter, one uppercase letter, and one number). If turned on this "
423
  "option is only applied to register forms and not to login forms."
424
  msgstr ""
425
 
426
- #: admin/core/um-admin-metabox.php:889
427
  msgid ""
428
  "Turn on to add a confirm password field. If turned on the confirm password "
429
  "field will only show on register forms and not on login forms."
430
  msgstr ""
431
 
432
- #: admin/core/um-admin-metabox.php:1253
433
  msgid "Minimum number that can be entered in this field"
434
  msgstr ""
435
 
436
- #: admin/core/um-admin-metabox.php:1263
437
  msgid "Maximum number that can be entered in this field"
438
  msgstr ""
439
 
@@ -494,7 +501,7 @@ msgid ""
494
  "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
495
  msgstr ""
496
 
497
- #: admin/core/um-admin-notices.php:175 core/um-actions-profile.php:209
498
  msgid "Remove"
499
  msgstr ""
500
 
@@ -527,10 +534,14 @@ msgid "Users have been updated."
527
  msgstr ""
528
 
529
  #: admin/core/um-admin-notices.php:204
 
 
 
 
530
  msgid "Super administrators cannot be modified."
531
  msgstr ""
532
 
533
- #: admin/core/um-admin-notices.php:205
534
  msgid "Other users have been updated."
535
  msgstr ""
536
 
@@ -576,8 +587,8 @@ msgstr ""
576
  msgid "Core"
577
  msgstr ""
578
 
579
- #: admin/core/um-admin-users.php:35 core/um-actions-account.php:375
580
- #: core/um-actions-account.php:410
581
  msgid "View profile"
582
  msgstr ""
583
 
@@ -586,7 +597,7 @@ msgid "Info"
586
  msgstr ""
587
 
588
  #: admin/core/um-admin-users.php:129 admin/templates/dashboard/users.php:12
589
- #: core/um-user.php:236
590
  msgid "Approved"
591
  msgstr ""
592
 
@@ -606,36 +617,36 @@ msgstr ""
606
  msgid "Rejected"
607
  msgstr ""
608
 
609
- #: admin/core/um-admin-users.php:178 admin/core/um-admin-users.php:214
610
  #: core/um-actions-core.php:21
611
  msgid "You do not have enough permissions to do that."
612
  msgstr ""
613
 
614
- #: admin/core/um-admin-users.php:272 admin/core/um-admin-users.php:274
615
  msgid "Filter by"
616
  msgstr ""
617
 
618
- #: admin/core/um-admin-users.php:283
619
  msgid "Filter"
620
  msgstr ""
621
 
622
- #: admin/core/um-admin-users.php:289 admin/core/um-admin-users.php:291
623
  msgid "UM Action"
624
  msgstr ""
625
 
626
- #: admin/core/um-admin-users.php:295 core/um-fields.php:1420
627
  msgid "Apply"
628
  msgstr ""
629
 
630
- #: admin/core/um-admin-users.php:301
631
  msgid "Community role&hellip;"
632
  msgstr ""
633
 
634
- #: admin/core/um-admin-users.php:308
635
  msgid "Change"
636
  msgstr ""
637
 
638
- #: admin/core/um-admin-users.php:323
639
  msgid "This is the membership role set by Ultimate Member plugin"
640
  msgstr ""
641
 
@@ -709,11 +720,11 @@ msgstr ""
709
  msgid "Users"
710
  msgstr ""
711
 
712
- #: admin/templates/dashboard/users.php:30 core/um-user.php:244
713
  msgid "Pending Review"
714
  msgstr ""
715
 
716
- #: admin/templates/dashboard/users.php:35 core/um-user.php:240
717
  msgid "Awaiting E-mail Confirmation"
718
  msgstr ""
719
 
@@ -1035,7 +1046,7 @@ msgid ""
1035
  "<strong>Note:</strong> Form type cannot be changed for the default forms."
1036
  msgstr ""
1037
 
1038
- #: admin/templates/form/mode.php:9 um-config.php:1737
1039
  msgid "Registration Form"
1040
  msgstr ""
1041
 
@@ -1043,7 +1054,7 @@ msgstr ""
1043
  msgid "Profile Form"
1044
  msgstr ""
1045
 
1046
- #: admin/templates/form/mode.php:13 um-config.php:1839
1047
  msgid "Login Form"
1048
  msgstr ""
1049
 
@@ -1067,23 +1078,23 @@ msgstr ""
1067
  msgid "Cover photo ratio"
1068
  msgstr ""
1069
 
1070
- #: admin/templates/form/profile_customize.php:129 um-config.php:1470
1071
  msgid "Profile Photo Size"
1072
  msgstr ""
1073
 
1074
- #: admin/templates/form/profile_customize.php:133 um-config.php:1479
1075
  msgid "Profile Photo Style"
1076
  msgstr ""
1077
 
1078
- #: admin/templates/form/profile_customize.php:136 um-config.php:1483
1079
  msgid "Circle"
1080
  msgstr ""
1081
 
1082
- #: admin/templates/form/profile_customize.php:137 um-config.php:1484
1083
  msgid "Rounded Corners"
1084
  msgstr ""
1085
 
1086
- #: admin/templates/form/profile_customize.php:138 um-config.php:1485
1087
  msgid "Square"
1088
  msgstr ""
1089
 
@@ -1141,8 +1152,8 @@ msgstr ""
1141
  msgid "Assign role to form"
1142
  msgstr ""
1143
 
1144
- #: admin/templates/form/register_customize.php:42 um-config.php:1370
1145
- #: um-config.php:1763 um-config.php:1865
1146
  msgid "The shortcode is centered by default unless you specify otherwise here"
1147
  msgstr ""
1148
 
@@ -1194,9 +1205,9 @@ msgstr ""
1194
  #: admin/templates/modal/dynamic_new_divider.php:15
1195
  #: admin/templates/modal/dynamic_new_field.php:15
1196
  #: admin/templates/modal/dynamic_new_group.php:15
1197
- #: core/um-actions-profile.php:210 core/um-actions-profile.php:324
1198
- #: core/um-actions-profile.php:336 core/um-actions-profile.php:505
1199
- #: core/um-fields.php:1421 core/um-fields.php:1509
1200
  msgid "Cancel"
1201
  msgstr ""
1202
 
@@ -1537,7 +1548,7 @@ msgstr ""
1537
  msgid "Support"
1538
  msgstr ""
1539
 
1540
- #: core/lib/upload/um-file-upload.php:54 core/lib/upload/um-image-upload.php:52
1541
  msgid "A theme or plugin compatibility issue"
1542
  msgstr ""
1543
 
@@ -1553,11 +1564,11 @@ msgstr ""
1553
  msgid "Privacy"
1554
  msgstr ""
1555
 
1556
- #: core/um-account.php:36 um-config.php:897
1557
  msgid "Notifications"
1558
  msgstr ""
1559
 
1560
- #: core/um-account.php:39 core/um-actions-account.php:222
1561
  #: core/um-builtin.php:1017 core/um-builtin.php:1020
1562
  msgid "Delete Account"
1563
  msgstr ""
@@ -1582,71 +1593,71 @@ msgstr ""
1582
  msgid "Email already linked to another account"
1583
  msgstr ""
1584
 
1585
- #: core/um-actions-account.php:135 core/um-actions-account.php:175
1586
  msgid "This is not your password"
1587
  msgstr ""
1588
 
1589
- #: core/um-actions-account.php:140
1590
  msgid "Your new password does not match"
1591
  msgstr ""
1592
 
1593
- #: core/um-actions-account.php:147 core/um-actions-password.php:165
1594
  msgid "Your password must contain at least 8 characters"
1595
  msgstr ""
1596
 
1597
- #: core/um-actions-account.php:151 core/um-actions-password.php:169
1598
  msgid "Your password must contain less than 30 characters"
1599
  msgstr ""
1600
 
1601
- #: core/um-actions-account.php:155 core/um-actions-form.php:222
1602
- #: core/um-actions-password.php:173
1603
  msgid ""
1604
  "Your password must contain at least one lowercase letter, one capital letter "
1605
  "and one number"
1606
  msgstr ""
1607
 
1608
- #: core/um-actions-account.php:165
1609
  msgid "Your username is invalid"
1610
  msgstr ""
1611
 
1612
- #: core/um-actions-account.php:172
1613
  msgid "You must enter your password"
1614
  msgstr ""
1615
 
1616
- #: core/um-actions-account.php:252
1617
  msgid "Update Privacy"
1618
  msgstr ""
1619
 
1620
- #: core/um-actions-account.php:282
1621
  msgid "Update Account"
1622
  msgstr ""
1623
 
1624
- #: core/um-actions-account.php:312
1625
  msgid "Update Password"
1626
  msgstr ""
1627
 
1628
- #: core/um-actions-account.php:339
1629
  msgid "Email me when"
1630
  msgstr ""
1631
 
1632
- #: core/um-actions-account.php:348
1633
  msgid "Update Notifications"
1634
  msgstr ""
1635
 
1636
- #: core/um-actions-ajax.php:42 core/um-actions-ajax.php:57
1637
- #: core/um-actions-ajax.php:109
1638
  msgid "You can not edit this user"
1639
  msgstr ""
1640
 
1641
- #: core/um-actions-ajax.php:74
1642
  msgid "Invalid parameters"
1643
  msgstr ""
1644
 
1645
- #: core/um-actions-ajax.php:77
1646
  msgid "Invalid coordinates"
1647
  msgstr ""
1648
 
1649
- #: core/um-actions-ajax.php:80
1650
  msgid "Invalid Image file"
1651
  msgstr ""
1652
 
@@ -1658,119 +1669,127 @@ msgstr ""
1658
  msgid "You are not allowed to use this word as your username."
1659
  msgstr ""
1660
 
1661
- #: core/um-actions-form.php:158 core/um-actions-form.php:167
1662
- #: core/um-actions-form.php:171 core/um-actions-form.php:175
1663
- #: core/um-actions-form.php:179
1664
  #, php-format
1665
  msgid "%s is required."
1666
  msgstr ""
1667
 
1668
- #: core/um-actions-form.php:184
1669
  msgid "Please specify account type."
1670
  msgstr ""
1671
 
1672
- #: core/um-actions-form.php:192
1673
  #, php-format
1674
  msgid "%s is required"
1675
  msgstr ""
1676
 
1677
- #: core/um-actions-form.php:198
1678
  #, php-format
1679
  msgid "You are only allowed to enter a maximum of %s words"
1680
  msgstr ""
1681
 
1682
- #: core/um-actions-form.php:204
1683
  #, php-format
1684
  msgid "Your %s must contain at least %s characters"
1685
  msgstr ""
1686
 
1687
- #: core/um-actions-form.php:210
1688
  #, php-format
1689
  msgid "Your %s must contain less than %s characters"
1690
  msgstr ""
1691
 
1692
- #: core/um-actions-form.php:216
1693
  msgid "You can not use HTML tags here"
1694
  msgstr ""
1695
 
1696
- #: core/um-actions-form.php:228
1697
  msgid "Please confirm your password"
1698
  msgstr ""
1699
 
1700
- #: core/um-actions-form.php:231 core/um-actions-password.php:183
1701
  msgid "Your passwords do not match"
1702
  msgstr ""
1703
 
1704
- #: core/um-actions-form.php:237
1705
  #, php-format
1706
  msgid "Please select at least %s choices"
1707
  msgstr ""
1708
 
1709
- #: core/um-actions-form.php:243
1710
  #, php-format
1711
  msgid "You can only select up to %s choices"
1712
  msgstr ""
1713
 
1714
- #: core/um-actions-form.php:258
1715
  msgid "Please enter numbers only in this field"
1716
  msgstr ""
1717
 
1718
- #: core/um-actions-form.php:264
1719
  msgid "Please enter a valid phone number"
1720
  msgstr ""
1721
 
1722
- #: core/um-actions-form.php:270 core/um-actions-form.php:276
1723
- #: core/um-actions-form.php:282 core/um-actions-form.php:288
1724
- #: core/um-actions-form.php:294 core/um-actions-form.php:300
1725
- #: core/um-actions-form.php:306 core/um-actions-form.php:312
1726
- #: core/um-actions-form.php:324
1727
  #, php-format
1728
  msgid "Please enter a valid %s username or profile URL"
1729
  msgstr ""
1730
 
1731
- #: core/um-actions-form.php:318
1732
  msgid "Please enter a valid URL"
1733
  msgstr ""
1734
 
1735
- #: core/um-actions-form.php:331 core/um-actions-form.php:345
1736
  msgid "You must provide a username"
1737
  msgstr ""
1738
 
1739
- #: core/um-actions-form.php:333 core/um-actions-form.php:347
1740
  msgid "Your username is already taken"
1741
  msgstr ""
1742
 
1743
- #: core/um-actions-form.php:335
1744
  msgid "Username cannot be an email"
1745
  msgstr ""
1746
 
1747
- #: core/um-actions-form.php:337 core/um-actions-form.php:351
1748
  msgid "Your username contains invalid characters"
1749
  msgstr ""
1750
 
1751
- #: core/um-actions-form.php:349 core/um-actions-form.php:363
1752
- #: core/um-actions-form.php:365 core/um-actions-form.php:377
1753
- #: core/um-actions-form.php:384
1754
  msgid "This email is already linked to an existing account"
1755
  msgstr ""
1756
 
1757
- #: core/um-actions-form.php:361
1758
  msgid "You must provide your email"
1759
  msgstr ""
1760
 
1761
- #: core/um-actions-form.php:367 core/um-actions-form.php:375
1762
  msgid "This is not a valid email"
1763
  msgstr ""
1764
 
1765
- #: core/um-actions-form.php:369
1766
  msgid "Your email contains invalid characters"
1767
  msgstr ""
1768
 
1769
- #: core/um-actions-form.php:409
1770
  msgid "You must provide a unique value"
1771
  msgstr ""
1772
 
1773
- #: core/um-actions-form.php:423
 
 
 
 
 
 
 
 
1774
  #, php-format
1775
  msgid "Your user description must contain less than %s characters"
1776
  msgstr ""
@@ -1811,11 +1830,11 @@ msgstr ""
1811
  msgid "This action has been prevented for security measures."
1812
  msgstr ""
1813
 
1814
- #: core/um-actions-login.php:239
1815
  msgid "Keep me signed in"
1816
  msgstr ""
1817
 
1818
- #: core/um-actions-login.php:273
1819
  msgid "Forgot your password?"
1820
  msgstr ""
1821
 
@@ -1852,94 +1871,94 @@ msgstr ""
1852
  msgid "Last Page"
1853
  msgstr ""
1854
 
1855
- #: core/um-actions-misc.php:57 core/um-actions-misc.php:92
1856
  msgid "Registration is currently disabled"
1857
  msgstr ""
1858
 
1859
- #: core/um-actions-misc.php:68
1860
  msgid "Your account was updated successfully."
1861
  msgstr ""
1862
 
1863
- #: core/um-actions-misc.php:72
1864
  msgid "You have successfully changed your password."
1865
  msgstr ""
1866
 
1867
- #: core/um-actions-misc.php:76
1868
  msgid "Your account is now active! You can login."
1869
  msgstr ""
1870
 
1871
- #: core/um-actions-misc.php:88
1872
  msgid "An error has been encountered"
1873
  msgstr ""
1874
 
1875
- #: core/um-actions-misc.php:96 core/um-filters-login.php:33
1876
  msgid "This email address has been blocked."
1877
  msgstr ""
1878
 
1879
- #: core/um-actions-misc.php:100
1880
  msgid "We do not accept registrations from that domain."
1881
  msgstr ""
1882
 
1883
- #: core/um-actions-misc.php:104 core/um-filters-login.php:36
1884
  msgid "Your IP address has been blocked."
1885
  msgstr ""
1886
 
1887
- #: core/um-actions-misc.php:108 core/um-filters-login.php:78
1888
  msgid "Your account has been disabled."
1889
  msgstr ""
1890
 
1891
- #: core/um-actions-misc.php:112 core/um-filters-login.php:81
1892
  msgid "Your account has not been approved yet."
1893
  msgstr ""
1894
 
1895
- #: core/um-actions-misc.php:116 core/um-filters-login.php:84
1896
  msgid "Your account is awaiting e-mail verification."
1897
  msgstr ""
1898
 
1899
- #: core/um-actions-misc.php:120 core/um-filters-login.php:87
1900
  msgid "Your membership request has been rejected."
1901
  msgstr ""
1902
 
1903
- #: core/um-actions-password.php:97 core/um-actions-password.php:153
1904
- #: core/um-form.php:130
1905
  msgid "Hello, spam bot!"
1906
  msgstr ""
1907
 
1908
- #: core/um-actions-password.php:100 core/um-actions-password.php:156
1909
- #: core/um-form.php:133
1910
  msgid ""
1911
  "Whoa, slow down! You're seeing this message because you tried to submit a "
1912
  "form too fast and we think you might be a spam bot. If you are a real human "
1913
  "being please wait a few seconds before submitting the form. Thanks!"
1914
  msgstr ""
1915
 
1916
- #: core/um-actions-password.php:103
1917
  msgid "Please provide your username or email"
1918
  msgstr ""
1919
 
1920
- #: core/um-actions-password.php:109
1921
  msgid "We can't find an account registered with that address or username"
1922
  msgstr ""
1923
 
1924
- #: core/um-actions-password.php:128
1925
  msgid ""
1926
  "You have reached the limit for requesting password change for this user "
1927
  "already. Contact support if you cannot open the email"
1928
  msgstr ""
1929
 
1930
- #: core/um-actions-password.php:159
1931
  msgid "You must enter a new password"
1932
  msgstr ""
1933
 
1934
- #: core/um-actions-password.php:179
1935
  msgid "You must confirm your new password"
1936
  msgstr ""
1937
 
1938
- #: core/um-actions-password.php:237
1939
  msgid "Reset my password"
1940
  msgstr ""
1941
 
1942
- #: core/um-actions-password.php:264
1943
  msgid "Change my password"
1944
  msgstr ""
1945
 
@@ -1947,32 +1966,32 @@ msgstr ""
1947
  msgid "You are not allowed to edit this user."
1948
  msgstr ""
1949
 
1950
- #: core/um-actions-profile.php:194 core/um-builtin.php:954
1951
  msgid "Change your cover photo"
1952
  msgstr ""
1953
 
1954
- #: core/um-actions-profile.php:208
1955
  msgid "Change cover photo"
1956
  msgstr ""
1957
 
1958
- #: core/um-actions-profile.php:250
1959
  msgid "Upload a cover photo"
1960
  msgstr ""
1961
 
1962
- #: core/um-actions-profile.php:323
1963
  msgid "Upload photo"
1964
  msgstr ""
1965
 
1966
- #: core/um-actions-profile.php:334 core/um-fields.php:1385
1967
- #: core/um-fields.php:1420
1968
  msgid "Change photo"
1969
  msgstr ""
1970
 
1971
- #: core/um-actions-profile.php:335
1972
  msgid "Remove photo"
1973
  msgstr ""
1974
 
1975
- #: core/um-actions-profile.php:406
1976
  msgid "Tell us a bit about yourself..."
1977
  msgstr ""
1978
 
@@ -1989,11 +2008,11 @@ msgstr ""
1989
  msgid "My Account"
1990
  msgstr ""
1991
 
1992
- #: core/um-actions-profile.php:504 core/um-actions-user.php:76
1993
  msgid "Logout"
1994
  msgstr ""
1995
 
1996
- #: core/um-actions-user.php:75
1997
  msgid "Your account"
1998
  msgstr ""
1999
 
@@ -2150,7 +2169,7 @@ msgstr ""
2150
  msgid "Everyone"
2151
  msgstr ""
2152
 
2153
- #: core/um-builtin.php:551 core/um-user.php:800
2154
  msgid "Only me"
2155
  msgstr ""
2156
 
@@ -4184,71 +4203,71 @@ msgstr ""
4184
  msgid "Less than 1 year old"
4185
  msgstr ""
4186
 
4187
- #: core/um-fields.php:564
4188
  msgid "Custom Field"
4189
  msgstr ""
4190
 
4191
- #: core/um-fields.php:835
4192
  msgid "Please upload a valid image!"
4193
  msgstr ""
4194
 
4195
- #: core/um-fields.php:842 core/um-fields.php:863
4196
  msgid "Upload"
4197
  msgstr ""
4198
 
4199
- #: core/um-fields.php:843
4200
  msgid "Sorry this is not a valid image."
4201
  msgstr ""
4202
 
4203
- #: core/um-fields.php:844
4204
  msgid "This image is too large!"
4205
  msgstr ""
4206
 
4207
- #: core/um-fields.php:845
4208
  msgid "This image is too small!"
4209
  msgstr ""
4210
 
4211
- #: core/um-fields.php:846
4212
  msgid "You can only upload one image"
4213
  msgstr ""
4214
 
4215
- #: core/um-fields.php:1093
4216
  msgid "Current Password"
4217
  msgstr ""
4218
 
4219
- #: core/um-fields.php:1122
4220
  msgid "New Password"
4221
  msgstr ""
4222
 
4223
- #: core/um-fields.php:1154
4224
  #, php-format
4225
  msgid "Confirm %s"
4226
  msgstr ""
4227
 
4228
- #: core/um-fields.php:1366 core/um-fields.php:1450
4229
  msgid "Upload Photo"
4230
  msgstr ""
4231
 
4232
- #: core/um-fields.php:1420 core/um-fields.php:1508
4233
  msgid "Processing..."
4234
  msgstr ""
4235
 
4236
- #: core/um-fields.php:1466 core/um-fields.php:1508
4237
  msgid "Change file"
4238
  msgstr ""
4239
 
4240
- #: core/um-fields.php:1508
4241
  msgid "Save"
4242
  msgstr ""
4243
 
4244
- #: core/um-fields.php:2254
4245
  #, php-format
4246
  msgid ""
4247
  "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
4248
  "information!"
4249
  msgstr ""
4250
 
4251
- #: core/um-fields.php:2256
4252
  msgid "This user has not added any information to their profile yet."
4253
  msgstr ""
4254
 
@@ -4256,20 +4275,20 @@ msgstr ""
4256
  msgid "This media type is not recognized."
4257
  msgstr ""
4258
 
4259
- #: core/um-files.php:382
4260
  msgid "Your image is invalid or too large!"
4261
  msgstr ""
4262
 
4263
- #: core/um-files.php:388 core/um-files.php:390
4264
  #, php-format
4265
  msgid "Your photo is too small. It must be at least %spx wide."
4266
  msgstr ""
4267
 
4268
- #: core/um-files.php:442
4269
  msgid "Ultimate Member: Not a valid temp file"
4270
  msgstr ""
4271
 
4272
- #: core/um-files.php:537 core/um-files.php:541
4273
  msgid "Unauthorized to do this attempt."
4274
  msgstr ""
4275
 
@@ -4293,29 +4312,25 @@ msgstr ""
4293
  msgid "Required"
4294
  msgstr ""
4295
 
4296
- #: core/um-filters-fields.php:21
4297
- msgid "Age"
4298
- msgstr ""
4299
-
4300
- #: core/um-filters-fields.php:32
4301
  msgid "Invalid soundcloud track ID"
4302
  msgstr ""
4303
 
4304
- #: core/um-filters-fields.php:91
4305
  #, php-format
4306
  msgid "Joined %s"
4307
  msgstr ""
4308
 
4309
- #: core/um-filters-fields.php:100
4310
  #, php-format
4311
  msgid "Last login: %s"
4312
  msgstr ""
4313
 
4314
- #: core/um-filters-fields.php:162
4315
  msgid "This file has been removed."
4316
  msgstr ""
4317
 
4318
- #: core/um-filters-fields.php:183
4319
  msgid "Untitled photo"
4320
  msgstr ""
4321
 
@@ -4368,7 +4383,7 @@ msgstr ""
4368
  msgid "Login as this user"
4369
  msgstr ""
4370
 
4371
- #: core/um-form.php:110 core/um-form.php:114
4372
  msgid "This is not possible for security reasons."
4373
  msgstr ""
4374
 
@@ -4388,11 +4403,11 @@ msgstr ""
4388
  msgid "Select the member roles that can see this link"
4389
  msgstr ""
4390
 
4391
- #: core/um-password.php:32
4392
  msgid "This is not a valid hash, or it has expired."
4393
  msgstr ""
4394
 
4395
- #: core/um-permalinks.php:162
4396
  msgid "This activation link is expired or have already been used."
4397
  msgstr ""
4398
 
@@ -4404,11 +4419,11 @@ msgstr ""
4404
  msgid "Login"
4405
  msgstr ""
4406
 
4407
- #: core/um-short-functions.php:374
4408
  msgid "date submitted"
4409
  msgstr ""
4410
 
4411
- #: core/um-short-functions.php:379
4412
  msgid "(empty)"
4413
  msgstr ""
4414
 
@@ -4516,15 +4531,15 @@ msgstr ""
4516
  msgid "Comments"
4517
  msgstr ""
4518
 
4519
- #: core/um-user.php:75
4520
  msgid "Assign or change the community role for this user"
4521
  msgstr ""
4522
 
4523
- #: core/um-user.php:248
4524
  msgid "Membership Rejected"
4525
  msgstr ""
4526
 
4527
- #: core/um-user.php:252
4528
  msgid "Membership Inactive"
4529
  msgstr ""
4530
 
@@ -4831,27 +4846,29 @@ msgstr ""
4831
 
4832
  #: um-config.php:230 um-config.php:240 um-config.php:264 um-config.php:274
4833
  #: um-config.php:284 um-config.php:294 um-config.php:317 um-config.php:326
4834
- #: um-config.php:337 um-config.php:347 um-config.php:357 um-config.php:914
4835
- #: um-config.php:947 um-config.php:981 um-config.php:1407 um-config.php:1495
4836
- #: um-config.php:1521 um-config.php:1576 um-config.php:1586 um-config.php:1596
4837
- #: um-config.php:1606 um-config.php:1638 um-config.php:1648 um-config.php:1663
4838
- #: um-config.php:1675 um-config.php:1722 um-config.php:1800 um-config.php:1902
4839
- #: um-config.php:1930 um-config.php:1940 um-config.php:1987 um-config.php:1997
4840
- #: um-config.php:2020 um-config.php:2030 um-config.php:2040 um-config.php:2050
4841
- #: um-config.php:2060 um-config.php:2070 um-config.php:2097 um-config.php:2106
 
4842
  msgid "On"
4843
  msgstr ""
4844
 
4845
  #: um-config.php:231 um-config.php:241 um-config.php:265 um-config.php:275
4846
  #: um-config.php:285 um-config.php:295 um-config.php:318 um-config.php:327
4847
- #: um-config.php:338 um-config.php:348 um-config.php:358 um-config.php:915
4848
- #: um-config.php:948 um-config.php:982 um-config.php:1408 um-config.php:1496
4849
- #: um-config.php:1522 um-config.php:1577 um-config.php:1587 um-config.php:1597
4850
- #: um-config.php:1607 um-config.php:1639 um-config.php:1649 um-config.php:1664
4851
- #: um-config.php:1676 um-config.php:1723 um-config.php:1801 um-config.php:1903
4852
- #: um-config.php:1931 um-config.php:1941 um-config.php:1988 um-config.php:1998
4853
- #: um-config.php:2021 um-config.php:2031 um-config.php:2041 um-config.php:2051
4854
- #: um-config.php:2061 um-config.php:2071 um-config.php:2098 um-config.php:2107
 
4855
  msgid "Off"
4856
  msgstr ""
4857
 
@@ -5003,1061 +5020,1083 @@ msgstr ""
5003
  msgid "Add New URL"
5004
  msgstr ""
5005
 
5006
- #: um-config.php:418
 
 
 
 
 
 
 
 
5007
  msgid "Allow Backend Login Screen for Guests"
5008
  msgstr ""
5009
 
5010
- #: um-config.php:420
5011
  msgid ""
5012
  "Control whether guests are able to access the WP-admin login screen or not"
5013
  msgstr ""
5014
 
5015
- #: um-config.php:428
5016
  msgid "Disable Admin Login via Frontend"
5017
  msgstr ""
5018
 
5019
- #: um-config.php:430
5020
  msgid ""
5021
  "DO NOT turn this option on if you have set the option \"Allow Backend Login "
5022
  "Screen for Guests\" to NO. This will result in being locked out of admin."
5023
  msgstr ""
5024
 
5025
- #: um-config.php:439
5026
  msgid "Redirect to alternative login page"
5027
  msgstr ""
5028
 
5029
- #: um-config.php:440
5030
  msgid ""
5031
  "If you disable backend access to login screen, specify here where a user "
5032
  "will be redirected"
5033
  msgstr ""
5034
 
5035
- #: um-config.php:452 um-config.php:484
5036
  msgid "Custom URL"
5037
  msgstr ""
5038
 
5039
- #: um-config.php:453 um-config.php:485
5040
  msgid ""
5041
  "Enter an alternate url here to redirect a user If they try to access the "
5042
  "backend register screen"
5043
  msgstr ""
5044
 
5045
- #: um-config.php:460
5046
  msgid "Allow Backend Register Screen for Guests"
5047
  msgstr ""
5048
 
5049
- #: um-config.php:462
5050
  msgid ""
5051
  "Control whether guests are able to access the WP-admin register screen or not"
5052
  msgstr ""
5053
 
5054
- #: um-config.php:471
5055
  msgid "Redirect to alternative register page"
5056
  msgstr ""
5057
 
5058
- #: um-config.php:472
5059
  msgid ""
5060
  "If you disable backend access to register screen, specify here where a user "
5061
  "will be redirected"
5062
  msgstr ""
5063
 
5064
- #: um-config.php:492
5065
  msgid "Enable the Access Control widget for Admins only?"
5066
  msgstr ""
5067
 
5068
- #: um-config.php:501
5069
  msgid "Enable the Reset Password Limit?"
5070
  msgstr ""
5071
 
5072
- #: um-config.php:510
5073
  msgid "Reset Password Limit"
5074
  msgstr ""
5075
 
5076
- #: um-config.php:511
5077
  msgid ""
5078
  "Set the maximum reset password limit. If reached the maximum limit, user "
5079
  "will be locked from using this."
5080
  msgstr ""
5081
 
5082
- #: um-config.php:521
5083
  msgid "Disable the Reset Password Limit for Admins only?"
5084
  msgstr ""
5085
 
5086
- #: um-config.php:531
5087
  msgid "Whitelisted Backend IPs"
5088
  msgstr ""
5089
 
5090
- #: um-config.php:532
5091
  msgid ""
5092
  "Always allow the specified IP addresses to access the backend login screen "
5093
  "and WP-admin to avoid being locked from site backend."
5094
  msgstr ""
5095
 
5096
- #: um-config.php:538
5097
  msgid "Blocked IP Addresses"
5098
  msgstr ""
5099
 
5100
- #: um-config.php:539
5101
  msgid ""
5102
  "This will block the listed IPs from signing up or signing in to the site, "
5103
  "you can use full IP numbers or target specific range with a wildcard"
5104
  msgstr ""
5105
 
5106
- #: um-config.php:545
5107
  msgid "Blocked Email Addresses"
5108
  msgstr ""
5109
 
5110
- #: um-config.php:546
5111
  msgid ""
5112
  "This will block the specified e-mail addresses from being able to sign up or "
5113
  "sign in to your site. To block an entire domain, use something like *@domain."
5114
  "com"
5115
  msgstr ""
5116
 
5117
- #: um-config.php:552
5118
  msgid "Blacklist Words"
5119
  msgstr ""
5120
 
5121
- #: um-config.php:553
5122
  msgid ""
5123
  "This option lets you specify blacklist of words to prevent anyone from "
5124
  "signing up with such a word as their username"
5125
  msgstr ""
5126
 
5127
- #: um-config.php:568
5128
  msgid "Emails"
5129
  msgstr ""
5130
 
5131
- #: um-config.php:574
5132
  msgid "Mail appears from"
5133
  msgstr ""
5134
 
5135
- #: um-config.php:575
5136
  msgid "e.g. Site Name"
5137
  msgstr ""
5138
 
5139
- #: um-config.php:582
5140
  msgid "Mail appears from address"
5141
  msgstr ""
5142
 
5143
- #: um-config.php:583 um-config.php:905
5144
  msgid "e.g. admin@companyname.com"
5145
  msgstr ""
5146
 
5147
- #: um-config.php:590
5148
  msgid "Use HTML for E-mails?"
5149
  msgstr ""
5150
 
5151
- #: um-config.php:592
5152
  msgid ""
5153
  "If you enable HTML for e-mails, you can customize the HTML e-mail templates "
5154
  "found in <strong>templates/email</strong> folder."
5155
  msgstr ""
5156
 
5157
- #: um-config.php:598 um-config.php:606 um-config.php:616
5158
  msgid "Account Welcome Email"
5159
  msgstr ""
5160
 
5161
- #: um-config.php:600
5162
  msgid ""
5163
  "Whether to send the user an email when his account is automatically approved"
5164
  msgstr ""
5165
 
5166
- #: um-config.php:607 um-config.php:642 um-config.php:674 um-config.php:706
5167
- #: um-config.php:742 um-config.php:773 um-config.php:804 um-config.php:835
5168
- #: um-config.php:867 um-config.php:922 um-config.php:955 um-config.php:989
5169
  msgid "Subject Line"
5170
  msgstr ""
5171
 
5172
- #: um-config.php:610 um-config.php:645 um-config.php:677 um-config.php:709
5173
- #: um-config.php:745 um-config.php:776 um-config.php:807 um-config.php:838
5174
- #: um-config.php:870 um-config.php:925 um-config.php:958 um-config.php:992
5175
  msgid "This is the subject line of the e-mail"
5176
  msgstr ""
5177
 
5178
- #: um-config.php:617 um-config.php:652 um-config.php:684 um-config.php:716
5179
- #: um-config.php:752 um-config.php:783 um-config.php:814 um-config.php:845
5180
- #: um-config.php:877 um-config.php:932 um-config.php:965 um-config.php:999
5181
  msgid "Message Body"
5182
  msgstr ""
5183
 
5184
- #: um-config.php:633 um-config.php:641 um-config.php:651
5185
  msgid "Account Activation Email"
5186
  msgstr ""
5187
 
5188
- #: um-config.php:635
5189
  msgid ""
5190
  "Whether to send the user an email when his account needs e-mail activation"
5191
  msgstr ""
5192
 
5193
- #: um-config.php:665 um-config.php:673 um-config.php:683
5194
  msgid "Pending Review Email"
5195
  msgstr ""
5196
 
5197
- #: um-config.php:667
5198
  msgid "Whether to send the user an email when his account needs admin review"
5199
  msgstr ""
5200
 
5201
- #: um-config.php:697 um-config.php:705 um-config.php:715
5202
  msgid "Account Approved Email"
5203
  msgstr ""
5204
 
5205
- #: um-config.php:699
5206
  msgid "Whether to send the user an email when his account is approved"
5207
  msgstr ""
5208
 
5209
- #: um-config.php:733 um-config.php:741 um-config.php:751
5210
  msgid "Account Rejected Email"
5211
  msgstr ""
5212
 
5213
- #: um-config.php:735
5214
  msgid "Whether to send the user an email when his account is rejected"
5215
  msgstr ""
5216
 
5217
- #: um-config.php:764 um-config.php:772 um-config.php:782
5218
  msgid "Account Deactivated Email"
5219
  msgstr ""
5220
 
5221
- #: um-config.php:766
5222
  msgid "Whether to send the user an email when his account is deactivated"
5223
  msgstr ""
5224
 
5225
- #: um-config.php:795 um-config.php:803 um-config.php:813
5226
  msgid "Account Deleted Email"
5227
  msgstr ""
5228
 
5229
- #: um-config.php:797
5230
  msgid "Whether to send the user an email when his account is deleted"
5231
  msgstr ""
5232
 
5233
- #: um-config.php:826 um-config.php:834 um-config.php:844
5234
  msgid "Password Reset Email"
5235
  msgstr ""
5236
 
5237
- #: um-config.php:828 um-config.php:860
5238
  msgid ""
5239
- "Whether to send the user an email when he request to reset password "
5240
- "(Recommended, please keep on)"
5241
  msgstr ""
5242
 
5243
- #: um-config.php:858 um-config.php:866 um-config.php:876
5244
  msgid "Password Changed Email"
5245
  msgstr ""
5246
 
5247
- #: um-config.php:903
 
 
 
 
 
 
5248
  msgid "Admin E-mail Address"
5249
  msgstr ""
5250
 
5251
- #: um-config.php:911 um-config.php:921 um-config.php:931
5252
  msgid "New User Notification"
5253
  msgstr ""
5254
 
5255
- #: um-config.php:913
5256
  msgid "Whether to receive notification when a new user account is approved"
5257
  msgstr ""
5258
 
5259
- #: um-config.php:938 um-config.php:972 um-config.php:1002
5260
  msgid "This is the content of the e-mail"
5261
  msgstr ""
5262
 
5263
- #: um-config.php:944 um-config.php:954 um-config.php:964
5264
  msgid "Account Needs Review Notification"
5265
  msgstr ""
5266
 
5267
- #: um-config.php:946
5268
  msgid "Whether to receive notification when an account needs admin review"
5269
  msgstr ""
5270
 
5271
- #: um-config.php:978 um-config.php:988 um-config.php:998
5272
  msgid "Account Deletion Notification"
5273
  msgstr ""
5274
 
5275
- #: um-config.php:980
5276
  msgid "Whether to receive notification when an account is deleted"
5277
  msgstr ""
5278
 
5279
- #: um-config.php:1016
5280
  msgid "Uploads"
5281
  msgstr ""
5282
 
5283
- #: um-config.php:1022
5284
  msgid "Profile Photo Maximum File Size (bytes)"
5285
  msgstr ""
5286
 
5287
- #: um-config.php:1023
5288
  msgid "Sets a maximum size for the uploaded photo"
5289
  msgstr ""
5290
 
5291
- #: um-config.php:1030
5292
  msgid "Cover Photo Maximum File Size (bytes)"
5293
  msgstr ""
5294
 
5295
- #: um-config.php:1031
5296
  msgid "Sets a maximum size for the uploaded cover"
5297
  msgstr ""
5298
 
5299
- #: um-config.php:1038
5300
  msgid "Profile Photo Thumbnail Sizes (px)"
5301
  msgstr ""
5302
 
5303
- #: um-config.php:1039
5304
  msgid ""
5305
  "Here you can define which thumbnail sizes will be created for each profile "
5306
  "photo upload."
5307
  msgstr ""
5308
 
5309
- #: um-config.php:1042 um-config.php:1052
5310
  msgid "Add New Size"
5311
  msgstr ""
5312
 
5313
- #: um-config.php:1048
5314
  msgid "Cover Photo Thumbnail Sizes (px)"
5315
  msgstr ""
5316
 
5317
- #: um-config.php:1049
5318
  msgid ""
5319
  "Here you can define which thumbnail sizes will be created for each cover "
5320
  "photo upload."
5321
  msgstr ""
5322
 
5323
- #: um-config.php:1058
5324
  msgid "Image Quality"
5325
  msgstr ""
5326
 
5327
- #: um-config.php:1059
5328
  msgid ""
5329
  "Quality is used to determine quality of image uploads, and ranges from 0 "
5330
  "(worst quality, smaller file) to 100 (best quality, biggest file). The "
5331
  "default range is 60."
5332
  msgstr ""
5333
 
5334
- #: um-config.php:1067
5335
  msgid "Image Upload Maximum Width (px)"
5336
  msgstr ""
5337
 
5338
- #: um-config.php:1068
5339
  msgid ""
5340
  "Any image upload above this width will be resized to this limit "
5341
  "automatically."
5342
  msgstr ""
5343
 
5344
- #: um-config.php:1076
5345
  msgid "Cover Photo Minimum Width (px)"
5346
  msgstr ""
5347
 
5348
- #: um-config.php:1077
5349
  msgid "This will be the minimum width for cover photo uploads"
5350
  msgstr ""
5351
 
5352
- #: um-config.php:1093
5353
  msgid "SEO"
5354
  msgstr ""
5355
 
5356
- #: um-config.php:1099
5357
  msgid "User Profile Title"
5358
  msgstr ""
5359
 
5360
- #: um-config.php:1101
5361
  msgid "This is the title that is displayed on a specific user profile"
5362
  msgstr ""
5363
 
5364
- #: um-config.php:1108
5365
  msgid "User Profile Dynamic Meta Description"
5366
  msgstr ""
5367
 
5368
- #: um-config.php:1109
5369
  msgid ""
5370
  "This will be used in the meta description that is available for search-"
5371
  "engines."
5372
  msgstr ""
5373
 
5374
- #: um-config.php:1123
5375
  msgid "Appearance"
5376
  msgstr ""
5377
 
5378
- #: um-config.php:1133
5379
  msgid "General"
5380
  msgstr ""
5381
 
5382
- #: um-config.php:1140
5383
  msgid "Members Default Template"
5384
  msgstr ""
5385
 
5386
- #: um-config.php:1141
5387
  msgid "This will be the default template to output member directory"
5388
  msgstr ""
5389
 
5390
- #: um-config.php:1151
5391
  msgid "General Active Color"
5392
  msgstr ""
5393
 
5394
- #: um-config.php:1153
5395
  msgid ""
5396
  "Active color is used commonly with many plugin elements as highlighted color "
5397
  "or active selection for example. This color demonstrates the primary active "
5398
  "color of the plugin"
5399
  msgstr ""
5400
 
5401
- #: um-config.php:1161
5402
  msgid "General Secondary Color"
5403
  msgstr ""
5404
 
5405
- #: um-config.php:1163
5406
  msgid ""
5407
  "Secondary color is used for hovers, or active state for some elements of the "
5408
  "plugin"
5409
  msgstr ""
5410
 
5411
- #: um-config.php:1171
5412
  msgid "Default Primary Button Color"
5413
  msgstr ""
5414
 
5415
- #: um-config.php:1180
5416
  msgid "Default Primary Button Hover Color"
5417
  msgstr ""
5418
 
5419
- #: um-config.php:1189
5420
  msgid "Default Primary Button Text Color"
5421
  msgstr ""
5422
 
5423
- #: um-config.php:1198
5424
  msgid "Default Secondary Button Color"
5425
  msgstr ""
5426
 
5427
- #: um-config.php:1207
5428
  msgid "Default Secondary Button Hover Color"
5429
  msgstr ""
5430
 
5431
- #: um-config.php:1216
5432
  msgid "Default Secondary Button Text Color"
5433
  msgstr ""
5434
 
5435
- #: um-config.php:1225
5436
  msgid "Default Help Icon Color"
5437
  msgstr ""
5438
 
5439
- #: um-config.php:1237
5440
  msgid "Form Inputs"
5441
  msgstr ""
5442
 
5443
- #: um-config.php:1244
5444
  msgid "Field Label Color"
5445
  msgstr ""
5446
 
5447
- #: um-config.php:1252
5448
  msgid "Field Border"
5449
  msgstr ""
5450
 
5451
- #: um-config.php:1254
5452
  msgid "The default border-style for input/fields in UM forms"
5453
  msgstr ""
5454
 
5455
- #: um-config.php:1260
5456
  msgid "Field Border on Focus"
5457
  msgstr ""
5458
 
5459
- #: um-config.php:1262
5460
  msgid "The default border style for fields on hover state"
5461
  msgstr ""
5462
 
5463
- #: um-config.php:1269
5464
  msgid "Field Background Color"
5465
  msgstr ""
5466
 
5467
- #: um-config.php:1278
5468
  msgid "Field Background Color on Focus"
5469
  msgstr ""
5470
 
5471
- #: um-config.php:1287
5472
  msgid "Field Text Color"
5473
  msgstr ""
5474
 
5475
- #: um-config.php:1296
5476
  msgid "Field Placeholder Color"
5477
  msgstr ""
5478
 
5479
- #: um-config.php:1305
5480
  msgid "Field Font Icon Color"
5481
  msgstr ""
5482
 
5483
- #: um-config.php:1313
5484
  msgid "Show an asterisk for required fields"
5485
  msgstr ""
5486
 
5487
- #: um-config.php:1323
5488
  msgid "Field Required Asterisk Color"
5489
  msgstr ""
5490
 
5491
- #: um-config.php:1336
5492
  msgid "Profile"
5493
  msgstr ""
5494
 
5495
- #: um-config.php:1343
5496
  msgid "Profile Default Template"
5497
  msgstr ""
5498
 
5499
- #: um-config.php:1344
5500
  msgid "This will be the default template to output profile"
5501
  msgstr ""
5502
 
5503
- #: um-config.php:1352
5504
  msgid "Profile Maximum Width"
5505
  msgstr ""
5506
 
5507
- #: um-config.php:1360
5508
  msgid "Profile Area Maximum Width"
5509
  msgstr ""
5510
 
5511
- #: um-config.php:1362
5512
  msgid ""
5513
  "The maximum width of the profile area inside profile (below profile header)"
5514
  msgstr ""
5515
 
5516
- #: um-config.php:1369
5517
  msgid "Profile Shortcode Alignment"
5518
  msgstr ""
5519
 
5520
- #: um-config.php:1373 um-config.php:1766 um-config.php:1868
5521
  msgid "Centered"
5522
  msgstr ""
5523
 
5524
- #: um-config.php:1374 um-config.php:1767 um-config.php:1869
5525
  msgid "Left aligned"
5526
  msgstr ""
5527
 
5528
- #: um-config.php:1375 um-config.php:1768 um-config.php:1870
5529
  msgid "Right aligned"
5530
  msgstr ""
5531
 
5532
- #: um-config.php:1383
5533
  msgid "Profile Field Icons"
5534
  msgstr ""
5535
 
5536
- #: um-config.php:1384
5537
  msgid "This is applicable for edit mode only"
5538
  msgstr ""
5539
 
5540
- #: um-config.php:1387 um-config.php:1780 um-config.php:1882
5541
  msgid "Show inside text field"
5542
  msgstr ""
5543
 
5544
- #: um-config.php:1388 um-config.php:1781 um-config.php:1883
5545
  msgid "Show with label"
5546
  msgstr ""
5547
 
5548
- #: um-config.php:1389 um-config.php:1782 um-config.php:1884
5549
  msgid "Turn off"
5550
  msgstr ""
5551
 
5552
- #: um-config.php:1396
5553
  msgid "Profile Primary Button Text"
5554
  msgstr ""
5555
 
5556
- #: um-config.php:1398
5557
  msgid "The text that is used for updating profile button"
5558
  msgstr ""
5559
 
5560
- #: um-config.php:1404
5561
  msgid "Profile Secondary Button"
5562
  msgstr ""
5563
 
5564
- #: um-config.php:1406 um-config.php:1799 um-config.php:1901
5565
  msgid "Switch on/off the secondary button display in the form"
5566
  msgstr ""
5567
 
5568
- #: um-config.php:1414
5569
  msgid "Profile Secondary Button Text"
5570
  msgstr ""
5571
 
5572
- #: um-config.php:1416
5573
  msgid "The text that is used for cancelling update profile button"
5574
  msgstr ""
5575
 
5576
- #: um-config.php:1424
5577
  msgid "Profile Associated Role"
5578
  msgstr ""
5579
 
5580
- #: um-config.php:1425
5581
  msgid ""
5582
  "Normally, you can leave this to default as this restricts the profile per "
5583
  "specified role only"
5584
  msgstr ""
5585
 
5586
- #: um-config.php:1434
5587
  msgid "Profile Base Background Color"
5588
  msgstr ""
5589
 
5590
- #: um-config.php:1443
5591
  msgid "Profile Header Background Color"
5592
  msgstr ""
5593
 
5594
- #: um-config.php:1451
5595
  msgid "Default Profile Photo"
5596
  msgstr ""
5597
 
5598
- #: um-config.php:1452
5599
  msgid ""
5600
  "You can change the default profile picture globally here. Please make sure "
5601
  "that the photo is 300x300px."
5602
  msgstr ""
5603
 
5604
- #: um-config.php:1463
5605
  msgid "Default Cover Photo"
5606
  msgstr ""
5607
 
5608
- #: um-config.php:1464
5609
  msgid ""
5610
  "You can change the default cover photo globally here. Please make sure that "
5611
  "the default cover is large enough and respects the ratio you are using for "
5612
  "cover photos."
5613
  msgstr ""
5614
 
5615
- #: um-config.php:1472
5616
  msgid ""
5617
  "The global default of profile photo size. This can be overridden by "
5618
  "individual form settings"
5619
  msgstr ""
5620
 
5621
- #: um-config.php:1480
5622
  msgid ""
5623
  "Whether to have rounded profile images, rounded corners, or none for the "
5624
  "profile photo"
5625
  msgstr ""
5626
 
5627
- #: um-config.php:1492
5628
  msgid "Profile Cover Photos"
5629
  msgstr ""
5630
 
5631
- #: um-config.php:1494
5632
  msgid "Switch on/off the profile cover photos"
5633
  msgstr ""
5634
 
5635
- #: um-config.php:1503
5636
  msgid "Profile Cover Ratio"
5637
  msgstr ""
5638
 
5639
- #: um-config.php:1504
5640
  msgid "Choose global ratio for cover photos of profiles"
5641
  msgstr ""
5642
 
5643
- #: um-config.php:1518
5644
  msgid "Profile Header Meta Text Icon"
5645
  msgstr ""
5646
 
5647
- #: um-config.php:1520
5648
  msgid "Display field icons for related user meta fields in header or not"
5649
  msgstr ""
5650
 
5651
- #: um-config.php:1529
5652
  msgid "Profile Header Meta Text Color"
5653
  msgstr ""
5654
 
5655
- #: um-config.php:1538
5656
  msgid "Profile Header Link Color"
5657
  msgstr ""
5658
 
5659
- #: um-config.php:1547
5660
  msgid "Profile Header Link Hover"
5661
  msgstr ""
5662
 
5663
- #: um-config.php:1556
5664
  msgid "Profile Header Icon Link Color"
5665
  msgstr ""
5666
 
5667
- #: um-config.php:1565
5668
  msgid "Profile Header Icon Link Hover"
5669
  msgstr ""
5670
 
5671
- #: um-config.php:1573
5672
  msgid "Show display name in profile header"
5673
  msgstr ""
5674
 
5675
- #: um-config.php:1575
5676
  msgid "Switch on/off the user name on profile header"
5677
  msgstr ""
5678
 
5679
- #: um-config.php:1583
5680
  msgid "Show social links in profile header"
5681
  msgstr ""
5682
 
5683
- #: um-config.php:1585
5684
  msgid "Switch on/off the social links on profile header"
5685
  msgstr ""
5686
 
5687
- #: um-config.php:1593
5688
  msgid "Show user description in header"
5689
  msgstr ""
5690
 
5691
- #: um-config.php:1595
5692
  msgid "Switch on/off the user description on profile header"
5693
  msgstr ""
5694
 
5695
- #: um-config.php:1603
5696
  msgid "Enable html support for user description"
5697
  msgstr ""
5698
 
5699
- #: um-config.php:1605
5700
  msgid ""
5701
  "Switch on/off to enable/disable support for html tags on user description."
5702
  msgstr ""
5703
 
5704
- #: um-config.php:1613
5705
  msgid "User description maximum chars"
5706
  msgstr ""
5707
 
5708
- #: um-config.php:1615
5709
  msgid ""
5710
  "Maximum number of characters to allow in user description field in header."
5711
  msgstr ""
5712
 
5713
- #: um-config.php:1622
5714
  msgid "Profile Header Menu Position"
5715
  msgstr ""
5716
 
5717
- #: um-config.php:1624
5718
  msgid ""
5719
  "For incompatible themes, please make the menu open from left instead of "
5720
  "bottom by default."
5721
  msgstr ""
5722
 
5723
- #: um-config.php:1635
5724
  msgid "Show a custom message if profile is empty"
5725
  msgstr ""
5726
 
5727
- #: um-config.php:1637
5728
  msgid "Switch on/off the custom message that appears when the profile is empty"
5729
  msgstr ""
5730
 
5731
- #: um-config.php:1645
5732
  msgid "Show the emoticon"
5733
  msgstr ""
5734
 
5735
- #: um-config.php:1647
5736
  msgid "Switch on/off the emoticon (sad face) that appears above the message"
5737
  msgstr ""
5738
 
5739
- #: um-config.php:1661
5740
  msgid "Enable profile menu"
5741
  msgstr ""
5742
 
5743
- #: um-config.php:1672
5744
  #, php-format
5745
  msgid "%s Tab"
5746
  msgstr ""
5747
 
5748
- #: um-config.php:1683
5749
  #, php-format
5750
  msgid "Who can see %s Tab?"
5751
  msgstr ""
5752
 
5753
- #: um-config.php:1684
5754
  msgid "Select which users can view this tab."
5755
  msgstr ""
5756
 
5757
- #: um-config.php:1695
5758
  msgid "Allowed roles"
5759
  msgstr ""
5760
 
5761
- #: um-config.php:1696
5762
  msgid "Select the the user roles allowed to view this tab."
5763
  msgstr ""
5764
 
5765
- #: um-config.php:1699
5766
  msgid "Choose user roles..."
5767
  msgstr ""
5768
 
5769
- #: um-config.php:1709
5770
  msgid "Profile menu default tab"
5771
  msgstr ""
5772
 
5773
- #: um-config.php:1710
5774
  msgid "This will be the default tab on user profile page"
5775
  msgstr ""
5776
 
5777
- #: um-config.php:1719
5778
  msgid "Enable menu icons in desktop view"
5779
  msgstr ""
5780
 
5781
- #: um-config.php:1729
5782
  msgid "Profile Menu"
5783
  msgstr ""
5784
 
5785
- #: um-config.php:1744
5786
  msgid "Registration Default Template"
5787
  msgstr ""
5788
 
5789
- #: um-config.php:1745
5790
  msgid "This will be the default template to output registration"
5791
  msgstr ""
5792
 
5793
- #: um-config.php:1753
5794
  msgid "Registration Maximum Width"
5795
  msgstr ""
5796
 
5797
- #: um-config.php:1755 um-config.php:1857
5798
  msgid "The maximum width this shortcode can take from the page width"
5799
  msgstr ""
5800
 
5801
- #: um-config.php:1762
5802
  msgid "Registration Shortcode Alignment"
5803
  msgstr ""
5804
 
5805
- #: um-config.php:1776
5806
  msgid "Registration Field Icons"
5807
  msgstr ""
5808
 
5809
- #: um-config.php:1777
5810
  msgid "This controls the display of field icons in the registration form"
5811
  msgstr ""
5812
 
5813
- #: um-config.php:1789
5814
  msgid "Registration Primary Button Text"
5815
  msgstr ""
5816
 
5817
- #: um-config.php:1791 um-config.php:1893
5818
  msgid "The text that is used for primary button text"
5819
  msgstr ""
5820
 
5821
- #: um-config.php:1797
5822
  msgid "Registration Secondary Button"
5823
  msgstr ""
5824
 
5825
- #: um-config.php:1807
5826
  msgid "Registration Secondary Button Text"
5827
  msgstr ""
5828
 
5829
- #: um-config.php:1809 um-config.php:1911
5830
  msgid "The text that is used for the secondary button text"
5831
  msgstr ""
5832
 
5833
- #: um-config.php:1816
5834
  msgid "Registration Secondary Button URL"
5835
  msgstr ""
5836
 
5837
- #: um-config.php:1818 um-config.php:1920
5838
  msgid "You can replace default link for this button by entering custom URL"
5839
  msgstr ""
5840
 
5841
- #: um-config.php:1826
5842
  msgid "Registration Default Role"
5843
  msgstr ""
5844
 
5845
- #: um-config.php:1827
5846
  msgid ""
5847
  "This will be the default role assigned to users registering thru "
5848
  "registration form"
5849
  msgstr ""
5850
 
5851
- #: um-config.php:1846
5852
  msgid "Login Default Template"
5853
  msgstr ""
5854
 
5855
- #: um-config.php:1847
5856
  msgid "This will be the default template to output login"
5857
  msgstr ""
5858
 
5859
- #: um-config.php:1855
5860
  msgid "Login Maximum Width"
5861
  msgstr ""
5862
 
5863
- #: um-config.php:1864
5864
  msgid "Login Shortcode Alignment"
5865
  msgstr ""
5866
 
5867
- #: um-config.php:1878
5868
  msgid "Login Field Icons"
5869
  msgstr ""
5870
 
5871
- #: um-config.php:1879
5872
  msgid "This controls the display of field icons in the login form"
5873
  msgstr ""
5874
 
5875
- #: um-config.php:1891
5876
  msgid "Login Primary Button Text"
5877
  msgstr ""
5878
 
5879
- #: um-config.php:1899
5880
  msgid "Login Secondary Button"
5881
  msgstr ""
5882
 
5883
- #: um-config.php:1909
5884
  msgid "Login Secondary Button Text"
5885
  msgstr ""
5886
 
5887
- #: um-config.php:1918
5888
  msgid "Login Secondary Button URL"
5889
  msgstr ""
5890
 
5891
- #: um-config.php:1927
5892
  msgid "Login Forgot Password Link"
5893
  msgstr ""
5894
 
5895
- #: um-config.php:1929
5896
  msgid "Switch on/off the forgot password link in login form"
5897
  msgstr ""
5898
 
5899
- #: um-config.php:1937
5900
  msgid "Show \"Remember Me\""
5901
  msgstr ""
5902
 
5903
- #: um-config.php:1939
5904
  msgid ""
5905
  "Allow users to choose If they want to stay signed in even after closing the "
5906
  "browser. If you do not show this option, the default will be to not remember "
5907
  "login session."
5908
  msgstr ""
5909
 
5910
- #: um-config.php:1959
5911
  msgid ""
5912
  "Any custom css rules that you specify here will be applied globally to the "
5913
  "plugin."
5914
  msgstr ""
5915
 
5916
- #: um-config.php:1977
5917
  msgid "Import & Export Settings"
5918
  msgstr ""
5919
 
5920
- #: um-config.php:1984
5921
  msgid "Stop caching user's profile data"
5922
  msgstr ""
5923
 
5924
- #: um-config.php:1986
5925
  msgid "Turn off If you have performance issue."
5926
  msgstr ""
5927
 
5928
- #: um-config.php:1994
5929
  msgid "Stop rewriting rules on every load"
5930
  msgstr ""
5931
 
5932
- #: um-config.php:1996
5933
  msgid ""
5934
  "Turn on If you have performance issue and are not getting 404 error/"
5935
  "conflicts with other plugins/themes."
5936
  msgstr ""
5937
 
5938
- #: um-config.php:2005
 
 
 
 
 
 
 
 
5939
  msgid "Current URL Method"
5940
  msgstr ""
5941
 
5942
- #: um-config.php:2006
5943
  msgid ""
5944
  "Change this If you are having conflicts with profile links or redirections."
5945
  msgstr ""
5946
 
5947
- #: um-config.php:2009
5948
  msgid "Use SERVER_NAME"
5949
  msgstr ""
5950
 
5951
- #: um-config.php:2010
5952
  msgid "Use HTTP_HOST"
5953
  msgstr ""
5954
 
5955
- #: um-config.php:2017
5956
  msgid "Allow Port forwarding in URL"
5957
  msgstr ""
5958
 
5959
- #: um-config.php:2019
5960
  msgid "Turn on If you want to include port number in URLs"
5961
  msgstr ""
5962
 
5963
- #: um-config.php:2027
5964
  msgid "Force Strings to UTF-8 Encoding"
5965
  msgstr ""
5966
 
5967
- #: um-config.php:2029
5968
  msgid "Turn on If you want to force labels and fields to use UTF-8 encoding"
5969
  msgstr ""
5970
 
5971
- #: um-config.php:2037
5972
  msgid "Enable Time Check Security"
5973
  msgstr ""
5974
 
5975
- #: um-config.php:2039
5976
  msgid ""
5977
  "Turn this option off if you have a conflict with other plugins causing a "
5978
  "spam bot message to appear unexpectedly."
5979
  msgstr ""
5980
 
5981
- #: um-config.php:2047
5982
  msgid "Disable JS/CSS Compression"
5983
  msgstr ""
5984
 
5985
- #: um-config.php:2049
5986
  msgid ""
5987
  "Not recommended. This will load all plugin js and css files separately and "
5988
  "may slow down your website. Use this setting for development or debugging "
5989
  "purposes only."
5990
  msgstr ""
5991
 
5992
- #: um-config.php:2057
5993
  msgid "Disable Nav Menu Settings"
5994
  msgstr ""
5995
 
5996
- #: um-config.php:2059
5997
  msgid ""
5998
  "This can disable the settings that appear in nav menus to apply custom "
5999
  "access settings to nav items."
6000
  msgstr ""
6001
 
6002
- #: um-config.php:2067
6003
  msgid "Never load plugin JS and CSS on homepage"
6004
  msgstr ""
6005
 
6006
- #: um-config.php:2069
6007
  msgid "This can disable loading plugin js and css files on home page."
6008
  msgstr ""
6009
 
6010
- #: um-config.php:2078
6011
  msgid "Never load plugin JS and CSS on the following pages"
6012
  msgstr ""
6013
 
6014
- #: um-config.php:2079
6015
  msgid ""
6016
  "Enter a url or page slug (e.g /about/) to disable loading the plugin's css "
6017
  "and js on that page."
6018
  msgstr ""
6019
 
6020
- #: um-config.php:2080 um-config.php:2089
6021
  msgid "Add New Page"
6022
  msgstr ""
6023
 
6024
- #: um-config.php:2087
6025
  msgid "Only load plugin JS and CSS on the following pages"
6026
  msgstr ""
6027
 
6028
- #: um-config.php:2088
6029
  msgid ""
6030
  "Enter a url or page slug (e.g /about/) to enable loading the plugin's css "
6031
  "and js on that page."
6032
  msgstr ""
6033
 
6034
- #: um-config.php:2095
6035
  msgid "Enable custom css tab?"
6036
  msgstr ""
6037
 
6038
- #: um-config.php:2104
6039
  msgid "Allow Tracking"
6040
  msgstr ""
6041
 
6042
- #: um-config.php:2117
6043
  msgid "Network Permalink Structure"
6044
  msgstr ""
6045
 
6046
- #: um-config.php:2118
6047
  msgid ""
6048
  "Change this If you are having conflicts with profile links or redirections "
6049
  "in a multisite setup."
6050
  msgstr ""
6051
 
6052
- #: um-config.php:2121
6053
  msgid "Sub-Domain"
6054
  msgstr ""
6055
 
6056
- #: um-config.php:2122
6057
  msgid "Sub-Directory"
6058
  msgstr ""
6059
 
6060
- #: um-config.php:2130
6061
  msgid "Advanced"
6062
  msgstr ""
6063
 
@@ -6089,6 +6128,14 @@ msgstr ""
6089
  msgid "This add-on enables you to generate dummies."
6090
  msgstr ""
6091
 
 
 
 
 
 
 
 
 
6092
  #~ msgid "outdatedBrowser_page_message"
6093
  #~ msgstr ""
6094
  #~ "The site you are visiting can only be viewed using a modern browser. "
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-10-05 17:26+0800\n"
6
+ "PO-Revision-Date: 2016-10-05 17:26+0800\n"
7
  "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
  "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
  "Language: en_US\n"
21
  "X-Poedit-SearchPathExcluded-2: admin/core/lib/ReduxFramework\n"
22
  "X-Poedit-SearchPathExcluded-3: assets/vendor\n"
23
 
24
+ #: addons/system_info.php:84
25
+ msgid ""
26
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
27
+ "(Mac)."
28
+ msgstr ""
29
+
30
  #: admin/core/um-admin-access.php:107 admin/core/um-admin-dashboard.php:127
31
  #: admin/core/um-admin-redux.php:55
32
  msgid "Ultimate Member"
80
  msgid "This field type is not setup correcty."
81
  msgstr ""
82
 
83
+ #: admin/core/um-admin-actions.php:19 admin/core/um-admin-users.php:362
84
+ #: core/um-user.php:68
85
  msgid "Community Role"
86
  msgstr ""
87
 
122
  msgid "Users who cannot see content will get redirected to that URL."
123
  msgstr ""
124
 
125
+ #: admin/core/um-admin-actions.php:210
126
  msgid "This is a translation of UM profile page?"
127
  msgstr ""
128
 
129
+ #: admin/core/um-admin-actions.php:216
130
  msgid "This is a translation of UM account page?"
131
  msgstr ""
132
 
133
+ #: admin/core/um-admin-actions.php:300
134
  #, php-format
135
  msgid "Duplicate of %s"
136
  msgstr ""
299
 
300
  #: admin/core/um-admin-metabox.php:115 core/um-builtin.php:1011
301
  #: core/um-builtin.php:1026 um-config.php:159 um-config.php:169
302
+ #: um-config.php:179 um-config.php:189 um-config.php:219 um-config.php:419
303
+ #: um-config.php:428 um-config.php:438 um-config.php:448 um-config.php:480
304
+ #: um-config.php:511 um-config.php:520 um-config.php:540 um-config.php:1332
305
  msgid "Yes"
306
  msgstr ""
307
 
309
  #: core/um-actions-account.php:41 core/um-builtin.php:1010
310
  #: core/um-builtin.php:1011 core/um-builtin.php:1025 core/um-builtin.php:1026
311
  #: um-config.php:160 um-config.php:170 um-config.php:180 um-config.php:190
312
+ #: um-config.php:220 um-config.php:420 um-config.php:429 um-config.php:439
313
+ #: um-config.php:449 um-config.php:481 um-config.php:512 um-config.php:521
314
+ #: um-config.php:541 um-config.php:1333
315
  msgid "No"
316
  msgstr ""
317
 
391
  #: admin/core/um-admin-metabox.php:286 admin/core/um-admin-metabox.php:292
392
  #: admin/core/um-admin-metabox.php:298 admin/templates/form/login_css.php:4
393
  #: admin/templates/form/profile_css.php:4
394
+ #: admin/templates/form/register_css.php:4 um-config.php:1969
395
+ #: um-config.php:1975
396
  msgid "Custom CSS"
397
  msgstr ""
398
 
419
  msgid "Value"
420
  msgstr ""
421
 
422
+ #: admin/core/um-admin-metabox.php:690
423
  msgid "Optional text to include with the divider"
424
  msgstr ""
425
 
426
+ #: admin/core/um-admin-metabox.php:881
427
  msgid ""
428
  "Turn on to force users to create a strong password (A combination of one "
429
  "lowercase letter, one uppercase letter, and one number). If turned on this "
430
  "option is only applied to register forms and not to login forms."
431
  msgstr ""
432
 
433
+ #: admin/core/um-admin-metabox.php:891
434
  msgid ""
435
  "Turn on to add a confirm password field. If turned on the confirm password "
436
  "field will only show on register forms and not on login forms."
437
  msgstr ""
438
 
439
+ #: admin/core/um-admin-metabox.php:1255
440
  msgid "Minimum number that can be entered in this field"
441
  msgstr ""
442
 
443
+ #: admin/core/um-admin-metabox.php:1265
444
  msgid "Maximum number that can be entered in this field"
445
  msgstr ""
446
 
501
  "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
502
  msgstr ""
503
 
504
+ #: admin/core/um-admin-notices.php:175 core/um-actions-profile.php:217
505
  msgid "Remove"
506
  msgstr ""
507
 
534
  msgstr ""
535
 
536
  #: admin/core/um-admin-notices.php:204
537
+ msgid "Changed roles."
538
+ msgstr ""
539
+
540
+ #: admin/core/um-admin-notices.php:208
541
  msgid "Super administrators cannot be modified."
542
  msgstr ""
543
 
544
+ #: admin/core/um-admin-notices.php:209
545
  msgid "Other users have been updated."
546
  msgstr ""
547
 
587
  msgid "Core"
588
  msgstr ""
589
 
590
+ #: admin/core/um-admin-users.php:35 core/um-actions-account.php:378
591
+ #: core/um-actions-account.php:413
592
  msgid "View profile"
593
  msgstr ""
594
 
597
  msgstr ""
598
 
599
  #: admin/core/um-admin-users.php:129 admin/templates/dashboard/users.php:12
600
+ #: core/um-user.php:237
601
  msgid "Approved"
602
  msgstr ""
603
 
617
  msgid "Rejected"
618
  msgstr ""
619
 
620
+ #: admin/core/um-admin-users.php:178 admin/core/um-admin-users.php:236
621
  #: core/um-actions-core.php:21
622
  msgid "You do not have enough permissions to do that."
623
  msgstr ""
624
 
625
+ #: admin/core/um-admin-users.php:307 admin/core/um-admin-users.php:309
626
  msgid "Filter by"
627
  msgstr ""
628
 
629
+ #: admin/core/um-admin-users.php:318
630
  msgid "Filter"
631
  msgstr ""
632
 
633
+ #: admin/core/um-admin-users.php:324 admin/core/um-admin-users.php:326
634
  msgid "UM Action"
635
  msgstr ""
636
 
637
+ #: admin/core/um-admin-users.php:330 core/um-fields.php:1475
638
  msgid "Apply"
639
  msgstr ""
640
 
641
+ #: admin/core/um-admin-users.php:336
642
  msgid "Community role&hellip;"
643
  msgstr ""
644
 
645
+ #: admin/core/um-admin-users.php:343
646
  msgid "Change"
647
  msgstr ""
648
 
649
+ #: admin/core/um-admin-users.php:362
650
  msgid "This is the membership role set by Ultimate Member plugin"
651
  msgstr ""
652
 
720
  msgid "Users"
721
  msgstr ""
722
 
723
+ #: admin/templates/dashboard/users.php:30 core/um-user.php:245
724
  msgid "Pending Review"
725
  msgstr ""
726
 
727
+ #: admin/templates/dashboard/users.php:35 core/um-user.php:241
728
  msgid "Awaiting E-mail Confirmation"
729
  msgstr ""
730
 
1046
  "<strong>Note:</strong> Form type cannot be changed for the default forms."
1047
  msgstr ""
1048
 
1049
+ #: admin/templates/form/mode.php:9 um-config.php:1754
1050
  msgid "Registration Form"
1051
  msgstr ""
1052
 
1054
  msgid "Profile Form"
1055
  msgstr ""
1056
 
1057
+ #: admin/templates/form/mode.php:13 um-config.php:1856
1058
  msgid "Login Form"
1059
  msgstr ""
1060
 
1078
  msgid "Cover photo ratio"
1079
  msgstr ""
1080
 
1081
+ #: admin/templates/form/profile_customize.php:129 um-config.php:1487
1082
  msgid "Profile Photo Size"
1083
  msgstr ""
1084
 
1085
+ #: admin/templates/form/profile_customize.php:133 um-config.php:1496
1086
  msgid "Profile Photo Style"
1087
  msgstr ""
1088
 
1089
+ #: admin/templates/form/profile_customize.php:136 um-config.php:1500
1090
  msgid "Circle"
1091
  msgstr ""
1092
 
1093
+ #: admin/templates/form/profile_customize.php:137 um-config.php:1501
1094
  msgid "Rounded Corners"
1095
  msgstr ""
1096
 
1097
+ #: admin/templates/form/profile_customize.php:138 um-config.php:1502
1098
  msgid "Square"
1099
  msgstr ""
1100
 
1152
  msgid "Assign role to form"
1153
  msgstr ""
1154
 
1155
+ #: admin/templates/form/register_customize.php:42 um-config.php:1387
1156
+ #: um-config.php:1780 um-config.php:1882
1157
  msgid "The shortcode is centered by default unless you specify otherwise here"
1158
  msgstr ""
1159
 
1205
  #: admin/templates/modal/dynamic_new_divider.php:15
1206
  #: admin/templates/modal/dynamic_new_field.php:15
1207
  #: admin/templates/modal/dynamic_new_group.php:15
1208
+ #: core/um-actions-profile.php:218 core/um-actions-profile.php:332
1209
+ #: core/um-actions-profile.php:344 core/um-actions-profile.php:505
1210
+ #: core/um-fields.php:1476 core/um-fields.php:1564
1211
  msgid "Cancel"
1212
  msgstr ""
1213
 
1548
  msgid "Support"
1549
  msgstr ""
1550
 
1551
+ #: core/lib/upload/um-file-upload.php:58 core/lib/upload/um-image-upload.php:56
1552
  msgid "A theme or plugin compatibility issue"
1553
  msgstr ""
1554
 
1564
  msgid "Privacy"
1565
  msgstr ""
1566
 
1567
+ #: core/um-account.php:36 um-config.php:914
1568
  msgid "Notifications"
1569
  msgstr ""
1570
 
1571
+ #: core/um-account.php:39 core/um-actions-account.php:225
1572
  #: core/um-builtin.php:1017 core/um-builtin.php:1020
1573
  msgid "Delete Account"
1574
  msgstr ""
1593
  msgid "Email already linked to another account"
1594
  msgstr ""
1595
 
1596
+ #: core/um-actions-account.php:138 core/um-actions-account.php:178
1597
  msgid "This is not your password"
1598
  msgstr ""
1599
 
1600
+ #: core/um-actions-account.php:143
1601
  msgid "Your new password does not match"
1602
  msgstr ""
1603
 
1604
+ #: core/um-actions-account.php:150 core/um-actions-password.php:179
1605
  msgid "Your password must contain at least 8 characters"
1606
  msgstr ""
1607
 
1608
+ #: core/um-actions-account.php:154 core/um-actions-password.php:183
1609
  msgid "Your password must contain less than 30 characters"
1610
  msgstr ""
1611
 
1612
+ #: core/um-actions-account.php:158 core/um-actions-form.php:250
1613
+ #: core/um-actions-password.php:187
1614
  msgid ""
1615
  "Your password must contain at least one lowercase letter, one capital letter "
1616
  "and one number"
1617
  msgstr ""
1618
 
1619
+ #: core/um-actions-account.php:168
1620
  msgid "Your username is invalid"
1621
  msgstr ""
1622
 
1623
+ #: core/um-actions-account.php:175
1624
  msgid "You must enter your password"
1625
  msgstr ""
1626
 
1627
+ #: core/um-actions-account.php:255
1628
  msgid "Update Privacy"
1629
  msgstr ""
1630
 
1631
+ #: core/um-actions-account.php:285
1632
  msgid "Update Account"
1633
  msgstr ""
1634
 
1635
+ #: core/um-actions-account.php:315
1636
  msgid "Update Password"
1637
  msgstr ""
1638
 
1639
+ #: core/um-actions-account.php:342
1640
  msgid "Email me when"
1641
  msgstr ""
1642
 
1643
+ #: core/um-actions-account.php:351
1644
  msgid "Update Notifications"
1645
  msgstr ""
1646
 
1647
+ #: core/um-actions-ajax.php:46 core/um-actions-ajax.php:61
1648
+ #: core/um-actions-ajax.php:113
1649
  msgid "You can not edit this user"
1650
  msgstr ""
1651
 
1652
+ #: core/um-actions-ajax.php:78
1653
  msgid "Invalid parameters"
1654
  msgstr ""
1655
 
1656
+ #: core/um-actions-ajax.php:81
1657
  msgid "Invalid coordinates"
1658
  msgstr ""
1659
 
1660
+ #: core/um-actions-ajax.php:84
1661
  msgid "Invalid Image file"
1662
  msgstr ""
1663
 
1669
  msgid "You are not allowed to use this word as your username."
1670
  msgstr ""
1671
 
1672
+ #: core/um-actions-form.php:158 core/um-actions-form.php:191
1673
+ #: core/um-actions-form.php:195 core/um-actions-form.php:199
1674
+ #: core/um-actions-form.php:203
1675
  #, php-format
1676
  msgid "%s is required."
1677
  msgstr ""
1678
 
1679
+ #: core/um-actions-form.php:208
1680
  msgid "Please specify account type."
1681
  msgstr ""
1682
 
1683
+ #: core/um-actions-form.php:216
1684
  #, php-format
1685
  msgid "%s is required"
1686
  msgstr ""
1687
 
1688
+ #: core/um-actions-form.php:222
1689
  #, php-format
1690
  msgid "You are only allowed to enter a maximum of %s words"
1691
  msgstr ""
1692
 
1693
+ #: core/um-actions-form.php:228
1694
  #, php-format
1695
  msgid "Your %s must contain at least %s characters"
1696
  msgstr ""
1697
 
1698
+ #: core/um-actions-form.php:234
1699
  #, php-format
1700
  msgid "Your %s must contain less than %s characters"
1701
  msgstr ""
1702
 
1703
+ #: core/um-actions-form.php:243
1704
  msgid "You can not use HTML tags here"
1705
  msgstr ""
1706
 
1707
+ #: core/um-actions-form.php:256
1708
  msgid "Please confirm your password"
1709
  msgstr ""
1710
 
1711
+ #: core/um-actions-form.php:259 core/um-actions-password.php:197
1712
  msgid "Your passwords do not match"
1713
  msgstr ""
1714
 
1715
+ #: core/um-actions-form.php:265
1716
  #, php-format
1717
  msgid "Please select at least %s choices"
1718
  msgstr ""
1719
 
1720
+ #: core/um-actions-form.php:271
1721
  #, php-format
1722
  msgid "You can only select up to %s choices"
1723
  msgstr ""
1724
 
1725
+ #: core/um-actions-form.php:286
1726
  msgid "Please enter numbers only in this field"
1727
  msgstr ""
1728
 
1729
+ #: core/um-actions-form.php:292
1730
  msgid "Please enter a valid phone number"
1731
  msgstr ""
1732
 
1733
+ #: core/um-actions-form.php:298 core/um-actions-form.php:304
1734
+ #: core/um-actions-form.php:310 core/um-actions-form.php:316
1735
+ #: core/um-actions-form.php:322 core/um-actions-form.php:328
1736
+ #: core/um-actions-form.php:334 core/um-actions-form.php:340
1737
+ #: core/um-actions-form.php:352
1738
  #, php-format
1739
  msgid "Please enter a valid %s username or profile URL"
1740
  msgstr ""
1741
 
1742
+ #: core/um-actions-form.php:346
1743
  msgid "Please enter a valid URL"
1744
  msgstr ""
1745
 
1746
+ #: core/um-actions-form.php:359 core/um-actions-form.php:373
1747
  msgid "You must provide a username"
1748
  msgstr ""
1749
 
1750
+ #: core/um-actions-form.php:361 core/um-actions-form.php:375
1751
  msgid "Your username is already taken"
1752
  msgstr ""
1753
 
1754
+ #: core/um-actions-form.php:363
1755
  msgid "Username cannot be an email"
1756
  msgstr ""
1757
 
1758
+ #: core/um-actions-form.php:365 core/um-actions-form.php:379
1759
  msgid "Your username contains invalid characters"
1760
  msgstr ""
1761
 
1762
+ #: core/um-actions-form.php:377 core/um-actions-form.php:391
1763
+ #: core/um-actions-form.php:393 core/um-actions-form.php:405
1764
+ #: core/um-actions-form.php:412
1765
  msgid "This email is already linked to an existing account"
1766
  msgstr ""
1767
 
1768
+ #: core/um-actions-form.php:389
1769
  msgid "You must provide your email"
1770
  msgstr ""
1771
 
1772
+ #: core/um-actions-form.php:395 core/um-actions-form.php:403
1773
  msgid "This is not a valid email"
1774
  msgstr ""
1775
 
1776
+ #: core/um-actions-form.php:397
1777
  msgid "Your email contains invalid characters"
1778
  msgstr ""
1779
 
1780
+ #: core/um-actions-form.php:437
1781
  msgid "You must provide a unique value"
1782
  msgstr ""
1783
 
1784
+ #: core/um-actions-form.php:447
1785
+ msgid "You must provide alphabetic letters"
1786
+ msgstr ""
1787
+
1788
+ #: core/um-actions-form.php:457
1789
+ msgid "You must provide lowercase letters."
1790
+ msgstr ""
1791
+
1792
+ #: core/um-actions-form.php:476
1793
  #, php-format
1794
  msgid "Your user description must contain less than %s characters"
1795
  msgstr ""
1830
  msgid "This action has been prevented for security measures."
1831
  msgstr ""
1832
 
1833
+ #: core/um-actions-login.php:242
1834
  msgid "Keep me signed in"
1835
  msgstr ""
1836
 
1837
+ #: core/um-actions-login.php:276
1838
  msgid "Forgot your password?"
1839
  msgstr ""
1840
 
1871
  msgid "Last Page"
1872
  msgstr ""
1873
 
1874
+ #: core/um-actions-misc.php:64 core/um-actions-misc.php:99
1875
  msgid "Registration is currently disabled"
1876
  msgstr ""
1877
 
1878
+ #: core/um-actions-misc.php:75
1879
  msgid "Your account was updated successfully."
1880
  msgstr ""
1881
 
1882
+ #: core/um-actions-misc.php:79
1883
  msgid "You have successfully changed your password."
1884
  msgstr ""
1885
 
1886
+ #: core/um-actions-misc.php:83
1887
  msgid "Your account is now active! You can login."
1888
  msgstr ""
1889
 
1890
+ #: core/um-actions-misc.php:95
1891
  msgid "An error has been encountered"
1892
  msgstr ""
1893
 
1894
+ #: core/um-actions-misc.php:103 core/um-filters-login.php:33
1895
  msgid "This email address has been blocked."
1896
  msgstr ""
1897
 
1898
+ #: core/um-actions-misc.php:107
1899
  msgid "We do not accept registrations from that domain."
1900
  msgstr ""
1901
 
1902
+ #: core/um-actions-misc.php:111 core/um-filters-login.php:36
1903
  msgid "Your IP address has been blocked."
1904
  msgstr ""
1905
 
1906
+ #: core/um-actions-misc.php:115 core/um-filters-login.php:78
1907
  msgid "Your account has been disabled."
1908
  msgstr ""
1909
 
1910
+ #: core/um-actions-misc.php:119 core/um-filters-login.php:81
1911
  msgid "Your account has not been approved yet."
1912
  msgstr ""
1913
 
1914
+ #: core/um-actions-misc.php:123 core/um-filters-login.php:84
1915
  msgid "Your account is awaiting e-mail verification."
1916
  msgstr ""
1917
 
1918
+ #: core/um-actions-misc.php:127 core/um-filters-login.php:87
1919
  msgid "Your membership request has been rejected."
1920
  msgstr ""
1921
 
1922
+ #: core/um-actions-password.php:103 core/um-actions-password.php:165
1923
+ #: core/um-form.php:151
1924
  msgid "Hello, spam bot!"
1925
  msgstr ""
1926
 
1927
+ #: core/um-actions-password.php:106 core/um-actions-password.php:168
1928
+ #: core/um-form.php:154
1929
  msgid ""
1930
  "Whoa, slow down! You're seeing this message because you tried to submit a "
1931
  "form too fast and we think you might be a spam bot. If you are a real human "
1932
  "being please wait a few seconds before submitting the form. Thanks!"
1933
  msgstr ""
1934
 
1935
+ #: core/um-actions-password.php:117
1936
  msgid "Please provide your username or email"
1937
  msgstr ""
1938
 
1939
+ #: core/um-actions-password.php:121
1940
  msgid "We can't find an account registered with that address or username"
1941
  msgstr ""
1942
 
1943
+ #: core/um-actions-password.php:140
1944
  msgid ""
1945
  "You have reached the limit for requesting password change for this user "
1946
  "already. Contact support if you cannot open the email"
1947
  msgstr ""
1948
 
1949
+ #: core/um-actions-password.php:173
1950
  msgid "You must enter a new password"
1951
  msgstr ""
1952
 
1953
+ #: core/um-actions-password.php:193
1954
  msgid "You must confirm your new password"
1955
  msgstr ""
1956
 
1957
+ #: core/um-actions-password.php:251
1958
  msgid "Reset my password"
1959
  msgstr ""
1960
 
1961
+ #: core/um-actions-password.php:278
1962
  msgid "Change my password"
1963
  msgstr ""
1964
 
1966
  msgid "You are not allowed to edit this user."
1967
  msgstr ""
1968
 
1969
+ #: core/um-actions-profile.php:200 core/um-builtin.php:954
1970
  msgid "Change your cover photo"
1971
  msgstr ""
1972
 
1973
+ #: core/um-actions-profile.php:216
1974
  msgid "Change cover photo"
1975
  msgstr ""
1976
 
1977
+ #: core/um-actions-profile.php:258
1978
  msgid "Upload a cover photo"
1979
  msgstr ""
1980
 
1981
+ #: core/um-actions-profile.php:331
1982
  msgid "Upload photo"
1983
  msgstr ""
1984
 
1985
+ #: core/um-actions-profile.php:342 core/um-fields.php:1440
1986
+ #: core/um-fields.php:1475
1987
  msgid "Change photo"
1988
  msgstr ""
1989
 
1990
+ #: core/um-actions-profile.php:343
1991
  msgid "Remove photo"
1992
  msgstr ""
1993
 
1994
+ #: core/um-actions-profile.php:404
1995
  msgid "Tell us a bit about yourself..."
1996
  msgstr ""
1997
 
2008
  msgid "My Account"
2009
  msgstr ""
2010
 
2011
+ #: core/um-actions-profile.php:504 core/um-actions-user.php:79
2012
  msgid "Logout"
2013
  msgstr ""
2014
 
2015
+ #: core/um-actions-user.php:78
2016
  msgid "Your account"
2017
  msgstr ""
2018
 
2169
  msgid "Everyone"
2170
  msgstr ""
2171
 
2172
+ #: core/um-builtin.php:551 core/um-user.php:802
2173
  msgid "Only me"
2174
  msgstr ""
2175
 
4203
  msgid "Less than 1 year old"
4204
  msgstr ""
4205
 
4206
+ #: core/um-fields.php:589
4207
  msgid "Custom Field"
4208
  msgstr ""
4209
 
4210
+ #: core/um-fields.php:860
4211
  msgid "Please upload a valid image!"
4212
  msgstr ""
4213
 
4214
+ #: core/um-fields.php:867 core/um-fields.php:888
4215
  msgid "Upload"
4216
  msgstr ""
4217
 
4218
+ #: core/um-fields.php:868
4219
  msgid "Sorry this is not a valid image."
4220
  msgstr ""
4221
 
4222
+ #: core/um-fields.php:869
4223
  msgid "This image is too large!"
4224
  msgstr ""
4225
 
4226
+ #: core/um-fields.php:870
4227
  msgid "This image is too small!"
4228
  msgstr ""
4229
 
4230
+ #: core/um-fields.php:871
4231
  msgid "You can only upload one image"
4232
  msgstr ""
4233
 
4234
+ #: core/um-fields.php:1138
4235
  msgid "Current Password"
4236
  msgstr ""
4237
 
4238
+ #: core/um-fields.php:1167
4239
  msgid "New Password"
4240
  msgstr ""
4241
 
4242
+ #: core/um-fields.php:1199
4243
  #, php-format
4244
  msgid "Confirm %s"
4245
  msgstr ""
4246
 
4247
+ #: core/um-fields.php:1421 core/um-fields.php:1505
4248
  msgid "Upload Photo"
4249
  msgstr ""
4250
 
4251
+ #: core/um-fields.php:1475 core/um-fields.php:1563
4252
  msgid "Processing..."
4253
  msgstr ""
4254
 
4255
+ #: core/um-fields.php:1521 core/um-fields.php:1563
4256
  msgid "Change file"
4257
  msgstr ""
4258
 
4259
+ #: core/um-fields.php:1563
4260
  msgid "Save"
4261
  msgstr ""
4262
 
4263
+ #: core/um-fields.php:2367
4264
  #, php-format
4265
  msgid ""
4266
  "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
4267
  "information!"
4268
  msgstr ""
4269
 
4270
+ #: core/um-fields.php:2369
4271
  msgid "This user has not added any information to their profile yet."
4272
  msgstr ""
4273
 
4275
  msgid "This media type is not recognized."
4276
  msgstr ""
4277
 
4278
+ #: core/um-files.php:385
4279
  msgid "Your image is invalid or too large!"
4280
  msgstr ""
4281
 
4282
+ #: core/um-files.php:391 core/um-files.php:393
4283
  #, php-format
4284
  msgid "Your photo is too small. It must be at least %spx wide."
4285
  msgstr ""
4286
 
4287
+ #: core/um-files.php:445
4288
  msgid "Ultimate Member: Not a valid temp file"
4289
  msgstr ""
4290
 
4291
+ #: core/um-files.php:540 core/um-files.php:546
4292
  msgid "Unauthorized to do this attempt."
4293
  msgstr ""
4294
 
4312
  msgid "Required"
4313
  msgstr ""
4314
 
4315
+ #: core/um-filters-fields.php:23
 
 
 
 
4316
  msgid "Invalid soundcloud track ID"
4317
  msgstr ""
4318
 
4319
+ #: core/um-filters-fields.php:82
4320
  #, php-format
4321
  msgid "Joined %s"
4322
  msgstr ""
4323
 
4324
+ #: core/um-filters-fields.php:93
4325
  #, php-format
4326
  msgid "Last login: %s"
4327
  msgstr ""
4328
 
4329
+ #: core/um-filters-fields.php:156
4330
  msgid "This file has been removed."
4331
  msgstr ""
4332
 
4333
+ #: core/um-filters-fields.php:177
4334
  msgid "Untitled photo"
4335
  msgstr ""
4336
 
4383
  msgid "Login as this user"
4384
  msgstr ""
4385
 
4386
+ #: core/um-form.php:128
4387
  msgid "This is not possible for security reasons."
4388
  msgstr ""
4389
 
4403
  msgid "Select the member roles that can see this link"
4404
  msgstr ""
4405
 
4406
+ #: core/um-password.php:33
4407
  msgid "This is not a valid hash, or it has expired."
4408
  msgstr ""
4409
 
4410
+ #: core/um-permalinks.php:165
4411
  msgid "This activation link is expired or have already been used."
4412
  msgstr ""
4413
 
4419
  msgid "Login"
4420
  msgstr ""
4421
 
4422
+ #: core/um-short-functions.php:421
4423
  msgid "date submitted"
4424
  msgstr ""
4425
 
4426
+ #: core/um-short-functions.php:426
4427
  msgid "(empty)"
4428
  msgstr ""
4429
 
4531
  msgid "Comments"
4532
  msgstr ""
4533
 
4534
+ #: core/um-user.php:76
4535
  msgid "Assign or change the community role for this user"
4536
  msgstr ""
4537
 
4538
+ #: core/um-user.php:249
4539
  msgid "Membership Rejected"
4540
  msgstr ""
4541
 
4542
+ #: core/um-user.php:253
4543
  msgid "Membership Inactive"
4544
  msgstr ""
4545
 
4846
 
4847
  #: um-config.php:230 um-config.php:240 um-config.php:264 um-config.php:274
4848
  #: um-config.php:284 um-config.php:294 um-config.php:317 um-config.php:326
4849
+ #: um-config.php:337 um-config.php:347 um-config.php:357 um-config.php:931
4850
+ #: um-config.php:964 um-config.php:998 um-config.php:1424 um-config.php:1512
4851
+ #: um-config.php:1538 um-config.php:1593 um-config.php:1603 um-config.php:1613
4852
+ #: um-config.php:1623 um-config.php:1655 um-config.php:1665 um-config.php:1680
4853
+ #: um-config.php:1692 um-config.php:1739 um-config.php:1817 um-config.php:1919
4854
+ #: um-config.php:1947 um-config.php:1957 um-config.php:2004 um-config.php:2014
4855
+ #: um-config.php:2024 um-config.php:2047 um-config.php:2057 um-config.php:2067
4856
+ #: um-config.php:2077 um-config.php:2087 um-config.php:2097 um-config.php:2124
4857
+ #: um-config.php:2133
4858
  msgid "On"
4859
  msgstr ""
4860
 
4861
  #: um-config.php:231 um-config.php:241 um-config.php:265 um-config.php:275
4862
  #: um-config.php:285 um-config.php:295 um-config.php:318 um-config.php:327
4863
+ #: um-config.php:338 um-config.php:348 um-config.php:358 um-config.php:932
4864
+ #: um-config.php:965 um-config.php:999 um-config.php:1425 um-config.php:1513
4865
+ #: um-config.php:1539 um-config.php:1594 um-config.php:1604 um-config.php:1614
4866
+ #: um-config.php:1624 um-config.php:1656 um-config.php:1666 um-config.php:1681
4867
+ #: um-config.php:1693 um-config.php:1740 um-config.php:1818 um-config.php:1920
4868
+ #: um-config.php:1948 um-config.php:1958 um-config.php:2005 um-config.php:2015
4869
+ #: um-config.php:2025 um-config.php:2048 um-config.php:2058 um-config.php:2068
4870
+ #: um-config.php:2078 um-config.php:2088 um-config.php:2098 um-config.php:2125
4871
+ #: um-config.php:2134
4872
  msgid "Off"
4873
  msgstr ""
4874
 
5020
  msgid "Add New URL"
5021
  msgstr ""
5022
 
5023
+ #: um-config.php:417
5024
+ msgid "Allow Homepage to be accessible"
5025
+ msgstr ""
5026
+
5027
+ #: um-config.php:426
5028
+ msgid "Allow Category pages to be accessible"
5029
+ msgstr ""
5030
+
5031
+ #: um-config.php:435
5032
  msgid "Allow Backend Login Screen for Guests"
5033
  msgstr ""
5034
 
5035
+ #: um-config.php:437
5036
  msgid ""
5037
  "Control whether guests are able to access the WP-admin login screen or not"
5038
  msgstr ""
5039
 
5040
+ #: um-config.php:445
5041
  msgid "Disable Admin Login via Frontend"
5042
  msgstr ""
5043
 
5044
+ #: um-config.php:447
5045
  msgid ""
5046
  "DO NOT turn this option on if you have set the option \"Allow Backend Login "
5047
  "Screen for Guests\" to NO. This will result in being locked out of admin."
5048
  msgstr ""
5049
 
5050
+ #: um-config.php:456
5051
  msgid "Redirect to alternative login page"
5052
  msgstr ""
5053
 
5054
+ #: um-config.php:457
5055
  msgid ""
5056
  "If you disable backend access to login screen, specify here where a user "
5057
  "will be redirected"
5058
  msgstr ""
5059
 
5060
+ #: um-config.php:469 um-config.php:501
5061
  msgid "Custom URL"
5062
  msgstr ""
5063
 
5064
+ #: um-config.php:470 um-config.php:502
5065
  msgid ""
5066
  "Enter an alternate url here to redirect a user If they try to access the "
5067
  "backend register screen"
5068
  msgstr ""
5069
 
5070
+ #: um-config.php:477
5071
  msgid "Allow Backend Register Screen for Guests"
5072
  msgstr ""
5073
 
5074
+ #: um-config.php:479
5075
  msgid ""
5076
  "Control whether guests are able to access the WP-admin register screen or not"
5077
  msgstr ""
5078
 
5079
+ #: um-config.php:488
5080
  msgid "Redirect to alternative register page"
5081
  msgstr ""
5082
 
5083
+ #: um-config.php:489
5084
  msgid ""
5085
  "If you disable backend access to register screen, specify here where a user "
5086
  "will be redirected"
5087
  msgstr ""
5088
 
5089
+ #: um-config.php:509
5090
  msgid "Enable the Access Control widget for Admins only?"
5091
  msgstr ""
5092
 
5093
+ #: um-config.php:518
5094
  msgid "Enable the Reset Password Limit?"
5095
  msgstr ""
5096
 
5097
+ #: um-config.php:527
5098
  msgid "Reset Password Limit"
5099
  msgstr ""
5100
 
5101
+ #: um-config.php:528
5102
  msgid ""
5103
  "Set the maximum reset password limit. If reached the maximum limit, user "
5104
  "will be locked from using this."
5105
  msgstr ""
5106
 
5107
+ #: um-config.php:538
5108
  msgid "Disable the Reset Password Limit for Admins only?"
5109
  msgstr ""
5110
 
5111
+ #: um-config.php:548
5112
  msgid "Whitelisted Backend IPs"
5113
  msgstr ""
5114
 
5115
+ #: um-config.php:549
5116
  msgid ""
5117
  "Always allow the specified IP addresses to access the backend login screen "
5118
  "and WP-admin to avoid being locked from site backend."
5119
  msgstr ""
5120
 
5121
+ #: um-config.php:555
5122
  msgid "Blocked IP Addresses"
5123
  msgstr ""
5124
 
5125
+ #: um-config.php:556
5126
  msgid ""
5127
  "This will block the listed IPs from signing up or signing in to the site, "
5128
  "you can use full IP numbers or target specific range with a wildcard"
5129
  msgstr ""
5130
 
5131
+ #: um-config.php:562
5132
  msgid "Blocked Email Addresses"
5133
  msgstr ""
5134
 
5135
+ #: um-config.php:563
5136
  msgid ""
5137
  "This will block the specified e-mail addresses from being able to sign up or "
5138
  "sign in to your site. To block an entire domain, use something like *@domain."
5139
  "com"
5140
  msgstr ""
5141
 
5142
+ #: um-config.php:569
5143
  msgid "Blacklist Words"
5144
  msgstr ""
5145
 
5146
+ #: um-config.php:570
5147
  msgid ""
5148
  "This option lets you specify blacklist of words to prevent anyone from "
5149
  "signing up with such a word as their username"
5150
  msgstr ""
5151
 
5152
+ #: um-config.php:585
5153
  msgid "Emails"
5154
  msgstr ""
5155
 
5156
+ #: um-config.php:591
5157
  msgid "Mail appears from"
5158
  msgstr ""
5159
 
5160
+ #: um-config.php:592
5161
  msgid "e.g. Site Name"
5162
  msgstr ""
5163
 
5164
+ #: um-config.php:599
5165
  msgid "Mail appears from address"
5166
  msgstr ""
5167
 
5168
+ #: um-config.php:600 um-config.php:922
5169
  msgid "e.g. admin@companyname.com"
5170
  msgstr ""
5171
 
5172
+ #: um-config.php:607
5173
  msgid "Use HTML for E-mails?"
5174
  msgstr ""
5175
 
5176
+ #: um-config.php:609
5177
  msgid ""
5178
  "If you enable HTML for e-mails, you can customize the HTML e-mail templates "
5179
  "found in <strong>templates/email</strong> folder."
5180
  msgstr ""
5181
 
5182
+ #: um-config.php:615 um-config.php:623 um-config.php:633
5183
  msgid "Account Welcome Email"
5184
  msgstr ""
5185
 
5186
+ #: um-config.php:617
5187
  msgid ""
5188
  "Whether to send the user an email when his account is automatically approved"
5189
  msgstr ""
5190
 
5191
+ #: um-config.php:624 um-config.php:659 um-config.php:691 um-config.php:723
5192
+ #: um-config.php:759 um-config.php:790 um-config.php:821 um-config.php:852
5193
+ #: um-config.php:884 um-config.php:939 um-config.php:972 um-config.php:1006
5194
  msgid "Subject Line"
5195
  msgstr ""
5196
 
5197
+ #: um-config.php:627 um-config.php:662 um-config.php:694 um-config.php:726
5198
+ #: um-config.php:762 um-config.php:793 um-config.php:824 um-config.php:855
5199
+ #: um-config.php:887 um-config.php:942 um-config.php:975 um-config.php:1009
5200
  msgid "This is the subject line of the e-mail"
5201
  msgstr ""
5202
 
5203
+ #: um-config.php:634 um-config.php:669 um-config.php:701 um-config.php:733
5204
+ #: um-config.php:769 um-config.php:800 um-config.php:831 um-config.php:862
5205
+ #: um-config.php:894 um-config.php:949 um-config.php:982 um-config.php:1016
5206
  msgid "Message Body"
5207
  msgstr ""
5208
 
5209
+ #: um-config.php:650 um-config.php:658 um-config.php:668
5210
  msgid "Account Activation Email"
5211
  msgstr ""
5212
 
5213
+ #: um-config.php:652
5214
  msgid ""
5215
  "Whether to send the user an email when his account needs e-mail activation"
5216
  msgstr ""
5217
 
5218
+ #: um-config.php:682 um-config.php:690 um-config.php:700
5219
  msgid "Pending Review Email"
5220
  msgstr ""
5221
 
5222
+ #: um-config.php:684
5223
  msgid "Whether to send the user an email when his account needs admin review"
5224
  msgstr ""
5225
 
5226
+ #: um-config.php:714 um-config.php:722 um-config.php:732
5227
  msgid "Account Approved Email"
5228
  msgstr ""
5229
 
5230
+ #: um-config.php:716
5231
  msgid "Whether to send the user an email when his account is approved"
5232
  msgstr ""
5233
 
5234
+ #: um-config.php:750 um-config.php:758 um-config.php:768
5235
  msgid "Account Rejected Email"
5236
  msgstr ""
5237
 
5238
+ #: um-config.php:752
5239
  msgid "Whether to send the user an email when his account is rejected"
5240
  msgstr ""
5241
 
5242
+ #: um-config.php:781 um-config.php:789 um-config.php:799
5243
  msgid "Account Deactivated Email"
5244
  msgstr ""
5245
 
5246
+ #: um-config.php:783
5247
  msgid "Whether to send the user an email when his account is deactivated"
5248
  msgstr ""
5249
 
5250
+ #: um-config.php:812 um-config.php:820 um-config.php:830
5251
  msgid "Account Deleted Email"
5252
  msgstr ""
5253
 
5254
+ #: um-config.php:814
5255
  msgid "Whether to send the user an email when his account is deleted"
5256
  msgstr ""
5257
 
5258
+ #: um-config.php:843 um-config.php:851 um-config.php:861
5259
  msgid "Password Reset Email"
5260
  msgstr ""
5261
 
5262
+ #: um-config.php:845
5263
  msgid ""
5264
+ "Whether to send an email when users changed their password (Recommended, "
5265
+ "please keep on)"
5266
  msgstr ""
5267
 
5268
+ #: um-config.php:875 um-config.php:883 um-config.php:893
5269
  msgid "Password Changed Email"
5270
  msgstr ""
5271
 
5272
+ #: um-config.php:877
5273
+ msgid ""
5274
+ "Whether to send the user an email when he request to reset password "
5275
+ "(Recommended, please keep on)"
5276
+ msgstr ""
5277
+
5278
+ #: um-config.php:920
5279
  msgid "Admin E-mail Address"
5280
  msgstr ""
5281
 
5282
+ #: um-config.php:928 um-config.php:938 um-config.php:948
5283
  msgid "New User Notification"
5284
  msgstr ""
5285
 
5286
+ #: um-config.php:930
5287
  msgid "Whether to receive notification when a new user account is approved"
5288
  msgstr ""
5289
 
5290
+ #: um-config.php:955 um-config.php:989 um-config.php:1019
5291
  msgid "This is the content of the e-mail"
5292
  msgstr ""
5293
 
5294
+ #: um-config.php:961 um-config.php:971 um-config.php:981
5295
  msgid "Account Needs Review Notification"
5296
  msgstr ""
5297
 
5298
+ #: um-config.php:963
5299
  msgid "Whether to receive notification when an account needs admin review"
5300
  msgstr ""
5301
 
5302
+ #: um-config.php:995 um-config.php:1005 um-config.php:1015
5303
  msgid "Account Deletion Notification"
5304
  msgstr ""
5305
 
5306
+ #: um-config.php:997
5307
  msgid "Whether to receive notification when an account is deleted"
5308
  msgstr ""
5309
 
5310
+ #: um-config.php:1033
5311
  msgid "Uploads"
5312
  msgstr ""
5313
 
5314
+ #: um-config.php:1039
5315
  msgid "Profile Photo Maximum File Size (bytes)"
5316
  msgstr ""
5317
 
5318
+ #: um-config.php:1040
5319
  msgid "Sets a maximum size for the uploaded photo"
5320
  msgstr ""
5321
 
5322
+ #: um-config.php:1047
5323
  msgid "Cover Photo Maximum File Size (bytes)"
5324
  msgstr ""
5325
 
5326
+ #: um-config.php:1048
5327
  msgid "Sets a maximum size for the uploaded cover"
5328
  msgstr ""
5329
 
5330
+ #: um-config.php:1055
5331
  msgid "Profile Photo Thumbnail Sizes (px)"
5332
  msgstr ""
5333
 
5334
+ #: um-config.php:1056
5335
  msgid ""
5336
  "Here you can define which thumbnail sizes will be created for each profile "
5337
  "photo upload."
5338
  msgstr ""
5339
 
5340
+ #: um-config.php:1059 um-config.php:1069
5341
  msgid "Add New Size"
5342
  msgstr ""
5343
 
5344
+ #: um-config.php:1065
5345
  msgid "Cover Photo Thumbnail Sizes (px)"
5346
  msgstr ""
5347
 
5348
+ #: um-config.php:1066
5349
  msgid ""
5350
  "Here you can define which thumbnail sizes will be created for each cover "
5351
  "photo upload."
5352
  msgstr ""
5353
 
5354
+ #: um-config.php:1075
5355
  msgid "Image Quality"
5356
  msgstr ""
5357
 
5358
+ #: um-config.php:1076
5359
  msgid ""
5360
  "Quality is used to determine quality of image uploads, and ranges from 0 "
5361
  "(worst quality, smaller file) to 100 (best quality, biggest file). The "
5362
  "default range is 60."
5363
  msgstr ""
5364
 
5365
+ #: um-config.php:1084
5366
  msgid "Image Upload Maximum Width (px)"
5367
  msgstr ""
5368
 
5369
+ #: um-config.php:1085
5370
  msgid ""
5371
  "Any image upload above this width will be resized to this limit "
5372
  "automatically."
5373
  msgstr ""
5374
 
5375
+ #: um-config.php:1093
5376
  msgid "Cover Photo Minimum Width (px)"
5377
  msgstr ""
5378
 
5379
+ #: um-config.php:1094
5380
  msgid "This will be the minimum width for cover photo uploads"
5381
  msgstr ""
5382
 
5383
+ #: um-config.php:1110
5384
  msgid "SEO"
5385
  msgstr ""
5386
 
5387
+ #: um-config.php:1116
5388
  msgid "User Profile Title"
5389
  msgstr ""
5390
 
5391
+ #: um-config.php:1118
5392
  msgid "This is the title that is displayed on a specific user profile"
5393
  msgstr ""
5394
 
5395
+ #: um-config.php:1125
5396
  msgid "User Profile Dynamic Meta Description"
5397
  msgstr ""
5398
 
5399
+ #: um-config.php:1126
5400
  msgid ""
5401
  "This will be used in the meta description that is available for search-"
5402
  "engines."
5403
  msgstr ""
5404
 
5405
+ #: um-config.php:1140
5406
  msgid "Appearance"
5407
  msgstr ""
5408
 
5409
+ #: um-config.php:1150
5410
  msgid "General"
5411
  msgstr ""
5412
 
5413
+ #: um-config.php:1157
5414
  msgid "Members Default Template"
5415
  msgstr ""
5416
 
5417
+ #: um-config.php:1158
5418
  msgid "This will be the default template to output member directory"
5419
  msgstr ""
5420
 
5421
+ #: um-config.php:1168
5422
  msgid "General Active Color"
5423
  msgstr ""
5424
 
5425
+ #: um-config.php:1170
5426
  msgid ""
5427
  "Active color is used commonly with many plugin elements as highlighted color "
5428
  "or active selection for example. This color demonstrates the primary active "
5429
  "color of the plugin"
5430
  msgstr ""
5431
 
5432
+ #: um-config.php:1178
5433
  msgid "General Secondary Color"
5434
  msgstr ""
5435
 
5436
+ #: um-config.php:1180
5437
  msgid ""
5438
  "Secondary color is used for hovers, or active state for some elements of the "
5439
  "plugin"
5440
  msgstr ""
5441
 
5442
+ #: um-config.php:1188
5443
  msgid "Default Primary Button Color"
5444
  msgstr ""
5445
 
5446
+ #: um-config.php:1197
5447
  msgid "Default Primary Button Hover Color"
5448
  msgstr ""
5449
 
5450
+ #: um-config.php:1206
5451
  msgid "Default Primary Button Text Color"
5452
  msgstr ""
5453
 
5454
+ #: um-config.php:1215
5455
  msgid "Default Secondary Button Color"
5456
  msgstr ""
5457
 
5458
+ #: um-config.php:1224
5459
  msgid "Default Secondary Button Hover Color"
5460
  msgstr ""
5461
 
5462
+ #: um-config.php:1233
5463
  msgid "Default Secondary Button Text Color"
5464
  msgstr ""
5465
 
5466
+ #: um-config.php:1242
5467
  msgid "Default Help Icon Color"
5468
  msgstr ""
5469
 
5470
+ #: um-config.php:1254
5471
  msgid "Form Inputs"
5472
  msgstr ""
5473
 
5474
+ #: um-config.php:1261
5475
  msgid "Field Label Color"
5476
  msgstr ""
5477
 
5478
+ #: um-config.php:1269
5479
  msgid "Field Border"
5480
  msgstr ""
5481
 
5482
+ #: um-config.php:1271
5483
  msgid "The default border-style for input/fields in UM forms"
5484
  msgstr ""
5485
 
5486
+ #: um-config.php:1277
5487
  msgid "Field Border on Focus"
5488
  msgstr ""
5489
 
5490
+ #: um-config.php:1279
5491
  msgid "The default border style for fields on hover state"
5492
  msgstr ""
5493
 
5494
+ #: um-config.php:1286
5495
  msgid "Field Background Color"
5496
  msgstr ""
5497
 
5498
+ #: um-config.php:1295
5499
  msgid "Field Background Color on Focus"
5500
  msgstr ""
5501
 
5502
+ #: um-config.php:1304
5503
  msgid "Field Text Color"
5504
  msgstr ""
5505
 
5506
+ #: um-config.php:1313
5507
  msgid "Field Placeholder Color"
5508
  msgstr ""
5509
 
5510
+ #: um-config.php:1322
5511
  msgid "Field Font Icon Color"
5512
  msgstr ""
5513
 
5514
+ #: um-config.php:1330
5515
  msgid "Show an asterisk for required fields"
5516
  msgstr ""
5517
 
5518
+ #: um-config.php:1340
5519
  msgid "Field Required Asterisk Color"
5520
  msgstr ""
5521
 
5522
+ #: um-config.php:1353
5523
  msgid "Profile"
5524
  msgstr ""
5525
 
5526
+ #: um-config.php:1360
5527
  msgid "Profile Default Template"
5528
  msgstr ""
5529
 
5530
+ #: um-config.php:1361
5531
  msgid "This will be the default template to output profile"
5532
  msgstr ""
5533
 
5534
+ #: um-config.php:1369
5535
  msgid "Profile Maximum Width"
5536
  msgstr ""
5537
 
5538
+ #: um-config.php:1377
5539
  msgid "Profile Area Maximum Width"
5540
  msgstr ""
5541
 
5542
+ #: um-config.php:1379
5543
  msgid ""
5544
  "The maximum width of the profile area inside profile (below profile header)"
5545
  msgstr ""
5546
 
5547
+ #: um-config.php:1386
5548
  msgid "Profile Shortcode Alignment"
5549
  msgstr ""
5550
 
5551
+ #: um-config.php:1390 um-config.php:1783 um-config.php:1885
5552
  msgid "Centered"
5553
  msgstr ""
5554
 
5555
+ #: um-config.php:1391 um-config.php:1784 um-config.php:1886
5556
  msgid "Left aligned"
5557
  msgstr ""
5558
 
5559
+ #: um-config.php:1392 um-config.php:1785 um-config.php:1887
5560
  msgid "Right aligned"
5561
  msgstr ""
5562
 
5563
+ #: um-config.php:1400
5564
  msgid "Profile Field Icons"
5565
  msgstr ""
5566
 
5567
+ #: um-config.php:1401
5568
  msgid "This is applicable for edit mode only"
5569
  msgstr ""
5570
 
5571
+ #: um-config.php:1404 um-config.php:1797 um-config.php:1899
5572
  msgid "Show inside text field"
5573
  msgstr ""
5574
 
5575
+ #: um-config.php:1405 um-config.php:1798 um-config.php:1900
5576
  msgid "Show with label"
5577
  msgstr ""
5578
 
5579
+ #: um-config.php:1406 um-config.php:1799 um-config.php:1901
5580
  msgid "Turn off"
5581
  msgstr ""
5582
 
5583
+ #: um-config.php:1413
5584
  msgid "Profile Primary Button Text"
5585
  msgstr ""
5586
 
5587
+ #: um-config.php:1415
5588
  msgid "The text that is used for updating profile button"
5589
  msgstr ""
5590
 
5591
+ #: um-config.php:1421
5592
  msgid "Profile Secondary Button"
5593
  msgstr ""
5594
 
5595
+ #: um-config.php:1423 um-config.php:1816 um-config.php:1918
5596
  msgid "Switch on/off the secondary button display in the form"
5597
  msgstr ""
5598
 
5599
+ #: um-config.php:1431
5600
  msgid "Profile Secondary Button Text"
5601
  msgstr ""
5602
 
5603
+ #: um-config.php:1433
5604
  msgid "The text that is used for cancelling update profile button"
5605
  msgstr ""
5606
 
5607
+ #: um-config.php:1441
5608
  msgid "Profile Associated Role"
5609
  msgstr ""
5610
 
5611
+ #: um-config.php:1442
5612
  msgid ""
5613
  "Normally, you can leave this to default as this restricts the profile per "
5614
  "specified role only"
5615
  msgstr ""
5616
 
5617
+ #: um-config.php:1451
5618
  msgid "Profile Base Background Color"
5619
  msgstr ""
5620
 
5621
+ #: um-config.php:1460
5622
  msgid "Profile Header Background Color"
5623
  msgstr ""
5624
 
5625
+ #: um-config.php:1468
5626
  msgid "Default Profile Photo"
5627
  msgstr ""
5628
 
5629
+ #: um-config.php:1469
5630
  msgid ""
5631
  "You can change the default profile picture globally here. Please make sure "
5632
  "that the photo is 300x300px."
5633
  msgstr ""
5634
 
5635
+ #: um-config.php:1480
5636
  msgid "Default Cover Photo"
5637
  msgstr ""
5638
 
5639
+ #: um-config.php:1481
5640
  msgid ""
5641
  "You can change the default cover photo globally here. Please make sure that "
5642
  "the default cover is large enough and respects the ratio you are using for "
5643
  "cover photos."
5644
  msgstr ""
5645
 
5646
+ #: um-config.php:1489
5647
  msgid ""
5648
  "The global default of profile photo size. This can be overridden by "
5649
  "individual form settings"
5650
  msgstr ""
5651
 
5652
+ #: um-config.php:1497
5653
  msgid ""
5654
  "Whether to have rounded profile images, rounded corners, or none for the "
5655
  "profile photo"
5656
  msgstr ""
5657
 
5658
+ #: um-config.php:1509
5659
  msgid "Profile Cover Photos"
5660
  msgstr ""
5661
 
5662
+ #: um-config.php:1511
5663
  msgid "Switch on/off the profile cover photos"
5664
  msgstr ""
5665
 
5666
+ #: um-config.php:1520
5667
  msgid "Profile Cover Ratio"
5668
  msgstr ""
5669
 
5670
+ #: um-config.php:1521
5671
  msgid "Choose global ratio for cover photos of profiles"
5672
  msgstr ""
5673
 
5674
+ #: um-config.php:1535
5675
  msgid "Profile Header Meta Text Icon"
5676
  msgstr ""
5677
 
5678
+ #: um-config.php:1537
5679
  msgid "Display field icons for related user meta fields in header or not"
5680
  msgstr ""
5681
 
5682
+ #: um-config.php:1546
5683
  msgid "Profile Header Meta Text Color"
5684
  msgstr ""
5685
 
5686
+ #: um-config.php:1555
5687
  msgid "Profile Header Link Color"
5688
  msgstr ""
5689
 
5690
+ #: um-config.php:1564
5691
  msgid "Profile Header Link Hover"
5692
  msgstr ""
5693
 
5694
+ #: um-config.php:1573
5695
  msgid "Profile Header Icon Link Color"
5696
  msgstr ""
5697
 
5698
+ #: um-config.php:1582
5699
  msgid "Profile Header Icon Link Hover"
5700
  msgstr ""
5701
 
5702
+ #: um-config.php:1590
5703
  msgid "Show display name in profile header"
5704
  msgstr ""
5705
 
5706
+ #: um-config.php:1592
5707
  msgid "Switch on/off the user name on profile header"
5708
  msgstr ""
5709
 
5710
+ #: um-config.php:1600
5711
  msgid "Show social links in profile header"
5712
  msgstr ""
5713
 
5714
+ #: um-config.php:1602
5715
  msgid "Switch on/off the social links on profile header"
5716
  msgstr ""
5717
 
5718
+ #: um-config.php:1610
5719
  msgid "Show user description in header"
5720
  msgstr ""
5721
 
5722
+ #: um-config.php:1612
5723
  msgid "Switch on/off the user description on profile header"
5724
  msgstr ""
5725
 
5726
+ #: um-config.php:1620
5727
  msgid "Enable html support for user description"
5728
  msgstr ""
5729
 
5730
+ #: um-config.php:1622
5731
  msgid ""
5732
  "Switch on/off to enable/disable support for html tags on user description."
5733
  msgstr ""
5734
 
5735
+ #: um-config.php:1630
5736
  msgid "User description maximum chars"
5737
  msgstr ""
5738
 
5739
+ #: um-config.php:1632
5740
  msgid ""
5741
  "Maximum number of characters to allow in user description field in header."
5742
  msgstr ""
5743
 
5744
+ #: um-config.php:1639
5745
  msgid "Profile Header Menu Position"
5746
  msgstr ""
5747
 
5748
+ #: um-config.php:1641
5749
  msgid ""
5750
  "For incompatible themes, please make the menu open from left instead of "
5751
  "bottom by default."
5752
  msgstr ""
5753
 
5754
+ #: um-config.php:1652
5755
  msgid "Show a custom message if profile is empty"
5756
  msgstr ""
5757
 
5758
+ #: um-config.php:1654
5759
  msgid "Switch on/off the custom message that appears when the profile is empty"
5760
  msgstr ""
5761
 
5762
+ #: um-config.php:1662
5763
  msgid "Show the emoticon"
5764
  msgstr ""
5765
 
5766
+ #: um-config.php:1664
5767
  msgid "Switch on/off the emoticon (sad face) that appears above the message"
5768
  msgstr ""
5769
 
5770
+ #: um-config.php:1678
5771
  msgid "Enable profile menu"
5772
  msgstr ""
5773
 
5774
+ #: um-config.php:1689
5775
  #, php-format
5776
  msgid "%s Tab"
5777
  msgstr ""
5778
 
5779
+ #: um-config.php:1700
5780
  #, php-format
5781
  msgid "Who can see %s Tab?"
5782
  msgstr ""
5783
 
5784
+ #: um-config.php:1701
5785
  msgid "Select which users can view this tab."
5786
  msgstr ""
5787
 
5788
+ #: um-config.php:1712
5789
  msgid "Allowed roles"
5790
  msgstr ""
5791
 
5792
+ #: um-config.php:1713
5793
  msgid "Select the the user roles allowed to view this tab."
5794
  msgstr ""
5795
 
5796
+ #: um-config.php:1716
5797
  msgid "Choose user roles..."
5798
  msgstr ""
5799
 
5800
+ #: um-config.php:1726
5801
  msgid "Profile menu default tab"
5802
  msgstr ""
5803
 
5804
+ #: um-config.php:1727
5805
  msgid "This will be the default tab on user profile page"
5806
  msgstr ""
5807
 
5808
+ #: um-config.php:1736
5809
  msgid "Enable menu icons in desktop view"
5810
  msgstr ""
5811
 
5812
+ #: um-config.php:1746
5813
  msgid "Profile Menu"
5814
  msgstr ""
5815
 
5816
+ #: um-config.php:1761
5817
  msgid "Registration Default Template"
5818
  msgstr ""
5819
 
5820
+ #: um-config.php:1762
5821
  msgid "This will be the default template to output registration"
5822
  msgstr ""
5823
 
5824
+ #: um-config.php:1770
5825
  msgid "Registration Maximum Width"
5826
  msgstr ""
5827
 
5828
+ #: um-config.php:1772 um-config.php:1874
5829
  msgid "The maximum width this shortcode can take from the page width"
5830
  msgstr ""
5831
 
5832
+ #: um-config.php:1779
5833
  msgid "Registration Shortcode Alignment"
5834
  msgstr ""
5835
 
5836
+ #: um-config.php:1793
5837
  msgid "Registration Field Icons"
5838
  msgstr ""
5839
 
5840
+ #: um-config.php:1794
5841
  msgid "This controls the display of field icons in the registration form"
5842
  msgstr ""
5843
 
5844
+ #: um-config.php:1806
5845
  msgid "Registration Primary Button Text"
5846
  msgstr ""
5847
 
5848
+ #: um-config.php:1808 um-config.php:1910
5849
  msgid "The text that is used for primary button text"
5850
  msgstr ""
5851
 
5852
+ #: um-config.php:1814
5853
  msgid "Registration Secondary Button"
5854
  msgstr ""
5855
 
5856
+ #: um-config.php:1824
5857
  msgid "Registration Secondary Button Text"
5858
  msgstr ""
5859
 
5860
+ #: um-config.php:1826 um-config.php:1928
5861
  msgid "The text that is used for the secondary button text"
5862
  msgstr ""
5863
 
5864
+ #: um-config.php:1833
5865
  msgid "Registration Secondary Button URL"
5866
  msgstr ""
5867
 
5868
+ #: um-config.php:1835 um-config.php:1937
5869
  msgid "You can replace default link for this button by entering custom URL"
5870
  msgstr ""
5871
 
5872
+ #: um-config.php:1843
5873
  msgid "Registration Default Role"
5874
  msgstr ""
5875
 
5876
+ #: um-config.php:1844
5877
  msgid ""
5878
  "This will be the default role assigned to users registering thru "
5879
  "registration form"
5880
  msgstr ""
5881
 
5882
+ #: um-config.php:1863
5883
  msgid "Login Default Template"
5884
  msgstr ""
5885
 
5886
+ #: um-config.php:1864
5887
  msgid "This will be the default template to output login"
5888
  msgstr ""
5889
 
5890
+ #: um-config.php:1872
5891
  msgid "Login Maximum Width"
5892
  msgstr ""
5893
 
5894
+ #: um-config.php:1881
5895
  msgid "Login Shortcode Alignment"
5896
  msgstr ""
5897
 
5898
+ #: um-config.php:1895
5899
  msgid "Login Field Icons"
5900
  msgstr ""
5901
 
5902
+ #: um-config.php:1896
5903
  msgid "This controls the display of field icons in the login form"
5904
  msgstr ""
5905
 
5906
+ #: um-config.php:1908
5907
  msgid "Login Primary Button Text"
5908
  msgstr ""
5909
 
5910
+ #: um-config.php:1916
5911
  msgid "Login Secondary Button"
5912
  msgstr ""
5913
 
5914
+ #: um-config.php:1926
5915
  msgid "Login Secondary Button Text"
5916
  msgstr ""
5917
 
5918
+ #: um-config.php:1935
5919
  msgid "Login Secondary Button URL"
5920
  msgstr ""
5921
 
5922
+ #: um-config.php:1944
5923
  msgid "Login Forgot Password Link"
5924
  msgstr ""
5925
 
5926
+ #: um-config.php:1946
5927
  msgid "Switch on/off the forgot password link in login form"
5928
  msgstr ""
5929
 
5930
+ #: um-config.php:1954
5931
  msgid "Show \"Remember Me\""
5932
  msgstr ""
5933
 
5934
+ #: um-config.php:1956
5935
  msgid ""
5936
  "Allow users to choose If they want to stay signed in even after closing the "
5937
  "browser. If you do not show this option, the default will be to not remember "
5938
  "login session."
5939
  msgstr ""
5940
 
5941
+ #: um-config.php:1976
5942
  msgid ""
5943
  "Any custom css rules that you specify here will be applied globally to the "
5944
  "plugin."
5945
  msgstr ""
5946
 
5947
+ #: um-config.php:1994
5948
  msgid "Import & Export Settings"
5949
  msgstr ""
5950
 
5951
+ #: um-config.php:2001
5952
  msgid "Stop caching user's profile data"
5953
  msgstr ""
5954
 
5955
+ #: um-config.php:2003
5956
  msgid "Turn off If you have performance issue."
5957
  msgstr ""
5958
 
5959
+ #: um-config.php:2011
5960
  msgid "Stop rewriting rules on every load"
5961
  msgstr ""
5962
 
5963
+ #: um-config.php:2013
5964
  msgid ""
5965
  "Turn on If you have performance issue and are not getting 404 error/"
5966
  "conflicts with other plugins/themes."
5967
  msgstr ""
5968
 
5969
+ #: um-config.php:2021
5970
+ msgid "Stop generating profile slugs in member directory"
5971
+ msgstr ""
5972
+
5973
+ #: um-config.php:2023
5974
+ msgid "Turn on If you have performance issue in member directory."
5975
+ msgstr ""
5976
+
5977
+ #: um-config.php:2032
5978
  msgid "Current URL Method"
5979
  msgstr ""
5980
 
5981
+ #: um-config.php:2033
5982
  msgid ""
5983
  "Change this If you are having conflicts with profile links or redirections."
5984
  msgstr ""
5985
 
5986
+ #: um-config.php:2036
5987
  msgid "Use SERVER_NAME"
5988
  msgstr ""
5989
 
5990
+ #: um-config.php:2037
5991
  msgid "Use HTTP_HOST"
5992
  msgstr ""
5993
 
5994
+ #: um-config.php:2044
5995
  msgid "Allow Port forwarding in URL"
5996
  msgstr ""
5997
 
5998
+ #: um-config.php:2046
5999
  msgid "Turn on If you want to include port number in URLs"
6000
  msgstr ""
6001
 
6002
+ #: um-config.php:2054
6003
  msgid "Force Strings to UTF-8 Encoding"
6004
  msgstr ""
6005
 
6006
+ #: um-config.php:2056
6007
  msgid "Turn on If you want to force labels and fields to use UTF-8 encoding"
6008
  msgstr ""
6009
 
6010
+ #: um-config.php:2064
6011
  msgid "Enable Time Check Security"
6012
  msgstr ""
6013
 
6014
+ #: um-config.php:2066
6015
  msgid ""
6016
  "Turn this option off if you have a conflict with other plugins causing a "
6017
  "spam bot message to appear unexpectedly."
6018
  msgstr ""
6019
 
6020
+ #: um-config.php:2074
6021
  msgid "Disable JS/CSS Compression"
6022
  msgstr ""
6023
 
6024
+ #: um-config.php:2076
6025
  msgid ""
6026
  "Not recommended. This will load all plugin js and css files separately and "
6027
  "may slow down your website. Use this setting for development or debugging "
6028
  "purposes only."
6029
  msgstr ""
6030
 
6031
+ #: um-config.php:2084
6032
  msgid "Disable Nav Menu Settings"
6033
  msgstr ""
6034
 
6035
+ #: um-config.php:2086
6036
  msgid ""
6037
  "This can disable the settings that appear in nav menus to apply custom "
6038
  "access settings to nav items."
6039
  msgstr ""
6040
 
6041
+ #: um-config.php:2094
6042
  msgid "Never load plugin JS and CSS on homepage"
6043
  msgstr ""
6044
 
6045
+ #: um-config.php:2096
6046
  msgid "This can disable loading plugin js and css files on home page."
6047
  msgstr ""
6048
 
6049
+ #: um-config.php:2105
6050
  msgid "Never load plugin JS and CSS on the following pages"
6051
  msgstr ""
6052
 
6053
+ #: um-config.php:2106
6054
  msgid ""
6055
  "Enter a url or page slug (e.g /about/) to disable loading the plugin's css "
6056
  "and js on that page."
6057
  msgstr ""
6058
 
6059
+ #: um-config.php:2107 um-config.php:2116
6060
  msgid "Add New Page"
6061
  msgstr ""
6062
 
6063
+ #: um-config.php:2114
6064
  msgid "Only load plugin JS and CSS on the following pages"
6065
  msgstr ""
6066
 
6067
+ #: um-config.php:2115
6068
  msgid ""
6069
  "Enter a url or page slug (e.g /about/) to enable loading the plugin's css "
6070
  "and js on that page."
6071
  msgstr ""
6072
 
6073
+ #: um-config.php:2122
6074
  msgid "Enable custom css tab?"
6075
  msgstr ""
6076
 
6077
+ #: um-config.php:2131
6078
  msgid "Allow Tracking"
6079
  msgstr ""
6080
 
6081
+ #: um-config.php:2144
6082
  msgid "Network Permalink Structure"
6083
  msgstr ""
6084
 
6085
+ #: um-config.php:2145
6086
  msgid ""
6087
  "Change this If you are having conflicts with profile links or redirections "
6088
  "in a multisite setup."
6089
  msgstr ""
6090
 
6091
+ #: um-config.php:2148
6092
  msgid "Sub-Domain"
6093
  msgstr ""
6094
 
6095
+ #: um-config.php:2149
6096
  msgid "Sub-Directory"
6097
  msgstr ""
6098
 
6099
+ #: um-config.php:2157
6100
  msgid "Advanced"
6101
  msgstr ""
6102
 
6128
  msgid "This add-on enables you to generate dummies."
6129
  msgstr ""
6130
 
6131
+ #: um-init.php:67
6132
+ msgid "System Info"
6133
+ msgstr ""
6134
+
6135
+ #: um-init.php:68
6136
+ msgid "This add-on enables you to download system information file."
6137
+ msgstr ""
6138
+
6139
  #~ msgid "outdatedBrowser_page_message"
6140
  #~ msgstr ""
6141
  #~ "The site you are visiting can only be viewed using a modern browser. "
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: access control, author, authors, author profile, comments, community, comm
7
  Requires at least: 4.1
8
  Tested up to: 4.6.1
9
 
10
- Stable Tag: 1.3.71
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -149,6 +149,42 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
149
 
150
  == Changelog ==
151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  = 1.3.71: September 12, 2016 =
153
 
154
  * Enhancements:
7
  Requires at least: 4.1
8
  Tested up to: 4.6.1
9
 
10
+ Stable Tag: 1.3.72
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
149
 
150
  == Changelog ==
151
 
152
+ = 1.3.72: October 10, 2016 =
153
+
154
+ * Enhancements:
155
+ * Improves the bulk filters, actions and redirection in `User Screens`
156
+ * Adds new access options to disallow access on homepage and category pages.
157
+ * Adds Textarea to show in profile tagline on Member Directory
158
+ * Adds a filter hook `um_allow_frontend_image_uploads` to allow profile and cover photo uploads on front-end pages.
159
+ * Adds new filter hooks to modify image field data on upload:
160
+ * `um_image_handle_global__option`
161
+ * `um_image_handle_{$field}__option`
162
+ * Adds a new filter hook to modify the redirection of non logged in users who visit the parent user page.
163
+ * `um_locate_user_profile_not_loggedin__redirect`
164
+ * Improves generate dummies tool with `wp_remote_get`
165
+ * Adds a new action hook for a new section in cover area:
166
+ * `um_cover_area_content`
167
+ * Updates the English translation .po and .mo files.
168
+ * Improves the shortcode `um_show_content` to swap the `user_id` with the current profile.
169
+
170
+ * Bugfixes:
171
+ * Fixes a bug where multi-select field options doesn't match the user selected options that contain html entities.
172
+ * Fixes a bug to display correct role slugs in radio and select fields.
173
+ * Fixes a bug where reset password form is conflicting with register and login form on a page.
174
+ * Fixes a bug where Users queue count in the Admin > `All Users / Users` menu doesn't update when a user account is in `pending user review` and gets deleted.
175
+ * Fixes a typo in Password Reset Email option's description
176
+ * Fixes a bug where conditional fields 'equals to' validation on registration process
177
+ * Fixes a bug to disable the query with hiding account on member directory
178
+ * Fixes a bug to retrieve specific number of members
179
+ * Fixes a bug to retrieve all members with `get_members` new parameter `number`
180
+ * Fixes a typo in Welcome Email template.
181
+ * Fixes a bug where login form redirection is set to `wp-admin/admin-ajax.php` instead of the current page when loaded via ajax.
182
+ * Fixes a bug where uninstall link doesn't load.
183
+ * Fixes a bug to redirect users to correct URL after login based from login options.
184
+ * Fixes a bug where non-logged in users are not able to access the profile page when `Global Site Access` is set to `Site accessible to Logged In Users`.
185
+ * Fixes a bug to modify the login redirection url especially when DOING_AJAX is defined.
186
+ * Fixes a bug to retrieve correct community roles per site in a Multisite Network setup.
187
+
188
  = 1.3.71: September 12, 2016 =
189
 
190
  * Enhancements:
um-config.php CHANGED
@@ -411,7 +411,24 @@ $this->sections[] = array(
411
  'add_text' => __('Add New URL','ultimatemember'),
412
  'required' => array( 'accessible', '=', 2 ),
413
  ),
414
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  array(
416
  'id' => 'wpadmin_login',
417
  'type' => 'switch',
@@ -721,7 +738,7 @@ $this->sections[] = array(
721
  '{login_url}' . "\r\n\r\n" .
722
  'Your account e-mail: {email}' . "\r\n" .
723
  'Your account username: {username}' . "\r\n" .
724
- 'Set your account passowrd: {password_reset_link}' . "\r\n\r\n" .
725
  'If you have any problems, please contact us at {admin_email}' . "\r\n\r\n" .
726
  'Thanks,' . "\r\n" .
727
  '{site_name}',
@@ -825,7 +842,7 @@ $this->sections[] = array(
825
  'type' => 'switch',
826
  'title' => __( 'Password Reset Email','ultimatemember' ),
827
  'default' => 1,
828
- 'desc' => __('Whether to send the user an email when he request to reset password (Recommended, please keep on)','ultimatemember'),
829
  ),
830
 
831
  array(
411
  'add_text' => __('Add New URL','ultimatemember'),
412
  'required' => array( 'accessible', '=', 2 ),
413
  ),
414
+ array(
415
+ 'id' => 'home_page_accessible',
416
+ 'type' => 'switch',
417
+ 'title' => __( 'Allow Homepage to be accessible','ultimatemember' ),
418
+ 'default' => 1,
419
+ 'on' => __('Yes','ultimatemember'),
420
+ 'off' => __('No','ultimatemember'),
421
+ 'required' => array( 'accessible', '=', 2 ),
422
+ ),
423
+ array(
424
+ 'id' => 'category_page_accessible',
425
+ 'type' => 'switch',
426
+ 'title' => __( 'Allow Category pages to be accessible','ultimatemember' ),
427
+ 'default' => 1,
428
+ 'on' => __('Yes','ultimatemember'),
429
+ 'off' => __('No','ultimatemember'),
430
+ 'required' => array( 'accessible', '=', 2 ),
431
+ ),
432
  array(
433
  'id' => 'wpadmin_login',
434
  'type' => 'switch',
738
  '{login_url}' . "\r\n\r\n" .
739
  'Your account e-mail: {email}' . "\r\n" .
740
  'Your account username: {username}' . "\r\n" .
741
+ 'Set your account password: {password_reset_link}' . "\r\n\r\n" .
742
  'If you have any problems, please contact us at {admin_email}' . "\r\n\r\n" .
743
  'Thanks,' . "\r\n" .
744
  '{site_name}',
842
  'type' => 'switch',
843
  'title' => __( 'Password Reset Email','ultimatemember' ),
844
  'default' => 1,
845
+ 'desc' => __('Whether to send an email when users changed their password (Recommended, please keep on)','ultimatemember'),
846
  ),
847
 
848
  array(