Ultimate Member – User Profile & Membership Plugin - Version 1.0.30

Version Description

Download this release

Release Info

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

Code changes from version 1.0.29 to 1.0.30

admin/assets/css/um-admin-global.css CHANGED
@@ -2,7 +2,7 @@
2
  - General metabox styling
3
  */
4
 
5
- #um-admin-access-control h3 {
6
  padding: 10px 20px 10px 60px;
7
  color: #fff;
8
  background: #3ba1da url(../img/logo-small.png) no-repeat 12px center;
@@ -12,17 +12,17 @@
12
  -moz-osx-font-smoothing: grayscale !important;
13
  }
14
 
15
- #um-admin-access-control h4 {margin:10px 0 4px 0!important}
16
 
17
- #um-admin-access-control div.handlediv {
18
  color: #fff !important;
19
  -webkit-font-smoothing: antialiased !important;
20
  -moz-osx-font-smoothing: grayscale !important;
21
  }
22
 
23
- #um-admin-access-control p {font-size: 13px}
24
 
25
- #um-admin-access-control input[type=text] {font-size: 13px}
26
 
27
  /*
28
  - Nav Menu
2
  - General metabox styling
3
  */
4
 
5
+ #um-admin-access-settings h3 {
6
  padding: 10px 20px 10px 60px;
7
  color: #fff;
8
  background: #3ba1da url(../img/logo-small.png) no-repeat 12px center;
12
  -moz-osx-font-smoothing: grayscale !important;
13
  }
14
 
15
+ #um-admin-access-settings h4 { margin: 10px 0 4px 0!important}
16
 
17
+ #um-admin-access-settings div.handlediv {
18
  color: #fff !important;
19
  -webkit-font-smoothing: antialiased !important;
20
  -moz-osx-font-smoothing: grayscale !important;
21
  }
22
 
23
+ #um-admin-access-settings p {font-size: 13px}
24
 
25
+ #um-admin-access-settings input[type=text] {font-size: 13px}
26
 
27
  /*
28
  - Nav Menu
admin/core/um-admin-enqueue.php CHANGED
@@ -39,23 +39,6 @@ class UM_Admin_Enqueue {
39
  function admin_head(){
40
  global $current_screen, $post;
41
  $screen_id = $current_screen->id;
42
-
43
- if ( strstr($screen_id, 'um_form') ) $highlighted_id = 3;
44
- if ( strstr($screen_id, 'um_role') ) $highlighted_id = 4;
45
- if ( strstr($screen_id, 'um_directory') ) $highlighted_id = 5;
46
-
47
- if ( isset($highlighted_id) ) { ?>
48
-
49
- <script type="text/javascript">
50
- jQuery(document).ready( function() {
51
- jQuery('#toplevel_page_ultimatemember').addClass('wp-current-submenu wp-has-current-submenu wp-menu-open current');
52
- jQuery('#toplevel_page_ultimatemember a:first').addClass('wp-current-submenu wp-has-current-submenu current');
53
- jQuery('#toplevel_page_ultimatemember').find('li:eq(<?php echo $highlighted_id; ?>)').addClass('current');
54
- });
55
- </script>
56
-
57
- <?php
58
- }
59
 
60
  if ( $this->is_plugin_post_type() ){
61
 
39
  function admin_head(){
40
  global $current_screen, $post;
41
  $screen_id = $current_screen->id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  if ( $this->is_plugin_post_type() ){
44
 
admin/templates/directory/pagination.php CHANGED
@@ -2,52 +2,26 @@
2
 
3
  <div class="">
4
 
5
- <?php
6
-
7
- /*
8
-
9
  <p>
10
- <label class="um-admin-half"><?php _e('Use Infinite Scroll instead of pagination','ultimatemember'); ?></label>
11
- <span class="um-admin-half">
12
-
13
- <?php $this->ui_on_off('_um_infinitescroll', 0, true, 1, 'infinite-settings', 'pagination-settings'); ?>
14
-
15
- </span>
16
- </p><div class="um-admin-clear"></div>
17
-
18
- <p class="infinite-settings um-admin-hide">
19
- <label class="um-admin-half"><?php _e('Number of profiles to show on first load','ultimatemember'); ?> <?php $this->tooltip('Number of member profiles to appear on the first load only'); ?></label>
20
  <span class="um-admin-half">
21
 
22
- <input type="text" name="_um_profiles_on_load" id="_um_profiles_on_load" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 12 ); ?>" class="small" />
23
-
24
- </span>
25
- </p><div class="um-admin-clear"></div>
26
-
27
- <p class="infinite-settings um-admin-hide">
28
- <label class="um-admin-half"><?php _e('Number of profiles to show on load more','ultimatemember'); ?> <?php $this->tooltip('Number of member profiles to appear when user loads more profiles'); ?></label>
29
- <span class="um-admin-half">
30
-
31
- <input type="text" name="_um_profiles_load_more" id="_um_profiles_load_more" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 12 ); ?>" class="small" />
32
 
33
  </span>
34
  </p><div class="um-admin-clear"></div>
35
 
36
- */
37
-
38
- ?>
39
-
40
- <p class="pagination-settings">
41
- <label class="um-admin-half"><?php _e('Number of profiles per page','ultimatemember'); ?> <?php $this->tooltip('Number of member profiles to appear on every page'); ?></label>
42
  <span class="um-admin-half">
43
 
44
- <input type="text" name="_um_profiles_per_page" id="_um_profiles_per_page" value="<?php echo $ultimatemember->query->get_meta_value('_um_profiles_per_page', null, 12); ?>" class="small" />
45
 
46
  </span>
47
  </p><div class="um-admin-clear"></div>
48
 
49
  <p>
50
- <label class="um-admin-half"><?php _e('Maximum number of profiles','ultimatemember'); ?> <?php $this->tooltip('Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to disable this limit'); ?></label>
51
  <span class="um-admin-half">
52
 
53
  <input type="text" name="_um_max_users" id="_um_max_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 'na' ); ?>" class="small" />
2
 
3
  <div class="">
4
 
 
 
 
 
5
  <p>
6
+ <label class="um-admin-half"><?php _e('Number of profiles per page','ultimatemember'); ?> <?php $this->tooltip( __('Number of profiles to appear on page for standard users') ); ?></label>
 
 
 
 
 
 
 
 
 
7
  <span class="um-admin-half">
8
 
9
+ <input type="text" name="_um_profiles_per_page" id="_um_profiles_per_page" value="<?php echo $ultimatemember->query->get_meta_value('_um_profiles_per_page', null, 12); ?>" class="small" />
 
 
 
 
 
 
 
 
 
10
 
11
  </span>
12
  </p><div class="um-admin-clear"></div>
13
 
14
+ <p>
15
+ <label class="um-admin-half"><?php _e('Number of profiles per page (for Mobiles & Tablets)','ultimatemember'); ?> <?php $this->tooltip( __('Number of profiles to appear on page for mobile users') ); ?></label>
 
 
 
 
16
  <span class="um-admin-half">
17
 
18
+ <input type="text" name="_um_profiles_per_page_mobile" id="_um_profiles_per_page_mobile" value="<?php echo $ultimatemember->query->get_meta_value('_um_profiles_per_page_mobile', null, 8); ?>" class="small" />
19
 
20
  </span>
21
  </p><div class="um-admin-clear"></div>
22
 
23
  <p>
24
+ <label class="um-admin-half"><?php _e('Maximum number of profiles','ultimatemember'); ?> <?php $this->tooltip( __('Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to disable this limit','ultimatemember') ); ?></label>
25
  <span class="um-admin-half">
26
 
27
  <input type="text" name="_um_max_users" id="_um_max_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 'na' ); ?>" class="small" />
admin/templates/directory/search.php CHANGED
@@ -73,16 +73,25 @@
73
  </p><div class="um-admin-clear"></div>
74
 
75
  <p class="search-options">
76
- <label class="um-admin-half"><?php _e('Results Text','ultimatemember'); ?> <?php $this->tooltip('Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text'); ?></label>
77
  <span class="um-admin-half">
78
 
79
- <input type="text" name="_um_directory_header" id="_um_directory_header" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_header', null, __('{total_users} Members','ultimatemember') ); ?>" />
80
 
81
  </span>
82
  </p><div class="um-admin-clear"></div>
83
 
84
  <p class="search-options">
85
- <label class="um-admin-half"><?php _e('Custom text If no users were found','ultimatemember'); ?> <?php $this->tooltip('This is the text that is displayed if no users are found during a search'); ?></label>
 
 
 
 
 
 
 
 
 
86
  <span class="um-admin-half">
87
 
88
  <input type="text" name="_um_directory_no_users" id="_um_directory_no_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_no_users', null, __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember') ); ?>" />
73
  </p><div class="um-admin-clear"></div>
74
 
75
  <p class="search-options">
76
+ <label class="um-admin-half"><?php _e('Results Text','ultimatemember'); ?> <?php $this->tooltip( __('Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text','ultimatemember') ); ?></label>
77
  <span class="um-admin-half">
78
 
79
+ <input type="text" name="_um_directory_header" id="_um_directory_header" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_header', null, __('{total_users} Members','ultimatemember') ); ?>" />
80
 
81
  </span>
82
  </p><div class="um-admin-clear"></div>
83
 
84
  <p class="search-options">
85
+ <label class="um-admin-half"><?php _e('Single Result Text','ultimatemember'); ?> <?php $this->tooltip( __('Same as above but in case of 1 user found only','ultimatemember') ); ?></label>
86
+ <span class="um-admin-half">
87
+
88
+ <input type="text" name="_um_directory_header_single" id="_um_directory_header_single" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_header_single', null, __('{total_users} Member','ultimatemember') ); ?>" />
89
+
90
+ </span>
91
+ </p><div class="um-admin-clear"></div>
92
+
93
+ <p class="search-options">
94
+ <label class="um-admin-half"><?php _e('Custom text if no users were found','ultimatemember'); ?> <?php $this->tooltip('This is the text that is displayed if no users are found during a search'); ?></label>
95
  <span class="um-admin-half">
96
 
97
  <input type="text" name="_um_directory_no_users" id="_um_directory_no_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_no_users', null, __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember') ); ?>" />
admin/um-admin-init.php CHANGED
@@ -55,6 +55,8 @@ class UM_Admin_API {
55
  if ( um_get_option('members_page' ) || !get_option('um_options') ){
56
  add_submenu_page( $this->slug, __('Member Directories', $this->slug), __('Member Directories', $this->slug), 'manage_options', 'edit.php?post_type=um_directory', '', '' );
57
  }
 
 
58
 
59
  }
60
 
55
  if ( um_get_option('members_page' ) || !get_option('um_options') ){
56
  add_submenu_page( $this->slug, __('Member Directories', $this->slug), __('Member Directories', $this->slug), 'manage_options', 'edit.php?post_type=um_directory', '', '' );
57
  }
58
+
59
+ do_action('um_extend_admin_menu');
60
 
61
  }
62
 
core/um-actions-account.php CHANGED
@@ -162,7 +162,7 @@
162
 
163
  <?php echo $output; ?>
164
 
165
- <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Update Privacy" class="um-button" /></div><div class="um-clear"></div></div>
166
 
167
  <?php
168
 
@@ -185,7 +185,7 @@
185
 
186
  <?php echo $output; ?>
187
 
188
- <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Update Account" class="um-button" /></div><div class="um-clear"></div></div>
189
 
190
  <?php
191
 
@@ -209,7 +209,7 @@
209
 
210
  <?php echo $output; ?>
211
 
212
- <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Update Password" class="um-button" /></div><div class="um-clear"></div></div>
213
 
214
  <?php
215
 
@@ -279,19 +279,19 @@
279
  extract( $args );
280
 
281
  $tabs[100]['general']['icon'] = 'um-faicon-user';
282
- $tabs[100]['general']['title'] = 'Account';
283
 
284
  $tabs[200]['password']['icon'] = 'um-faicon-asterisk';
285
- $tabs[200]['password']['title'] = 'Change Password';
286
 
287
  $tabs[300]['privacy']['icon'] = 'um-faicon-lock';
288
- $tabs[300]['privacy']['title'] = 'Privacy';
289
 
290
  $tabs[400]['notifications']['icon'] = 'um-icon-ios-bell';
291
- $tabs[400]['notifications']['title'] = 'Notifications';
292
 
293
  $tabs[500]['delete']['icon'] = 'um-faicon-trash-o';
294
- $tabs[500]['delete']['title'] = 'Delete Account';
295
 
296
  $ultimatemember->account->tabs = apply_filters('um_account_page_default_tabs_hook', $tabs );
297
 
162
 
163
  <?php echo $output; ?>
164
 
165
+ <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="<?php _e('Update Privacy','ultimatemember'); ?>" class="um-button" /></div><div class="um-clear"></div></div>
166
 
167
  <?php
168
 
185
 
186
  <?php echo $output; ?>
187
 
188
+ <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="<?php _e('Update Account','ultimatemember'); ?>" class="um-button" /></div><div class="um-clear"></div></div>
189
 
190
  <?php
191
 
209
 
210
  <?php echo $output; ?>
211
 
212
+ <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="<?php _e('Update Password','ultimatemember'); ?>" class="um-button" /></div><div class="um-clear"></div></div>
213
 
214
  <?php
215
 
279
  extract( $args );
280
 
281
  $tabs[100]['general']['icon'] = 'um-faicon-user';
282
+ $tabs[100]['general']['title'] = __('Account','ultimatemember');
283
 
284
  $tabs[200]['password']['icon'] = 'um-faicon-asterisk';
285
+ $tabs[200]['password']['title'] = __('Change Password','ultimatemember');
286
 
287
  $tabs[300]['privacy']['icon'] = 'um-faicon-lock';
288
+ $tabs[300]['privacy']['title'] = __('Privacy','ultimatemember');
289
 
290
  $tabs[400]['notifications']['icon'] = 'um-icon-ios-bell';
291
+ $tabs[400]['notifications']['title'] = __('Notifications','ultimatemember');
292
 
293
  $tabs[500]['delete']['icon'] = 'um-faicon-trash-o';
294
+ $tabs[500]['delete']['title'] = __('Delete Account','ultimatemember');
295
 
296
  $ultimatemember->account->tabs = apply_filters('um_account_page_default_tabs_hook', $tabs );
297
 
core/um-actions-members.php CHANGED
@@ -94,7 +94,7 @@
94
 
95
  <div class="um-members-intro">
96
 
97
- <div class="um-members-total"><?php echo um_members('header'); ?></div>
98
 
99
  </div>
100
 
@@ -227,13 +227,13 @@
227
  $default_size = str_replace( 'px', '', um_get_option('profile_photosize') );
228
  $corner = um_get_option('profile_photocorner');
229
  ?>
230
- <div class="um-member-photo radius-<?php echo $corner; ?>"><a href="<?php echo um_user_profile_url(); ?>"><?php echo get_avatar( um_user('ID'), $default_size ); ?></a></div>
231
  <?php } ?>
232
 
233
  <div class="um-member-card <?php if (!$profile_photo) { echo 'no-photo'; } ?>">
234
 
235
  <?php if ( $show_name ) { ?>
236
- <div class="um-member-name"><a href="<?php echo um_user_profile_url(); ?>"><?php echo um_cap_initials( um_user('display_name') ); ?></a></div>
237
  <?php } ?>
238
 
239
  <?php
94
 
95
  <div class="um-members-intro">
96
 
97
+ <div class="um-members-total"><?php echo ( um_members('total_users') > 1 ) ? um_members('header') : um_members('header_single'); ?></div>
98
 
99
  </div>
100
 
227
  $default_size = str_replace( 'px', '', um_get_option('profile_photosize') );
228
  $corner = um_get_option('profile_photocorner');
229
  ?>
230
+ <div class="um-member-photo radius-<?php echo $corner; ?>"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo um_cap_initials( um_user('display_name') ); ?>"><?php echo get_avatar( um_user('ID'), $default_size ); ?></a></div>
231
  <?php } ?>
232
 
233
  <div class="um-member-card <?php if (!$profile_photo) { echo 'no-photo'; } ?>">
234
 
235
  <?php if ( $show_name ) { ?>
236
+ <div class="um-member-name"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo um_cap_initials( um_user('display_name') ); ?>"><?php echo um_cap_initials( um_user('display_name') ); ?></a></div>
237
  <?php } ?>
238
 
239
  <?php
core/um-actions-profile.php CHANGED
@@ -244,7 +244,7 @@
244
 
245
  <div class="um-profile-photo" data-user_id="<?php echo um_profile_id(); ?>">
246
 
247
- <a href="<?php echo um_user_profile_url(); ?>" class="um-profile-photo-img"><?php echo $overlay . get_avatar( um_user('ID'), $default_size ); ?></a>
248
 
249
  <?php
250
 
@@ -283,7 +283,7 @@
283
 
284
  <div class="um-main-meta">
285
  <?php if ( $args['show_name'] ) { ?>
286
- <div class="um-name"><a href="<?php echo um_user_profile_url(); ?>"><?php echo um_user('display_name'); ?></a></div>
287
  <?php } ?>
288
  <div class="um-clear"></div>
289
  </div>
244
 
245
  <div class="um-profile-photo" data-user_id="<?php echo um_profile_id(); ?>">
246
 
247
+ <a href="<?php echo um_user_profile_url(); ?>" class="um-profile-photo-img" title="<?php echo um_user('display_name'); ?>"><?php echo $overlay . get_avatar( um_user('ID'), $default_size ); ?></a>
248
 
249
  <?php
250
 
283
 
284
  <div class="um-main-meta">
285
  <?php if ( $args['show_name'] ) { ?>
286
+ <div class="um-name"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo um_user('display_name'); ?>"><?php echo um_user('display_name'); ?></a></div>
287
  <?php } ?>
288
  <div class="um-clear"></div>
289
  </div>
core/um-fields.php CHANGED
@@ -1920,10 +1920,20 @@ class UM_Fields {
1920
  // start output here
1921
  $this->get_fields = $this->get_fields();
1922
 
1923
- if ( um_is_myprofile() ) {
1924
- $output .= '<p class="um-profile-note"><i class="um-faicon-frown-o"></i><span>' . sprintf(__('Your profile is looking a little empty. Why not <a href="%s">add</a> some information!','ultimatemember'), add_query_arg('um_action','edit') ) . '</span></p>';
1925
- } else {
1926
- $output .= '<p class="um-profile-note"><i class="um-faicon-frown-o"></i><span>' . __('This user has not added any information to their profile yet.','ultimatemember') . '</span></p>';
 
 
 
 
 
 
 
 
 
 
1927
  }
1928
 
1929
  if ( !empty( $this->get_fields ) ) {
1920
  // start output here
1921
  $this->get_fields = $this->get_fields();
1922
 
1923
+ if ( um_get_option('profile_empty_text') ) {
1924
+
1925
+ $emo = um_get_option('profile_empty_text_emo');
1926
+ if ( $emo ) {
1927
+ $emo = '<i class="um-faicon-frown-o"></i>';
1928
+ } else {
1929
+ $emo = false;
1930
+ }
1931
+
1932
+ if ( um_is_myprofile() ) {
1933
+ $output .= '<p class="um-profile-note">' . $emo .'<span>' . sprintf(__('Your profile is looking a little empty. Why not <a href="%s">add</a> some information!','ultimatemember'), add_query_arg('um_action','edit') ) . '</span></p>';
1934
+ } else {
1935
+ $output .= '<p class="um-profile-note">'. $emo . '<span>' . __('This user has not added any information to their profile yet.','ultimatemember') . '</span></p>';
1936
+ }
1937
  }
1938
 
1939
  if ( !empty( $this->get_fields ) ) {
core/um-filters-fields.php CHANGED
@@ -108,12 +108,12 @@
108
  if ( strpos($value, 'http://') !== 0 ) {
109
  $value = 'http://' . $value;
110
  }
111
- $value = '<a href="'. $value .'" target="'.$data['url_target'].'" ' . $url_rel . '>'.$alt.'</a>';
112
  }
113
 
114
  if ( !is_array( $value ) ) {
115
  if ( is_email( $value ) )
116
- $value = '<a href="mailto:'. $value.'">'.$value.'</a>';
117
  } else {
118
  $value = implode(', ', $value);
119
  }
108
  if ( strpos($value, 'http://') !== 0 ) {
109
  $value = 'http://' . $value;
110
  }
111
+ $value = '<a href="'. $value .'" title="'.$alt.'" target="'.$data['url_target'].'" ' . $url_rel . '>'.$alt.'</a>';
112
  }
113
 
114
  if ( !is_array( $value ) ) {
115
  if ( is_email( $value ) )
116
+ $value = '<a href="mailto:'. $value.'" title="'.$value.'">'.$value.'</a>';
117
  } else {
118
  $value = implode(', ', $value);
119
  }
core/um-filters-members.php CHANGED
@@ -177,7 +177,7 @@
177
  ***/
178
  add_filter('um_prepare_user_results_array', 'um_prepare_user_results_array', 50, 2);
179
  function um_prepare_user_results_array($result){
180
-
181
  if ( empty( $result['users_per_page'] ) ) {
182
  $result['no_users'] = 1;
183
  } else {
177
  ***/
178
  add_filter('um_prepare_user_results_array', 'um_prepare_user_results_array', 50, 2);
179
  function um_prepare_user_results_array($result){
180
+
181
  if ( empty( $result['users_per_page'] ) ) {
182
  $result['no_users'] = 1;
183
  } else {
core/um-members.php CHANGED
@@ -109,18 +109,20 @@ class UM_Members {
109
  *** @Generate a loop of results
110
  ***/
111
  function get_members($args){
 
 
 
112
  extract($args);
113
 
114
  $query_args = array();
115
-
116
  $query_args = apply_filters( 'um_prepare_user_query_args', $query_args, $args );
117
 
118
  $users = new WP_User_Query( $query_args );
119
 
120
- /**
121
- Getting the final array
122
- **/
123
-
124
  $array['users'] = $users->results;
125
 
126
  $array['total_users'] = (isset( $max_users ) && $max_users && $max_users <= $users->total_users ) ? $max_users : $users->total_users;
@@ -130,7 +132,8 @@ class UM_Members {
130
  $array['total_pages'] = ceil( $array['total_users'] / $profiles_per_page );
131
 
132
  $array['header'] = $this->convert_tags( $header, $array );
133
-
 
134
  $array['users_per_page'] = array_slice($array['users'], ( ( $profiles_per_page * $array['page'] ) - $profiles_per_page ), $profiles_per_page );
135
 
136
  for( $i = $array['page']; $i <= $array['page'] + 2; $i++ ) {
109
  *** @Generate a loop of results
110
  ***/
111
  function get_members($args){
112
+
113
+ global $ultimatemember;
114
+
115
  extract($args);
116
 
117
  $query_args = array();
 
118
  $query_args = apply_filters( 'um_prepare_user_query_args', $query_args, $args );
119
 
120
  $users = new WP_User_Query( $query_args );
121
 
122
+ // number of profiles for mobile
123
+ if ( $ultimatemember->mobile->isMobile() && isset( $profiles_per_page_mobile ) )
124
+ $profiles_per_page = $profiles_per_page_mobile;
125
+
126
  $array['users'] = $users->results;
127
 
128
  $array['total_users'] = (isset( $max_users ) && $max_users && $max_users <= $users->total_users ) ? $max_users : $users->total_users;
132
  $array['total_pages'] = ceil( $array['total_users'] / $profiles_per_page );
133
 
134
  $array['header'] = $this->convert_tags( $header, $array );
135
+ $array['header_single'] = $this->convert_tags( $header_single, $array );
136
+
137
  $array['users_per_page'] = array_slice($array['users'], ( ( $profiles_per_page * $array['page'] ) - $profiles_per_page ), $profiles_per_page );
138
 
139
  for( $i = $array['page']; $i <= $array['page'] + 2; $i++ ) {
core/um-setup.php CHANGED
@@ -45,8 +45,10 @@ class UM_Setup {
45
  '_um_cover_photos' => '1',
46
  '_um_show_name' => '1',
47
  '_um_directory_header' => __('{total_users} Members','ultimatemember'),
 
48
  '_um_directory_no_users' => __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember'),
49
- '_um_profiles_per_page' => '12',
 
50
  '_um_core' => 'members',
51
  );
52
 
@@ -88,6 +90,8 @@ class UM_Setup {
88
  '_um_profile_show_bio' => 1,
89
  '_um_profile_bio_maxchars' => 180,
90
  '_um_profile_header_menu' => 'bc',
 
 
91
  '_um_profile_role' => '0',
92
  '_um_profile_template' => 'profile',
93
  '_um_profile_max_width' => '1000px',
45
  '_um_cover_photos' => '1',
46
  '_um_show_name' => '1',
47
  '_um_directory_header' => __('{total_users} Members','ultimatemember'),
48
+ '_um_directory_header_single' => __('{total_users} Member','ultimatemember'),
49
  '_um_directory_no_users' => __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember'),
50
+ '_um_profiles_per_page' => 12,
51
+ '_um_profiles_per_page_mobile' => 6,
52
  '_um_core' => 'members',
53
  );
54
 
90
  '_um_profile_show_bio' => 1,
91
  '_um_profile_bio_maxchars' => 180,
92
  '_um_profile_header_menu' => 'bc',
93
+ '_um_profile_empty_text' => 1,
94
+ '_um_profile_empty_text_emo' => 1,
95
  '_um_profile_role' => '0',
96
  '_um_profile_template' => 'profile',
97
  '_um_profile_max_width' => '1000px',
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
- Version: 1.0.29
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
+ Version: 1.0.30
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
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: 2015-01-25 21:57+0200\n"
6
- "PO-Revision-Date: 2015-01-25 21:57+0200\n"
7
  "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
  "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
  "Language: en_US\n"
@@ -54,7 +54,7 @@ msgid "Redux Framework"
54
  msgstr ""
55
 
56
  #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:217
57
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:221 admin/core/um-admin-metabox.php:272
58
  msgid "Options"
59
  msgstr ""
60
 
@@ -240,8 +240,8 @@ msgstr ""
240
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
241
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
242
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
243
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:742
244
- #: core/um-fields.php:763
245
  msgid "Upload"
246
  msgstr ""
247
 
@@ -579,7 +579,7 @@ msgid ""
579
  msgstr ""
580
 
581
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
582
- #: um-config.php:1473
583
  msgid "Allow tracking"
584
  msgstr ""
585
 
@@ -1540,7 +1540,10 @@ msgstr ""
1540
  msgid "Specify the body font properties."
1541
  msgstr ""
1542
 
1543
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:796
 
 
 
1544
  msgid "Custom CSS"
1545
  msgstr ""
1546
 
@@ -2010,7 +2013,7 @@ msgstr ""
2010
  msgid "Extensions"
2011
  msgstr ""
2012
 
2013
- #: admin/core/um-admin-access.php:70
2014
  msgid "Access Control"
2015
  msgstr ""
2016
 
@@ -2080,8 +2083,8 @@ msgstr ""
2080
  msgid "Type"
2081
  msgstr ""
2082
 
2083
- #: admin/core/um-admin-columns.php:28 admin/core/um-admin-columns.php:45 admin/core/um-admin-metabox.php:219
2084
- #: admin/core/um-admin-metabox.php:259
2085
  msgid "Shortcode"
2086
  msgstr ""
2087
 
@@ -2153,109 +2156,113 @@ msgstr ""
2153
  msgid "Role draft updated."
2154
  msgstr ""
2155
 
2156
- #: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:208
2157
- #: um-config.php:240
2158
  msgid "Yes"
2159
  msgstr ""
2160
 
2161
  #: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
2162
- #: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:209 um-config.php:241
2163
  msgid "No"
2164
  msgstr ""
2165
 
2166
- #: admin/core/um-admin-metabox.php:214
2167
  msgid "General Options"
2168
  msgstr ""
2169
 
2170
- #: admin/core/um-admin-metabox.php:215
2171
  msgid "Profile Card"
2172
  msgstr ""
2173
 
2174
- #: admin/core/um-admin-metabox.php:216
2175
  msgid "Search Options"
2176
  msgstr ""
2177
 
2178
- #: admin/core/um-admin-metabox.php:217
2179
  msgid "Results &amp; Pagination"
2180
  msgstr ""
2181
 
2182
- #: admin/core/um-admin-metabox.php:221
2183
  msgid "Styling: General"
2184
  msgstr ""
2185
 
2186
- #: admin/core/um-admin-metabox.php:223
2187
  msgid "Styling: Profile Card"
2188
  msgstr ""
2189
 
2190
- #: admin/core/um-admin-metabox.php:232
2191
  msgid "Administrative Permissions"
2192
  msgstr ""
2193
 
2194
- #: admin/core/um-admin-metabox.php:234
2195
  msgid "General Permissions"
2196
  msgstr ""
2197
 
2198
- #: admin/core/um-admin-metabox.php:236
2199
  msgid "Profile Access"
2200
  msgstr ""
2201
 
2202
- #: admin/core/um-admin-metabox.php:238
2203
  msgid "Homepage Options"
2204
  msgstr ""
2205
 
2206
- #: admin/core/um-admin-metabox.php:240
2207
  msgid "Registration Options"
2208
  msgstr ""
2209
 
2210
- #: admin/core/um-admin-metabox.php:242
2211
  msgid "Login Options"
2212
  msgstr ""
2213
 
2214
- #: admin/core/um-admin-metabox.php:244
2215
  msgid "Logout Options"
2216
  msgstr ""
2217
 
2218
- #: admin/core/um-admin-metabox.php:246
2219
  msgid "Delete Options"
2220
  msgstr ""
2221
 
2222
- #: admin/core/um-admin-metabox.php:255
2223
  msgid "Select Form Type"
2224
  msgstr ""
2225
 
2226
- #: admin/core/um-admin-metabox.php:257
2227
  msgid "Form Builder"
2228
  msgstr ""
2229
 
2230
- #: admin/core/um-admin-metabox.php:261 admin/core/um-admin-metabox.php:265 admin/core/um-admin-metabox.php:267
2231
  msgid "Customize this form"
2232
  msgstr ""
2233
 
2234
- #: admin/core/um-admin-metabox.php:271
2235
  msgid "User Meta"
2236
  msgstr ""
2237
 
2238
- #: admin/core/um-admin-metabox.php:421
2239
  msgid ""
2240
  "Select where this field should appear. This option should only be changed on the profile form and allows you "
2241
  "to show a field in one mode only (edit or view) or in both modes."
2242
  msgstr ""
2243
 
2244
- #: admin/core/um-admin-metabox.php:455
2245
  msgid "If"
2246
  msgstr ""
2247
 
2248
- #: admin/core/um-admin-metabox.php:524
2249
  msgid "Value"
2250
  msgstr ""
2251
 
2252
- #: admin/core/um-admin-metabox.php:823
 
 
 
 
2253
  msgid ""
2254
- "Turn on to force users to create a strong password (must include 1 number and 1 uppercase character). If "
2255
- "turned on this option is only applied to register forms and not to login forms."
2256
  msgstr ""
2257
 
2258
- #: admin/core/um-admin-metabox.php:833
2259
  msgid ""
2260
  "Turn on to add a confirm password field. If turned on the confirm password field will only show on register "
2261
  "forms and not on login forms."
@@ -2347,7 +2354,7 @@ msgstr ""
2347
  msgid "Take Action"
2348
  msgstr ""
2349
 
2350
- #: admin/core/um-admin-users.php:199 core/um-fields.php:1193
2351
  msgid "Apply"
2352
  msgstr ""
2353
 
@@ -2464,14 +2471,32 @@ msgstr ""
2464
  msgid "Meta key"
2465
  msgstr ""
2466
 
2467
- #: admin/templates/directory/pagination.php:41
2468
  msgid "Number of profiles per page"
2469
  msgstr ""
2470
 
2471
- #: admin/templates/directory/pagination.php:50
 
 
 
 
 
 
 
 
 
 
 
 
2472
  msgid "Maximum number of profiles"
2473
  msgstr ""
2474
 
 
 
 
 
 
 
2475
  #: admin/templates/directory/profile.php:6
2476
  msgid "Enable Profile Photo"
2477
  msgstr ""
@@ -2544,15 +2569,31 @@ msgstr ""
2544
  msgid "Results Text"
2545
  msgstr ""
2546
 
 
 
 
 
2547
  #: admin/templates/directory/search.php:79 core/um-setup.php:47
2548
  msgid "{total_users} Members"
2549
  msgstr ""
2550
 
2551
  #: admin/templates/directory/search.php:85
2552
- msgid "Custom text If no users were found"
 
 
 
 
2553
  msgstr ""
2554
 
2555
  #: admin/templates/directory/search.php:88 core/um-setup.php:48
 
 
 
 
 
 
 
 
2556
  msgid "We are sorry. We cannot find any users who match your search criteria."
2557
  msgstr ""
2558
 
@@ -2564,6 +2605,11 @@ msgstr ""
2564
  msgid "Add Master Row"
2565
  msgstr ""
2566
 
 
 
 
 
 
2567
  #: admin/templates/form/login_customize.php:4 admin/templates/form/profile_customize.php:4
2568
  #: admin/templates/form/register_customize.php:4
2569
  msgid "Use global settings?"
@@ -2574,57 +2620,57 @@ msgstr ""
2574
  msgid "Max. Width (px)"
2575
  msgstr ""
2576
 
2577
- #: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:42
2578
  #: admin/templates/form/register_customize.php:42
2579
  msgid "Alignment"
2580
  msgstr ""
2581
 
2582
- #: admin/templates/form/login_customize.php:40 admin/templates/form/profile_customize.php:52
2583
  #: admin/templates/form/register_customize.php:52
2584
  msgid "Field Icons"
2585
  msgstr ""
2586
 
2587
- #: admin/templates/form/login_customize.php:50 admin/templates/form/profile_customize.php:62
2588
  #: admin/templates/form/register_customize.php:62
2589
  msgid "Primary Button Text"
2590
  msgstr ""
2591
 
2592
- #: admin/templates/form/login_customize.php:54 admin/templates/form/profile_customize.php:66
2593
  #: admin/templates/form/register_customize.php:66
2594
  msgid "Primary Button Color"
2595
  msgstr ""
2596
 
2597
- #: admin/templates/form/login_customize.php:58 admin/templates/form/profile_customize.php:70
2598
  #: admin/templates/form/register_customize.php:70
2599
  msgid "Primary Button Hover Color"
2600
  msgstr ""
2601
 
2602
- #: admin/templates/form/login_customize.php:62 admin/templates/form/profile_customize.php:74
2603
  #: admin/templates/form/register_customize.php:74
2604
  msgid "Primary Button Text Color"
2605
  msgstr ""
2606
 
2607
- #: admin/templates/form/login_customize.php:67 admin/templates/form/profile_customize.php:79
2608
  #: admin/templates/form/register_customize.php:79
2609
  msgid "Show Secondary Button"
2610
  msgstr ""
2611
 
2612
- #: admin/templates/form/login_customize.php:75 admin/templates/form/profile_customize.php:87
2613
  #: admin/templates/form/register_customize.php:87
2614
  msgid "Secondary Button Text"
2615
  msgstr ""
2616
 
2617
- #: admin/templates/form/login_customize.php:79 admin/templates/form/profile_customize.php:91
2618
  #: admin/templates/form/register_customize.php:91
2619
  msgid "Secondary Button Color"
2620
  msgstr ""
2621
 
2622
- #: admin/templates/form/login_customize.php:83 admin/templates/form/profile_customize.php:95
2623
  #: admin/templates/form/register_customize.php:95
2624
  msgid "Secondary Button Hover Color"
2625
  msgstr ""
2626
 
2627
- #: admin/templates/form/login_customize.php:87 admin/templates/form/profile_customize.php:99
2628
  #: admin/templates/form/register_customize.php:99
2629
  msgid "Secondary Button Text Color"
2630
  msgstr ""
@@ -2647,7 +2693,7 @@ msgstr ""
2647
  msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
2648
  msgstr ""
2649
 
2650
- #: admin/templates/form/mode.php:9 um-config.php:1263
2651
  msgid "Registration Form"
2652
  msgstr ""
2653
 
@@ -2655,7 +2701,7 @@ msgstr ""
2655
  msgid "Profile Form"
2656
  msgstr ""
2657
 
2658
- #: admin/templates/form/mode.php:13 um-config.php:1354
2659
  msgid "Login Form"
2660
  msgstr ""
2661
 
@@ -2663,67 +2709,71 @@ msgstr ""
2663
  msgid "Make this profile role-specific"
2664
  msgstr ""
2665
 
2666
- #: admin/templates/form/profile_customize.php:103
2667
- msgid "Base Background Color"
2668
  msgstr ""
2669
 
2670
  #: admin/templates/form/profile_customize.php:107
 
 
 
 
2671
  msgid "Enable Cover Photos"
2672
  msgstr ""
2673
 
2674
- #: admin/templates/form/profile_customize.php:115
2675
  msgid "Cover photo ratio"
2676
  msgstr ""
2677
 
2678
- #: admin/templates/form/profile_customize.php:125 um-config.php:1131
2679
  msgid "Profile Photo Size"
2680
  msgstr ""
2681
 
2682
- #: admin/templates/form/profile_customize.php:129 um-config.php:1140
2683
  msgid "Profile Photo Style"
2684
  msgstr ""
2685
 
2686
- #: admin/templates/form/profile_customize.php:132 um-config.php:1144
2687
  msgid "Circle"
2688
  msgstr ""
2689
 
2690
- #: admin/templates/form/profile_customize.php:133 um-config.php:1145
2691
  msgid "Rounded Corners"
2692
  msgstr ""
2693
 
2694
- #: admin/templates/form/profile_customize.php:134 um-config.php:1146
2695
  msgid "Square"
2696
  msgstr ""
2697
 
2698
- #: admin/templates/form/profile_customize.php:139
2699
  msgid "Header Background Color"
2700
  msgstr ""
2701
 
2702
- #: admin/templates/form/profile_customize.php:143
2703
  msgid "Header Meta Text Color"
2704
  msgstr ""
2705
 
2706
- #: admin/templates/form/profile_customize.php:147
2707
  msgid "Header Link Color"
2708
  msgstr ""
2709
 
2710
- #: admin/templates/form/profile_customize.php:151
2711
  msgid "Header Link Hover"
2712
  msgstr ""
2713
 
2714
- #: admin/templates/form/profile_customize.php:155
2715
  msgid "Header Icon Link Color"
2716
  msgstr ""
2717
 
2718
- #: admin/templates/form/profile_customize.php:159
2719
  msgid "Header Icon Link Hover"
2720
  msgstr ""
2721
 
2722
- #: admin/templates/form/profile_customize.php:164
2723
  msgid "Show display name in profile header?"
2724
  msgstr ""
2725
 
2726
- #: admin/templates/form/profile_customize.php:173
2727
  msgid "Show user description in profile header?"
2728
  msgstr ""
2729
 
@@ -2739,7 +2789,7 @@ msgstr ""
2739
  msgid "Assign role to form"
2740
  msgstr ""
2741
 
2742
- #: admin/templates/form/register_customize.php:42 um-config.php:1040 um-config.php:1289 um-config.php:1380
2743
  msgid "The shortcode is centered by default unless you specify otherwise here"
2744
  msgstr ""
2745
 
@@ -2787,7 +2837,7 @@ msgstr ""
2787
  #: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
2788
  #: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:167
2789
  #: core/um-actions-profile.php:259 core/um-actions-profile.php:269 core/um-actions-profile.php:394
2790
- #: core/um-fields.php:1194 core/um-fields.php:1279
2791
  msgid "Cancel"
2792
  msgstr ""
2793
 
@@ -3081,12 +3131,12 @@ msgstr ""
3081
  msgid "Member Directories"
3082
  msgstr ""
3083
 
3084
- #: admin/um-admin-init.php:80
3085
  msgid "Please create a team.php template in admin templates."
3086
  msgstr ""
3087
 
3088
  #: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
3089
- #: core/um-builtin.php:818 core/um-builtin.php:821
3090
  msgid "Delete Account"
3091
  msgstr ""
3092
 
@@ -3098,6 +3148,38 @@ msgstr ""
3098
  msgid "Your password must contain less than 30 characters"
3099
  msgstr ""
3100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3101
  #: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
3102
  msgid "You can not edit this user"
3103
  msgstr ""
@@ -3146,10 +3228,6 @@ msgstr ""
3146
  msgid "You can not use HTML tags here"
3147
  msgstr ""
3148
 
3149
- #: core/um-actions-form.php:176
3150
- msgid "Your password must contain at least one capital letter and one number"
3151
- msgstr ""
3152
-
3153
  #: core/um-actions-form.php:182
3154
  msgid "Please confirm your password"
3155
  msgstr ""
@@ -3280,27 +3358,27 @@ msgstr ""
3280
  msgid "An error has been encountered"
3281
  msgstr ""
3282
 
3283
- #: core/um-actions-misc.php:85 core/um-filters-login.php:12
3284
  msgid "This email address has been blocked."
3285
  msgstr ""
3286
 
3287
- #: core/um-actions-misc.php:89 core/um-filters-login.php:15
3288
  msgid "Your IP address has been blocked."
3289
  msgstr ""
3290
 
3291
- #: core/um-actions-misc.php:93 core/um-filters-login.php:57
3292
  msgid "Your account has been disabled."
3293
  msgstr ""
3294
 
3295
- #: core/um-actions-misc.php:97 core/um-filters-login.php:60
3296
  msgid "Your account has not been approved yet."
3297
  msgstr ""
3298
 
3299
- #: core/um-actions-misc.php:101 core/um-filters-login.php:63
3300
  msgid "Your account is awaiting e-mail verifications."
3301
  msgstr ""
3302
 
3303
- #: core/um-actions-misc.php:105 core/um-filters-login.php:66
3304
  msgid "Your membership request has been rejected."
3305
  msgstr ""
3306
 
@@ -3351,7 +3429,7 @@ msgstr ""
3351
  msgid "Upload photo"
3352
  msgstr ""
3353
 
3354
- #: core/um-actions-profile.php:267 core/um-fields.php:1160 core/um-fields.php:1193
3355
  msgid "Change photo"
3356
  msgstr ""
3357
 
@@ -3520,7 +3598,7 @@ msgstr ""
3520
  msgid "Everyone"
3521
  msgstr ""
3522
 
3523
- #: core/um-builtin.php:796 core/um-user.php:405
3524
  msgid "Only me"
3525
  msgstr ""
3526
 
@@ -3554,37 +3632,37 @@ msgstr ""
3554
  msgid "Less than 1 year old"
3555
  msgstr ""
3556
 
3557
- #: core/um-fields.php:915
3558
  msgid "Current Password"
3559
  msgstr ""
3560
 
3561
- #: core/um-fields.php:976
3562
  #, php-format
3563
  msgid "Confirm New %s"
3564
  msgstr ""
3565
 
3566
- #: core/um-fields.php:1151 core/um-fields.php:1223
3567
  msgid "Upload Photo"
3568
  msgstr ""
3569
 
3570
- #: core/um-fields.php:1193 core/um-fields.php:1278
3571
  msgid "Processing..."
3572
  msgstr ""
3573
 
3574
- #: core/um-fields.php:1239 core/um-fields.php:1278
3575
  msgid "Change file"
3576
  msgstr ""
3577
 
3578
- #: core/um-fields.php:1278
3579
  msgid "Save"
3580
  msgstr ""
3581
 
3582
- #: core/um-fields.php:1912
3583
  #, php-format
3584
  msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
3585
  msgstr ""
3586
 
3587
- #: core/um-fields.php:1914
3588
  msgid "This user has not added any information to their profile yet."
3589
  msgstr ""
3590
 
@@ -3797,643 +3875,651 @@ msgstr ""
3797
  msgid "Members Directory"
3798
  msgstr ""
3799
 
3800
- #: um-config.php:92
3801
- msgid "Account"
 
 
 
 
 
 
3802
  msgstr ""
3803
 
3804
- #: um-config.php:98
3805
  msgid "Password Account Tab"
3806
  msgstr ""
3807
 
3808
- #: um-config.php:108
3809
  msgid "Privacy Account Tab"
3810
  msgstr ""
3811
 
3812
- #: um-config.php:118
3813
  msgid "Notifications Account Tab"
3814
  msgstr ""
3815
 
3816
- #: um-config.php:128
3817
  msgid "Delete Account Tab"
3818
  msgstr ""
3819
 
3820
- #: um-config.php:138
3821
  msgid "Account Deletion Custom Text"
3822
  msgstr ""
3823
 
3824
- #: um-config.php:140
3825
  msgid "This is custom text that will be displayed to users before they delete their accounts from your site"
3826
  msgstr ""
3827
 
3828
- #: um-config.php:159
3829
  msgid "Access"
3830
  msgstr ""
3831
 
3832
- #: um-config.php:166
3833
  msgid "Global Site Access"
3834
  msgstr ""
3835
 
3836
- #: um-config.php:178
3837
  msgid "Custom Redirect URL"
3838
  msgstr ""
3839
 
3840
- #: um-config.php:187
3841
  msgid "Exclude the following URLs"
3842
  msgstr ""
3843
 
3844
- #: um-config.php:188
3845
  msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
3846
  msgstr ""
3847
 
3848
- #: um-config.php:189
3849
  msgid "Add New URL"
3850
  msgstr ""
3851
 
3852
- #: um-config.php:196
3853
  msgid "Panic Key"
3854
  msgstr ""
3855
 
3856
- #: um-config.php:205
3857
  msgid "Allow Backend Login Screen for Guests"
3858
  msgstr ""
3859
 
3860
- #: um-config.php:216
3861
  msgid "Redirect to alternative login page"
3862
  msgstr ""
3863
 
3864
- #: um-config.php:217
3865
  msgid "If you disable backend access to login screen, specify here where a user will be redirected"
3866
  msgstr ""
3867
 
3868
- #: um-config.php:229 um-config.php:261
3869
  msgid "Custom URL"
3870
  msgstr ""
3871
 
3872
- #: um-config.php:237
3873
  msgid "Allow Backend Register Screen for Guests"
3874
  msgstr ""
3875
 
3876
- #: um-config.php:248
3877
  msgid "Redirect to alternative register page"
3878
  msgstr ""
3879
 
3880
- #: um-config.php:249
3881
  msgid "If you disable backend access to register screen, specify here where a user will be redirected"
3882
  msgstr ""
3883
 
3884
- #: um-config.php:269
3885
- msgid "Blocked IP Addresses"
 
 
 
 
 
 
3886
  msgstr ""
3887
 
3888
- #: um-config.php:270
3889
- msgid "Enter one IP per line, you can also use wildcards to block a specific range e.g. 41.83.*.*"
3890
  msgstr ""
3891
 
3892
- #: um-config.php:271
3893
  msgid ""
3894
  "This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or "
3895
  "target specific range with a wildcard"
3896
  msgstr ""
3897
 
3898
- #: um-config.php:277
3899
  msgid "Blocked Email Addresses"
3900
  msgstr ""
3901
 
3902
- #: um-config.php:278
3903
- msgid ""
3904
- "Enter one email address per line and you can also specify all emails from specific service to be blocked by "
3905
- "using wildcard: *@hotmail.com"
3906
- msgstr ""
3907
-
3908
- #: um-config.php:279
3909
  msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site."
3910
  msgstr ""
3911
 
3912
- #: um-config.php:285
3913
  msgid "Blacklist Words"
3914
  msgstr ""
3915
 
3916
- #: um-config.php:286
3917
- msgid ""
3918
- "The words specified here can not be used as username during registration, please enter one word per line to "
3919
- "prevent the usage of this word in a username / during registration"
3920
- msgstr ""
3921
-
3922
- #: um-config.php:287
3923
  msgid ""
3924
  "This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their "
3925
  "username"
3926
  msgstr ""
3927
 
3928
- #: um-config.php:302
3929
  msgid "Emails"
3930
  msgstr ""
3931
 
3932
- #: um-config.php:308
3933
  msgid "Mail appears from"
3934
  msgstr ""
3935
 
3936
- #: um-config.php:309
3937
  msgid "e.g. Site Name"
3938
  msgstr ""
3939
 
3940
- #: um-config.php:316
3941
  msgid "Mail appears from address"
3942
  msgstr ""
3943
 
3944
- #: um-config.php:317 um-config.php:632
3945
  msgid "e.g. admin@companyname.com"
3946
  msgstr ""
3947
 
3948
- #: um-config.php:324 um-config.php:332 um-config.php:342
3949
  msgid "Account Welcome Email"
3950
  msgstr ""
3951
 
3952
- #: um-config.php:333 um-config.php:369 um-config.php:401 um-config.php:433 um-config.php:469 um-config.php:500
3953
- #: um-config.php:531 um-config.php:562 um-config.php:594 um-config.php:647 um-config.php:678 um-config.php:710
3954
  msgid "Subject Line"
3955
  msgstr ""
3956
 
3957
- #: um-config.php:343 um-config.php:379 um-config.php:411 um-config.php:443 um-config.php:479 um-config.php:510
3958
- #: um-config.php:541 um-config.php:572 um-config.php:604 um-config.php:657 um-config.php:688 um-config.php:720
3959
  msgid "Message Body"
3960
  msgstr ""
3961
 
3962
- #: um-config.php:360 um-config.php:368 um-config.php:378
3963
  msgid "Account Activation Email"
3964
  msgstr ""
3965
 
3966
- #: um-config.php:392 um-config.php:400 um-config.php:410
3967
  msgid "Pending Review Email"
3968
  msgstr ""
3969
 
3970
- #: um-config.php:424 um-config.php:432 um-config.php:442
3971
  msgid "Account Approved Email"
3972
  msgstr ""
3973
 
3974
- #: um-config.php:460 um-config.php:468 um-config.php:478
3975
  msgid "Account Rejected Email"
3976
  msgstr ""
3977
 
3978
- #: um-config.php:491 um-config.php:499 um-config.php:509
3979
  msgid "Account Deactivated Email"
3980
  msgstr ""
3981
 
3982
- #: um-config.php:522 um-config.php:530 um-config.php:540
3983
  msgid "Account Deleted Email"
3984
  msgstr ""
3985
 
3986
- #: um-config.php:553 um-config.php:561 um-config.php:571
3987
  msgid "Password Reset Email"
3988
  msgstr ""
3989
 
3990
- #: um-config.php:585 um-config.php:593 um-config.php:603
3991
  msgid "Password Changed Email"
3992
  msgstr ""
3993
 
3994
- #: um-config.php:624
3995
- msgid "Notifications"
3996
- msgstr ""
3997
-
3998
- #: um-config.php:630
3999
  msgid "Admin E-mail Address"
4000
  msgstr ""
4001
 
4002
- #: um-config.php:638 um-config.php:646 um-config.php:656
4003
  msgid "New User Notification"
4004
  msgstr ""
4005
 
4006
- #: um-config.php:669 um-config.php:677 um-config.php:687
4007
  msgid "Account Needs Review Notification"
4008
  msgstr ""
4009
 
4010
- #: um-config.php:701 um-config.php:709 um-config.php:719
4011
  msgid "Account Deletion Notification"
4012
  msgstr ""
4013
 
4014
- #: um-config.php:737
4015
  msgid "Uploads"
4016
  msgstr ""
4017
 
4018
- #: um-config.php:743
4019
  msgid "Profile Photo Thumbnail Sizes"
4020
  msgstr ""
4021
 
4022
- #: um-config.php:744
4023
  msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
4024
  msgstr ""
4025
 
4026
- #: um-config.php:747 um-config.php:757
4027
  msgid "Add New Size"
4028
  msgstr ""
4029
 
4030
- #: um-config.php:753
4031
  msgid "Cover Photo Thumbnail Sizes"
4032
  msgstr ""
4033
 
4034
- #: um-config.php:754
4035
  msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
4036
  msgstr ""
4037
 
4038
- #: um-config.php:763
4039
  msgid "Image Quality"
4040
  msgstr ""
4041
 
4042
- #: um-config.php:764
4043
  msgid ""
4044
  "Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
4045
  "100 (best quality, biggest file). The default range is 60."
4046
  msgstr ""
4047
 
4048
- #: um-config.php:772
4049
  msgid "Image Upload Maximum Width"
4050
  msgstr ""
4051
 
4052
- #: um-config.php:773
4053
  msgid "Any image upload above this width will be resized to this limit automatically."
4054
  msgstr ""
4055
 
4056
- #: um-config.php:781
4057
  msgid "Cover Photo Minimum Width"
4058
  msgstr ""
4059
 
4060
- #: um-config.php:782
4061
  msgid "This will be the minimum width for cover photo uploads"
4062
  msgstr ""
4063
 
4064
- #: um-config.php:798
4065
  msgid "SEO"
4066
  msgstr ""
4067
 
4068
- #: um-config.php:804
4069
  msgid "User Profile Title"
4070
  msgstr ""
4071
 
4072
- #: um-config.php:813
4073
  msgid "User Profile Dynamic Meta Description"
4074
  msgstr ""
4075
 
4076
- #: um-config.php:814
4077
  msgid "You can use dynamic tags to display dynamic user profile data in this field."
4078
  msgstr ""
4079
 
4080
- #: um-config.php:815
4081
  msgid "This will be used in the meta description that is available for search-engines."
4082
  msgstr ""
4083
 
4084
- #: um-config.php:829
4085
  msgid "Appearance"
4086
  msgstr ""
4087
 
4088
- #: um-config.php:839
4089
  msgid "General"
4090
  msgstr ""
4091
 
4092
- #: um-config.php:846
4093
  msgid "Members Default Template"
4094
  msgstr ""
4095
 
4096
- #: um-config.php:847
4097
  msgid "This will be the default template to output member directory"
4098
  msgstr ""
4099
 
4100
- #: um-config.php:857
4101
  msgid "General Active Color"
4102
  msgstr ""
4103
 
4104
- #: um-config.php:859
4105
  msgid ""
4106
  "Active color is used commonly with many plugin elements as highlighted color or active selection for "
4107
  "example. This color demonstrates the primary active color of the plugin"
4108
  msgstr ""
4109
 
4110
- #: um-config.php:867
4111
  msgid "General Secondary Color"
4112
  msgstr ""
4113
 
4114
- #: um-config.php:869
4115
  msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
4116
  msgstr ""
4117
 
4118
- #: um-config.php:877
4119
  msgid "Default Primary Button Color"
4120
  msgstr ""
4121
 
4122
- #: um-config.php:886
4123
  msgid "Default Primary Button Hover Color"
4124
  msgstr ""
4125
 
4126
- #: um-config.php:895
4127
  msgid "Default Primary Button Text Color"
4128
  msgstr ""
4129
 
4130
- #: um-config.php:904
4131
  msgid "Default Secondary Button Color"
4132
  msgstr ""
4133
 
4134
- #: um-config.php:913
4135
  msgid "Default Secondary Button Hover Color"
4136
  msgstr ""
4137
 
4138
- #: um-config.php:922
4139
  msgid "Default Secondary Button Text Color"
4140
  msgstr ""
4141
 
4142
- #: um-config.php:931
4143
  msgid "Default Help Icon Color"
4144
  msgstr ""
4145
 
4146
- #: um-config.php:943
4147
  msgid "Form Inputs"
4148
  msgstr ""
4149
 
4150
- #: um-config.php:950
4151
  msgid "Field Label Color"
4152
  msgstr ""
4153
 
4154
- #: um-config.php:958
4155
  msgid "Field Border Style"
4156
  msgstr ""
4157
 
4158
- #: um-config.php:967
4159
  msgid "Field Background Color"
4160
  msgstr ""
4161
 
4162
- #: um-config.php:976
4163
  msgid "Field Text Color"
4164
  msgstr ""
4165
 
4166
- #: um-config.php:985
4167
  msgid "Field Placeholder Color"
4168
  msgstr ""
4169
 
4170
- #: um-config.php:994
4171
  msgid "Field Font Icon Color"
4172
  msgstr ""
4173
 
4174
- #: um-config.php:1006
4175
  msgid "Profile"
4176
  msgstr ""
4177
 
4178
- #: um-config.php:1013
4179
  msgid "Profile Default Template"
4180
  msgstr ""
4181
 
4182
- #: um-config.php:1014
4183
  msgid "This will be the default template to output profile"
4184
  msgstr ""
4185
 
4186
- #: um-config.php:1022
4187
  msgid "Profile Maximum Width"
4188
  msgstr ""
4189
 
4190
- #: um-config.php:1030
4191
  msgid "Profile Area Maximum Width"
4192
  msgstr ""
4193
 
4194
- #: um-config.php:1039
4195
  msgid "Profile Shortcode Alignment"
4196
  msgstr ""
4197
 
4198
- #: um-config.php:1043 um-config.php:1292 um-config.php:1383
4199
  msgid "Centered"
4200
  msgstr ""
4201
 
4202
- #: um-config.php:1044 um-config.php:1293 um-config.php:1384
4203
  msgid "Left aligned"
4204
  msgstr ""
4205
 
4206
- #: um-config.php:1045 um-config.php:1294 um-config.php:1385
4207
  msgid "Right aligned"
4208
  msgstr ""
4209
 
4210
- #: um-config.php:1053
4211
  msgid "Profile Field Icons"
4212
  msgstr ""
4213
 
4214
- #: um-config.php:1054
4215
  msgid "This is applicable for edit mode only"
4216
  msgstr ""
4217
 
4218
- #: um-config.php:1057 um-config.php:1306 um-config.php:1397
4219
  msgid "Show inside text field"
4220
  msgstr ""
4221
 
4222
- #: um-config.php:1058 um-config.php:1307 um-config.php:1398
4223
  msgid "Show with label"
4224
  msgstr ""
4225
 
4226
- #: um-config.php:1059 um-config.php:1308 um-config.php:1399
4227
  msgid "Turn off"
4228
  msgstr ""
4229
 
4230
- #: um-config.php:1066
4231
  msgid "Profile Primary Button Text"
4232
  msgstr ""
4233
 
4234
- #: um-config.php:1074
4235
  msgid "Profile Secondary Button"
4236
  msgstr ""
4237
 
4238
- #: um-config.php:1082
4239
  msgid "Profile Secondary Button Text"
4240
  msgstr ""
4241
 
4242
- #: um-config.php:1092
4243
  msgid "Profile Associated Role"
4244
  msgstr ""
4245
 
4246
- #: um-config.php:1093
4247
  msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
4248
  msgstr ""
4249
 
4250
- #: um-config.php:1102
4251
  msgid "Profile Base Background Color"
4252
  msgstr ""
4253
 
4254
- #: um-config.php:1111
4255
  msgid "Profile Header Background Color"
4256
  msgstr ""
4257
 
4258
- #: um-config.php:1121
4259
  msgid "Default Profile Photo"
4260
  msgstr ""
4261
 
4262
- #: um-config.php:1122
4263
  msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
4264
  msgstr ""
4265
 
4266
- #: um-config.php:1141
4267
  msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
4268
  msgstr ""
4269
 
4270
- #: um-config.php:1153
4271
  msgid "Profile Cover Photos"
4272
  msgstr ""
4273
 
4274
- #: um-config.php:1162
4275
  msgid "Profile Cover Ratio"
4276
  msgstr ""
4277
 
4278
- #: um-config.php:1163
4279
  msgid "Choose global ratio for cover photos of profiles"
4280
  msgstr ""
4281
 
4282
- #: um-config.php:1177
4283
  msgid "Profile Header Meta Text Color"
4284
  msgstr ""
4285
 
4286
- #: um-config.php:1186
4287
  msgid "Profile Header Link Color"
4288
  msgstr ""
4289
 
4290
- #: um-config.php:1195
4291
  msgid "Profile Header Link Hover"
4292
  msgstr ""
4293
 
4294
- #: um-config.php:1204
4295
  msgid "Profile Header Icon Link Color"
4296
  msgstr ""
4297
 
4298
- #: um-config.php:1213
4299
  msgid "Profile Header Icon Link Hover"
4300
  msgstr ""
4301
 
4302
- #: um-config.php:1221
4303
  msgid "Show display name in profile header"
4304
  msgstr ""
4305
 
4306
- #: um-config.php:1229
4307
  msgid "Show user description in header"
4308
  msgstr ""
4309
 
4310
- #: um-config.php:1237
4311
  msgid "User description maximum chars"
4312
  msgstr ""
4313
 
4314
- #: um-config.php:1246
4315
  msgid "Profile Header Menu Position"
4316
  msgstr ""
4317
 
4318
- #: um-config.php:1248
4319
  msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
4320
  msgstr ""
4321
 
4322
- #: um-config.php:1270
 
 
 
 
 
 
 
 
4323
  msgid "Registration Default Template"
4324
  msgstr ""
4325
 
4326
- #: um-config.php:1271
4327
  msgid "This will be the default template to output registration"
4328
  msgstr ""
4329
 
4330
- #: um-config.php:1279
4331
  msgid "Registration Maximum Width"
4332
  msgstr ""
4333
 
4334
- #: um-config.php:1288
4335
  msgid "Registration Shortcode Alignment"
4336
  msgstr ""
4337
 
4338
- #: um-config.php:1302
4339
  msgid "Registration Field Icons"
4340
  msgstr ""
4341
 
4342
- #: um-config.php:1303
4343
  msgid "This controls the display of field icons in the registration form"
4344
  msgstr ""
4345
 
4346
- #: um-config.php:1315
4347
  msgid "Registration Primary Button Text"
4348
  msgstr ""
4349
 
4350
- #: um-config.php:1323
4351
  msgid "Registration Secondary Button"
4352
  msgstr ""
4353
 
4354
- #: um-config.php:1331
4355
  msgid "Registration Secondary Button Text"
4356
  msgstr ""
4357
 
4358
- #: um-config.php:1341
4359
  msgid "Registration Default Role"
4360
  msgstr ""
4361
 
4362
- #: um-config.php:1342
4363
  msgid "This will be the default role assigned to users registering thru registration form"
4364
  msgstr ""
4365
 
4366
- #: um-config.php:1361
4367
  msgid "Login Default Template"
4368
  msgstr ""
4369
 
4370
- #: um-config.php:1362
4371
  msgid "This will be the default template to output login"
4372
  msgstr ""
4373
 
4374
- #: um-config.php:1370
4375
  msgid "Login Maximum Width"
4376
  msgstr ""
4377
 
4378
- #: um-config.php:1379
4379
  msgid "Login Shortcode Alignment"
4380
  msgstr ""
4381
 
4382
- #: um-config.php:1393
4383
  msgid "Login Field Icons"
4384
  msgstr ""
4385
 
4386
- #: um-config.php:1394
4387
  msgid "This controls the display of field icons in the login form"
4388
  msgstr ""
4389
 
4390
- #: um-config.php:1406
4391
  msgid "Login Primary Button Text"
4392
  msgstr ""
4393
 
4394
- #: um-config.php:1414
4395
  msgid "Login Secondary Button"
4396
  msgstr ""
4397
 
4398
- #: um-config.php:1422
4399
  msgid "Login Secondary Button Text"
4400
  msgstr ""
4401
 
4402
- #: um-config.php:1431
4403
  msgid "Login Forgot Password Link"
4404
  msgstr ""
4405
 
4406
- #: um-config.php:1447
 
 
 
 
4407
  msgid "Advanced"
4408
  msgstr ""
4409
 
4410
- #: um-config.php:1453
4411
  msgid "Disable JS/CSS Compression"
4412
  msgstr ""
4413
 
4414
- #: um-config.php:1455
4415
  msgid ""
4416
  "Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
4417
  "this setting for development or debugging purposes only."
4418
  msgstr ""
4419
 
4420
- #: um-config.php:1462
4421
  msgid "Never load plugin JS and CSS on the following pages"
4422
  msgstr ""
4423
 
4424
- #: um-config.php:1463
4425
  msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
4426
  msgstr ""
4427
 
4428
- #: um-config.php:1464
4429
  msgid "Add New Page"
4430
  msgstr ""
4431
 
4432
- #: um-config.php:1470
4433
  msgid "Allow Tracking"
4434
  msgstr ""
4435
 
4436
- #: um-config.php:1474
4437
  msgid "Do not allow"
4438
  msgstr ""
4439
 
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-29 15:23+0200\n"
6
+ "PO-Revision-Date: 2015-01-29 15:23+0200\n"
7
  "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
  "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
  "Language: en_US\n"
54
  msgstr ""
55
 
56
  #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:217
57
+ #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:221 admin/core/um-admin-metabox.php:292
58
  msgid "Options"
59
  msgstr ""
60
 
240
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
241
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
242
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
243
+ #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:746
244
+ #: core/um-fields.php:767
245
  msgid "Upload"
246
  msgstr ""
247
 
579
  msgstr ""
580
 
581
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
582
+ #: um-config.php:1520
583
  msgid "Allow tracking"
584
  msgstr ""
585
 
1540
  msgid "Specify the body font properties."
1541
  msgstr ""
1542
 
1543
+ #: admin/core/lib/ReduxFramework/sample/sample-config.php:796 admin/core/um-admin-metabox.php:281
1544
+ #: admin/core/um-admin-metabox.php:287 admin/core/um-admin-metabox.php:293
1545
+ #: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
1546
+ #: admin/templates/form/register_css.php:4 um-config.php:1472 um-config.php:1478
1547
  msgid "Custom CSS"
1548
  msgstr ""
1549
 
2013
  msgid "Extensions"
2014
  msgstr ""
2015
 
2016
+ #: admin/core/um-admin-access.php:95
2017
  msgid "Access Control"
2018
  msgstr ""
2019
 
2083
  msgid "Type"
2084
  msgstr ""
2085
 
2086
+ #: admin/core/um-admin-columns.php:28 admin/core/um-admin-columns.php:45 admin/core/um-admin-metabox.php:238
2087
+ #: admin/core/um-admin-metabox.php:278
2088
  msgid "Shortcode"
2089
  msgstr ""
2090
 
2156
  msgid "Role draft updated."
2157
  msgstr ""
2158
 
2159
+ #: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:216
2160
+ #: um-config.php:248
2161
  msgid "Yes"
2162
  msgstr ""
2163
 
2164
  #: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
2165
+ #: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:217 um-config.php:249
2166
  msgid "No"
2167
  msgstr ""
2168
 
2169
+ #: admin/core/um-admin-metabox.php:233
2170
  msgid "General Options"
2171
  msgstr ""
2172
 
2173
+ #: admin/core/um-admin-metabox.php:234
2174
  msgid "Profile Card"
2175
  msgstr ""
2176
 
2177
+ #: admin/core/um-admin-metabox.php:235
2178
  msgid "Search Options"
2179
  msgstr ""
2180
 
2181
+ #: admin/core/um-admin-metabox.php:236
2182
  msgid "Results &amp; Pagination"
2183
  msgstr ""
2184
 
2185
+ #: admin/core/um-admin-metabox.php:240
2186
  msgid "Styling: General"
2187
  msgstr ""
2188
 
2189
+ #: admin/core/um-admin-metabox.php:242
2190
  msgid "Styling: Profile Card"
2191
  msgstr ""
2192
 
2193
+ #: admin/core/um-admin-metabox.php:251
2194
  msgid "Administrative Permissions"
2195
  msgstr ""
2196
 
2197
+ #: admin/core/um-admin-metabox.php:253
2198
  msgid "General Permissions"
2199
  msgstr ""
2200
 
2201
+ #: admin/core/um-admin-metabox.php:255
2202
  msgid "Profile Access"
2203
  msgstr ""
2204
 
2205
+ #: admin/core/um-admin-metabox.php:257
2206
  msgid "Homepage Options"
2207
  msgstr ""
2208
 
2209
+ #: admin/core/um-admin-metabox.php:259
2210
  msgid "Registration Options"
2211
  msgstr ""
2212
 
2213
+ #: admin/core/um-admin-metabox.php:261
2214
  msgid "Login Options"
2215
  msgstr ""
2216
 
2217
+ #: admin/core/um-admin-metabox.php:263
2218
  msgid "Logout Options"
2219
  msgstr ""
2220
 
2221
+ #: admin/core/um-admin-metabox.php:265
2222
  msgid "Delete Options"
2223
  msgstr ""
2224
 
2225
+ #: admin/core/um-admin-metabox.php:276
2226
  msgid "Select Form Type"
2227
  msgstr ""
2228
 
2229
+ #: admin/core/um-admin-metabox.php:277
2230
  msgid "Form Builder"
2231
  msgstr ""
2232
 
2233
+ #: admin/core/um-admin-metabox.php:280 admin/core/um-admin-metabox.php:285 admin/core/um-admin-metabox.php:291
2234
  msgid "Customize this form"
2235
  msgstr ""
2236
 
2237
+ #: admin/core/um-admin-metabox.php:286
2238
  msgid "User Meta"
2239
  msgstr ""
2240
 
2241
+ #: admin/core/um-admin-metabox.php:444
2242
  msgid ""
2243
  "Select where this field should appear. This option should only be changed on the profile form and allows you "
2244
  "to show a field in one mode only (edit or view) or in both modes."
2245
  msgstr ""
2246
 
2247
+ #: admin/core/um-admin-metabox.php:478
2248
  msgid "If"
2249
  msgstr ""
2250
 
2251
+ #: admin/core/um-admin-metabox.php:547
2252
  msgid "Value"
2253
  msgstr ""
2254
 
2255
+ #: admin/core/um-admin-metabox.php:665
2256
+ msgid "Optional text to include with the divider"
2257
+ msgstr ""
2258
+
2259
+ #: admin/core/um-admin-metabox.php:856
2260
  msgid ""
2261
+ "Turn on to force users to create a strong password (A combination of one lowercase letter, one uppercase "
2262
+ "letter, and one number). If turned on this option is only applied to register forms and not to login forms."
2263
  msgstr ""
2264
 
2265
+ #: admin/core/um-admin-metabox.php:866
2266
  msgid ""
2267
  "Turn on to add a confirm password field. If turned on the confirm password field will only show on register "
2268
  "forms and not on login forms."
2354
  msgid "Take Action"
2355
  msgstr ""
2356
 
2357
+ #: admin/core/um-admin-users.php:199 core/um-fields.php:1201
2358
  msgid "Apply"
2359
  msgstr ""
2360
 
2471
  msgid "Meta key"
2472
  msgstr ""
2473
 
2474
+ #: admin/templates/directory/pagination.php:6
2475
  msgid "Number of profiles per page"
2476
  msgstr ""
2477
 
2478
+ #: admin/templates/directory/pagination.php:6
2479
+ msgid "Number of profiles to appear on page for standard users"
2480
+ msgstr ""
2481
+
2482
+ #: admin/templates/directory/pagination.php:15
2483
+ msgid "Number of profiles per page (for Mobiles & Tablets)"
2484
+ msgstr ""
2485
+
2486
+ #: admin/templates/directory/pagination.php:15
2487
+ msgid "Number of profiles to appear on page for mobile users"
2488
+ msgstr ""
2489
+
2490
+ #: admin/templates/directory/pagination.php:24
2491
  msgid "Maximum number of profiles"
2492
  msgstr ""
2493
 
2494
+ #: admin/templates/directory/pagination.php:24
2495
+ msgid ""
2496
+ "Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to "
2497
+ "disable this limit"
2498
+ msgstr ""
2499
+
2500
  #: admin/templates/directory/profile.php:6
2501
  msgid "Enable Profile Photo"
2502
  msgstr ""
2569
  msgid "Results Text"
2570
  msgstr ""
2571
 
2572
+ #: admin/templates/directory/search.php:76
2573
+ msgid "Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text"
2574
+ msgstr ""
2575
+
2576
  #: admin/templates/directory/search.php:79 core/um-setup.php:47
2577
  msgid "{total_users} Members"
2578
  msgstr ""
2579
 
2580
  #: admin/templates/directory/search.php:85
2581
+ msgid "Single Result Text"
2582
+ msgstr ""
2583
+
2584
+ #: admin/templates/directory/search.php:85
2585
+ msgid "Same as above but in case of 1 user found only"
2586
  msgstr ""
2587
 
2588
  #: admin/templates/directory/search.php:88 core/um-setup.php:48
2589
+ msgid "{total_users} Member"
2590
+ msgstr ""
2591
+
2592
+ #: admin/templates/directory/search.php:94
2593
+ msgid "Custom text if no users were found"
2594
+ msgstr ""
2595
+
2596
+ #: admin/templates/directory/search.php:97 core/um-setup.php:49
2597
  msgid "We are sorry. We cannot find any users who match your search criteria."
2598
  msgstr ""
2599
 
2605
  msgid "Add Master Row"
2606
  msgstr ""
2607
 
2608
+ #: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
2609
+ #: admin/templates/form/register_css.php:4
2610
+ msgid "Enter custom css that will be applied to this form only"
2611
+ msgstr ""
2612
+
2613
  #: admin/templates/form/login_customize.php:4 admin/templates/form/profile_customize.php:4
2614
  #: admin/templates/form/register_customize.php:4
2615
  msgid "Use global settings?"
2620
  msgid "Max. Width (px)"
2621
  msgstr ""
2622
 
2623
+ #: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:46
2624
  #: admin/templates/form/register_customize.php:42
2625
  msgid "Alignment"
2626
  msgstr ""
2627
 
2628
+ #: admin/templates/form/login_customize.php:40 admin/templates/form/profile_customize.php:56
2629
  #: admin/templates/form/register_customize.php:52
2630
  msgid "Field Icons"
2631
  msgstr ""
2632
 
2633
+ #: admin/templates/form/login_customize.php:50 admin/templates/form/profile_customize.php:66
2634
  #: admin/templates/form/register_customize.php:62
2635
  msgid "Primary Button Text"
2636
  msgstr ""
2637
 
2638
+ #: admin/templates/form/login_customize.php:54 admin/templates/form/profile_customize.php:70
2639
  #: admin/templates/form/register_customize.php:66
2640
  msgid "Primary Button Color"
2641
  msgstr ""
2642
 
2643
+ #: admin/templates/form/login_customize.php:58 admin/templates/form/profile_customize.php:74
2644
  #: admin/templates/form/register_customize.php:70
2645
  msgid "Primary Button Hover Color"
2646
  msgstr ""
2647
 
2648
+ #: admin/templates/form/login_customize.php:62 admin/templates/form/profile_customize.php:78
2649
  #: admin/templates/form/register_customize.php:74
2650
  msgid "Primary Button Text Color"
2651
  msgstr ""
2652
 
2653
+ #: admin/templates/form/login_customize.php:67 admin/templates/form/profile_customize.php:83
2654
  #: admin/templates/form/register_customize.php:79
2655
  msgid "Show Secondary Button"
2656
  msgstr ""
2657
 
2658
+ #: admin/templates/form/login_customize.php:75 admin/templates/form/profile_customize.php:91
2659
  #: admin/templates/form/register_customize.php:87
2660
  msgid "Secondary Button Text"
2661
  msgstr ""
2662
 
2663
+ #: admin/templates/form/login_customize.php:79 admin/templates/form/profile_customize.php:95
2664
  #: admin/templates/form/register_customize.php:91
2665
  msgid "Secondary Button Color"
2666
  msgstr ""
2667
 
2668
+ #: admin/templates/form/login_customize.php:83 admin/templates/form/profile_customize.php:99
2669
  #: admin/templates/form/register_customize.php:95
2670
  msgid "Secondary Button Hover Color"
2671
  msgstr ""
2672
 
2673
+ #: admin/templates/form/login_customize.php:87 admin/templates/form/profile_customize.php:103
2674
  #: admin/templates/form/register_customize.php:99
2675
  msgid "Secondary Button Text Color"
2676
  msgstr ""
2693
  msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
2694
  msgstr ""
2695
 
2696
+ #: admin/templates/form/mode.php:9 um-config.php:1292
2697
  msgid "Registration Form"
2698
  msgstr ""
2699
 
2701
  msgid "Profile Form"
2702
  msgstr ""
2703
 
2704
+ #: admin/templates/form/mode.php:13 um-config.php:1383
2705
  msgid "Login Form"
2706
  msgstr ""
2707
 
2709
  msgid "Make this profile role-specific"
2710
  msgstr ""
2711
 
2712
+ #: admin/templates/form/profile_customize.php:42
2713
+ msgid "Profile Area Max. Width (px)"
2714
  msgstr ""
2715
 
2716
  #: admin/templates/form/profile_customize.php:107
2717
+ msgid "Base Background Color"
2718
+ msgstr ""
2719
+
2720
+ #: admin/templates/form/profile_customize.php:111
2721
  msgid "Enable Cover Photos"
2722
  msgstr ""
2723
 
2724
+ #: admin/templates/form/profile_customize.php:119
2725
  msgid "Cover photo ratio"
2726
  msgstr ""
2727
 
2728
+ #: admin/templates/form/profile_customize.php:129 um-config.php:1143
2729
  msgid "Profile Photo Size"
2730
  msgstr ""
2731
 
2732
+ #: admin/templates/form/profile_customize.php:133 um-config.php:1152
2733
  msgid "Profile Photo Style"
2734
  msgstr ""
2735
 
2736
+ #: admin/templates/form/profile_customize.php:136 um-config.php:1156
2737
  msgid "Circle"
2738
  msgstr ""
2739
 
2740
+ #: admin/templates/form/profile_customize.php:137 um-config.php:1157
2741
  msgid "Rounded Corners"
2742
  msgstr ""
2743
 
2744
+ #: admin/templates/form/profile_customize.php:138 um-config.php:1158
2745
  msgid "Square"
2746
  msgstr ""
2747
 
2748
+ #: admin/templates/form/profile_customize.php:143
2749
  msgid "Header Background Color"
2750
  msgstr ""
2751
 
2752
+ #: admin/templates/form/profile_customize.php:147
2753
  msgid "Header Meta Text Color"
2754
  msgstr ""
2755
 
2756
+ #: admin/templates/form/profile_customize.php:151
2757
  msgid "Header Link Color"
2758
  msgstr ""
2759
 
2760
+ #: admin/templates/form/profile_customize.php:155
2761
  msgid "Header Link Hover"
2762
  msgstr ""
2763
 
2764
+ #: admin/templates/form/profile_customize.php:159
2765
  msgid "Header Icon Link Color"
2766
  msgstr ""
2767
 
2768
+ #: admin/templates/form/profile_customize.php:163
2769
  msgid "Header Icon Link Hover"
2770
  msgstr ""
2771
 
2772
+ #: admin/templates/form/profile_customize.php:168
2773
  msgid "Show display name in profile header?"
2774
  msgstr ""
2775
 
2776
+ #: admin/templates/form/profile_customize.php:177
2777
  msgid "Show user description in profile header?"
2778
  msgstr ""
2779
 
2789
  msgid "Assign role to form"
2790
  msgstr ""
2791
 
2792
+ #: admin/templates/form/register_customize.php:42 um-config.php:1052 um-config.php:1318 um-config.php:1409
2793
  msgid "The shortcode is centered by default unless you specify otherwise here"
2794
  msgstr ""
2795
 
2837
  #: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
2838
  #: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:167
2839
  #: core/um-actions-profile.php:259 core/um-actions-profile.php:269 core/um-actions-profile.php:394
2840
+ #: core/um-fields.php:1202 core/um-fields.php:1287
2841
  msgid "Cancel"
2842
  msgstr ""
2843
 
3131
  msgid "Member Directories"
3132
  msgstr ""
3133
 
3134
+ #: admin/um-admin-init.php:82
3135
  msgid "Please create a team.php template in admin templates."
3136
  msgstr ""
3137
 
3138
  #: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
3139
+ #: core/um-actions-account.php:294 core/um-builtin.php:818 core/um-builtin.php:821
3140
  msgid "Delete Account"
3141
  msgstr ""
3142
 
3148
  msgid "Your password must contain less than 30 characters"
3149
  msgstr ""
3150
 
3151
+ #: core/um-actions-account.php:90 core/um-actions-form.php:176 core/um-actions-password.php:129
3152
+ msgid "Your password must contain at least one lowercase letter, one capital letter and one number"
3153
+ msgstr ""
3154
+
3155
+ #: core/um-actions-account.php:165
3156
+ msgid "Update Privacy"
3157
+ msgstr ""
3158
+
3159
+ #: core/um-actions-account.php:188
3160
+ msgid "Update Account"
3161
+ msgstr ""
3162
+
3163
+ #: core/um-actions-account.php:212
3164
+ msgid "Update Password"
3165
+ msgstr ""
3166
+
3167
+ #: core/um-actions-account.php:282 um-config.php:100
3168
+ msgid "Account"
3169
+ msgstr ""
3170
+
3171
+ #: core/um-actions-account.php:285
3172
+ msgid "Change Password"
3173
+ msgstr ""
3174
+
3175
+ #: core/um-actions-account.php:288
3176
+ msgid "Privacy"
3177
+ msgstr ""
3178
+
3179
+ #: core/um-actions-account.php:291 um-config.php:636
3180
+ msgid "Notifications"
3181
+ msgstr ""
3182
+
3183
  #: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
3184
  msgid "You can not edit this user"
3185
  msgstr ""
3228
  msgid "You can not use HTML tags here"
3229
  msgstr ""
3230
 
 
 
 
 
3231
  #: core/um-actions-form.php:182
3232
  msgid "Please confirm your password"
3233
  msgstr ""
3358
  msgid "An error has been encountered"
3359
  msgstr ""
3360
 
3361
+ #: core/um-actions-misc.php:85 core/um-filters-login.php:33
3362
  msgid "This email address has been blocked."
3363
  msgstr ""
3364
 
3365
+ #: core/um-actions-misc.php:89 core/um-filters-login.php:36
3366
  msgid "Your IP address has been blocked."
3367
  msgstr ""
3368
 
3369
+ #: core/um-actions-misc.php:93 core/um-filters-login.php:78
3370
  msgid "Your account has been disabled."
3371
  msgstr ""
3372
 
3373
+ #: core/um-actions-misc.php:97 core/um-filters-login.php:81
3374
  msgid "Your account has not been approved yet."
3375
  msgstr ""
3376
 
3377
+ #: core/um-actions-misc.php:101 core/um-filters-login.php:84
3378
  msgid "Your account is awaiting e-mail verifications."
3379
  msgstr ""
3380
 
3381
+ #: core/um-actions-misc.php:105 core/um-filters-login.php:87
3382
  msgid "Your membership request has been rejected."
3383
  msgstr ""
3384
 
3429
  msgid "Upload photo"
3430
  msgstr ""
3431
 
3432
+ #: core/um-actions-profile.php:267 core/um-fields.php:1168 core/um-fields.php:1201
3433
  msgid "Change photo"
3434
  msgstr ""
3435
 
3598
  msgid "Everyone"
3599
  msgstr ""
3600
 
3601
+ #: core/um-builtin.php:796 core/um-user.php:407
3602
  msgid "Only me"
3603
  msgstr ""
3604
 
3632
  msgid "Less than 1 year old"
3633
  msgstr ""
3634
 
3635
+ #: core/um-fields.php:919
3636
  msgid "Current Password"
3637
  msgstr ""
3638
 
3639
+ #: core/um-fields.php:980
3640
  #, php-format
3641
  msgid "Confirm New %s"
3642
  msgstr ""
3643
 
3644
+ #: core/um-fields.php:1159 core/um-fields.php:1231
3645
  msgid "Upload Photo"
3646
  msgstr ""
3647
 
3648
+ #: core/um-fields.php:1201 core/um-fields.php:1286
3649
  msgid "Processing..."
3650
  msgstr ""
3651
 
3652
+ #: core/um-fields.php:1247 core/um-fields.php:1286
3653
  msgid "Change file"
3654
  msgstr ""
3655
 
3656
+ #: core/um-fields.php:1286
3657
  msgid "Save"
3658
  msgstr ""
3659
 
3660
+ #: core/um-fields.php:1933
3661
  #, php-format
3662
  msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
3663
  msgstr ""
3664
 
3665
+ #: core/um-fields.php:1935
3666
  msgid "This user has not added any information to their profile yet."
3667
  msgstr ""
3668
 
3875
  msgid "Members Directory"
3876
  msgstr ""
3877
 
3878
+ #: um-config.php:84
3879
+ msgid "Use Gravatars?"
3880
+ msgstr ""
3881
+
3882
+ #: um-config.php:86
3883
+ msgid ""
3884
+ "Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a "
3885
+ "custom profile photo / avatar)"
3886
  msgstr ""
3887
 
3888
+ #: um-config.php:106
3889
  msgid "Password Account Tab"
3890
  msgstr ""
3891
 
3892
+ #: um-config.php:116
3893
  msgid "Privacy Account Tab"
3894
  msgstr ""
3895
 
3896
+ #: um-config.php:126
3897
  msgid "Notifications Account Tab"
3898
  msgstr ""
3899
 
3900
+ #: um-config.php:136
3901
  msgid "Delete Account Tab"
3902
  msgstr ""
3903
 
3904
+ #: um-config.php:146
3905
  msgid "Account Deletion Custom Text"
3906
  msgstr ""
3907
 
3908
+ #: um-config.php:148
3909
  msgid "This is custom text that will be displayed to users before they delete their accounts from your site"
3910
  msgstr ""
3911
 
3912
+ #: um-config.php:167
3913
  msgid "Access"
3914
  msgstr ""
3915
 
3916
+ #: um-config.php:174
3917
  msgid "Global Site Access"
3918
  msgstr ""
3919
 
3920
+ #: um-config.php:186
3921
  msgid "Custom Redirect URL"
3922
  msgstr ""
3923
 
3924
+ #: um-config.php:195
3925
  msgid "Exclude the following URLs"
3926
  msgstr ""
3927
 
3928
+ #: um-config.php:196
3929
  msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
3930
  msgstr ""
3931
 
3932
+ #: um-config.php:197
3933
  msgid "Add New URL"
3934
  msgstr ""
3935
 
3936
+ #: um-config.php:204
3937
  msgid "Panic Key"
3938
  msgstr ""
3939
 
3940
+ #: um-config.php:213
3941
  msgid "Allow Backend Login Screen for Guests"
3942
  msgstr ""
3943
 
3944
+ #: um-config.php:224
3945
  msgid "Redirect to alternative login page"
3946
  msgstr ""
3947
 
3948
+ #: um-config.php:225
3949
  msgid "If you disable backend access to login screen, specify here where a user will be redirected"
3950
  msgstr ""
3951
 
3952
+ #: um-config.php:237 um-config.php:269
3953
  msgid "Custom URL"
3954
  msgstr ""
3955
 
3956
+ #: um-config.php:245
3957
  msgid "Allow Backend Register Screen for Guests"
3958
  msgstr ""
3959
 
3960
+ #: um-config.php:256
3961
  msgid "Redirect to alternative register page"
3962
  msgstr ""
3963
 
3964
+ #: um-config.php:257
3965
  msgid "If you disable backend access to register screen, specify here where a user will be redirected"
3966
  msgstr ""
3967
 
3968
+ #: um-config.php:277
3969
+ msgid "Whitelisted Backend IPs"
3970
+ msgstr ""
3971
+
3972
+ #: um-config.php:278
3973
+ msgid ""
3974
+ "Always allow the specified IP addresses to access the backend login screen and WP-admin to avoid being "
3975
+ "locked from site backend."
3976
  msgstr ""
3977
 
3978
+ #: um-config.php:284
3979
+ msgid "Blocked IP Addresses"
3980
  msgstr ""
3981
 
3982
+ #: um-config.php:285
3983
  msgid ""
3984
  "This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or "
3985
  "target specific range with a wildcard"
3986
  msgstr ""
3987
 
3988
+ #: um-config.php:291
3989
  msgid "Blocked Email Addresses"
3990
  msgstr ""
3991
 
3992
+ #: um-config.php:292
 
 
 
 
 
 
3993
  msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site."
3994
  msgstr ""
3995
 
3996
+ #: um-config.php:298
3997
  msgid "Blacklist Words"
3998
  msgstr ""
3999
 
4000
+ #: um-config.php:299
 
 
 
 
 
 
4001
  msgid ""
4002
  "This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their "
4003
  "username"
4004
  msgstr ""
4005
 
4006
+ #: um-config.php:314
4007
  msgid "Emails"
4008
  msgstr ""
4009
 
4010
+ #: um-config.php:320
4011
  msgid "Mail appears from"
4012
  msgstr ""
4013
 
4014
+ #: um-config.php:321
4015
  msgid "e.g. Site Name"
4016
  msgstr ""
4017
 
4018
+ #: um-config.php:328
4019
  msgid "Mail appears from address"
4020
  msgstr ""
4021
 
4022
+ #: um-config.php:329 um-config.php:644
4023
  msgid "e.g. admin@companyname.com"
4024
  msgstr ""
4025
 
4026
+ #: um-config.php:336 um-config.php:344 um-config.php:354
4027
  msgid "Account Welcome Email"
4028
  msgstr ""
4029
 
4030
+ #: um-config.php:345 um-config.php:381 um-config.php:413 um-config.php:445 um-config.php:481 um-config.php:512
4031
+ #: um-config.php:543 um-config.php:574 um-config.php:606 um-config.php:659 um-config.php:690 um-config.php:722
4032
  msgid "Subject Line"
4033
  msgstr ""
4034
 
4035
+ #: um-config.php:355 um-config.php:391 um-config.php:423 um-config.php:455 um-config.php:491 um-config.php:522
4036
+ #: um-config.php:553 um-config.php:584 um-config.php:616 um-config.php:669 um-config.php:700 um-config.php:732
4037
  msgid "Message Body"
4038
  msgstr ""
4039
 
4040
+ #: um-config.php:372 um-config.php:380 um-config.php:390
4041
  msgid "Account Activation Email"
4042
  msgstr ""
4043
 
4044
+ #: um-config.php:404 um-config.php:412 um-config.php:422
4045
  msgid "Pending Review Email"
4046
  msgstr ""
4047
 
4048
+ #: um-config.php:436 um-config.php:444 um-config.php:454
4049
  msgid "Account Approved Email"
4050
  msgstr ""
4051
 
4052
+ #: um-config.php:472 um-config.php:480 um-config.php:490
4053
  msgid "Account Rejected Email"
4054
  msgstr ""
4055
 
4056
+ #: um-config.php:503 um-config.php:511 um-config.php:521
4057
  msgid "Account Deactivated Email"
4058
  msgstr ""
4059
 
4060
+ #: um-config.php:534 um-config.php:542 um-config.php:552
4061
  msgid "Account Deleted Email"
4062
  msgstr ""
4063
 
4064
+ #: um-config.php:565 um-config.php:573 um-config.php:583
4065
  msgid "Password Reset Email"
4066
  msgstr ""
4067
 
4068
+ #: um-config.php:597 um-config.php:605 um-config.php:615
4069
  msgid "Password Changed Email"
4070
  msgstr ""
4071
 
4072
+ #: um-config.php:642
 
 
 
 
4073
  msgid "Admin E-mail Address"
4074
  msgstr ""
4075
 
4076
+ #: um-config.php:650 um-config.php:658 um-config.php:668
4077
  msgid "New User Notification"
4078
  msgstr ""
4079
 
4080
+ #: um-config.php:681 um-config.php:689 um-config.php:699
4081
  msgid "Account Needs Review Notification"
4082
  msgstr ""
4083
 
4084
+ #: um-config.php:713 um-config.php:721 um-config.php:731
4085
  msgid "Account Deletion Notification"
4086
  msgstr ""
4087
 
4088
+ #: um-config.php:749
4089
  msgid "Uploads"
4090
  msgstr ""
4091
 
4092
+ #: um-config.php:755
4093
  msgid "Profile Photo Thumbnail Sizes"
4094
  msgstr ""
4095
 
4096
+ #: um-config.php:756
4097
  msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
4098
  msgstr ""
4099
 
4100
+ #: um-config.php:759 um-config.php:769
4101
  msgid "Add New Size"
4102
  msgstr ""
4103
 
4104
+ #: um-config.php:765
4105
  msgid "Cover Photo Thumbnail Sizes"
4106
  msgstr ""
4107
 
4108
+ #: um-config.php:766
4109
  msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
4110
  msgstr ""
4111
 
4112
+ #: um-config.php:775
4113
  msgid "Image Quality"
4114
  msgstr ""
4115
 
4116
+ #: um-config.php:776
4117
  msgid ""
4118
  "Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
4119
  "100 (best quality, biggest file). The default range is 60."
4120
  msgstr ""
4121
 
4122
+ #: um-config.php:784
4123
  msgid "Image Upload Maximum Width"
4124
  msgstr ""
4125
 
4126
+ #: um-config.php:785
4127
  msgid "Any image upload above this width will be resized to this limit automatically."
4128
  msgstr ""
4129
 
4130
+ #: um-config.php:793
4131
  msgid "Cover Photo Minimum Width"
4132
  msgstr ""
4133
 
4134
+ #: um-config.php:794
4135
  msgid "This will be the minimum width for cover photo uploads"
4136
  msgstr ""
4137
 
4138
+ #: um-config.php:810
4139
  msgid "SEO"
4140
  msgstr ""
4141
 
4142
+ #: um-config.php:816
4143
  msgid "User Profile Title"
4144
  msgstr ""
4145
 
4146
+ #: um-config.php:825
4147
  msgid "User Profile Dynamic Meta Description"
4148
  msgstr ""
4149
 
4150
+ #: um-config.php:826
4151
  msgid "You can use dynamic tags to display dynamic user profile data in this field."
4152
  msgstr ""
4153
 
4154
+ #: um-config.php:827
4155
  msgid "This will be used in the meta description that is available for search-engines."
4156
  msgstr ""
4157
 
4158
+ #: um-config.php:841
4159
  msgid "Appearance"
4160
  msgstr ""
4161
 
4162
+ #: um-config.php:851
4163
  msgid "General"
4164
  msgstr ""
4165
 
4166
+ #: um-config.php:858
4167
  msgid "Members Default Template"
4168
  msgstr ""
4169
 
4170
+ #: um-config.php:859
4171
  msgid "This will be the default template to output member directory"
4172
  msgstr ""
4173
 
4174
+ #: um-config.php:869
4175
  msgid "General Active Color"
4176
  msgstr ""
4177
 
4178
+ #: um-config.php:871
4179
  msgid ""
4180
  "Active color is used commonly with many plugin elements as highlighted color or active selection for "
4181
  "example. This color demonstrates the primary active color of the plugin"
4182
  msgstr ""
4183
 
4184
+ #: um-config.php:879
4185
  msgid "General Secondary Color"
4186
  msgstr ""
4187
 
4188
+ #: um-config.php:881
4189
  msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
4190
  msgstr ""
4191
 
4192
+ #: um-config.php:889
4193
  msgid "Default Primary Button Color"
4194
  msgstr ""
4195
 
4196
+ #: um-config.php:898
4197
  msgid "Default Primary Button Hover Color"
4198
  msgstr ""
4199
 
4200
+ #: um-config.php:907
4201
  msgid "Default Primary Button Text Color"
4202
  msgstr ""
4203
 
4204
+ #: um-config.php:916
4205
  msgid "Default Secondary Button Color"
4206
  msgstr ""
4207
 
4208
+ #: um-config.php:925
4209
  msgid "Default Secondary Button Hover Color"
4210
  msgstr ""
4211
 
4212
+ #: um-config.php:934
4213
  msgid "Default Secondary Button Text Color"
4214
  msgstr ""
4215
 
4216
+ #: um-config.php:943
4217
  msgid "Default Help Icon Color"
4218
  msgstr ""
4219
 
4220
+ #: um-config.php:955
4221
  msgid "Form Inputs"
4222
  msgstr ""
4223
 
4224
+ #: um-config.php:962
4225
  msgid "Field Label Color"
4226
  msgstr ""
4227
 
4228
+ #: um-config.php:970
4229
  msgid "Field Border Style"
4230
  msgstr ""
4231
 
4232
+ #: um-config.php:979
4233
  msgid "Field Background Color"
4234
  msgstr ""
4235
 
4236
+ #: um-config.php:988
4237
  msgid "Field Text Color"
4238
  msgstr ""
4239
 
4240
+ #: um-config.php:997
4241
  msgid "Field Placeholder Color"
4242
  msgstr ""
4243
 
4244
+ #: um-config.php:1006
4245
  msgid "Field Font Icon Color"
4246
  msgstr ""
4247
 
4248
+ #: um-config.php:1018
4249
  msgid "Profile"
4250
  msgstr ""
4251
 
4252
+ #: um-config.php:1025
4253
  msgid "Profile Default Template"
4254
  msgstr ""
4255
 
4256
+ #: um-config.php:1026
4257
  msgid "This will be the default template to output profile"
4258
  msgstr ""
4259
 
4260
+ #: um-config.php:1034
4261
  msgid "Profile Maximum Width"
4262
  msgstr ""
4263
 
4264
+ #: um-config.php:1042
4265
  msgid "Profile Area Maximum Width"
4266
  msgstr ""
4267
 
4268
+ #: um-config.php:1051
4269
  msgid "Profile Shortcode Alignment"
4270
  msgstr ""
4271
 
4272
+ #: um-config.php:1055 um-config.php:1321 um-config.php:1412
4273
  msgid "Centered"
4274
  msgstr ""
4275
 
4276
+ #: um-config.php:1056 um-config.php:1322 um-config.php:1413
4277
  msgid "Left aligned"
4278
  msgstr ""
4279
 
4280
+ #: um-config.php:1057 um-config.php:1323 um-config.php:1414
4281
  msgid "Right aligned"
4282
  msgstr ""
4283
 
4284
+ #: um-config.php:1065
4285
  msgid "Profile Field Icons"
4286
  msgstr ""
4287
 
4288
+ #: um-config.php:1066
4289
  msgid "This is applicable for edit mode only"
4290
  msgstr ""
4291
 
4292
+ #: um-config.php:1069 um-config.php:1335 um-config.php:1426
4293
  msgid "Show inside text field"
4294
  msgstr ""
4295
 
4296
+ #: um-config.php:1070 um-config.php:1336 um-config.php:1427
4297
  msgid "Show with label"
4298
  msgstr ""
4299
 
4300
+ #: um-config.php:1071 um-config.php:1337 um-config.php:1428
4301
  msgid "Turn off"
4302
  msgstr ""
4303
 
4304
+ #: um-config.php:1078
4305
  msgid "Profile Primary Button Text"
4306
  msgstr ""
4307
 
4308
+ #: um-config.php:1086
4309
  msgid "Profile Secondary Button"
4310
  msgstr ""
4311
 
4312
+ #: um-config.php:1094
4313
  msgid "Profile Secondary Button Text"
4314
  msgstr ""
4315
 
4316
+ #: um-config.php:1104
4317
  msgid "Profile Associated Role"
4318
  msgstr ""
4319
 
4320
+ #: um-config.php:1105
4321
  msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
4322
  msgstr ""
4323
 
4324
+ #: um-config.php:1114
4325
  msgid "Profile Base Background Color"
4326
  msgstr ""
4327
 
4328
+ #: um-config.php:1123
4329
  msgid "Profile Header Background Color"
4330
  msgstr ""
4331
 
4332
+ #: um-config.php:1133
4333
  msgid "Default Profile Photo"
4334
  msgstr ""
4335
 
4336
+ #: um-config.php:1134
4337
  msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
4338
  msgstr ""
4339
 
4340
+ #: um-config.php:1153
4341
  msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
4342
  msgstr ""
4343
 
4344
+ #: um-config.php:1165
4345
  msgid "Profile Cover Photos"
4346
  msgstr ""
4347
 
4348
+ #: um-config.php:1174
4349
  msgid "Profile Cover Ratio"
4350
  msgstr ""
4351
 
4352
+ #: um-config.php:1175
4353
  msgid "Choose global ratio for cover photos of profiles"
4354
  msgstr ""
4355
 
4356
+ #: um-config.php:1189
4357
  msgid "Profile Header Meta Text Color"
4358
  msgstr ""
4359
 
4360
+ #: um-config.php:1198
4361
  msgid "Profile Header Link Color"
4362
  msgstr ""
4363
 
4364
+ #: um-config.php:1207
4365
  msgid "Profile Header Link Hover"
4366
  msgstr ""
4367
 
4368
+ #: um-config.php:1216
4369
  msgid "Profile Header Icon Link Color"
4370
  msgstr ""
4371
 
4372
+ #: um-config.php:1225
4373
  msgid "Profile Header Icon Link Hover"
4374
  msgstr ""
4375
 
4376
+ #: um-config.php:1233
4377
  msgid "Show display name in profile header"
4378
  msgstr ""
4379
 
4380
+ #: um-config.php:1241
4381
  msgid "Show user description in header"
4382
  msgstr ""
4383
 
4384
+ #: um-config.php:1249
4385
  msgid "User description maximum chars"
4386
  msgstr ""
4387
 
4388
+ #: um-config.php:1258
4389
  msgid "Profile Header Menu Position"
4390
  msgstr ""
4391
 
4392
+ #: um-config.php:1260
4393
  msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
4394
  msgstr ""
4395
 
4396
+ #: um-config.php:1271
4397
+ msgid "Show a custom message if profile is empty"
4398
+ msgstr ""
4399
+
4400
+ #: um-config.php:1279
4401
+ msgid "Show the emoticon"
4402
+ msgstr ""
4403
+
4404
+ #: um-config.php:1299
4405
  msgid "Registration Default Template"
4406
  msgstr ""
4407
 
4408
+ #: um-config.php:1300
4409
  msgid "This will be the default template to output registration"
4410
  msgstr ""
4411
 
4412
+ #: um-config.php:1308
4413
  msgid "Registration Maximum Width"
4414
  msgstr ""
4415
 
4416
+ #: um-config.php:1317
4417
  msgid "Registration Shortcode Alignment"
4418
  msgstr ""
4419
 
4420
+ #: um-config.php:1331
4421
  msgid "Registration Field Icons"
4422
  msgstr ""
4423
 
4424
+ #: um-config.php:1332
4425
  msgid "This controls the display of field icons in the registration form"
4426
  msgstr ""
4427
 
4428
+ #: um-config.php:1344
4429
  msgid "Registration Primary Button Text"
4430
  msgstr ""
4431
 
4432
+ #: um-config.php:1352
4433
  msgid "Registration Secondary Button"
4434
  msgstr ""
4435
 
4436
+ #: um-config.php:1360
4437
  msgid "Registration Secondary Button Text"
4438
  msgstr ""
4439
 
4440
+ #: um-config.php:1370
4441
  msgid "Registration Default Role"
4442
  msgstr ""
4443
 
4444
+ #: um-config.php:1371
4445
  msgid "This will be the default role assigned to users registering thru registration form"
4446
  msgstr ""
4447
 
4448
+ #: um-config.php:1390
4449
  msgid "Login Default Template"
4450
  msgstr ""
4451
 
4452
+ #: um-config.php:1391
4453
  msgid "This will be the default template to output login"
4454
  msgstr ""
4455
 
4456
+ #: um-config.php:1399
4457
  msgid "Login Maximum Width"
4458
  msgstr ""
4459
 
4460
+ #: um-config.php:1408
4461
  msgid "Login Shortcode Alignment"
4462
  msgstr ""
4463
 
4464
+ #: um-config.php:1422
4465
  msgid "Login Field Icons"
4466
  msgstr ""
4467
 
4468
+ #: um-config.php:1423
4469
  msgid "This controls the display of field icons in the login form"
4470
  msgstr ""
4471
 
4472
+ #: um-config.php:1435
4473
  msgid "Login Primary Button Text"
4474
  msgstr ""
4475
 
4476
+ #: um-config.php:1443
4477
  msgid "Login Secondary Button"
4478
  msgstr ""
4479
 
4480
+ #: um-config.php:1451
4481
  msgid "Login Secondary Button Text"
4482
  msgstr ""
4483
 
4484
+ #: um-config.php:1460
4485
  msgid "Login Forgot Password Link"
4486
  msgstr ""
4487
 
4488
+ #: um-config.php:1479
4489
+ msgid "Any custom css rules that you specify here will be applied globally to the plugin."
4490
+ msgstr ""
4491
+
4492
+ #: um-config.php:1494
4493
  msgid "Advanced"
4494
  msgstr ""
4495
 
4496
+ #: um-config.php:1500
4497
  msgid "Disable JS/CSS Compression"
4498
  msgstr ""
4499
 
4500
+ #: um-config.php:1502
4501
  msgid ""
4502
  "Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
4503
  "this setting for development or debugging purposes only."
4504
  msgstr ""
4505
 
4506
+ #: um-config.php:1509
4507
  msgid "Never load plugin JS and CSS on the following pages"
4508
  msgstr ""
4509
 
4510
+ #: um-config.php:1510
4511
  msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
4512
  msgstr ""
4513
 
4514
+ #: um-config.php:1511
4515
  msgid "Add New Page"
4516
  msgstr ""
4517
 
4518
+ #: um-config.php:1517
4519
  msgid "Allow Tracking"
4520
  msgstr ""
4521
 
4522
+ #: um-config.php:1521
4523
  msgid "Do not allow"
4524
  msgstr ""
4525
 
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: access control, community, communities, conditional fields, conditional lo
7
  Requires at least: 4.1
8
  Tested up to: 4.1
9
 
10
- Stable Tag: 1.0.29
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -170,6 +170,19 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
170
 
171
  == Changelog ==
172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  = 1.0.29: January 28, 2015 =
174
 
175
  * New: added feature to show user display name in menu (e.g. Welcome, {display_name})
7
  Requires at least: 4.1
8
  Tested up to: 4.1
9
 
10
+ Stable Tag: 1.0.30
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
170
 
171
  == Changelog ==
172
 
173
+ = 1.0.30: January 29, 2015 =
174
+
175
+ * New: added option to control number of profiles to display in members directory for mobile devices
176
+ * New: new admin action hook 'um_extend_admin_menu' to extend plugin administration menu
177
+ * New: Improved plugin accessbility e.g add alt text to links and images so people with disabilities can use screen readers
178
+ * New: added option to show/hide the message that appears if profile is empty (includes emoticon show/hide)
179
+ * Tweak: new translatable strings
180
+ * Tweak: added option to customize single-result text for members directory
181
+ * Tweak: removed unnecessary code from member directory backend
182
+ * Tweak: removed unnecessary js from admin head
183
+ * Fixed: Account page is now translatable
184
+ * Fixed: content restriction widget css in backend
185
+
186
  = 1.0.29: January 28, 2015 =
187
 
188
  * New: added feature to show user display name in menu (e.g. Welcome, {display_name})
um-config.php CHANGED
@@ -1265,6 +1265,23 @@ $this->sections[] = array(
1265
  ),
1266
  ),
1267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1268
  )
1269
 
1270
  );
1265
  ),
1266
  ),
1267
 
1268
+ array(
1269
+ 'id' => 'profile_empty_text',
1270
+ 'type' => 'switch',
1271
+ 'title' => __( 'Show a custom message if profile is empty' ),
1272
+ 'default' => um_get_metadefault('profile_empty_text'),
1273
+ 'desc' => 'Switch on/off the custom message that appears when the profile is empty',
1274
+ ),
1275
+
1276
+ array(
1277
+ 'id' => 'profile_empty_text_emo',
1278
+ 'type' => 'switch',
1279
+ 'title' => __( 'Show the emoticon' ),
1280
+ 'default' => um_get_metadefault('profile_empty_text_emo'),
1281
+ 'desc' => 'Switch on/off the emoticon (sad face) that appears above the message',
1282
+ 'required' => array( 'profile_empty_text', '=', 1 ),
1283
+ ),
1284
+
1285
  )
1286
 
1287
  );