Ultimate Member – User Profile & Membership Plugin - Version 2.1.7

Version Description

Download this release

Release Info

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

Code changes from version 2.1.6 to 2.1.7

Files changed (58) hide show
  1. assets/img/extensions/jobboardwp.png +0 -0
  2. assets/img/extensions/{Online-Users.png → online-users.png} +0 -0
  3. assets/img/extensions/{User-Photos.png → user-photos.png} +0 -0
  4. assets/js/um-account.js +10 -2
  5. assets/js/um-account.min.js +1 -1
  6. assets/js/um-conditional.js +24 -0
  7. assets/js/um-conditional.min.js +1 -1
  8. assets/js/um-functions.js +1 -1
  9. assets/js/um-functions.min.js +1 -1
  10. assets/js/um-members.js +2 -0
  11. assets/js/um-members.min.js +1 -1
  12. assets/sass/_colors.sass +4 -0
  13. assets/sass/_mixins.sass +34 -0
  14. assets/sass/_selectors.sass +1 -0
  15. assets/sass/um-members-rtl.sass +137 -0
  16. assets/sass/um-members.sass +1007 -0
  17. includes/admin/core/class-admin-forms.php +1 -1
  18. includes/admin/core/class-admin-navmenu.php +2 -2
  19. includes/admin/core/class-admin-settings.php +34 -19
  20. includes/admin/templates/extensions.php +5 -5
  21. includes/class-config.php +3 -1
  22. includes/class-dependencies.php +15 -0
  23. includes/class-init.php +25 -6
  24. includes/core/class-account.php +43 -3
  25. includes/core/class-builtin.php +57 -35
  26. includes/core/class-enqueue.php +3 -1
  27. includes/core/class-external-integrations.php +2 -1
  28. includes/core/class-fields.php +31 -10
  29. includes/core/class-files.php +19 -15
  30. includes/core/class-form.php +1 -1
  31. includes/core/class-member-directory-meta.php +21 -4
  32. includes/core/class-member-directory.php +17 -3
  33. includes/core/class-password.php +10 -10
  34. includes/core/class-permalinks.php +4 -7
  35. includes/core/class-plugin-updater.php +0 -6
  36. includes/core/class-rewrite.php +1 -1
  37. includes/core/class-roles-capabilities.php +52 -0
  38. includes/core/class-uploader.php +63 -13
  39. includes/core/um-actions-account.php +127 -74
  40. includes/core/um-actions-form.php +3 -5
  41. includes/core/um-actions-global.php +2 -2
  42. includes/core/um-actions-login.php +4 -4
  43. includes/core/um-actions-profile.php +27 -10
  44. includes/core/um-actions-register.php +1 -1
  45. includes/core/um-filters-fields.php +12 -5
  46. includes/core/um-filters-profile.php +60 -0
  47. includes/um-short-functions.php +23 -12
  48. languages/ultimate-member-en.po +0 -7088
  49. languages/ultimate-member-en_US.mo +0 -0
  50. languages/ultimate-member-en_US.po +1096 -1095
  51. languages/ultimate-member.pot +7944 -0
  52. languages/ultimatemember-en_US.po +0 -7122
  53. readme.txt +46 -5
  54. templates/members.php +1 -1
  55. templates/modal/um_view_photo.php +4 -1
  56. templates/password-change.php +4 -2
  57. templates/register.php +5 -1
  58. ultimate-member.php +1 -1
assets/img/extensions/jobboardwp.png ADDED
Binary file
assets/img/extensions/{Online-Users.png → online-users.png} RENAMED
File without changes
assets/img/extensions/{User-Photos.png → user-photos.png} RENAMED
File without changes
assets/js/um-account.js CHANGED
@@ -31,6 +31,8 @@ jQuery(document).ready(function() {
31
  jQuery('.um-account-nav a').removeClass('current');
32
  jQuery('.um-account-nav a[data-tab="'+tab_+'"]').addClass('current');
33
 
 
 
34
  return false;
35
  });
36
 
@@ -62,6 +64,8 @@ jQuery(document).ready(function() {
62
  jQuery('.um-account-side li a').removeClass('current');
63
  jQuery('.um-account-side li a[data-tab="'+tab_+'"]').addClass('current');
64
 
 
 
65
  return false;
66
  });
67
 
@@ -73,15 +77,19 @@ jQuery(document).ready(function() {
73
  var password = jQuery('#' + request_action).val();
74
  jQuery('.um-field-area-response.' + request_action).hide();
75
 
76
- if ( password === '' ) {
77
  jQuery('.um-field-error.' + request_action).show();
78
  } else {
79
  jQuery('.um-field-error.' + request_action).hide();
80
  var request = {
81
  request_action: request_action,
82
- password: password,
83
  nonce: um_scripts.nonce
84
  };
 
 
 
 
 
85
  wp.ajax.send( 'um_request_user_data', {
86
  data: request,
87
  success: function (data) {
31
  jQuery('.um-account-nav a').removeClass('current');
32
  jQuery('.um-account-nav a[data-tab="'+tab_+'"]').addClass('current');
33
 
34
+ wp.hooks.doAction( 'um_after_account_tab_changed', tab_ );
35
+
36
  return false;
37
  });
38
 
64
  jQuery('.um-account-side li a').removeClass('current');
65
  jQuery('.um-account-side li a[data-tab="'+tab_+'"]').addClass('current');
66
 
67
+ wp.hooks.doAction( 'um_after_account_tab_changed', tab_ );
68
+
69
  return false;
70
  });
71
 
77
  var password = jQuery('#' + request_action).val();
78
  jQuery('.um-field-area-response.' + request_action).hide();
79
 
80
+ if ( jQuery('#' + request_action).length && password === '' ) {
81
  jQuery('.um-field-error.' + request_action).show();
82
  } else {
83
  jQuery('.um-field-error.' + request_action).hide();
84
  var request = {
85
  request_action: request_action,
 
86
  nonce: um_scripts.nonce
87
  };
88
+
89
+ if ( jQuery('#' + request_action).length ) {
90
+ request.password = password;
91
+ }
92
+
93
  wp.ajax.send( 'um_request_user_data', {
94
  data: request,
95
  success: function (data) {
assets/js/um-account.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(){var a=jQuery(".um-account-main").attr("data-current_tab");a&&(jQuery('.um-account-tab[data-tab="'+a+'"]').show(),jQuery(".um-account-tab:not(:visible)").find("input, select, textarea").not(":disabled").addClass("um_account_inactive").prop("disabled",!0).attr("disabled",!0)),jQuery(document.body).on("click",".um-account-side li a",function(a){a.preventDefault();var e=jQuery(this);e.parents("ul").find("li a").removeClass("current"),e.addClass("current");var t=jQuery(this).attr("href"),u=jQuery(this).attr("data-tab");return jQuery('input[id="_um_account_tab"]:hidden').val(u),window.history.pushState("","",t),jQuery(".um-account-tab").hide(),jQuery('.um-account-tab[data-tab="'+u+'"]').fadeIn(),jQuery(".um-account-tab:visible").find("input, select, textarea").filter(".um_account_inactive:disabled").removeClass("um_account_inactive").prop("disabled",!1).attr("disabled",!1),jQuery(".um-account-tab:not(:visible)").find("input, select, textarea").not(":disabled").addClass("um_account_inactive").prop("disabled",!0).attr("disabled",!0),jQuery(".um-account-nav a").removeClass("current"),jQuery('.um-account-nav a[data-tab="'+u+'"]').addClass("current"),!1}),jQuery(document.body).on("click",".um-account-nav a",function(a){a.preventDefault();var e=jQuery(this).attr("data-tab"),t=jQuery(this).parents("div"),u=jQuery(this);return jQuery('input[id="_um_account_tab"]:hidden').val(e),jQuery(".um-account-tab").hide(),u.hasClass("current")?(t.next(".um-account-tab").slideUp(),u.removeClass("current")):(t.next(".um-account-tab").slideDown(),u.parents("div").find("a").removeClass("current"),u.addClass("current")),jQuery(".um-account-tab:visible").find("input, select, textarea").filter(".um_account_inactive:disabled").removeClass("um_account_inactive").prop("disabled",!1).attr("disabled",!1),jQuery(".um-account-tab:not(:visible)").find("input, select, textarea").not(":disabled").addClass("um_account_inactive").prop("disabled",!0).attr("disabled",!0),jQuery(".um-account-side li a").removeClass("current"),jQuery('.um-account-side li a[data-tab="'+e+'"]').addClass("current"),!1}),jQuery(document.body).on("click",".um-request-button",function(a){a.preventDefault();var e=jQuery(this).data("action"),t=jQuery("#"+e).val();if(jQuery(".um-field-area-response."+e).hide(),""===t)jQuery(".um-field-error."+e).show();else{jQuery(".um-field-error."+e).hide();var u={request_action:e,password:t,nonce:um_scripts.nonce};wp.ajax.send("um_request_user_data",{data:u,success:function(a){jQuery(".um-field-area-response."+e).text(a.answer).show()},error:function(a){console.log(a)}})}})});
1
+ jQuery(document).ready(function(){var a=jQuery(".um-account-main").attr("data-current_tab");a&&(jQuery('.um-account-tab[data-tab="'+a+'"]').show(),jQuery(".um-account-tab:not(:visible)").find("input, select, textarea").not(":disabled").addClass("um_account_inactive").prop("disabled",!0).attr("disabled",!0)),jQuery(document.body).on("click",".um-account-side li a",function(a){a.preventDefault();var e=jQuery(this);e.parents("ul").find("li a").removeClass("current"),e.addClass("current");var t=jQuery(this).attr("href"),u=jQuery(this).attr("data-tab");return jQuery('input[id="_um_account_tab"]:hidden').val(u),window.history.pushState("","",t),jQuery(".um-account-tab").hide(),jQuery('.um-account-tab[data-tab="'+u+'"]').fadeIn(),jQuery(".um-account-tab:visible").find("input, select, textarea").filter(".um_account_inactive:disabled").removeClass("um_account_inactive").prop("disabled",!1).attr("disabled",!1),jQuery(".um-account-tab:not(:visible)").find("input, select, textarea").not(":disabled").addClass("um_account_inactive").prop("disabled",!0).attr("disabled",!0),jQuery(".um-account-nav a").removeClass("current"),jQuery('.um-account-nav a[data-tab="'+u+'"]').addClass("current"),wp.hooks.doAction("um_after_account_tab_changed",u),!1}),jQuery(document.body).on("click",".um-account-nav a",function(a){a.preventDefault();var e=jQuery(this).attr("data-tab"),t=jQuery(this).parents("div"),u=jQuery(this);return jQuery('input[id="_um_account_tab"]:hidden').val(e),jQuery(".um-account-tab").hide(),u.hasClass("current")?(t.next(".um-account-tab").slideUp(),u.removeClass("current")):(t.next(".um-account-tab").slideDown(),u.parents("div").find("a").removeClass("current"),u.addClass("current")),jQuery(".um-account-tab:visible").find("input, select, textarea").filter(".um_account_inactive:disabled").removeClass("um_account_inactive").prop("disabled",!1).attr("disabled",!1),jQuery(".um-account-tab:not(:visible)").find("input, select, textarea").not(":disabled").addClass("um_account_inactive").prop("disabled",!0).attr("disabled",!0),jQuery(".um-account-side li a").removeClass("current"),jQuery('.um-account-side li a[data-tab="'+e+'"]').addClass("current"),wp.hooks.doAction("um_after_account_tab_changed",e),!1}),jQuery(document.body).on("click",".um-request-button",function(a){a.preventDefault();var e=jQuery(this).data("action"),t=jQuery("#"+e).val();if(jQuery(".um-field-area-response."+e).hide(),jQuery("#"+e).length&&""===t)jQuery(".um-field-error."+e).show();else{jQuery(".um-field-error."+e).hide();var u={request_action:e,nonce:um_scripts.nonce};jQuery("#"+e).length&&(u.password=t),wp.ajax.send("um_request_user_data",{data:u,success:function(a){jQuery(".um-field-area-response."+e).text(a.answer).show()},error:function(a){console.log(a)}})}})});
assets/js/um-conditional.js CHANGED
@@ -221,6 +221,9 @@ function um_apply_conditions( $dom, is_single_update ) {
221
 
222
  var field_type = um_get_field_type( $dom.parents('.um-field[data-key]') );
223
  var live_field_value = um_get_field_data( $dom );
 
 
 
224
 
225
  var $owners = {};
226
  var $owners_values = {};
@@ -628,6 +631,27 @@ jQuery(document).ready( function (){
628
  um_apply_conditions(me, false);
629
  });
630
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
  jQuery(document).on('um_fields_change', function () {
632
  um_field_hide_siblings();
633
  um_field_hide_siblings(); // dupes, issue with false field wrapper's visiblity validations. requires optimization.
221
 
222
  var field_type = um_get_field_type( $dom.parents('.um-field[data-key]') );
223
  var live_field_value = um_get_field_data( $dom );
224
+ if (live_field_value === 'empty_file') {
225
+ live_field_value = '';
226
+ }
227
 
228
  var $owners = {};
229
  var $owners_values = {};
631
  um_apply_conditions(me, false);
632
  });
633
 
634
+ jQuery(document).on('change', '.um-field-image input[type="hidden"],.um-field-file input[type="hidden"]', function () {
635
+ var me = jQuery(this);
636
+ um_apply_conditions(me, false);
637
+ });
638
+
639
+ jQuery(document).on('click', '.um-finish-upload', function () {
640
+ var key = jQuery(this).attr('data-key');
641
+ var me = jQuery('.um-field-'+key+' input');
642
+ setTimeout(function () {
643
+ um_apply_conditions(me, false);
644
+ }, 100);
645
+ });
646
+
647
+ jQuery(document).on('click', '.um-field .cancel', function () {
648
+ var key = jQuery(this).parent().attr('data-key');
649
+ var me = jQuery('.um-field-'+key+' input');
650
+ setTimeout(function () {
651
+ um_apply_conditions(me, false);
652
+ }, 1000);
653
+ });
654
+
655
  jQuery(document).on('um_fields_change', function () {
656
  um_field_hide_siblings();
657
  um_field_hide_siblings(); // dupes, issue with false field wrapper's visiblity validations. requires optimization.
assets/js/um-conditional.min.js CHANGED
@@ -1 +1 @@
1
- var arr_all_conditions=[],um_field_conditions={},um_field_default_values={};function um_get_field_default_value(e){var i="",n=um_get_field_type(e);switch(n){case"text":case"number":case"date":case"textarea":case"select":i=e.find('input:text,input[type="number"],textarea,select').val();break;case"multiselect":i=e.find("select").val();break;case"radio":1<=e.find('input[type="radio"]:checked').length&&(i=e.find('input[type="radio"]:checked').val());break;case"checkbox":if(1<=e.find('input[type="checkbox"]:checked').length)if(1<e.find('input[type="checkbox"]:checked').length){var a=[];a.push(i),e.find('input[type="checkbox"]:checked').each(function(){a.push(jQuery(this).val())}),i=a}else i=e.find('input[type="checkbox"]:checked').val();break;default:i=wp.hooks.applyFilters("um_conditional_logic_default_value",i,n,e)}return{type:n,value:i}}function um_get_field_element(e){var i=e.find("input,textarea,select"),n=um_get_field_type(e);return i=wp.hooks.applyFilters("um_conditional_logic_field_element",i,n,e)}function um_get_field_type(e){var n="",i=e.attr("class").split(" ");return jQuery.each(i,function(e,i){/um-field-type_/.test(i)&&(n=i.replace("um-field-type_","").trim())}),n}function um_get_field_children(n){var a=[];return jQuery.each(arr_all_conditions,function(e,i){i.field.parent===n&&a.push(i.field.condition)}),a}function um_splitup_array(e,i){for(var n=e.length%i,a=n,t=Math.floor(e.length/i),u=[],o=0;o<e.length;o+=t){var r=t+o,d=!1;0!==n&&a&&(r++,a--,d=!0),u.push(e.slice(o,r)),d&&o++}var c=[];return jQuery.each(u,function(e,i){c.push({action:i[0],if_field:i[1],operator:i[2],value:i[3]})}),c}function um_get_field_data(e){return um_live_field=e.parents(".um-field").data("key"),um_live_value=e.val(),e.is(":checkbox")&&(um_live_value="",1<e.parents(".um-field").find("input:checked").length?e.parents(".um-field").find("input:checked").each(function(){um_live_value=um_live_value+jQuery(this).val()+" "}):1<=e.parents(".um-field").find("input:checked").length&&(um_live_value=e.parents(".um-field").find("input:checked").val())),e.is(":radio")&&(um_live_value=e.parents(".um-field").find("input[type=radio]:checked").val()),um_live_value}function um_in_array(e,i,n){var a,t=!1;for(a in n=!!n,i)if(n&&i[a]===e||!n&&i[a]==e){t=!0;break}return t}function um_apply_conditions(n,e){if(n.parents(".um-field[data-key]").length){var i=n.parents(".um-field[data-key]").data("key"),a=um_field_conditions[i];if(void 0!==a){var t=um_get_field_type(n.parents(".um-field[data-key]")),u=um_get_field_data(n),o={},r={},d={};jQuery.each(a,function(e,i){void 0===r[i.owner]&&(r[i.owner]=[],d[i.owner]={}),r[i.owner].push(i.value),d[i.owner]=i}),jQuery.each(a,function(e,i){if(void 0===o[i.owner]&&(o[i.owner]={}),"empty"===i.operator){var n=jQuery.isArray(u)?u.join(""):u;o[i.owner][e]=!n||""===n}if("not empty"===i.operator){n=jQuery.isArray(u)?u.join(""):u;o[i.owner][e]=!(!n||""===n)}if("equals to"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;i.value===n&&um_in_array(n,r[i.owner])?o[i.owner][e]=!0:o[i.owner][e]=!1}if("not equals"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;jQuery.isNumeric(i.value)&&parseInt(n)!==parseInt(i.value)&&n&&!um_in_array(n,r[i.owner])?o[i.owner][e]=!0:i.value==n||um_in_array(n,r[i.owner])?o[i.owner][e]=!1:o[i.owner][e]=!0}if("greater than"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;jQuery.isNumeric(i.value)&&parseInt(n)>parseInt(i.value)?o[i.owner][e]=!0:o[i.owner][e]=!1}if("less than"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;jQuery.isNumeric(i.value)&&parseInt(n)<parseInt(i.value)?o[i.owner][e]=!0:o[i.owner][e]=!1}if("contains"===i.operator)switch(t){case"multiselect":u&&0<=u.indexOf(i.value)&&um_in_array(i.value,u)?o[i.owner][e]=!0:o[i.owner][e]=!1;break;case"checkbox":u&&0<=u.indexOf(i.value)?o[i.owner][e]=!0:o[i.owner][e]=!1;break;default:void 0===(o=wp.hooks.applyFilters("um_conditional_logic_contains_operator_owners",o,t,u,i,e))[i.owner][e]&&(u&&0<=u.indexOf(i.value)&&um_in_array(u,r[i.owner])?o[i.owner][e]=!0:o[i.owner][e]=!1)}}),jQuery.each(o,function(e,i){um_in_array(!0,i)?um_field_apply_action(n,d[e],!0):um_field_apply_action(n,d[e],!1)}),n.trigger("um_fields_change")}}}function um_field_apply_action(e,i,n){var a=jQuery('div.um-field[data-key="'+i.owner+'"]');return"show"===i.action&&n&&(a.is(":hidden")&&um_field_restore_default_value(a),a.show(),_show_in_ie(a)),"show"!==i.action||n||(a.hide(),_hide_in_ie(a)),"hide"===i.action&&n&&(a.hide(),_hide_in_ie(a)),"hide"!==i.action||n||(a.is(":hidden")&&um_field_restore_default_value(a),a.show(),_show_in_ie(a)),e.removeClass("um-field-has-changed")}function um_field_restore_default_value(a){var e=um_get_field_type(a),i=a.data("key"),n=um_field_default_values[i];switch(e){case"text":case"number":case"date":case"textarea":a.find('input:text,input[type="number"],textareas').val(n.value);break;case"select":a.find("select").find("option").prop("selected",!1),a.find("select").val(n.value),a.find("select").trigger("change");break;case"multiselect":a.find("select").find("option").prop("selected",!1),jQuery.each(n.value,function(e,i){a.find("select").find('option[value="'+i+'"]').attr("selected",!0)}),a.find("select").trigger("change");break;case"checkbox":if(1<=a.find('input[type="checkbox"]:checked').length)if(a.find('input[type="checkbox"]:checked').removeAttr("checked"),a.find("span.um-field-checkbox-state i").removeClass("um-icon-android-checkbox-outline"),a.find("span.um-field-checkbox-state i").addClass("um-icon-android-checkbox-outline-blank"),a.find(".um-field-checkbox.active").removeClass("active"),jQuery.isArray(n.value))jQuery.each(n.value,function(e,i){var n=a.find('input[type="checkbox"][value="'+i+'"]');n.attr("checked",!0),n.closest(".um-field-checkbox").find("i").removeClass("um-icon-android-checkbox-outline-blank"),n.closest(".um-field-checkbox").find("i").addClass("um-icon-android-checkbox-outline"),n.closest(".um-field-checkbox").addClass("active")});else{var t=a.find('input[type="checkbox"][value="'+n.value+'"]');t.attr("checked",!0),t.closest(".um-field-checkbox").find("i").removeClass("um-icon-android-checkbox-outline-blank"),t.closest(".um-field-checkbox").find("i").addClass("um-icon-android-checkbox-outline"),t.closest(".um-field-checkbox").addClass("active")}break;case"radio":1<=a.find('input[type="radio"]:checked').length&&setTimeout(function(){a.find('input[type="radio"]:checked').removeAttr("checked"),a.find("span.um-field-radio-state i").removeClass("um-icon-android-radio-button-on"),a.find("span.um-field-radio-state i").addClass("um-icon-android-radio-button-off"),a.find(".um-field-radio.active").removeClass("active");var e=a.find('input[type="radio"][value="'+n.value+'"]');e.attr("checked",!0),e.closest(".um-field-radio").find("i").removeClass("um-icon-android-radio-button-off"),e.closest(".um-field-radio").find("i").addClass("um-icon-android-radio-button-on"),e.closest(".um-field-radio").addClass("active")},100);break;default:wp.hooks.doAction("um_conditional_logic_restore_default_value",e,a,n)}if(!a.hasClass("um-field-has-changed")){var u=um_get_field_element(a);"radio"!==e&&"checkbox"!==e||(u=u.find(":checked")),u&&(u.trigger("change"),a.addClass("um-field-has-changed"))}}function um_field_hide_siblings(){jQuery.each(um_field_conditions,function(e,i){(1<=jQuery('.um-field[data-key="'+e+'"]:hidden').length||"none"===jQuery('.um-field[data-key="'+e+'"]').css("display"))&&jQuery.each(i,function(e,i){jQuery('.um-field[data-key="'+i.owner+'"]').hide()})})}function _hide_in_ie(e){void 0!==jQuery.browser&&jQuery.browser.msie&&e.css({visibility:"hidden"})}function _show_in_ie(e){void 0!==jQuery.browser&&jQuery.browser.msie&&e.css({visibility:"visible"})}function um_init_field_conditions(){var e=[];jQuery(".um-field[data-key]").each(function(){var a=jQuery(this).data("key");e.push(a);var u={};jQuery.each(jQuery(this)[0].attributes,function(e,i){if(-1!==i.name.indexOf("data-cond")){var n=i.name.slice(10),a=n.substring(1,0),t=n.slice(2);void 0===u[a]&&(u[a]={}),u[a][t]=i.value}}),jQuery.each(u,function(e,i){var n={field:{owner:a,action:i.action,parent:i.field,operator:i.operator,value:i.value,condition:{owner:a,action:i.action,operator:i.operator,value:i.value}}};arr_all_conditions.push(n)}),um_field_default_values[jQuery(this).data("key")]=um_get_field_default_value(jQuery(this))}),jQuery.each(e,function(e,i){um_field_conditions[i]=um_get_field_children(i)}),jQuery(".um-field[data-key]:visible").each(function(){var e=um_get_field_element(jQuery(this));void 0!==e.trigger&&e.trigger("change")})}jQuery(document).ready(function(){jQuery(document).on("change",'.um-field select, .um-field input[type="radio"], .um-field input[type="checkbox"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("input change",'.um-field input[type="text"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("input change",'.um-field input[type="number"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("input change",'.um-field input[type="password"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("um_fields_change",function(){um_field_hide_siblings(),um_field_hide_siblings()}),um_init_field_conditions()});
1
+ var arr_all_conditions=[],um_field_conditions={},um_field_default_values={};function um_get_field_default_value(e){var i="",n=um_get_field_type(e);switch(n){case"text":case"number":case"date":case"textarea":case"select":i=e.find('input:text,input[type="number"],textarea,select').val();break;case"multiselect":i=e.find("select").val();break;case"radio":1<=e.find('input[type="radio"]:checked').length&&(i=e.find('input[type="radio"]:checked').val());break;case"checkbox":if(1<=e.find('input[type="checkbox"]:checked').length)if(1<e.find('input[type="checkbox"]:checked').length){var t=[];t.push(i),e.find('input[type="checkbox"]:checked').each(function(){t.push(jQuery(this).val())}),i=t}else i=e.find('input[type="checkbox"]:checked').val();break;default:i=wp.hooks.applyFilters("um_conditional_logic_default_value",i,n,e)}return{type:n,value:i}}function um_get_field_element(e){var i=e.find("input,textarea,select"),n=um_get_field_type(e);return i=wp.hooks.applyFilters("um_conditional_logic_field_element",i,n,e)}function um_get_field_type(e){var n="",i=e.attr("class").split(" ");return jQuery.each(i,function(e,i){/um-field-type_/.test(i)&&(n=i.replace("um-field-type_","").trim())}),n}function um_get_field_children(n){var t=[];return jQuery.each(arr_all_conditions,function(e,i){i.field.parent===n&&t.push(i.field.condition)}),t}function um_splitup_array(e,i){for(var n=e.length%i,t=n,a=Math.floor(e.length/i),u=[],o=0;o<e.length;o+=a){var r=a+o,d=!1;0!==n&&t&&(r++,t--,d=!0),u.push(e.slice(o,r)),d&&o++}var c=[];return jQuery.each(u,function(e,i){c.push({action:i[0],if_field:i[1],operator:i[2],value:i[3]})}),c}function um_get_field_data(e){return um_live_field=e.parents(".um-field").data("key"),um_live_value=e.val(),e.is(":checkbox")&&(um_live_value="",1<e.parents(".um-field").find("input:checked").length?e.parents(".um-field").find("input:checked").each(function(){um_live_value=um_live_value+jQuery(this).val()+" "}):1<=e.parents(".um-field").find("input:checked").length&&(um_live_value=e.parents(".um-field").find("input:checked").val())),e.is(":radio")&&(um_live_value=e.parents(".um-field").find("input[type=radio]:checked").val()),um_live_value}function um_in_array(e,i,n){var t,a=!1;for(t in n=!!n,i)if(n&&i[t]===e||!n&&i[t]==e){a=!0;break}return a}function um_apply_conditions(n,e){if(n.parents(".um-field[data-key]").length){var i=n.parents(".um-field[data-key]").data("key"),t=um_field_conditions[i];if(void 0!==t){var a=um_get_field_type(n.parents(".um-field[data-key]")),u=um_get_field_data(n);"empty_file"===u&&(u="");var o={},r={},d={};jQuery.each(t,function(e,i){void 0===r[i.owner]&&(r[i.owner]=[],d[i.owner]={}),r[i.owner].push(i.value),d[i.owner]=i}),jQuery.each(t,function(e,i){if(void 0===o[i.owner]&&(o[i.owner]={}),"empty"===i.operator){var n=jQuery.isArray(u)?u.join(""):u;o[i.owner][e]=!n||""===n}if("not empty"===i.operator){n=jQuery.isArray(u)?u.join(""):u;o[i.owner][e]=!(!n||""===n)}if("equals to"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;i.value===n&&um_in_array(n,r[i.owner])?o[i.owner][e]=!0:o[i.owner][e]=!1}if("not equals"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;jQuery.isNumeric(i.value)&&parseInt(n)!==parseInt(i.value)&&n&&!um_in_array(n,r[i.owner])?o[i.owner][e]=!0:i.value==n||um_in_array(n,r[i.owner])?o[i.owner][e]=!1:o[i.owner][e]=!0}if("greater than"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;jQuery.isNumeric(i.value)&&parseInt(n)>parseInt(i.value)?o[i.owner][e]=!0:o[i.owner][e]=!1}if("less than"===i.operator){n=jQuery.isArray(u)&&1===u.length?u[0]:u;jQuery.isNumeric(i.value)&&parseInt(n)<parseInt(i.value)?o[i.owner][e]=!0:o[i.owner][e]=!1}if("contains"===i.operator)switch(a){case"multiselect":u&&0<=u.indexOf(i.value)&&um_in_array(i.value,u)?o[i.owner][e]=!0:o[i.owner][e]=!1;break;case"checkbox":u&&0<=u.indexOf(i.value)?o[i.owner][e]=!0:o[i.owner][e]=!1;break;default:void 0===(o=wp.hooks.applyFilters("um_conditional_logic_contains_operator_owners",o,a,u,i,e))[i.owner][e]&&(u&&0<=u.indexOf(i.value)&&um_in_array(u,r[i.owner])?o[i.owner][e]=!0:o[i.owner][e]=!1)}}),jQuery.each(o,function(e,i){um_in_array(!0,i)?um_field_apply_action(n,d[e],!0):um_field_apply_action(n,d[e],!1)}),n.trigger("um_fields_change")}}}function um_field_apply_action(e,i,n){var t=jQuery('div.um-field[data-key="'+i.owner+'"]');return"show"===i.action&&n&&(t.is(":hidden")&&um_field_restore_default_value(t),t.show(),_show_in_ie(t)),"show"!==i.action||n||(t.hide(),_hide_in_ie(t)),"hide"===i.action&&n&&(t.hide(),_hide_in_ie(t)),"hide"!==i.action||n||(t.is(":hidden")&&um_field_restore_default_value(t),t.show(),_show_in_ie(t)),e.removeClass("um-field-has-changed")}function um_field_restore_default_value(t){var e=um_get_field_type(t),i=t.data("key"),n=um_field_default_values[i];switch(e){case"text":case"number":case"date":case"textarea":t.find('input:text,input[type="number"],textareas').val(n.value);break;case"select":t.find("select").find("option").prop("selected",!1),t.find("select").val(n.value),t.find("select").trigger("change");break;case"multiselect":t.find("select").find("option").prop("selected",!1),jQuery.each(n.value,function(e,i){t.find("select").find('option[value="'+i+'"]').attr("selected",!0)}),t.find("select").trigger("change");break;case"checkbox":if(1<=t.find('input[type="checkbox"]:checked').length)if(t.find('input[type="checkbox"]:checked').removeAttr("checked"),t.find("span.um-field-checkbox-state i").removeClass("um-icon-android-checkbox-outline"),t.find("span.um-field-checkbox-state i").addClass("um-icon-android-checkbox-outline-blank"),t.find(".um-field-checkbox.active").removeClass("active"),jQuery.isArray(n.value))jQuery.each(n.value,function(e,i){var n=t.find('input[type="checkbox"][value="'+i+'"]');n.attr("checked",!0),n.closest(".um-field-checkbox").find("i").removeClass("um-icon-android-checkbox-outline-blank"),n.closest(".um-field-checkbox").find("i").addClass("um-icon-android-checkbox-outline"),n.closest(".um-field-checkbox").addClass("active")});else{var a=t.find('input[type="checkbox"][value="'+n.value+'"]');a.attr("checked",!0),a.closest(".um-field-checkbox").find("i").removeClass("um-icon-android-checkbox-outline-blank"),a.closest(".um-field-checkbox").find("i").addClass("um-icon-android-checkbox-outline"),a.closest(".um-field-checkbox").addClass("active")}break;case"radio":1<=t.find('input[type="radio"]:checked').length&&setTimeout(function(){t.find('input[type="radio"]:checked').removeAttr("checked"),t.find("span.um-field-radio-state i").removeClass("um-icon-android-radio-button-on"),t.find("span.um-field-radio-state i").addClass("um-icon-android-radio-button-off"),t.find(".um-field-radio.active").removeClass("active");var e=t.find('input[type="radio"][value="'+n.value+'"]');e.attr("checked",!0),e.closest(".um-field-radio").find("i").removeClass("um-icon-android-radio-button-off"),e.closest(".um-field-radio").find("i").addClass("um-icon-android-radio-button-on"),e.closest(".um-field-radio").addClass("active")},100);break;default:wp.hooks.doAction("um_conditional_logic_restore_default_value",e,t,n)}if(!t.hasClass("um-field-has-changed")){var u=um_get_field_element(t);"radio"!==e&&"checkbox"!==e||(u=u.find(":checked")),u&&(u.trigger("change"),t.addClass("um-field-has-changed"))}}function um_field_hide_siblings(){jQuery.each(um_field_conditions,function(e,i){(1<=jQuery('.um-field[data-key="'+e+'"]:hidden').length||"none"===jQuery('.um-field[data-key="'+e+'"]').css("display"))&&jQuery.each(i,function(e,i){jQuery('.um-field[data-key="'+i.owner+'"]').hide()})})}function _hide_in_ie(e){void 0!==jQuery.browser&&jQuery.browser.msie&&e.css({visibility:"hidden"})}function _show_in_ie(e){void 0!==jQuery.browser&&jQuery.browser.msie&&e.css({visibility:"visible"})}function um_init_field_conditions(){var e=[];jQuery(".um-field[data-key]").each(function(){var t=jQuery(this).data("key");e.push(t);var u={};jQuery.each(jQuery(this)[0].attributes,function(e,i){if(-1!==i.name.indexOf("data-cond")){var n=i.name.slice(10),t=n.substring(1,0),a=n.slice(2);void 0===u[t]&&(u[t]={}),u[t][a]=i.value}}),jQuery.each(u,function(e,i){var n={field:{owner:t,action:i.action,parent:i.field,operator:i.operator,value:i.value,condition:{owner:t,action:i.action,operator:i.operator,value:i.value}}};arr_all_conditions.push(n)}),um_field_default_values[jQuery(this).data("key")]=um_get_field_default_value(jQuery(this))}),jQuery.each(e,function(e,i){um_field_conditions[i]=um_get_field_children(i)}),jQuery(".um-field[data-key]:visible").each(function(){var e=um_get_field_element(jQuery(this));void 0!==e.trigger&&e.trigger("change")})}jQuery(document).ready(function(){jQuery(document).on("change",'.um-field select, .um-field input[type="radio"], .um-field input[type="checkbox"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("input change",'.um-field input[type="text"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("input change",'.um-field input[type="number"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("input change",'.um-field input[type="password"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("change",'.um-field-image input[type="hidden"],.um-field-file input[type="hidden"]',function(){um_apply_conditions(jQuery(this),!1)}),jQuery(document).on("click",".um-finish-upload",function(){var e=jQuery(this).attr("data-key"),i=jQuery(".um-field-"+e+" input");setTimeout(function(){um_apply_conditions(i,!1)},100)}),jQuery(document).on("click",".um-field .cancel",function(){var e=jQuery(this).parent().attr("data-key"),i=jQuery(".um-field-"+e+" input");setTimeout(function(){um_apply_conditions(i,!1)},1e3)}),jQuery(document).on("um_fields_change",function(){um_field_hide_siblings(),um_field_hide_siblings()}),um_init_field_conditions()});
assets/js/um-functions.js CHANGED
@@ -698,7 +698,7 @@ function prepare_Modal() {
698
 
699
  function remove_Modal() {
700
  if ( jQuery('.um-popup-overlay').length ) {
701
- jQuery( document ).trigger( 'um_before_modal_removed' );
702
 
703
  jQuery('.tipsy').remove();
704
  jQuery('.um-popup').empty().remove();
698
 
699
  function remove_Modal() {
700
  if ( jQuery('.um-popup-overlay').length ) {
701
+ wp.hooks.doAction( 'um_before_modal_removed', jQuery('.um-popup') );
702
 
703
  jQuery('.tipsy').remove();
704
  jQuery('.um-popup').empty().remove();
assets/js/um-functions.min.js CHANGED
@@ -1 +1 @@
1
- function UM_check_password_matched(){jQuery(document).on("keyup","input[data-key=user_password],input[data-key=confirm_user_password]",function(e){var t=jQuery("input[data-key=user_password]").val(),a=jQuery("input[data-key=confirm_user_password]").val(),o=jQuery("input[data-key=user_password],input[data-key=confirm_user_password]");t||a?t!==a?o.removeClass("um-validate-matched").addClass("um-validate-not-matched"):o.removeClass("um-validate-not-matched").addClass("um-validate-matched"):o.removeClass("um-validate-matched").removeClass("um-validate-not-matched")})}function UM_hide_menus(){var e=jQuery(".um-dropdown");e.parents("div").find("a").removeClass("active"),e.hide()}function UM_domenus(){jQuery(".um-dropdown").each(function(){var e=jQuery(this),t=jQuery(this).attr("data-element"),a=jQuery(this).attr("data-position");if(jQuery(t).addClass("um-trigger-menu-on-"+e.attr("data-trigger")),"lc"===a&&"rtl"===jQuery("html").attr("dir")&&(a="rc"),jQuery(window).width()<=1200&&"div.um-profile-edit"===t&&(a="rtl"===jQuery("html").attr("dir")?"rc":"lc"),jQuery(t).find("img").width()<200?left_p=(jQuery(t).width()-jQuery(t).find("img").width())/2+(jQuery(t).find("img").width()-200)/2:left_p=(jQuery(t).width()-jQuery(t).find("img").width())/2,top_=parseInt(jQuery(t).find("a").css("top")),top_?top_p=jQuery(t).find("img").height()+4+top_:top_p=jQuery(t).find("img").height()+4,4==top_p&&"div.um-cover"===t?top_p=jQuery(t).height()/2+e.height()/2:4==top_p&&(top_p=jQuery(t).height()+20),"lc"===a)gap_right=jQuery(t).width()+17,e.css({top:0,width:200,left:"auto",right:gap_right+"px","text-align":"center"}),e.find(".um-dropdown-arr").find("i").removeClass().addClass("um-icon-arrow-right-b"),e.find(".um-dropdown-arr").css({top:"4px",left:"auto",right:"-17px"});else if("rc"===a)gap_right=jQuery(t).width()+25,e.css({top:0,width:200,left:gap_right+"px",right:"auto","text-align":"center"}),e.find(".um-dropdown-arr").find("i").removeClass().addClass("um-icon-arrow-left-b"),e.find(".um-dropdown-arr").css({top:"4px",left:"-17px",right:"auto"});else if("bc"===a){var o=0,i=e.data("top-offset");void 0!==i&&(o=1*i),e.css({top:top_p+o,width:200,left:left_p,right:"auto","text-align":"center"}),e.find(".um-dropdown-arr").find("i").removeClass().addClass("um-icon-arrow-up-b"),e.find(".um-dropdown-arr").css({top:"-17px",left:e.width()/2-12,right:"auto"})}})}function um_responsive(){jQuery(".um").each(function(){element_width=jQuery(this).width(),element_width<=340?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob340")):element_width<=500?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob500")):element_width<=800?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob800")):element_width<=960?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob960")):960<element_width&&(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960")),0<jQuery(".um-account-nav").length&&jQuery(".um-account-side").is(":visible")&&0==jQuery(".um-account-tab:visible").length&&jQuery(".um-account-side li a.current").trigger("click"),jQuery(this).css("opacity",1)}),jQuery(".um-cover, .um-member-cover, .um-cover-e").each(function(){var e=jQuery(this),t=e.data("ratio"),a=e.width(),o=t.split(":");calcHeight=Math.round(a/o[0])+"px",e.height(calcHeight),e.find(".um-cover-add").height(calcHeight)}),UM_domenus()}function initImageUpload_UM(r){r.data("upload_help_text")?upload_help_text='<span class="help">'+r.data("upload_help_text")+"</span>":upload_help_text="",r.data("icon")?icon='<span class="icon"><i class="'+r.data("icon")+'"></i></span>':icon="",r.data("upload_text")?upload_text='<span class="str">'+r.data("upload_text")+"</span>":upload_text="";var e=0;jQuery("#um_upload_single:visible").data("user_id")&&(e=jQuery("#um_upload_single:visible").data("user_id")),r.uploadFile({url:wp.ajax.settings.url,method:"POST",multiple:!1,formData:{action:"um_imageupload",key:r.data("key"),set_id:r.data("set_id"),set_mode:r.data("set_mode"),_wpnonce:r.data("nonce"),timestamp:r.data("timestamp"),user_id:e},fileName:r.data("key"),allowedTypes:r.data("allowed_types"),maxFileSize:r.data("max_size"),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:r.data("max_size_error"),extErrorStr:r.data("extension_error"),maxFileCountErrorStr:r.data("max_files_error"),maxFileCount:1,showDelete:!1,showAbort:!1,showDone:!1,showFileCounter:!1,showStatusAfterSuccess:!0,returnType:"json",onSubmit:function(e){r.parents(".um-modal-body").find(".um-error-block").remove()},onSuccess:function(e,t,a){r.selectedFiles=0,t.success&&0==t.success||void 0!==t.data.error?(r.parents(".um-modal-body").append('<div class="um-error-block">'+t.data.error+"</div>"),r.parents(".um-modal-body").find(".upload-statusbar").hide(0),um_modal_responsive()):jQuery.each(t.data,function(e,t){var a=r.parents(".um-modal-body").find(".um-single-image-preview img"),o=r.parents(".um-modal-body").find(".um-single-image-preview"),i=new Date;a.attr("src",t.url+"?"+i.getTime()),a.data("file",t.file),a.on("load",function(){r.parents(".um-modal-body").find(".um-modal-btn.um-finish-upload.disabled").removeClass("disabled"),r.parents(".um-modal-body").find(".ajax-upload-dragdrop,.upload-statusbar").hide(0),o.show(0),um_modal_responsive()})})},onError:function(e){console.log(e)}})}function initFileUpload_UM(o){o.data("upload_help_text")?upload_help_text='<span class="help">'+o.data("upload_help_text")+"</span>":upload_help_text="",o.data("icon")?icon='<span class="icon"><i class="'+o.data("icon")+'"></i></span>':icon="",o.data("upload_text")?upload_text='<span class="str">'+o.data("upload_text")+"</span>":upload_text="",jQuery("#um_upload_single:visible").data("user_id")&&(user_id=jQuery("#um_upload_single:visible").data("user_id")),o.uploadFile({url:wp.ajax.settings.url,method:"POST",multiple:!1,formData:{action:"um_fileupload",key:o.data("key"),set_id:o.data("set_id"),user_id:o.data("user_id"),set_mode:o.data("set_mode"),_wpnonce:o.data("nonce"),timestamp:o.data("timestamp")},fileName:o.data("key"),allowedTypes:o.data("allowed_types"),maxFileSize:o.data("max_size"),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:o.data("max_size_error"),extErrorStr:o.data("extension_error"),maxFileCountErrorStr:o.data("max_files_error"),maxFileCount:1,showDelete:!1,showAbort:!1,showDone:!1,showFileCounter:!1,showStatusAfterSuccess:!0,onSubmit:function(e){o.parents(".um-modal-body").find(".um-error-block").remove()},onSuccess:function(e,t,a){o.selectedFiles=0,t.success&&0==t.success||void 0!==t.data.error?(o.parents(".um-modal-body").append('<div class="um-error-block">'+t.data.error+"</div>"),o.parents(".um-modal-body").find(".upload-statusbar").hide(0)):jQuery.each(t.data,function(e,t){o.parents(".um-modal-body").find(".um-modal-btn.um-finish-upload.disabled").removeClass("disabled"),o.parents(".um-modal-body").find(".ajax-upload-dragdrop,.upload-statusbar").hide(0),o.parents(".um-modal-body").find(".um-single-file-preview").show(0),"icon"==e?o.parents(".um-modal-body").find(".um-single-fileinfo i").removeClass().addClass(t):"icon_bg"==e?o.parents(".um-modal-body").find(".um-single-fileinfo span.icon").css({"background-color":t}):"filename"==e?o.parents(".um-modal-body").find(".um-single-fileinfo a").attr("data-file",t):"original_name"==e?(o.parents(".um-modal-body").find(".um-single-fileinfo a").attr("data-orignal-name",t),o.parents(".um-modal-body").find(".um-single-fileinfo span.filename").html(t)):"url"==e&&o.parents(".um-modal-body").find(".um-single-fileinfo a").attr("href",t)}),setTimeout(function(){um_modal_responsive()},1e3)},onError:function(e){console.log(e)}})}function initCrop_UM(){var t=jQuery(".um-modal .um-single-image-preview img").first(),e=jQuery(".um-modal .um-single-image-preview"),a=t.parent().attr("data-crop"),o=t.parent().attr("data-min_width"),i=t.parent().attr("data-min_height"),r=t.parent().attr("data-ratio");if(jQuery(".um-modal").find("#um_upload_single").attr("data-ratio"))r=(r=jQuery(".um-modal").find("#um_upload_single").attr("data-ratio")).split(":")[0];if(t.length&&""!=t.attr("src")){var d=jQuery(window).height()-(jQuery(".um-modal-footer a").height()+20)-50-jQuery(".um-modal-header:visible").height();if(t.css({height:"auto"}),e.css({height:"auto"}),jQuery(window).height()<=400?(e.css({height:d+"px","max-height":d+"px"}),t.css({height:"auto"})):(t.css({height:"auto","max-height":d+"px"}),e.css({height:t.height(),"max-height":d+"px"})),"square"==a)var u={minWidth:o,minHeight:i,dragCrop:!1,aspectRatio:1,zoomable:!1,rotatable:!1,dashed:!1,done:function(e){t.parent().attr("data-coord",Math.round(e.x)+","+Math.round(e.y)+","+Math.round(e.width)+","+Math.round(e.height))}};else if("cover"==a){0<Math.round(o/r)&&(i=Math.round(o/r));u={minWidth:o,minHeight:i,dragCrop:!1,aspectRatio:r,zoomable:!1,rotatable:!1,dashed:!1,done:function(e){t.parent().attr("data-coord",Math.round(e.x)+","+Math.round(e.y)+","+Math.round(e.width)+","+Math.round(e.height))}}}else if("user"==a)u={minWidth:o,minHeight:i,dragCrop:!0,aspectRatio:"auto",zoomable:!1,rotatable:!1,dashed:!1,done:function(e){t.parent().attr("data-coord",Math.round(e.x)+","+Math.round(e.y)+","+Math.round(e.width)+","+Math.round(e.height))}};0!=a&&(t.cropper(u),jQuery(".um-single-image-preview img.cropper-hidden").cropper("destroy"),jQuery(".um-single-image-preview img.lazyloaded").addClass("cropper-hidden"),jQuery(".um-single-image-preview img.lazyloaded").removeClass("lazyloaded"),jQuery(".um-single-image-preview .cropper-container").append('<div class="um-clear"></div>'))}}function um_new_modal(e,t,a,o){if(0==jQuery("body").find(".um-modal-overlay").length)if(jQuery(".tipsy").hide(),UM_hide_menus(),jQuery("body,html,textarea").css("overflow","hidden"),jQuery(document).bind("touchmove",function(e){e.preventDefault()}),jQuery(".um-modal").on("touchmove",function(e){e.stopPropagation()}),a?jQuery("body").append('<div class="um-modal-overlay"></div><div class="um-modal is-photo"></div>'):jQuery("body").append('<div class="um-modal-overlay"></div><div class="um-modal no-photo"></div>'),jQuery("#"+e).prependTo(".um-modal"),a){jQuery(".um-modal").find(".um-modal-photo").html("<img />");var i=jQuery(".um-modal-photo img"),r=jQuery(window).width()-60,d=jQuery(window).height()-.25*jQuery(window).height();i.attr("src",o),i.on("load",function(){jQuery("#"+e).show(),jQuery(".um-modal").show(),i.css({opacity:0}),i.css({"max-width":r}),i.css({"max-height":d}),jQuery(".um-modal").css({width:i.width(),"margin-left":"-"+i.width()/2+"px"}),i.animate({opacity:1},1e3),um_modal_responsive()})}else jQuery("#"+e).show(),jQuery(".um-modal").show(),um_modal_size(t),initImageUpload_UM(jQuery(".um-modal:visible").find(".um-single-image-upload")),initFileUpload_UM(jQuery(".um-modal:visible").find(".um-single-file-upload")),um_modal_responsive()}function um_modal_responsive(){var e=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,t=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,a=jQuery(".um-modal:visible");if(jQuery(".um-modal-body.photo:visible").length){a.removeClass("uimob340"),a.removeClass("uimob500");var o=jQuery(".um-modal-photo img"),i=e-60,r=t-.25*t;o.css({opacity:0}),o.css({"max-width":i}),o.css({"max-height":r}),jQuery(".um-modal").css({width:o.width(),"margin-left":"-"+o.width()/2+"px"}),o.animate({opacity:1},1e3);var d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}else if(a.length)if(a.removeClass("uimob340"),a.removeClass("uimob500"),e<=340)a.addClass("uimob340"),initCrop_UM(),a.animate({bottom:0},300);else if(e<=500)a.addClass("uimob500"),initCrop_UM(),a.animate({bottom:0},300);else if(e<=800){initCrop_UM();d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}else if(e<=960){initCrop_UM();d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}else if(960<e){initCrop_UM();d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}}function um_remove_modal(){jQuery("img.cropper-hidden").cropper("destroy"),jQuery("body,html,textarea").css("overflow","auto"),jQuery(document).unbind("touchmove"),jQuery('.um-modal div[id^="um_"]').hide().appendTo("body"),jQuery(".um-modal,.um-modal-overlay").remove()}function um_modal_size(e){jQuery(".um-modal:visible").addClass(e)}function um_modal_add_attr(e,t){jQuery(".um-modal:visible").data(e,t)}function prepare_Modal(){0==jQuery(".um-popup-overlay").length&&(jQuery("body").append('<div class="um-popup-overlay"></div>'),jQuery("body").append('<div class="um-popup"></div>'),jQuery(".um-popup").addClass("loading"),jQuery("body,html").css({overflow:"hidden"}))}function remove_Modal(){jQuery(".um-popup-overlay").length&&(jQuery(document).trigger("um_before_modal_removed"),jQuery(".tipsy").remove(),jQuery(".um-popup").empty().remove(),jQuery(".um-popup-overlay").empty().remove(),jQuery("body,html").css({overflow:"auto"}))}function show_Modal(e){jQuery(".um-popup-overlay").length&&(jQuery(".um-popup").removeClass("loading").html(e),jQuery(".um-tip-n").tipsy({gravity:"n",opacity:1,offset:3}),jQuery(".um-tip-w").tipsy({gravity:"w",opacity:1,offset:3}),jQuery(".um-tip-e").tipsy({gravity:"e",opacity:1,offset:3}),jQuery(".um-tip-s").tipsy({gravity:"s",opacity:1,offset:3}))}function responsive_Modal(){jQuery(".um-popup-overlay").length&&(ag_height=jQuery(window).height()-jQuery(".um-popup .um-popup-header").outerHeight()-jQuery(".um-popup .um-popup-footer").outerHeight()-80,350<ag_height&&(ag_height=350),jQuery(".um-popup-autogrow:visible").length?jQuery(".um-popup-autogrow:visible").css({height:ag_height+"px"}):jQuery(".um-popup-autogrow2:visible").length&&jQuery(".um-popup-autogrow2:visible").css({"max-height":ag_height+"px"}))}function um_reset_field(e){jQuery(e).find("div.um-field-area").find("input,textarea,select").not(":button, :submit, :reset, :hidden").val("").removeAttr("checked").removeAttr("selected")}function um_selected(e,t){if(e==t)return"selected='selected'"}jQuery(function(){jQuery(".um-search form *").keypress(function(e){if(13==e.which)return jQuery(".um-search form").submit(),!1}),2==jQuery("input[data-key=user_password],input[data-key=confirm_user_password]").length&&UM_check_password_matched()});
1
+ function UM_check_password_matched(){jQuery(document).on("keyup","input[data-key=user_password],input[data-key=confirm_user_password]",function(e){var t=jQuery("input[data-key=user_password]").val(),a=jQuery("input[data-key=confirm_user_password]").val(),o=jQuery("input[data-key=user_password],input[data-key=confirm_user_password]");t||a?t!==a?o.removeClass("um-validate-matched").addClass("um-validate-not-matched"):o.removeClass("um-validate-not-matched").addClass("um-validate-matched"):o.removeClass("um-validate-matched").removeClass("um-validate-not-matched")})}function UM_hide_menus(){var e=jQuery(".um-dropdown");e.parents("div").find("a").removeClass("active"),e.hide()}function UM_domenus(){jQuery(".um-dropdown").each(function(){var e=jQuery(this),t=jQuery(this).attr("data-element"),a=jQuery(this).attr("data-position");if(jQuery(t).addClass("um-trigger-menu-on-"+e.attr("data-trigger")),"lc"===a&&"rtl"===jQuery("html").attr("dir")&&(a="rc"),jQuery(window).width()<=1200&&"div.um-profile-edit"===t&&(a="rtl"===jQuery("html").attr("dir")?"rc":"lc"),jQuery(t).find("img").width()<200?left_p=(jQuery(t).width()-jQuery(t).find("img").width())/2+(jQuery(t).find("img").width()-200)/2:left_p=(jQuery(t).width()-jQuery(t).find("img").width())/2,top_=parseInt(jQuery(t).find("a").css("top")),top_?top_p=jQuery(t).find("img").height()+4+top_:top_p=jQuery(t).find("img").height()+4,4==top_p&&"div.um-cover"===t?top_p=jQuery(t).height()/2+e.height()/2:4==top_p&&(top_p=jQuery(t).height()+20),"lc"===a)gap_right=jQuery(t).width()+17,e.css({top:0,width:200,left:"auto",right:gap_right+"px","text-align":"center"}),e.find(".um-dropdown-arr").find("i").removeClass().addClass("um-icon-arrow-right-b"),e.find(".um-dropdown-arr").css({top:"4px",left:"auto",right:"-17px"});else if("rc"===a)gap_right=jQuery(t).width()+25,e.css({top:0,width:200,left:gap_right+"px",right:"auto","text-align":"center"}),e.find(".um-dropdown-arr").find("i").removeClass().addClass("um-icon-arrow-left-b"),e.find(".um-dropdown-arr").css({top:"4px",left:"-17px",right:"auto"});else if("bc"===a){var o=0,i=e.data("top-offset");void 0!==i&&(o=1*i),e.css({top:top_p+o,width:200,left:left_p,right:"auto","text-align":"center"}),e.find(".um-dropdown-arr").find("i").removeClass().addClass("um-icon-arrow-up-b"),e.find(".um-dropdown-arr").css({top:"-17px",left:e.width()/2-12,right:"auto"})}})}function um_responsive(){jQuery(".um").each(function(){element_width=jQuery(this).width(),element_width<=340?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob340")):element_width<=500?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob500")):element_width<=800?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob800")):element_width<=960?(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960"),jQuery(this).addClass("uimob960")):960<element_width&&(jQuery(this).removeClass("uimob340"),jQuery(this).removeClass("uimob500"),jQuery(this).removeClass("uimob800"),jQuery(this).removeClass("uimob960")),0<jQuery(".um-account-nav").length&&jQuery(".um-account-side").is(":visible")&&0==jQuery(".um-account-tab:visible").length&&jQuery(".um-account-side li a.current").trigger("click"),jQuery(this).css("opacity",1)}),jQuery(".um-cover, .um-member-cover, .um-cover-e").each(function(){var e=jQuery(this),t=e.data("ratio"),a=e.width(),o=t.split(":");calcHeight=Math.round(a/o[0])+"px",e.height(calcHeight),e.find(".um-cover-add").height(calcHeight)}),UM_domenus()}function initImageUpload_UM(r){r.data("upload_help_text")?upload_help_text='<span class="help">'+r.data("upload_help_text")+"</span>":upload_help_text="",r.data("icon")?icon='<span class="icon"><i class="'+r.data("icon")+'"></i></span>':icon="",r.data("upload_text")?upload_text='<span class="str">'+r.data("upload_text")+"</span>":upload_text="";var e=0;jQuery("#um_upload_single:visible").data("user_id")&&(e=jQuery("#um_upload_single:visible").data("user_id")),r.uploadFile({url:wp.ajax.settings.url,method:"POST",multiple:!1,formData:{action:"um_imageupload",key:r.data("key"),set_id:r.data("set_id"),set_mode:r.data("set_mode"),_wpnonce:r.data("nonce"),timestamp:r.data("timestamp"),user_id:e},fileName:r.data("key"),allowedTypes:r.data("allowed_types"),maxFileSize:r.data("max_size"),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:r.data("max_size_error"),extErrorStr:r.data("extension_error"),maxFileCountErrorStr:r.data("max_files_error"),maxFileCount:1,showDelete:!1,showAbort:!1,showDone:!1,showFileCounter:!1,showStatusAfterSuccess:!0,returnType:"json",onSubmit:function(e){r.parents(".um-modal-body").find(".um-error-block").remove()},onSuccess:function(e,t,a){r.selectedFiles=0,t.success&&0==t.success||void 0!==t.data.error?(r.parents(".um-modal-body").append('<div class="um-error-block">'+t.data.error+"</div>"),r.parents(".um-modal-body").find(".upload-statusbar").hide(0),um_modal_responsive()):jQuery.each(t.data,function(e,t){var a=r.parents(".um-modal-body").find(".um-single-image-preview img"),o=r.parents(".um-modal-body").find(".um-single-image-preview"),i=new Date;a.attr("src",t.url+"?"+i.getTime()),a.data("file",t.file),a.on("load",function(){r.parents(".um-modal-body").find(".um-modal-btn.um-finish-upload.disabled").removeClass("disabled"),r.parents(".um-modal-body").find(".ajax-upload-dragdrop,.upload-statusbar").hide(0),o.show(0),um_modal_responsive()})})},onError:function(e){console.log(e)}})}function initFileUpload_UM(o){o.data("upload_help_text")?upload_help_text='<span class="help">'+o.data("upload_help_text")+"</span>":upload_help_text="",o.data("icon")?icon='<span class="icon"><i class="'+o.data("icon")+'"></i></span>':icon="",o.data("upload_text")?upload_text='<span class="str">'+o.data("upload_text")+"</span>":upload_text="",jQuery("#um_upload_single:visible").data("user_id")&&(user_id=jQuery("#um_upload_single:visible").data("user_id")),o.uploadFile({url:wp.ajax.settings.url,method:"POST",multiple:!1,formData:{action:"um_fileupload",key:o.data("key"),set_id:o.data("set_id"),user_id:o.data("user_id"),set_mode:o.data("set_mode"),_wpnonce:o.data("nonce"),timestamp:o.data("timestamp")},fileName:o.data("key"),allowedTypes:o.data("allowed_types"),maxFileSize:o.data("max_size"),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:o.data("max_size_error"),extErrorStr:o.data("extension_error"),maxFileCountErrorStr:o.data("max_files_error"),maxFileCount:1,showDelete:!1,showAbort:!1,showDone:!1,showFileCounter:!1,showStatusAfterSuccess:!0,onSubmit:function(e){o.parents(".um-modal-body").find(".um-error-block").remove()},onSuccess:function(e,t,a){o.selectedFiles=0,t.success&&0==t.success||void 0!==t.data.error?(o.parents(".um-modal-body").append('<div class="um-error-block">'+t.data.error+"</div>"),o.parents(".um-modal-body").find(".upload-statusbar").hide(0)):jQuery.each(t.data,function(e,t){o.parents(".um-modal-body").find(".um-modal-btn.um-finish-upload.disabled").removeClass("disabled"),o.parents(".um-modal-body").find(".ajax-upload-dragdrop,.upload-statusbar").hide(0),o.parents(".um-modal-body").find(".um-single-file-preview").show(0),"icon"==e?o.parents(".um-modal-body").find(".um-single-fileinfo i").removeClass().addClass(t):"icon_bg"==e?o.parents(".um-modal-body").find(".um-single-fileinfo span.icon").css({"background-color":t}):"filename"==e?o.parents(".um-modal-body").find(".um-single-fileinfo a").attr("data-file",t):"original_name"==e?(o.parents(".um-modal-body").find(".um-single-fileinfo a").attr("data-orignal-name",t),o.parents(".um-modal-body").find(".um-single-fileinfo span.filename").html(t)):"url"==e&&o.parents(".um-modal-body").find(".um-single-fileinfo a").attr("href",t)}),setTimeout(function(){um_modal_responsive()},1e3)},onError:function(e){console.log(e)}})}function initCrop_UM(){var t=jQuery(".um-modal .um-single-image-preview img").first(),e=jQuery(".um-modal .um-single-image-preview"),a=t.parent().attr("data-crop"),o=t.parent().attr("data-min_width"),i=t.parent().attr("data-min_height"),r=t.parent().attr("data-ratio");if(jQuery(".um-modal").find("#um_upload_single").attr("data-ratio"))r=(r=jQuery(".um-modal").find("#um_upload_single").attr("data-ratio")).split(":")[0];if(t.length&&""!=t.attr("src")){var d=jQuery(window).height()-(jQuery(".um-modal-footer a").height()+20)-50-jQuery(".um-modal-header:visible").height();if(t.css({height:"auto"}),e.css({height:"auto"}),jQuery(window).height()<=400?(e.css({height:d+"px","max-height":d+"px"}),t.css({height:"auto"})):(t.css({height:"auto","max-height":d+"px"}),e.css({height:t.height(),"max-height":d+"px"})),"square"==a)var u={minWidth:o,minHeight:i,dragCrop:!1,aspectRatio:1,zoomable:!1,rotatable:!1,dashed:!1,done:function(e){t.parent().attr("data-coord",Math.round(e.x)+","+Math.round(e.y)+","+Math.round(e.width)+","+Math.round(e.height))}};else if("cover"==a){0<Math.round(o/r)&&(i=Math.round(o/r));u={minWidth:o,minHeight:i,dragCrop:!1,aspectRatio:r,zoomable:!1,rotatable:!1,dashed:!1,done:function(e){t.parent().attr("data-coord",Math.round(e.x)+","+Math.round(e.y)+","+Math.round(e.width)+","+Math.round(e.height))}}}else if("user"==a)u={minWidth:o,minHeight:i,dragCrop:!0,aspectRatio:"auto",zoomable:!1,rotatable:!1,dashed:!1,done:function(e){t.parent().attr("data-coord",Math.round(e.x)+","+Math.round(e.y)+","+Math.round(e.width)+","+Math.round(e.height))}};0!=a&&(t.cropper(u),jQuery(".um-single-image-preview img.cropper-hidden").cropper("destroy"),jQuery(".um-single-image-preview img.lazyloaded").addClass("cropper-hidden"),jQuery(".um-single-image-preview img.lazyloaded").removeClass("lazyloaded"),jQuery(".um-single-image-preview .cropper-container").append('<div class="um-clear"></div>'))}}function um_new_modal(e,t,a,o){if(0==jQuery("body").find(".um-modal-overlay").length)if(jQuery(".tipsy").hide(),UM_hide_menus(),jQuery("body,html,textarea").css("overflow","hidden"),jQuery(document).bind("touchmove",function(e){e.preventDefault()}),jQuery(".um-modal").on("touchmove",function(e){e.stopPropagation()}),a?jQuery("body").append('<div class="um-modal-overlay"></div><div class="um-modal is-photo"></div>'):jQuery("body").append('<div class="um-modal-overlay"></div><div class="um-modal no-photo"></div>'),jQuery("#"+e).prependTo(".um-modal"),a){jQuery(".um-modal").find(".um-modal-photo").html("<img />");var i=jQuery(".um-modal-photo img"),r=jQuery(window).width()-60,d=jQuery(window).height()-.25*jQuery(window).height();i.attr("src",o),i.on("load",function(){jQuery("#"+e).show(),jQuery(".um-modal").show(),i.css({opacity:0}),i.css({"max-width":r}),i.css({"max-height":d}),jQuery(".um-modal").css({width:i.width(),"margin-left":"-"+i.width()/2+"px"}),i.animate({opacity:1},1e3),um_modal_responsive()})}else jQuery("#"+e).show(),jQuery(".um-modal").show(),um_modal_size(t),initImageUpload_UM(jQuery(".um-modal:visible").find(".um-single-image-upload")),initFileUpload_UM(jQuery(".um-modal:visible").find(".um-single-file-upload")),um_modal_responsive()}function um_modal_responsive(){var e=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,t=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,a=jQuery(".um-modal:visible");if(jQuery(".um-modal-body.photo:visible").length){a.removeClass("uimob340"),a.removeClass("uimob500");var o=jQuery(".um-modal-photo img"),i=e-60,r=t-.25*t;o.css({opacity:0}),o.css({"max-width":i}),o.css({"max-height":r}),jQuery(".um-modal").css({width:o.width(),"margin-left":"-"+o.width()/2+"px"}),o.animate({opacity:1},1e3);var d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}else if(a.length)if(a.removeClass("uimob340"),a.removeClass("uimob500"),e<=340)a.addClass("uimob340"),initCrop_UM(),a.animate({bottom:0},300);else if(e<=500)a.addClass("uimob500"),initCrop_UM(),a.animate({bottom:0},300);else if(e<=800){initCrop_UM();d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}else if(e<=960){initCrop_UM();d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}else if(960<e){initCrop_UM();d=(t-a.innerHeight())/2+"px";a.animate({bottom:d},300)}}function um_remove_modal(){jQuery("img.cropper-hidden").cropper("destroy"),jQuery("body,html,textarea").css("overflow","auto"),jQuery(document).unbind("touchmove"),jQuery('.um-modal div[id^="um_"]').hide().appendTo("body"),jQuery(".um-modal,.um-modal-overlay").remove()}function um_modal_size(e){jQuery(".um-modal:visible").addClass(e)}function um_modal_add_attr(e,t){jQuery(".um-modal:visible").data(e,t)}function prepare_Modal(){0==jQuery(".um-popup-overlay").length&&(jQuery("body").append('<div class="um-popup-overlay"></div>'),jQuery("body").append('<div class="um-popup"></div>'),jQuery(".um-popup").addClass("loading"),jQuery("body,html").css({overflow:"hidden"}))}function remove_Modal(){jQuery(".um-popup-overlay").length&&(wp.hooks.doAction("um_before_modal_removed",jQuery(".um-popup")),jQuery(".tipsy").remove(),jQuery(".um-popup").empty().remove(),jQuery(".um-popup-overlay").empty().remove(),jQuery("body,html").css({overflow:"auto"}))}function show_Modal(e){jQuery(".um-popup-overlay").length&&(jQuery(".um-popup").removeClass("loading").html(e),jQuery(".um-tip-n").tipsy({gravity:"n",opacity:1,offset:3}),jQuery(".um-tip-w").tipsy({gravity:"w",opacity:1,offset:3}),jQuery(".um-tip-e").tipsy({gravity:"e",opacity:1,offset:3}),jQuery(".um-tip-s").tipsy({gravity:"s",opacity:1,offset:3}))}function responsive_Modal(){jQuery(".um-popup-overlay").length&&(ag_height=jQuery(window).height()-jQuery(".um-popup .um-popup-header").outerHeight()-jQuery(".um-popup .um-popup-footer").outerHeight()-80,350<ag_height&&(ag_height=350),jQuery(".um-popup-autogrow:visible").length?jQuery(".um-popup-autogrow:visible").css({height:ag_height+"px"}):jQuery(".um-popup-autogrow2:visible").length&&jQuery(".um-popup-autogrow2:visible").css({"max-height":ag_height+"px"}))}function um_reset_field(e){jQuery(e).find("div.um-field-area").find("input,textarea,select").not(":button, :submit, :reset, :hidden").val("").removeAttr("checked").removeAttr("selected")}function um_selected(e,t){if(e==t)return"selected='selected'"}jQuery(function(){jQuery(".um-search form *").keypress(function(e){if(13==e.which)return jQuery(".um-search form").submit(),!1}),2==jQuery("input[data-key=user_password],input[data-key=confirm_user_password]").length&&UM_check_password_matched()});
assets/js/um-members.js CHANGED
@@ -693,6 +693,8 @@ jQuery(document.body).ready( function() {
693
  directory.data( 'view_type', layout );
694
 
695
  um_build_template( directory, data );
 
 
696
  }
697
  um_members_hide_preloader( directory );
698
  });
693
  directory.data( 'view_type', layout );
694
 
695
  um_build_template( directory, data );
696
+
697
+ um_init_new_dropdown();
698
  }
699
  um_members_hide_preloader( directory );
700
  });
assets/js/um-members.min.js CHANGED
@@ -1 +1 @@
1
- var um_members_directory_busy=[],um_member_directories=[],um_member_directory_last_data=[];function um_parse_current_url(){var t={},a=window.location.search.substring(1).split("&");return jQuery.each(a,function(e){var r=a[e].split("=");t[r[0]]=r[1]}),t}function um_get_data_for_directory(e,r){var t=um_members_get_hash(e),a={},i=um_parse_current_url();if(jQuery.each(i,function(e){-1!==e.indexOf("_"+t)&&""!==i[e]&&(a[e.replace("_"+t,"")]=i[e])}),r){if(void 0!==a[r])try{a[r]=decodeURIComponent(a[r])}catch(e){console.error(e)}return a[r]}return a}function um_set_url_from_data(e,r,t){var a=um_members_get_hash(e),i=um_get_data_for_directory(e),m={};jQuery.isArray(t)?(jQuery.each(t,function(e){t[e]=encodeURIComponent(t[e])}),t=t.join("||")):jQuery.isNumeric(t)||(t=t.split("||"),jQuery.each(t,function(e){t[e]=encodeURIComponent(t[e])}),t=t.join("||")),""!==t&&(m[r+"_"+a]=t),jQuery.each(i,function(e){r===e?""!==t&&(m[e+"_"+a]=t):m[e+"_"+a]=i[e]}),jQuery.each(um_member_directories,function(e){var r=um_member_directories[e];if(r!==a){var t=um_get_data_for_directory(jQuery('.um-directory[data-hash="'+r+'"]'));jQuery.each(t,function(e){m[e+"_"+r]=t[e]})}});var d=[];jQuery.each(m,function(e){d.push(e+"="+m[e])});var s="?"+(d=wp.hooks.applyFilters("um_member_directory_url_attrs",d)).join("&");"?"===s&&(s=""),window.history.pushState("string","UM Member Directory",window.location.origin+window.location.pathname+s)}function um_members_get_hash(e){return e.data("hash")}function um_is_directory_busy(e){var r=um_members_get_hash(e);return void 0!==um_members_directory_busy[r]&&um_members_directory_busy[r]}function um_members_show_preloader(e){um_members_directory_busy[um_members_get_hash(e)]=!0,e.find(".um-members-overlay").show()}function um_members_hide_preloader(e){um_members_directory_busy[um_members_get_hash(e)]=!1,e.find(".um-members-overlay").hide()}function um_set_range_label(e,r){var t="",a=e.siblings(".um-slider-range").data("placeholder-s"),i=e.siblings(".um-slider-range").data("placeholder-p");t=r?r.values[0]===r.values[1]?a.replace("{value}",r.values[0]).replace("{field_label}",e.siblings(".um-slider-range").data("label")):i.replace("{min_range}",r.values[0]).replace("{max_range}",r.values[1]).replace("{field_label}",e.siblings(".um-slider-range").data("label")):e.slider("values",0)===e.slider("values",1)?a.replace("{value}",e.slider("values",0)).replace("{field_label}",e.siblings(".um-slider-range").data("label")):i.replace("{min_range}",e.slider("values",0)).replace("{max_range}",e.slider("values",1)).replace("{field_label}",e.siblings(".um-slider-range").data("label")),e.siblings(".um-slider-range").html(t),e.siblings(".um_range_min").val(e.slider("values",0)),e.siblings(".um_range_max").val(e.slider("values",1))}function um_get_search(e){return e.find(".um-search-line").length?e.find(".um-search-line").val():""}function um_get_sort(e){return e.data("sorting")}function um_get_current_page(e){var r=e.data("page");return r&&void 0!==r||(r=1),r}function um_time_convert(e,r){var t=Math.floor(e/60),a=e%60;return 60<=a&&(a=0,24<=(t+=1)&&(t=0)),a<10&&(a="0"+a),t+":"+a}function um_ajax_get_members(u,e){var t=um_members_get_hash(u),r=um_get_current_page(u),a=um_get_search(u),i=um_get_sort(u),m=-(new Date).getTimezoneOffset()/60,_={directory_id:t,page:r,search:a,sorting:i,gmt_offset:m,post_refferer:u.data("base-post"),nonce:um_scripts.nonce};u.find(".um-search-filter").length&&u.find(".um-search-filter").each(function(){var e=jQuery(this);if(e.find(".um-slider").length){var r=e.find(".um-slider").data("field_name"),t=um_get_data_for_directory(u,"filter_"+r+"_from"),a=um_get_data_for_directory(u,"filter_"+r+"_to");void 0===t&&void 0===a||(_[r]=[t,a])}else if(e.find(".um-datepicker-filter").length){r=e.find(".um-datepicker-filter").data("filter_name"),t=um_get_data_for_directory(u,"filter_"+r+"_from"),a=um_get_data_for_directory(u,"filter_"+r+"_to");void 0===t&&void 0===a||(_[r]=[t,a])}else if(e.find(".um-timepicker-filter").length){r=e.find(".um-timepicker-filter").data("filter_name"),t=um_get_data_for_directory(u,"filter_"+r+"_from"),a=um_get_data_for_directory(u,"filter_"+r+"_to");if(void 0!==t)(i=1*(t=t.split(":"))[0])<10&&(i="0"+i),(d=1*t[1])<10&&(d="0"+d),t=i+":"+d+":00";if(void 0!==a){var i,m=a.split(":"),d=1*m[1];(i=1*m[0])<10&&(i="0"+i),d<10&&(d="0"+d),a=i+":"+d+":59"}void 0===t&&void 0===a||(_[r]=[t,a])}else if(e.find("select").length){r=e.find("select").attr("name");void 0!==(s=um_get_data_for_directory(u,"filter_"+r))&&(_[r]=s.split("||"))}else if(e.hasClass("um-text-filter-type")&&e.find('input[type="text"]').length){var s;r=e.find('input[type="text"]').attr("name");void 0!==(s=um_get_data_for_directory(u,"filter_"+r))&&(_[r]=s)}else _=wp.hooks.applyFilters("um_member_directory_custom_filter_handler",_,e,u)}),_=wp.hooks.applyFilters("um_member_directory_filter_request",_),wp.ajax.send("um_get_members",{data:_,success:function(e){um_member_directory_last_data[t]=e,um_build_template(u,e);var r=wp.template("um-members-pagination");u.find(".um-members-pagination-box").html(r(e)),u.data("total_pages",e.pagination.total_pages),e.pagination.total_pages?(u.find(".um-member-directory-sorting-options").prop("disabled",!1),u.find(".um-member-directory-view-type").removeClass("um-disabled")):(u.find(".um-member-directory-sorting-options").prop("disabled",!0),u.find(".um-member-directory-view-type").addClass("um-disabled")),wp.hooks.doAction("um_member_directory_loaded",u,e),um_init_new_dropdown(),um_members_hide_preloader(u)},error:function(e){console.log(e),um_members_hide_preloader(u)}})}function um_build_template(e,r){var t=e.data("view_type"),a=wp.template("um-member-"+t+"-"+um_members_get_hash(e));e.find(".um-members-grid, .um-members-list").remove(),e.find(".um-members-wrapper").prepend(a(r.users));var i=wp.template("um-members-header");e.find(".um-members-intro").remove();var m=wp.hooks.applyFilters("um_member_directory_generate_header",!1,e);(void 0!==r.is_search&&r.is_search||m)&&e.find(".um-members-wrapper").prepend(i(r)),e.addClass("um-loaded"),e.find(".um-members.um-members-grid").length&&UM_Member_Grid(e.find(".um-members.um-members-grid")),jQuery(document).trigger("um_build_template",[e,r]),jQuery(window).trigger("resize"),init_tipsy()}function UM_Member_Grid(e){e.find(".um-member").length&&e.imagesLoaded(function(){e.masonry({itemSelector:".um-member",columnWidth:".um-member",gutter:".um-gutter-sizer"}).on("layoutComplete",function(e,r){jQuery(document).trigger("um_grid_initialized",[e,r])})})}function um_get_filters_data(u){var _=[];return u.find(".um-search-filter").each(function(){var t,a,d,i=jQuery(this);if(i.find("input.um-datepicker-filter").length)d="datepicker",i.find("input.um-datepicker-filter").each(function(){if("to"!==jQuery(this).data("range")){var e=jQuery(this).data("filter_name"),r=um_get_data_for_directory(u,"filter_"+e+"_from"),t=um_get_data_for_directory(u,"filter_"+e+"_to");if(void 0!==r||void 0!==t){var a,i=jQuery(this).val(),m=u.find('input.um-datepicker-filter[data-range="to"][data-filter_name="'+e+'"]').val();i===m?a=m:""!==i&&""!==m?a=i+" - "+m:""===i?a="before "+m:""===m&&(a="since "+i),_.push({name:e,label:jQuery(this).data("filter-label"),value_label:a,value:[r,t],type:d})}}});else if(i.find("input.um-timepicker-filter").length)d="timepicker",i.find("input.um-timepicker-filter").each(function(){if("to"!==jQuery(this).data("range")){var e=jQuery(this).data("filter_name"),r=um_get_data_for_directory(u,"filter_"+e+"_from"),t=um_get_data_for_directory(u,"filter_"+e+"_to");if(void 0!==r||void 0!==t){var a,i=jQuery(this).val(),m=u.find('input.um-timepicker-filter[data-range="to"][data-filter_name="'+e+'"]').val();i===m?a=m:""!==i&&""!==m?a=i+" - "+m:""===i?a="before "+m:""===m&&(a="since "+i),_.push({name:e,label:jQuery(this).data("filter-label"),value_label:a,value:[r,t],type:d})}}});else if(i.find("select").length){d="select",t=i.find("select").attr("name"),a=i.find("select").data("placeholder"),m=void 0===(m=um_get_data_for_directory(u,"filter_"+t))?[]:m.split("||"),jQuery.each(m,function(e){var r=i.find('select option[value="'+m[e]+'"]').data("value_label");_.push({name:t,label:a,value_label:r,value:m[e],type:d})})}else if(i.hasClass("um-text-filter-type")&&i.find('input[type="text"]').length){var m;d="text",t=i.find('input[type="text"]').attr("name"),a=i.find('input[type="text"]').attr("placeholder"),void 0===(m=um_get_data_for_directory(u,"filter_"+t))&&(m=""),""!=m&&_.push({name:t,label:a,value_label:m,value:m,type:d})}else if(i.find("div.ui-slider").length){d="slider",t=i.find("div.ui-slider").data("field_name");var e,r=um_get_data_for_directory(u,"filter_"+t+"_from"),s=um_get_data_for_directory(u,"filter_"+t+"_to");if(void 0===r&&void 0===s)return;e=r===s?i.find("div.um-slider-range").data("placeholder-s").replace("{value}",r).replace("{field_label}",i.find("div.um-slider-range").data("label")):i.find("div.um-slider-range").data("placeholder-p").replace("{min_range}",r).replace("{max_range}",s).replace("{field_label}",i.find("div.um-slider-range").data("label")),a=i.find("div.um-slider-range").data("label"),_.push({name:t,label:a,value_label:e,value:[r,s],type:d})}else _=wp.hooks.applyFilters("um_member_directory_get_filter_data",_,u,i)}),_}function um_change_tag(e){var r=um_get_filters_data(e);e.find(".um-members-filter-tag").remove();var t=e.find(".um-filtered-line");if(t.length){var a=wp.template("um-members-filtered-line");t.prepend(a({filters:r})),0===e.find(".um-members-filter-remove").length?(e.find(".um-clear-filters").hide(),e.find(".um-clear-filters").parents(".um-member-directory-header-row").addClass("um-header-row-invisible")):(e.find(".um-clear-filters").show(),e.find(".um-clear-filters").parents(".um-member-directory-header-row").removeClass("um-header-row-invisible"))}}function um_run_search(e){if(!um_is_directory_busy(e)){um_members_show_preloader(e);var r=um_get_data_for_directory(e,"search"),t=e.find(".um-search-line").val();if(t===r||""===t&&void 0===r)um_members_hide_preloader(e);else{e.data("general_search",t),um_set_url_from_data(e,"search",t),e.data("page",1),um_set_url_from_data(e,"page","");var a=!1;if(!(a=wp.hooks.applyFilters("um_member_directory_ignore_after_search",a,e)))if(1===e.data("must-search")&&(t=um_get_search(e),0===e.find(".um-members-filter-remove").length&&!t))return e.data("searched",0),e.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),e.find(".um-member-directory-sorting-options").prop("disabled",!0),e.find(".um-member-directory-view-type").addClass("um-disabled"),wp.hooks.doAction("um_member_directory_clear_not_searched",e),void um_members_hide_preloader(e);e.data("searched",1),e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled"),um_ajax_get_members(e)}}}jQuery(document.body).ready(function(){jQuery(".um-directory .um-search-filter select").each(function(){1===jQuery(this).find("option:not(:disabled)").length&&jQuery(this).prop("disabled",!0),jQuery(this).select2("destroy").select2()}),jQuery(document.body).on("mouseover",".um-directory .um-member-directory-view-type",function(){if(!jQuery(this).hasClass("um-disabled")){var e=jQuery(this).find(".um-member-directory-view-type-a:visible");e.hide(),e.next().length?e.next().show().tipsy("show"):jQuery(this).find(".um-member-directory-view-type-a:first").show().tipsy("show")}}).on("mouseout",".um-directory .um-member-directory-view-type",function(){jQuery(this).hasClass("um-disabled")||(jQuery(this).find(".um-member-directory-view-type-a").hide().tipsy("hide"),jQuery(this).find('.um-member-directory-view-type-a[data-type="'+jQuery(this).parents(".um-directory").data("view_type")+'"]').show())}),jQuery(document.body).on("click",".um-directory .um-member-directory-view-type-a",function(){var e=jQuery(this).parents(".um-directory");if(um_is_directory_busy(e))return!1;var r=jQuery(this),t=r.parents(".um-member-directory-view-type");if(!t.hasClass("um-disabled")){um_members_show_preloader(e);var a=t.find(".um-member-directory-view-type-a:visible");a.hide(),a.next().length?a.next().show().tipsy("show"):t.find(".um-member-directory-view-type-a:first").show().tipsy("show");var i=um_member_directory_last_data[um_members_get_hash(e)];if(null!==i){var m=r.data("type");um_set_url_from_data(e,"view_type",m),e.data("view_type",m),um_build_template(e,i)}um_members_hide_preloader(e)}}),jQuery(document.body).on("click",".um-directory .um-do-search",function(){um_run_search(jQuery(this).parents(".um-directory"))}),jQuery(document.body).on("keypress",".um-directory .um-search-line",function(e){13===e.which&&um_run_search(jQuery(this).parents(".um-directory"))}),jQuery(document.body).on("click",".um-directory .um-member-directory-sorting-a .um-new-dropdown li a",function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)&&1!==jQuery(this).data("selected")){um_members_show_preloader(e);var r=jQuery(this).data("value");e.data("sorting",r),um_set_url_from_data(e,"sort",r),um_ajax_get_members(e),jQuery(this).parents(".um-new-dropdown").find("a").data("selected",0).prop("data-selected",0).attr("data-selected",0),jQuery(this).data("selected",1).prop("data-selected",1).attr("data-selected",1),jQuery(this).parents(".um-member-directory-sorting-a").find("> a").html(jQuery(this).html())}}),jQuery(document.body).on("click",".um-directory .pagi:not(.current)",function(){if(!jQuery(this).hasClass("disabled")){var e,r=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(r))um_members_show_preloader(r),1===(e="first"===jQuery(this).data("page")?1:"prev"===jQuery(this).data("page")?1*r.data("page")-1:"next"===jQuery(this).data("page")?1*r.data("page")+1:"last"===jQuery(this).data("page")?parseInt(r.data("total_pages")):parseInt(jQuery(this).data("page")))?(r.find('.pagi[data-page="first"], .pagi[data-page="prev"]').addClass("disabled"),r.find('.pagi[data-page="prev"], .pagi[data-page="last"]').removeClass("disabled")):(e===parseInt(r.data("total_pages"))?r.find('.pagi[data-page="prev"], .pagi[data-page="last"]').addClass("disabled"):r.find('.pagi[data-page="prev"], .pagi[data-page="last"]').removeClass("disabled"),r.find('.pagi[data-page="first"], .pagi[data-page="prev"]').removeClass("disabled")),r.find(".pagi").removeClass("current"),r.find('.pagi[data-page="'+e+'"]').addClass("current"),r.data("page",e),um_set_url_from_data(r,"page",1===e?"":e),um_ajax_get_members(r)}}),jQuery(document.body).on("change",".um-directory .um-members-pagi-dropdown",function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)){um_members_show_preloader(e);var r=jQuery(this).val();e.find(".pagi").removeClass("current"),e.find('.pagi[data-page="'+r+'"]').addClass("current"),e.data("page",r),um_set_url_from_data(e,"page",1===r?"":r),um_ajax_get_members(e)}}),jQuery(document.body).on("click",".um-directory .um-members.um-members-list .um-member-more a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member");return r.find(".um-member-more").hide(),r.find(".um-member-meta-main").slideDown(),r.find(".um-member-less").fadeIn(),!1}),jQuery(document.body).on("click",".um-directory .um-members.um-members-list .um-member-less a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member");return r.find(".um-member-less").hide(),r.find(".um-member-meta-main").slideUp(),r.find(".um-member-more").fadeIn(),!1}),jQuery(document.body).on("click",".um-directory .um-members.um-members-grid .um-member-more a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member"),t=jQuery(this).parents(".um-members");return r.find(".um-member-more").hide(),r.find(".um-member-meta").slideDown(function(){UM_Member_Grid(t)}),r.find(".um-member-less").fadeIn(),setTimeout(function(){UM_Member_Grid(t)},100),!1}),jQuery(document.body).on("click",".um-directory .um-members.um-members-grid .um-member-less a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member"),t=jQuery(this).parents(".um-members");return r.find(".um-member-less").hide(),r.find(".um-member-meta").slideUp(function(){r.find(".um-member-more").fadeIn(),UM_Member_Grid(t)}),!1}),jQuery(".um-member-directory-filters-a").click(function(){var e=jQuery(this),r=e.parents(".um-directory").find(".um-search");r.is(":visible")?r.slideUp(250,function(){e.toggleClass("um-member-directory-filters-visible"),r.parents(".um-member-directory-header-row").toggleClass("um-header-row-invisible")}):r.slideDown({duration:250,start:function(){jQuery(this).css({display:"grid"}),e.toggleClass("um-member-directory-filters-visible"),r.parents(".um-member-directory-header-row").toggleClass("um-header-row-invisible")}})}),jQuery(document.body).on("change",".um-directory .um-search-filter select",function(){if(""!==jQuery(this).val()){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)){um_members_show_preloader(e);var r=jQuery(this).prop("name"),t=um_get_data_for_directory(e,"filter_"+r);t=void 0===t?[]:t.split("||"),-1===jQuery.inArray(jQuery(this).val(),t)&&(t.push(jQuery(this).val()),um_set_url_from_data(e,"filter_"+r,t=t.join("||")),e.data("page",1),um_set_url_from_data(e,"page","")),jQuery(this).find('option[value="'+jQuery(this).val()+'"]').prop("disabled",!0).hide(),1===jQuery(this).find("option:not(:disabled)").length&&jQuery(this).prop("disabled",!0),jQuery(this).select2("destroy").select2(),jQuery(this).val("").trigger("change"),um_ajax_get_members(e),um_change_tag(e),e.data("searched",1),e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled")}}}),jQuery(document.body).on("blur",'.um-directory .um-search-filter.um-text-filter-type input[type="text"]',function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)){var r=jQuery(this).val(),t=jQuery(this).prop("name"),a=um_get_data_for_directory(e,"filter_"+t);void 0===a&&(a=""),r!==a&&(um_members_show_preloader(e),um_set_url_from_data(e,"filter_"+t,r),e.data("page",1),um_set_url_from_data(e,"page",""),um_ajax_get_members(e),um_change_tag(e),e.data("searched",1),e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled"))}}),jQuery(document.body).on("keypress",'.um-directory .um-search-filter.um-text-filter-type input[type="text"]',function(e){if(13===e.which){var r=jQuery(this).parents(".um-directory");if(um_is_directory_busy(r))return;var t=jQuery(this).val(),a=jQuery(this).prop("name"),i=um_get_data_for_directory(r,"filter_"+a);if(void 0===i&&(i=""),t===i)return;um_members_show_preloader(r),um_set_url_from_data(r,"filter_"+a,t),r.data("page",1),um_set_url_from_data(r,"page",""),um_ajax_get_members(r),um_change_tag(r),r.data("searched",1),r.find(".um-member-directory-sorting-options").prop("disabled",!1),r.find(".um-member-directory-view-type").removeClass("um-disabled")}}),jQuery(document.body).on("click",".um-directory .um-members-filter-remove",function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)&&e){um_members_show_preloader(e);var r=jQuery(this).data("value"),t=jQuery(this).data("name"),a=jQuery(this).data("type");if("text"===a)um_set_url_from_data(e,"filter_"+t,""),jQuery('.um-search-filter input[name="'+t+'"]').val("");else if("select"===a){var i=um_get_data_for_directory(e,"filter_"+t);i=void 0===i?[]:i.split("||"),-1!==jQuery.inArray(r.toString(),i)&&(i=jQuery.grep(i,function(e){return e!==r.toString()})),i.length||(i=""),um_set_url_from_data(e,"filter_"+t,i);var m=jQuery('.um-search-filter select[name="'+t+'"]');m.find('option[value="'+r+'"]').prop("disabled",!1).show(),1<m.find("option:not(:disabled)").length&&m.prop("disabled",!1),m.select2("destroy").select2(),0<e.find('.um-search-filter select[data-um-parent="'+t+'"]').length&&m.trigger("change")}else if("slider"===a){um_set_url_from_data(e,"filter_"+t+"_from",""),um_set_url_from_data(e,"filter_"+t+"_to","");var d=jQuery(".um-search-filter #"+t+"_min").siblings(".um-slider"),s=d.slider("option");d.slider("values",[s.min,s.max]),jQuery(".um-search-filter #"+t+"_min").val(""),jQuery(".um-search-filter #"+t+"_max").val(""),um_set_range_label(d)}else"datepicker"===a?(um_set_url_from_data(e,"filter_"+t+"_from",""),um_set_url_from_data(e,"filter_"+t+"_to",""),jQuery(".um-search-filter #"+t+"_from").val(""),jQuery(".um-search-filter #"+t+"_to").val("")):"timepicker"===a?(um_set_url_from_data(e,"filter_"+t+"_from",""),um_set_url_from_data(e,"filter_"+t+"_to",""),jQuery(".um-search-filter #"+t+"_from").val(""),jQuery(".um-search-filter #"+t+"_to").val("")):wp.hooks.doAction("um_member_directory_filter_remove",a,e,t,r);e.data("page",1),um_set_url_from_data(e,"page",""),jQuery(this).tipsy("hide"),jQuery(this).parents(".um-members-filter-tag").remove(),0===e.find(".um-members-filter-remove").length?e.find(".um-clear-filters").hide():e.find(".um-clear-filters").show();var u=!1;if(!(u=wp.hooks.applyFilters("um_member_directory_ignore_after_search",u,e)))if(1===e.data("must-search")){var _=um_get_search(e);if(0===e.find(".um-members-filter-remove").length&&!_)return e.data("searched",0),e.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),e.find(".um-member-directory-sorting-options").prop("disabled",!0),e.find(".um-member-directory-view-type").addClass("um-disabled"),wp.hooks.doAction("um_member_directory_clear_not_searched",e),void um_members_hide_preloader(e)}e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled"),um_ajax_get_members(e)}}),jQuery(document.body).on("click",".um-directory .um-clear-filters-a",function(){var s=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(s)){um_members_show_preloader(s),s.find(".um-members-filter-remove").each(function(){var r=jQuery(this).data("value"),e=jQuery(this).data("name"),t=jQuery(this).data("type");if("text"===t)um_set_url_from_data(s,"filter_"+e,""),jQuery('.um-search-filter input[name="'+e+'"]').val("");else if("select"===t){var a=um_get_data_for_directory(s,"filter_"+e);a=void 0===a?[]:a.split("||"),-1!==jQuery.inArray(r.toString(),a)&&(a=jQuery.grep(a,function(e){return e!==r.toString()})),a.length||(a=""),um_set_url_from_data(s,"filter_"+e,a);var i=jQuery('.um-search-filter select[name="'+e+'"]');i.find('option[value="'+r+'"]').prop("disabled",!1).show(),1<i.find("option:not(:disabled)").length&&i.prop("disabled",!1),i.select2("destroy").select2(),0<s.find('.um-search-filter select[data-um-parent="'+e+'"]').length&&i.trigger("change")}else if("slider"===t){um_set_url_from_data(s,"filter_"+e+"_from",""),um_set_url_from_data(s,"filter_"+e+"_to","");var m=jQuery(".um-search-filter #"+e+"_min").siblings(".um-slider"),d=m.slider("option");m.slider("values",[d.min,d.max]),jQuery(".um-search-filter #"+e+"_min").val(""),jQuery(".um-search-filter #"+e+"_max").val(""),um_set_range_label(m)}else"datepicker"===t?(um_set_url_from_data(s,"filter_"+e+"_from",""),um_set_url_from_data(s,"filter_"+e+"_to",""),jQuery(".um-search-filter #"+e+"_from").val(""),jQuery(".um-search-filter #"+e+"_to").val("")):"timepicker"===t?(um_set_url_from_data(s,"filter_"+e+"_from",""),um_set_url_from_data(s,"filter_"+e+"_to",""),jQuery(".um-search-filter #"+e+"_from").val(""),jQuery(".um-search-filter #"+e+"_to").val("")):wp.hooks.doAction("um_member_directory_clear_filters",t,s,e,r)}),s.data("page",1),um_set_url_from_data(s,"page",""),s.find(".um-members-filter-tag").remove(),0===s.find(".um-members-filter-remove").length?(s.find(".um-clear-filters").hide(),s.find(".um-clear-filters").parents(".um-member-directory-header-row").addClass("um-header-row-invisible")):(s.find(".um-clear-filters").show(),s.find(".um-clear-filters").parents(".um-member-directory-header-row").removeClass("um-header-row-invisible"));var e=!1;if(!(e=wp.hooks.applyFilters("um_member_directory_ignore_after_search",e,s)))if(1===s.data("must-search"))if(!um_get_search(s))return s.data("searched",0),s.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),s.find(".um-member-directory-sorting-options").prop("disabled",!0),s.find(".um-member-directory-view-type").addClass("um-disabled"),wp.hooks.doAction("um_member_directory_clear_not_searched",s),void um_members_hide_preloader(s);s.find(".um-member-directory-sorting-options").prop("disabled",!1),s.find(".um-member-directory-view-type").removeClass("um-disabled"),um_ajax_get_members(s)}}),wp.hooks.doAction("um_member_directory_on_first_pages_loading"),jQuery(".um-directory").each(function(){var e=jQuery(this),r=um_members_get_hash(e);um_member_directories.push(r),e.find(".um-search").length&&(e.find(".um-search").is(":visible")||e.find(".um-search").css({display:"grid"}).slideUp(1)),e.find(".um-slider").each(function(){var e=jQuery(this),t=e.parents(".um-directory"),a=e.data("field_name"),r=um_get_data_for_directory(t,"filter_"+a+"_from"),i=um_get_data_for_directory(t,"filter_"+a+"_to");void 0===r&&(r=parseInt(e.data("min"))),void 0===i&&(i=parseInt(e.data("max")));var m=[r,i];e.slider({range:!0,min:parseInt(e.data("min")),max:parseInt(e.data("max")),values:m,create:function(e,r){},step:1,slide:function(e,r){um_set_range_label(jQuery(this),r)},stop:function(e,r){um_is_directory_busy(t)||(um_set_url_from_data(t,"filter_"+a+"_from",r.values[0]),um_set_url_from_data(t,"filter_"+a+"_to",r.values[1]),t.data("page",1),um_set_url_from_data(t,"page",""),um_ajax_get_members(t),um_change_tag(t),t.data("searched",1),t.find(".um-member-directory-sorting-options").prop("disabled",!1),t.find(".um-member-directory-view-type").removeClass("um-disabled"))}}),um_set_range_label(e)}),e.find(".um-datepicker-filter").each(function(){var s=jQuery(this),u=new Date(1e3*s.data("date_min")),_=new Date(1e3*s.data("date_max")),e=s.pickadate({selectYears:!0,min:u,max:_,formatSubmit:"yyyy/mm/dd",hiddenName:!0,onOpen:function(){s.blur()},onClose:function(){s.blur()},onSet:function(e){if(e.select){var r=s.parents(".um-directory");if(!um_is_directory_busy(r)){um_members_show_preloader(r);var t=s.data("filter_name"),a=s.data("range"),i=um_get_data_for_directory(r,"filter_"+t+"_from"),m=um_get_data_for_directory(r,"filter_"+t+"_to");void 0===i&&(i=u/1e3),void 0===m&&(m=_/1e3);var d=e.select/1e3;s.val();"from"===a?i=d:"to"===a&&(m=d),um_set_url_from_data(r,"filter_"+t+"_from",i),um_set_url_from_data(r,"filter_"+t+"_to",m),r.data("page",1),um_set_url_from_data(r,"page",""),um_ajax_get_members(r),um_change_tag(r),r.data("searched",1),r.find(".um-member-directory-sorting-options").prop("disabled",!1),r.find(".um-member-directory-view-type").removeClass("um-disabled")}}}}).pickadate("picker"),r=s.data("filter_name"),t=s.data("range"),a=um_get_data_for_directory(s.parents(".um-directory"),"filter_"+r+"_"+t);void 0!==a&&e.set("select",1e3*a)}),e.find(".um-timepicker-filter").each(function(){var u=jQuery(this),_=u.attr("id"),o=u.data("filter_name"),l=u.attr("data-min"),n=u.attr("data-max"),e=l.split(":"),r=n.split(":"),t=u.pickatime({format:u.data("format"),interval:parseInt(u.data("intervals")),min:[e[0],e[1]],max:[r[0],r[1]],formatSubmit:"HH:i",hiddenName:!0,onOpen:function(){u.blur()},onClose:function(){u.blur()},onSet:function(e){if(e.select){var r=u.parents(".um-directory");if(!um_is_directory_busy(r)){um_members_show_preloader(r);var t=u.data("filter_name"),a=u.data("range"),i=um_get_data_for_directory(r,"filter_"+t+"_from"),m=um_get_data_for_directory(r,"filter_"+t+"_to");if(void 0===i&&(i=l),void 0===m&&(m=n),void 0!==e.select){var d=um_time_convert(e.select,a);"from"===a?i=d:"to"===a&&(m=d)}else"from"===a?i=l:"to"===a&&(m=n);var s=jQuery("#"+_).val();"from"===u.data("range")?jQuery("#"+o+"_to").pickatime("picker").set("min",s):jQuery("#"+o+"_from").pickatime("picker").set("max",s),um_set_url_from_data(r,"filter_"+t+"_from",i),um_set_url_from_data(r,"filter_"+t+"_to",m),r.data("page",1),um_set_url_from_data(r,"page",""),um_ajax_get_members(r),um_change_tag(r),r.data("searched",1),r.find(".um-member-directory-sorting-options").prop("disabled",!1),r.find(".um-member-directory-view-type").removeClass("um-disabled")}}}}).pickatime("picker"),a=u.data("filter_name"),i=u.data("range"),m=um_get_data_for_directory(u.parents(".um-directory"),"filter_"+a+"_"+i);if(void 0!==m){var d=m.split(":");t.set("select",60*d[0]+1*d[1])}}),wp.hooks.doAction("um_member_directory_on_init",e,r);var t=!1;if(!(t=wp.hooks.applyFilters("um_member_directory_ignore_after_search",t,e))&&1===e.data("must-search")){var a=um_get_search(e);if(!um_get_filters_data(e).length&&!a)return}wp.hooks.applyFilters("um_member_directory_prevent_default_first_loading",!1,e,r)||(um_members_show_preloader(e),um_ajax_get_members(e,{first_load:!0}),um_change_tag(e))}),window.addEventListener("popstate",function(e){jQuery(".um-directory").each(function(){var d=jQuery(this),e=um_members_get_hash(d);(um_member_directories.push(e),um_members_show_preloader(d),d.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),d.find(".um-member-directory-search-line").length)&&(void 0===(s=um_get_data_for_directory(d,"search"))&&(s=""),d.data("general_search",s),d.find(".um-search-line").val(s));var r=um_get_data_for_directory(d,"page");if(void 0===r?r=1:r>d.data("total_pages")&&(r=d.data("total_pages")),d.data("page",r).attr("data-page",r),d.find(".um-member-directory-sorting").length){var t=um_get_data_for_directory(d,"sort");void 0===t&&(t=d.find('.um-new-dropdown[data-element=".um-member-directory-sorting-a"]').find('a[data-default="1"]').data("value")),d.data("sorting",t);var a=d.find('.um-new-dropdown[data-element=".um-member-directory-sorting-a"]');a.find("a").data("selected",0).prop("data-selected",0).attr("data-selected",0),a.find('a[data-value="'+t+'"]').data("selected",1).prop("data-selected",1).attr("data-selected",1),d.find(".um-member-directory-sorting-a").find("> a").html(a.find('a[data-value="'+t+'"]').html())}if(d.find(".um-member-directory-view-type").length){var i=um_get_data_for_directory(d,"view_type");void 0===i&&(i=d.find('.um-member-directory-view-type-a[data-default="1"]').data("type")),d.data("view_type",i),d.find(".um-member-directory-view-type .um-member-directory-view-type-a").hide(),d.find('.um-member-directory-view-type .um-member-directory-view-type-a[data-type="'+i+'"]').show()}d.find(".um-datepicker-filter").each(function(){var e=jQuery(this),r=e.pickadate("picker"),t=e.data("filter_name"),a=e.data("range"),i=um_get_data_for_directory(d,"filter_"+t+"_"+a);void 0!==i?r.set("select",1e3*i):r.clear()}),d.find(".um-slider").each(function(){var e=jQuery(this),r=e.data("field_name"),t=um_get_data_for_directory(d,"filter_"+r+"_from"),a=um_get_data_for_directory(d,"filter_"+r+"_to");void 0===t&&(t=e.data("min")),t=parseInt(t),void 0===a&&(a=e.data("max")),a=parseInt(a),e.slider("values",[t,a]),um_set_range_label(e)}),d.find(".um-timepicker-filter").each(function(){var e=jQuery(this),r=e.pickatime("picker"),t=e.data("filter_name"),a=e.data("range"),i=um_get_data_for_directory(d,"filter_"+t+"_"+a);if(void 0!==i){var m=i.split(":");r.set("select",60*m[0])}else r.clear()});var m=!1;if(!(m=wp.hooks.applyFilters("um_member_directory_ignore_after_search",m,d))&&1===d.data("must-search")){var s=um_get_search(d);if(!um_get_filters_data(d).length&&!s)return d.data("searched",0),void um_members_hide_preloader(d);d.data("searched",1)}wp.hooks.applyFilters("um_member_directory_prevent_default_first_loading",!1,d,e)||(um_ajax_get_members(d),um_change_tag(d))})})});
1
+ var um_members_directory_busy=[],um_member_directories=[],um_member_directory_last_data=[];function um_parse_current_url(){var t={},a=window.location.search.substring(1).split("&");return jQuery.each(a,function(e){var r=a[e].split("=");t[r[0]]=r[1]}),t}function um_get_data_for_directory(e,r){var t=um_members_get_hash(e),a={},i=um_parse_current_url();if(jQuery.each(i,function(e){-1!==e.indexOf("_"+t)&&""!==i[e]&&(a[e.replace("_"+t,"")]=i[e])}),r){if(void 0!==a[r])try{a[r]=decodeURIComponent(a[r])}catch(e){console.error(e)}return a[r]}return a}function um_set_url_from_data(e,r,t){var a=um_members_get_hash(e),i=um_get_data_for_directory(e),m={};jQuery.isArray(t)?(jQuery.each(t,function(e){t[e]=encodeURIComponent(t[e])}),t=t.join("||")):jQuery.isNumeric(t)||(t=t.split("||"),jQuery.each(t,function(e){t[e]=encodeURIComponent(t[e])}),t=t.join("||")),""!==t&&(m[r+"_"+a]=t),jQuery.each(i,function(e){r===e?""!==t&&(m[e+"_"+a]=t):m[e+"_"+a]=i[e]}),jQuery.each(um_member_directories,function(e){var r=um_member_directories[e];if(r!==a){var t=um_get_data_for_directory(jQuery('.um-directory[data-hash="'+r+'"]'));jQuery.each(t,function(e){m[e+"_"+r]=t[e]})}});var d=[];jQuery.each(m,function(e){d.push(e+"="+m[e])});var s="?"+(d=wp.hooks.applyFilters("um_member_directory_url_attrs",d)).join("&");"?"===s&&(s=""),window.history.pushState("string","UM Member Directory",window.location.origin+window.location.pathname+s)}function um_members_get_hash(e){return e.data("hash")}function um_is_directory_busy(e){var r=um_members_get_hash(e);return void 0!==um_members_directory_busy[r]&&um_members_directory_busy[r]}function um_members_show_preloader(e){um_members_directory_busy[um_members_get_hash(e)]=!0,e.find(".um-members-overlay").show()}function um_members_hide_preloader(e){um_members_directory_busy[um_members_get_hash(e)]=!1,e.find(".um-members-overlay").hide()}function um_set_range_label(e,r){var t="",a=e.siblings(".um-slider-range").data("placeholder-s"),i=e.siblings(".um-slider-range").data("placeholder-p");t=r?r.values[0]===r.values[1]?a.replace("{value}",r.values[0]).replace("{field_label}",e.siblings(".um-slider-range").data("label")):i.replace("{min_range}",r.values[0]).replace("{max_range}",r.values[1]).replace("{field_label}",e.siblings(".um-slider-range").data("label")):e.slider("values",0)===e.slider("values",1)?a.replace("{value}",e.slider("values",0)).replace("{field_label}",e.siblings(".um-slider-range").data("label")):i.replace("{min_range}",e.slider("values",0)).replace("{max_range}",e.slider("values",1)).replace("{field_label}",e.siblings(".um-slider-range").data("label")),e.siblings(".um-slider-range").html(t),e.siblings(".um_range_min").val(e.slider("values",0)),e.siblings(".um_range_max").val(e.slider("values",1))}function um_get_search(e){return e.find(".um-search-line").length?e.find(".um-search-line").val():""}function um_get_sort(e){return e.data("sorting")}function um_get_current_page(e){var r=e.data("page");return r&&void 0!==r||(r=1),r}function um_time_convert(e,r){var t=Math.floor(e/60),a=e%60;return 60<=a&&(a=0,24<=(t+=1)&&(t=0)),a<10&&(a="0"+a),t+":"+a}function um_ajax_get_members(u,e){var t=um_members_get_hash(u),r=um_get_current_page(u),a=um_get_search(u),i=um_get_sort(u),m=-(new Date).getTimezoneOffset()/60,_={directory_id:t,page:r,search:a,sorting:i,gmt_offset:m,post_refferer:u.data("base-post"),nonce:um_scripts.nonce};u.find(".um-search-filter").length&&u.find(".um-search-filter").each(function(){var e=jQuery(this);if(e.find(".um-slider").length){var r=e.find(".um-slider").data("field_name"),t=um_get_data_for_directory(u,"filter_"+r+"_from"),a=um_get_data_for_directory(u,"filter_"+r+"_to");void 0===t&&void 0===a||(_[r]=[t,a])}else if(e.find(".um-datepicker-filter").length){r=e.find(".um-datepicker-filter").data("filter_name"),t=um_get_data_for_directory(u,"filter_"+r+"_from"),a=um_get_data_for_directory(u,"filter_"+r+"_to");void 0===t&&void 0===a||(_[r]=[t,a])}else if(e.find(".um-timepicker-filter").length){r=e.find(".um-timepicker-filter").data("filter_name"),t=um_get_data_for_directory(u,"filter_"+r+"_from"),a=um_get_data_for_directory(u,"filter_"+r+"_to");if(void 0!==t)(i=1*(t=t.split(":"))[0])<10&&(i="0"+i),(d=1*t[1])<10&&(d="0"+d),t=i+":"+d+":00";if(void 0!==a){var i,m=a.split(":"),d=1*m[1];(i=1*m[0])<10&&(i="0"+i),d<10&&(d="0"+d),a=i+":"+d+":59"}void 0===t&&void 0===a||(_[r]=[t,a])}else if(e.find("select").length){r=e.find("select").attr("name");void 0!==(s=um_get_data_for_directory(u,"filter_"+r))&&(_[r]=s.split("||"))}else if(e.hasClass("um-text-filter-type")&&e.find('input[type="text"]').length){var s;r=e.find('input[type="text"]').attr("name");void 0!==(s=um_get_data_for_directory(u,"filter_"+r))&&(_[r]=s)}else _=wp.hooks.applyFilters("um_member_directory_custom_filter_handler",_,e,u)}),_=wp.hooks.applyFilters("um_member_directory_filter_request",_),wp.ajax.send("um_get_members",{data:_,success:function(e){um_member_directory_last_data[t]=e,um_build_template(u,e);var r=wp.template("um-members-pagination");u.find(".um-members-pagination-box").html(r(e)),u.data("total_pages",e.pagination.total_pages),e.pagination.total_pages?(u.find(".um-member-directory-sorting-options").prop("disabled",!1),u.find(".um-member-directory-view-type").removeClass("um-disabled")):(u.find(".um-member-directory-sorting-options").prop("disabled",!0),u.find(".um-member-directory-view-type").addClass("um-disabled")),wp.hooks.doAction("um_member_directory_loaded",u,e),um_init_new_dropdown(),um_members_hide_preloader(u)},error:function(e){console.log(e),um_members_hide_preloader(u)}})}function um_build_template(e,r){var t=e.data("view_type"),a=wp.template("um-member-"+t+"-"+um_members_get_hash(e));e.find(".um-members-grid, .um-members-list").remove(),e.find(".um-members-wrapper").prepend(a(r.users));var i=wp.template("um-members-header");e.find(".um-members-intro").remove();var m=wp.hooks.applyFilters("um_member_directory_generate_header",!1,e);(void 0!==r.is_search&&r.is_search||m)&&e.find(".um-members-wrapper").prepend(i(r)),e.addClass("um-loaded"),e.find(".um-members.um-members-grid").length&&UM_Member_Grid(e.find(".um-members.um-members-grid")),jQuery(document).trigger("um_build_template",[e,r]),jQuery(window).trigger("resize"),init_tipsy()}function UM_Member_Grid(e){e.find(".um-member").length&&e.imagesLoaded(function(){e.masonry({itemSelector:".um-member",columnWidth:".um-member",gutter:".um-gutter-sizer"}).on("layoutComplete",function(e,r){jQuery(document).trigger("um_grid_initialized",[e,r])})})}function um_get_filters_data(u){var _=[];return u.find(".um-search-filter").each(function(){var t,a,d,i=jQuery(this);if(i.find("input.um-datepicker-filter").length)d="datepicker",i.find("input.um-datepicker-filter").each(function(){if("to"!==jQuery(this).data("range")){var e=jQuery(this).data("filter_name"),r=um_get_data_for_directory(u,"filter_"+e+"_from"),t=um_get_data_for_directory(u,"filter_"+e+"_to");if(void 0!==r||void 0!==t){var a,i=jQuery(this).val(),m=u.find('input.um-datepicker-filter[data-range="to"][data-filter_name="'+e+'"]').val();i===m?a=m:""!==i&&""!==m?a=i+" - "+m:""===i?a="before "+m:""===m&&(a="since "+i),_.push({name:e,label:jQuery(this).data("filter-label"),value_label:a,value:[r,t],type:d})}}});else if(i.find("input.um-timepicker-filter").length)d="timepicker",i.find("input.um-timepicker-filter").each(function(){if("to"!==jQuery(this).data("range")){var e=jQuery(this).data("filter_name"),r=um_get_data_for_directory(u,"filter_"+e+"_from"),t=um_get_data_for_directory(u,"filter_"+e+"_to");if(void 0!==r||void 0!==t){var a,i=jQuery(this).val(),m=u.find('input.um-timepicker-filter[data-range="to"][data-filter_name="'+e+'"]').val();i===m?a=m:""!==i&&""!==m?a=i+" - "+m:""===i?a="before "+m:""===m&&(a="since "+i),_.push({name:e,label:jQuery(this).data("filter-label"),value_label:a,value:[r,t],type:d})}}});else if(i.find("select").length){d="select",t=i.find("select").attr("name"),a=i.find("select").data("placeholder"),m=void 0===(m=um_get_data_for_directory(u,"filter_"+t))?[]:m.split("||"),jQuery.each(m,function(e){var r=i.find('select option[value="'+m[e]+'"]').data("value_label");_.push({name:t,label:a,value_label:r,value:m[e],type:d})})}else if(i.hasClass("um-text-filter-type")&&i.find('input[type="text"]').length){var m;d="text",t=i.find('input[type="text"]').attr("name"),a=i.find('input[type="text"]').attr("placeholder"),void 0===(m=um_get_data_for_directory(u,"filter_"+t))&&(m=""),""!=m&&_.push({name:t,label:a,value_label:m,value:m,type:d})}else if(i.find("div.ui-slider").length){d="slider",t=i.find("div.ui-slider").data("field_name");var e,r=um_get_data_for_directory(u,"filter_"+t+"_from"),s=um_get_data_for_directory(u,"filter_"+t+"_to");if(void 0===r&&void 0===s)return;e=r===s?i.find("div.um-slider-range").data("placeholder-s").replace("{value}",r).replace("{field_label}",i.find("div.um-slider-range").data("label")):i.find("div.um-slider-range").data("placeholder-p").replace("{min_range}",r).replace("{max_range}",s).replace("{field_label}",i.find("div.um-slider-range").data("label")),a=i.find("div.um-slider-range").data("label"),_.push({name:t,label:a,value_label:e,value:[r,s],type:d})}else _=wp.hooks.applyFilters("um_member_directory_get_filter_data",_,u,i)}),_}function um_change_tag(e){var r=um_get_filters_data(e);e.find(".um-members-filter-tag").remove();var t=e.find(".um-filtered-line");if(t.length){var a=wp.template("um-members-filtered-line");t.prepend(a({filters:r})),0===e.find(".um-members-filter-remove").length?(e.find(".um-clear-filters").hide(),e.find(".um-clear-filters").parents(".um-member-directory-header-row").addClass("um-header-row-invisible")):(e.find(".um-clear-filters").show(),e.find(".um-clear-filters").parents(".um-member-directory-header-row").removeClass("um-header-row-invisible"))}}function um_run_search(e){if(!um_is_directory_busy(e)){um_members_show_preloader(e);var r=um_get_data_for_directory(e,"search"),t=e.find(".um-search-line").val();if(t===r||""===t&&void 0===r)um_members_hide_preloader(e);else{e.data("general_search",t),um_set_url_from_data(e,"search",t),e.data("page",1),um_set_url_from_data(e,"page","");var a=!1;if(!(a=wp.hooks.applyFilters("um_member_directory_ignore_after_search",a,e)))if(1===e.data("must-search")&&(t=um_get_search(e),0===e.find(".um-members-filter-remove").length&&!t))return e.data("searched",0),e.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),e.find(".um-member-directory-sorting-options").prop("disabled",!0),e.find(".um-member-directory-view-type").addClass("um-disabled"),wp.hooks.doAction("um_member_directory_clear_not_searched",e),void um_members_hide_preloader(e);e.data("searched",1),e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled"),um_ajax_get_members(e)}}}jQuery(document.body).ready(function(){jQuery(".um-directory .um-search-filter select").each(function(){1===jQuery(this).find("option:not(:disabled)").length&&jQuery(this).prop("disabled",!0),jQuery(this).select2("destroy").select2()}),jQuery(document.body).on("mouseover",".um-directory .um-member-directory-view-type",function(){if(!jQuery(this).hasClass("um-disabled")){var e=jQuery(this).find(".um-member-directory-view-type-a:visible");e.hide(),e.next().length?e.next().show().tipsy("show"):jQuery(this).find(".um-member-directory-view-type-a:first").show().tipsy("show")}}).on("mouseout",".um-directory .um-member-directory-view-type",function(){jQuery(this).hasClass("um-disabled")||(jQuery(this).find(".um-member-directory-view-type-a").hide().tipsy("hide"),jQuery(this).find('.um-member-directory-view-type-a[data-type="'+jQuery(this).parents(".um-directory").data("view_type")+'"]').show())}),jQuery(document.body).on("click",".um-directory .um-member-directory-view-type-a",function(){var e=jQuery(this).parents(".um-directory");if(um_is_directory_busy(e))return!1;var r=jQuery(this),t=r.parents(".um-member-directory-view-type");if(!t.hasClass("um-disabled")){um_members_show_preloader(e);var a=t.find(".um-member-directory-view-type-a:visible");a.hide(),a.next().length?a.next().show().tipsy("show"):t.find(".um-member-directory-view-type-a:first").show().tipsy("show");var i=um_member_directory_last_data[um_members_get_hash(e)];if(null!==i){var m=r.data("type");um_set_url_from_data(e,"view_type",m),e.data("view_type",m),um_build_template(e,i),um_init_new_dropdown()}um_members_hide_preloader(e)}}),jQuery(document.body).on("click",".um-directory .um-do-search",function(){um_run_search(jQuery(this).parents(".um-directory"))}),jQuery(document.body).on("keypress",".um-directory .um-search-line",function(e){13===e.which&&um_run_search(jQuery(this).parents(".um-directory"))}),jQuery(document.body).on("click",".um-directory .um-member-directory-sorting-a .um-new-dropdown li a",function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)&&1!==jQuery(this).data("selected")){um_members_show_preloader(e);var r=jQuery(this).data("value");e.data("sorting",r),um_set_url_from_data(e,"sort",r),um_ajax_get_members(e),jQuery(this).parents(".um-new-dropdown").find("a").data("selected",0).prop("data-selected",0).attr("data-selected",0),jQuery(this).data("selected",1).prop("data-selected",1).attr("data-selected",1),jQuery(this).parents(".um-member-directory-sorting-a").find("> a").html(jQuery(this).html())}}),jQuery(document.body).on("click",".um-directory .pagi:not(.current)",function(){if(!jQuery(this).hasClass("disabled")){var e,r=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(r))um_members_show_preloader(r),1===(e="first"===jQuery(this).data("page")?1:"prev"===jQuery(this).data("page")?1*r.data("page")-1:"next"===jQuery(this).data("page")?1*r.data("page")+1:"last"===jQuery(this).data("page")?parseInt(r.data("total_pages")):parseInt(jQuery(this).data("page")))?(r.find('.pagi[data-page="first"], .pagi[data-page="prev"]').addClass("disabled"),r.find('.pagi[data-page="prev"], .pagi[data-page="last"]').removeClass("disabled")):(e===parseInt(r.data("total_pages"))?r.find('.pagi[data-page="prev"], .pagi[data-page="last"]').addClass("disabled"):r.find('.pagi[data-page="prev"], .pagi[data-page="last"]').removeClass("disabled"),r.find('.pagi[data-page="first"], .pagi[data-page="prev"]').removeClass("disabled")),r.find(".pagi").removeClass("current"),r.find('.pagi[data-page="'+e+'"]').addClass("current"),r.data("page",e),um_set_url_from_data(r,"page",1===e?"":e),um_ajax_get_members(r)}}),jQuery(document.body).on("change",".um-directory .um-members-pagi-dropdown",function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)){um_members_show_preloader(e);var r=jQuery(this).val();e.find(".pagi").removeClass("current"),e.find('.pagi[data-page="'+r+'"]').addClass("current"),e.data("page",r),um_set_url_from_data(e,"page",1===r?"":r),um_ajax_get_members(e)}}),jQuery(document.body).on("click",".um-directory .um-members.um-members-list .um-member-more a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member");return r.find(".um-member-more").hide(),r.find(".um-member-meta-main").slideDown(),r.find(".um-member-less").fadeIn(),!1}),jQuery(document.body).on("click",".um-directory .um-members.um-members-list .um-member-less a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member");return r.find(".um-member-less").hide(),r.find(".um-member-meta-main").slideUp(),r.find(".um-member-more").fadeIn(),!1}),jQuery(document.body).on("click",".um-directory .um-members.um-members-grid .um-member-more a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member"),t=jQuery(this).parents(".um-members");return r.find(".um-member-more").hide(),r.find(".um-member-meta").slideDown(function(){UM_Member_Grid(t)}),r.find(".um-member-less").fadeIn(),setTimeout(function(){UM_Member_Grid(t)},100),!1}),jQuery(document.body).on("click",".um-directory .um-members.um-members-grid .um-member-less a",function(e){e.preventDefault();var r=jQuery(this).parents(".um-member"),t=jQuery(this).parents(".um-members");return r.find(".um-member-less").hide(),r.find(".um-member-meta").slideUp(function(){r.find(".um-member-more").fadeIn(),UM_Member_Grid(t)}),!1}),jQuery(".um-member-directory-filters-a").click(function(){var e=jQuery(this),r=e.parents(".um-directory").find(".um-search");r.is(":visible")?r.slideUp(250,function(){e.toggleClass("um-member-directory-filters-visible"),r.parents(".um-member-directory-header-row").toggleClass("um-header-row-invisible")}):r.slideDown({duration:250,start:function(){jQuery(this).css({display:"grid"}),e.toggleClass("um-member-directory-filters-visible"),r.parents(".um-member-directory-header-row").toggleClass("um-header-row-invisible")}})}),jQuery(document.body).on("change",".um-directory .um-search-filter select",function(){if(""!==jQuery(this).val()){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)){um_members_show_preloader(e);var r=jQuery(this).prop("name"),t=um_get_data_for_directory(e,"filter_"+r);t=void 0===t?[]:t.split("||"),-1===jQuery.inArray(jQuery(this).val(),t)&&(t.push(jQuery(this).val()),um_set_url_from_data(e,"filter_"+r,t=t.join("||")),e.data("page",1),um_set_url_from_data(e,"page","")),jQuery(this).find('option[value="'+jQuery(this).val()+'"]').prop("disabled",!0).hide(),1===jQuery(this).find("option:not(:disabled)").length&&jQuery(this).prop("disabled",!0),jQuery(this).select2("destroy").select2(),jQuery(this).val("").trigger("change"),um_ajax_get_members(e),um_change_tag(e),e.data("searched",1),e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled")}}}),jQuery(document.body).on("blur",'.um-directory .um-search-filter.um-text-filter-type input[type="text"]',function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)){var r=jQuery(this).val(),t=jQuery(this).prop("name"),a=um_get_data_for_directory(e,"filter_"+t);void 0===a&&(a=""),r!==a&&(um_members_show_preloader(e),um_set_url_from_data(e,"filter_"+t,r),e.data("page",1),um_set_url_from_data(e,"page",""),um_ajax_get_members(e),um_change_tag(e),e.data("searched",1),e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled"))}}),jQuery(document.body).on("keypress",'.um-directory .um-search-filter.um-text-filter-type input[type="text"]',function(e){if(13===e.which){var r=jQuery(this).parents(".um-directory");if(um_is_directory_busy(r))return;var t=jQuery(this).val(),a=jQuery(this).prop("name"),i=um_get_data_for_directory(r,"filter_"+a);if(void 0===i&&(i=""),t===i)return;um_members_show_preloader(r),um_set_url_from_data(r,"filter_"+a,t),r.data("page",1),um_set_url_from_data(r,"page",""),um_ajax_get_members(r),um_change_tag(r),r.data("searched",1),r.find(".um-member-directory-sorting-options").prop("disabled",!1),r.find(".um-member-directory-view-type").removeClass("um-disabled")}}),jQuery(document.body).on("click",".um-directory .um-members-filter-remove",function(){var e=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(e)&&e){um_members_show_preloader(e);var r=jQuery(this).data("value"),t=jQuery(this).data("name"),a=jQuery(this).data("type");if("text"===a)um_set_url_from_data(e,"filter_"+t,""),jQuery('.um-search-filter input[name="'+t+'"]').val("");else if("select"===a){var i=um_get_data_for_directory(e,"filter_"+t);i=void 0===i?[]:i.split("||"),-1!==jQuery.inArray(r.toString(),i)&&(i=jQuery.grep(i,function(e){return e!==r.toString()})),i.length||(i=""),um_set_url_from_data(e,"filter_"+t,i);var m=jQuery('.um-search-filter select[name="'+t+'"]');m.find('option[value="'+r+'"]').prop("disabled",!1).show(),1<m.find("option:not(:disabled)").length&&m.prop("disabled",!1),m.select2("destroy").select2(),0<e.find('.um-search-filter select[data-um-parent="'+t+'"]').length&&m.trigger("change")}else if("slider"===a){um_set_url_from_data(e,"filter_"+t+"_from",""),um_set_url_from_data(e,"filter_"+t+"_to","");var d=jQuery(".um-search-filter #"+t+"_min").siblings(".um-slider"),s=d.slider("option");d.slider("values",[s.min,s.max]),jQuery(".um-search-filter #"+t+"_min").val(""),jQuery(".um-search-filter #"+t+"_max").val(""),um_set_range_label(d)}else"datepicker"===a?(um_set_url_from_data(e,"filter_"+t+"_from",""),um_set_url_from_data(e,"filter_"+t+"_to",""),jQuery(".um-search-filter #"+t+"_from").val(""),jQuery(".um-search-filter #"+t+"_to").val("")):"timepicker"===a?(um_set_url_from_data(e,"filter_"+t+"_from",""),um_set_url_from_data(e,"filter_"+t+"_to",""),jQuery(".um-search-filter #"+t+"_from").val(""),jQuery(".um-search-filter #"+t+"_to").val("")):wp.hooks.doAction("um_member_directory_filter_remove",a,e,t,r);e.data("page",1),um_set_url_from_data(e,"page",""),jQuery(this).tipsy("hide"),jQuery(this).parents(".um-members-filter-tag").remove(),0===e.find(".um-members-filter-remove").length?e.find(".um-clear-filters").hide():e.find(".um-clear-filters").show();var u=!1;if(!(u=wp.hooks.applyFilters("um_member_directory_ignore_after_search",u,e)))if(1===e.data("must-search")){var _=um_get_search(e);if(0===e.find(".um-members-filter-remove").length&&!_)return e.data("searched",0),e.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),e.find(".um-member-directory-sorting-options").prop("disabled",!0),e.find(".um-member-directory-view-type").addClass("um-disabled"),wp.hooks.doAction("um_member_directory_clear_not_searched",e),void um_members_hide_preloader(e)}e.find(".um-member-directory-sorting-options").prop("disabled",!1),e.find(".um-member-directory-view-type").removeClass("um-disabled"),um_ajax_get_members(e)}}),jQuery(document.body).on("click",".um-directory .um-clear-filters-a",function(){var s=jQuery(this).parents(".um-directory");if(!um_is_directory_busy(s)){um_members_show_preloader(s),s.find(".um-members-filter-remove").each(function(){var r=jQuery(this).data("value"),e=jQuery(this).data("name"),t=jQuery(this).data("type");if("text"===t)um_set_url_from_data(s,"filter_"+e,""),jQuery('.um-search-filter input[name="'+e+'"]').val("");else if("select"===t){var a=um_get_data_for_directory(s,"filter_"+e);a=void 0===a?[]:a.split("||"),-1!==jQuery.inArray(r.toString(),a)&&(a=jQuery.grep(a,function(e){return e!==r.toString()})),a.length||(a=""),um_set_url_from_data(s,"filter_"+e,a);var i=jQuery('.um-search-filter select[name="'+e+'"]');i.find('option[value="'+r+'"]').prop("disabled",!1).show(),1<i.find("option:not(:disabled)").length&&i.prop("disabled",!1),i.select2("destroy").select2(),0<s.find('.um-search-filter select[data-um-parent="'+e+'"]').length&&i.trigger("change")}else if("slider"===t){um_set_url_from_data(s,"filter_"+e+"_from",""),um_set_url_from_data(s,"filter_"+e+"_to","");var m=jQuery(".um-search-filter #"+e+"_min").siblings(".um-slider"),d=m.slider("option");m.slider("values",[d.min,d.max]),jQuery(".um-search-filter #"+e+"_min").val(""),jQuery(".um-search-filter #"+e+"_max").val(""),um_set_range_label(m)}else"datepicker"===t?(um_set_url_from_data(s,"filter_"+e+"_from",""),um_set_url_from_data(s,"filter_"+e+"_to",""),jQuery(".um-search-filter #"+e+"_from").val(""),jQuery(".um-search-filter #"+e+"_to").val("")):"timepicker"===t?(um_set_url_from_data(s,"filter_"+e+"_from",""),um_set_url_from_data(s,"filter_"+e+"_to",""),jQuery(".um-search-filter #"+e+"_from").val(""),jQuery(".um-search-filter #"+e+"_to").val("")):wp.hooks.doAction("um_member_directory_clear_filters",t,s,e,r)}),s.data("page",1),um_set_url_from_data(s,"page",""),s.find(".um-members-filter-tag").remove(),0===s.find(".um-members-filter-remove").length?(s.find(".um-clear-filters").hide(),s.find(".um-clear-filters").parents(".um-member-directory-header-row").addClass("um-header-row-invisible")):(s.find(".um-clear-filters").show(),s.find(".um-clear-filters").parents(".um-member-directory-header-row").removeClass("um-header-row-invisible"));var e=!1;if(!(e=wp.hooks.applyFilters("um_member_directory_ignore_after_search",e,s)))if(1===s.data("must-search"))if(!um_get_search(s))return s.data("searched",0),s.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),s.find(".um-member-directory-sorting-options").prop("disabled",!0),s.find(".um-member-directory-view-type").addClass("um-disabled"),wp.hooks.doAction("um_member_directory_clear_not_searched",s),void um_members_hide_preloader(s);s.find(".um-member-directory-sorting-options").prop("disabled",!1),s.find(".um-member-directory-view-type").removeClass("um-disabled"),um_ajax_get_members(s)}}),wp.hooks.doAction("um_member_directory_on_first_pages_loading"),jQuery(".um-directory").each(function(){var e=jQuery(this),r=um_members_get_hash(e);um_member_directories.push(r),e.find(".um-search").length&&(e.find(".um-search").is(":visible")||e.find(".um-search").css({display:"grid"}).slideUp(1)),e.find(".um-slider").each(function(){var e=jQuery(this),t=e.parents(".um-directory"),a=e.data("field_name"),r=um_get_data_for_directory(t,"filter_"+a+"_from"),i=um_get_data_for_directory(t,"filter_"+a+"_to");void 0===r&&(r=parseInt(e.data("min"))),void 0===i&&(i=parseInt(e.data("max")));var m=[r,i];e.slider({range:!0,min:parseInt(e.data("min")),max:parseInt(e.data("max")),values:m,create:function(e,r){},step:1,slide:function(e,r){um_set_range_label(jQuery(this),r)},stop:function(e,r){um_is_directory_busy(t)||(um_set_url_from_data(t,"filter_"+a+"_from",r.values[0]),um_set_url_from_data(t,"filter_"+a+"_to",r.values[1]),t.data("page",1),um_set_url_from_data(t,"page",""),um_ajax_get_members(t),um_change_tag(t),t.data("searched",1),t.find(".um-member-directory-sorting-options").prop("disabled",!1),t.find(".um-member-directory-view-type").removeClass("um-disabled"))}}),um_set_range_label(e)}),e.find(".um-datepicker-filter").each(function(){var s=jQuery(this),u=new Date(1e3*s.data("date_min")),_=new Date(1e3*s.data("date_max")),e=s.pickadate({selectYears:!0,min:u,max:_,formatSubmit:"yyyy/mm/dd",hiddenName:!0,onOpen:function(){s.blur()},onClose:function(){s.blur()},onSet:function(e){if(e.select){var r=s.parents(".um-directory");if(!um_is_directory_busy(r)){um_members_show_preloader(r);var t=s.data("filter_name"),a=s.data("range"),i=um_get_data_for_directory(r,"filter_"+t+"_from"),m=um_get_data_for_directory(r,"filter_"+t+"_to");void 0===i&&(i=u/1e3),void 0===m&&(m=_/1e3);var d=e.select/1e3;s.val();"from"===a?i=d:"to"===a&&(m=d),um_set_url_from_data(r,"filter_"+t+"_from",i),um_set_url_from_data(r,"filter_"+t+"_to",m),r.data("page",1),um_set_url_from_data(r,"page",""),um_ajax_get_members(r),um_change_tag(r),r.data("searched",1),r.find(".um-member-directory-sorting-options").prop("disabled",!1),r.find(".um-member-directory-view-type").removeClass("um-disabled")}}}}).pickadate("picker"),r=s.data("filter_name"),t=s.data("range"),a=um_get_data_for_directory(s.parents(".um-directory"),"filter_"+r+"_"+t);void 0!==a&&e.set("select",1e3*a)}),e.find(".um-timepicker-filter").each(function(){var u=jQuery(this),_=u.attr("id"),o=u.data("filter_name"),n=u.attr("data-min"),l=u.attr("data-max"),e=n.split(":"),r=l.split(":"),t=u.pickatime({format:u.data("format"),interval:parseInt(u.data("intervals")),min:[e[0],e[1]],max:[r[0],r[1]],formatSubmit:"HH:i",hiddenName:!0,onOpen:function(){u.blur()},onClose:function(){u.blur()},onSet:function(e){if(e.select){var r=u.parents(".um-directory");if(!um_is_directory_busy(r)){um_members_show_preloader(r);var t=u.data("filter_name"),a=u.data("range"),i=um_get_data_for_directory(r,"filter_"+t+"_from"),m=um_get_data_for_directory(r,"filter_"+t+"_to");if(void 0===i&&(i=n),void 0===m&&(m=l),void 0!==e.select){var d=um_time_convert(e.select,a);"from"===a?i=d:"to"===a&&(m=d)}else"from"===a?i=n:"to"===a&&(m=l);var s=jQuery("#"+_).val();"from"===u.data("range")?jQuery("#"+o+"_to").pickatime("picker").set("min",s):jQuery("#"+o+"_from").pickatime("picker").set("max",s),um_set_url_from_data(r,"filter_"+t+"_from",i),um_set_url_from_data(r,"filter_"+t+"_to",m),r.data("page",1),um_set_url_from_data(r,"page",""),um_ajax_get_members(r),um_change_tag(r),r.data("searched",1),r.find(".um-member-directory-sorting-options").prop("disabled",!1),r.find(".um-member-directory-view-type").removeClass("um-disabled")}}}}).pickatime("picker"),a=u.data("filter_name"),i=u.data("range"),m=um_get_data_for_directory(u.parents(".um-directory"),"filter_"+a+"_"+i);if(void 0!==m){var d=m.split(":");t.set("select",60*d[0]+1*d[1])}}),wp.hooks.doAction("um_member_directory_on_init",e,r);var t=!1;if(!(t=wp.hooks.applyFilters("um_member_directory_ignore_after_search",t,e))&&1===e.data("must-search")){var a=um_get_search(e);if(!um_get_filters_data(e).length&&!a)return}wp.hooks.applyFilters("um_member_directory_prevent_default_first_loading",!1,e,r)||(um_members_show_preloader(e),um_ajax_get_members(e,{first_load:!0}),um_change_tag(e))}),window.addEventListener("popstate",function(e){jQuery(".um-directory").each(function(){var d=jQuery(this),e=um_members_get_hash(d);(um_member_directories.push(e),um_members_show_preloader(d),d.find(".um-members-grid, .um-members-list, .um-members-intro").remove(),d.find(".um-member-directory-search-line").length)&&(void 0===(s=um_get_data_for_directory(d,"search"))&&(s=""),d.data("general_search",s),d.find(".um-search-line").val(s));var r=um_get_data_for_directory(d,"page");if(void 0===r?r=1:r>d.data("total_pages")&&(r=d.data("total_pages")),d.data("page",r).attr("data-page",r),d.find(".um-member-directory-sorting").length){var t=um_get_data_for_directory(d,"sort");void 0===t&&(t=d.find('.um-new-dropdown[data-element=".um-member-directory-sorting-a"]').find('a[data-default="1"]').data("value")),d.data("sorting",t);var a=d.find('.um-new-dropdown[data-element=".um-member-directory-sorting-a"]');a.find("a").data("selected",0).prop("data-selected",0).attr("data-selected",0),a.find('a[data-value="'+t+'"]').data("selected",1).prop("data-selected",1).attr("data-selected",1),d.find(".um-member-directory-sorting-a").find("> a").html(a.find('a[data-value="'+t+'"]').html())}if(d.find(".um-member-directory-view-type").length){var i=um_get_data_for_directory(d,"view_type");void 0===i&&(i=d.find('.um-member-directory-view-type-a[data-default="1"]').data("type")),d.data("view_type",i),d.find(".um-member-directory-view-type .um-member-directory-view-type-a").hide(),d.find('.um-member-directory-view-type .um-member-directory-view-type-a[data-type="'+i+'"]').show()}d.find(".um-datepicker-filter").each(function(){var e=jQuery(this),r=e.pickadate("picker"),t=e.data("filter_name"),a=e.data("range"),i=um_get_data_for_directory(d,"filter_"+t+"_"+a);void 0!==i?r.set("select",1e3*i):r.clear()}),d.find(".um-slider").each(function(){var e=jQuery(this),r=e.data("field_name"),t=um_get_data_for_directory(d,"filter_"+r+"_from"),a=um_get_data_for_directory(d,"filter_"+r+"_to");void 0===t&&(t=e.data("min")),t=parseInt(t),void 0===a&&(a=e.data("max")),a=parseInt(a),e.slider("values",[t,a]),um_set_range_label(e)}),d.find(".um-timepicker-filter").each(function(){var e=jQuery(this),r=e.pickatime("picker"),t=e.data("filter_name"),a=e.data("range"),i=um_get_data_for_directory(d,"filter_"+t+"_"+a);if(void 0!==i){var m=i.split(":");r.set("select",60*m[0])}else r.clear()});var m=!1;if(!(m=wp.hooks.applyFilters("um_member_directory_ignore_after_search",m,d))&&1===d.data("must-search")){var s=um_get_search(d);if(!um_get_filters_data(d).length&&!s)return d.data("searched",0),void um_members_hide_preloader(d);d.data("searched",1)}wp.hooks.applyFilters("um_member_directory_prevent_default_first_loading",!1,d,e)||(um_ajax_get_members(d),um_change_tag(d))})})});
assets/sass/_colors.sass ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ $border: #ddd
2
+ $hover: #ccc
3
+ $shadow1: rgba(50,50,93,.1)
4
+ $shadow2: rgba(0,0,0,.07)
assets/sass/_mixins.sass ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ =flex ($direction, $justify, $align, $wrap)
2
+ display: flex
3
+ flex-direction: $direction
4
+ justify-content: $justify
5
+ align-items: $align
6
+ flex-wrap: $wrap
7
+
8
+ =border-box
9
+ box-sizing: border-box
10
+ -moz-box-sizing: border-box
11
+ -webkit-box-sizing: border-box
12
+
13
+ =transition ($time, $action)
14
+ -webkit-transition: $time $action
15
+ -moz-transition: $time $action
16
+ -ms-transition: $time $action
17
+ -o-transition: $time $action
18
+ transition: $time $action
19
+
20
+
21
+ =keyframes ($name)
22
+ @-webkit-keyframes #{$name}
23
+ @content
24
+ @-moz-keyframes #{$name}
25
+ @content
26
+ @-ms-keyframes #{$name}
27
+ @content
28
+ @keyframes #{$name}
29
+ @content
30
+
31
+ =border-radius ($tl, $tr, $br, $bl)
32
+ border-radius: $tl $tr $br $bl
33
+ -moz-border-radius: $tl $tr $br $bl
34
+ -webkit-border-radius: $tl $tr $br $bl
assets/sass/_selectors.sass ADDED
@@ -0,0 +1 @@
 
1
+ $prefix: um-
assets/sass/um-members-rtl.sass ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "selectors"
2
+ @import "mixins"
3
+ @import "colors"
4
+
5
+ .#{$prefix}directory
6
+ .um-member-directory-header
7
+ .um-member-directory-header-row
8
+ &.um-member-directory-search-row
9
+ justify-content: flex-start
10
+ .um-member-directory-search-line
11
+ label
12
+ margin: 0 0 0 10px
13
+ .um-member-directory-nav-line
14
+ .um-member-directory-view-type
15
+ margin: 0 0 0 10px
16
+ .um-member-directory-sorting
17
+ .um-member-directory-sorting-a
18
+ a
19
+ margin: 0 0 0 5px
20
+ .um-new-dropdown
21
+ right: -12px
22
+ left: auto
23
+ .um-member-directory-filters
24
+ .um-member-directory-filters-a
25
+ a
26
+ margin: 0 0 0 5px
27
+
28
+ .um-search
29
+ .um-search-filter
30
+ &.um-datepicker-filter-type,
31
+ &.um-timepicker-filter-type
32
+ input
33
+ margin: 0 0 0 5px !important
34
+ &:nth-child(even)
35
+ margin: 0 5px 0 0 !important
36
+
37
+ .um-filtered-line
38
+ .um-members-filter-tag
39
+ margin: 0 0 5px 10px
40
+ &:first-child
41
+ margin-left: 10px
42
+ .um-members-filter-remove
43
+ margin-left: 0
44
+ margin-right: 10px
45
+
46
+
47
+ .um-members-wrapper
48
+ .um-members
49
+ &.um-members-grid
50
+ .um-member
51
+ .um-member-card
52
+ .um-members-edit-btn
53
+ a.um-edit-profile-btn
54
+ &:before
55
+ margin-right: 0
56
+ margin-left: 8px
57
+
58
+ &.um-members-list
59
+ .um-member
60
+ .um-member-card-container
61
+ .um-member-photo
62
+ margin: 0 0 0 15px
63
+
64
+ .um-member-card
65
+ .um-member-card-content
66
+ margin: 0 0 0 10px
67
+
68
+ .um-member-card-actions
69
+ .um-member-cog
70
+ .um-new-dropdown
71
+ right: auto
72
+ left: 0
73
+ text-align: right
74
+
75
+
76
+ .um-members-pagination-box
77
+ .um-members-pagi
78
+ align-items: center
79
+ .pagi
80
+ &.pagi-arrow
81
+ transform: rotate(180deg)
82
+
83
+ &.uimob340
84
+ .um-member-directory-header
85
+ .um-member-directory-header-row
86
+ .um-member-directory-nav-line
87
+ .um-member-directory-view-type
88
+ margin: 0 0 0 2px
89
+ .um-member-directory-sorting
90
+ .um-new-dropdown
91
+ right: auto
92
+ left: 0
93
+
94
+ .um-members-wrapper
95
+ .um-members
96
+ &.um-members-list
97
+ .um-member
98
+ .um-member-photo
99
+ margin: 0 0 0 10px
100
+
101
+ .um-member-card-footer
102
+ .um-member-card-footer-buttons
103
+ margin: 0 0 0 10px
104
+
105
+ &.uimob500
106
+ .um-member-directory-header
107
+ .um-member-directory-header-row
108
+ .um-member-directory-nav-line
109
+ .um-member-directory-view-type
110
+ margin: 0 0 0 5px
111
+ .um-members-wrapper
112
+ .um-members
113
+ &.um-members-list
114
+ .um-member
115
+ .um-member-photo
116
+ margin: 0 0 0 10px
117
+
118
+ .um-member-card-footer
119
+ align-items: flex-start
120
+ .um-member-card-footer-buttons
121
+ margin: 0 0 0 10px
122
+ .um-members-list-footer-button-wrapper
123
+ margin: 0 0 5px 10px
124
+
125
+ &.uimob800
126
+ .um-members-wrapper
127
+ .um-members
128
+ &.um-members-list
129
+ .um-member
130
+ .um-member-photo
131
+ margin: 0 0 0 10px
132
+
133
+ .um-member-card-footer
134
+ .um-member-card-footer-buttons
135
+ margin: 0 0 0 10px
136
+ .um-members-list-footer-button-wrapper
137
+ margin: 0 0 5px 10px
assets/sass/um-members.sass ADDED
@@ -0,0 +1,1007 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "selectors"
2
+ @import "mixins"
3
+ @import "colors"
4
+
5
+ +keyframes(um-ajax-spinning)
6
+ 0%
7
+ -webkit-transform: rotate(0deg)
8
+ transform: rotate(0deg)
9
+ 100%
10
+ -webkit-transform: rotate(360deg)
11
+ transform: rotate(360deg)
12
+
13
+
14
+
15
+ .um-new-dropdown
16
+ font-size: 16px
17
+ margin: 0
18
+ position: absolute
19
+ height: auto
20
+ background: #fff
21
+ z-index: 10
22
+ display: none
23
+ border: 1px solid $border
24
+ box-shadow: 0 7px 14px 0 $shadow1, 0 3px 6px 0 $shadow2
25
+ -webkit-box-shadow: 0 7px 14px 0 $shadow1, 0 3px 6px 0 $shadow2
26
+ +border-box
27
+ +border-radius(5px, 5px, 5px, 5px)
28
+ ul
29
+ margin: 0
30
+ padding: 0
31
+ li
32
+ list-style-type: none
33
+ padding: 0
34
+ margin: 0
35
+ a
36
+ display: block
37
+ padding: 8px 12px
38
+ line-height: 1
39
+
40
+ .um-new-dropdown-arr
41
+ position: absolute
42
+ font-size: 24px
43
+ width: 24px
44
+ height: 24px
45
+ overflow: hidden
46
+ z-index: 15
47
+ color: #eee
48
+ *
49
+ display: block
50
+ width: 24px
51
+ height: 24px
52
+ vertical-align: bottom
53
+ overflow: hidden
54
+ line-height: 24px
55
+
56
+
57
+ body
58
+ #content
59
+ .#{$prefix}directory
60
+ a
61
+ text-decoration: none
62
+ border-bottom: none
63
+ box-shadow: none
64
+ &:hover, &:focus
65
+ text-decoration: none
66
+ border-bottom: none
67
+ box-shadow: none
68
+
69
+ .#{$prefix}directory
70
+ +flex( column, flex-start, stretch, nowrap )
71
+ position: relative
72
+
73
+ a
74
+ text-decoration: none
75
+ border-bottom: none
76
+ box-shadow: none
77
+ &:hover, &:focus
78
+ text-decoration: none
79
+ border-bottom: none
80
+ box-shadow: none
81
+
82
+
83
+ .select2-container--disabled
84
+ opacity: 0.6
85
+
86
+ .um-members-overlay
87
+ display: none
88
+ position: absolute
89
+ width: 100%
90
+ top: 0
91
+ bottom: 0
92
+ background: none
93
+ z-index: 2
94
+ .um-ajax-loading
95
+ +transition(.1s,opacity)
96
+ color: #c6c6c6 !important
97
+ -webkit-animation: um-ajax-spinning 1.1s infinite linear
98
+ animation: um-ajax-spinning 1.1s infinite linear
99
+ border-top: .2em solid rgba(198, 198, 198, 0.2)
100
+ border-right: .2em solid rgba(198, 198, 198, 0.2)
101
+ border-bottom: .2em solid rgba(198, 198, 198, 0.2)
102
+ border-left: .2em solid #c6c6c6
103
+ font-size: 1.75em
104
+ position: absolute
105
+ left: calc(50% - 1.75em)
106
+ top: calc(50% - 1.75em)
107
+ filter: alpha(opacity=0)
108
+ -ms-transform: translateZ(0)
109
+ transform: translateZ(0)
110
+ border-radius: 50%
111
+ display: block
112
+ width: 2.5em
113
+ height: 2.5em
114
+ margin: 0
115
+ outline: 0
116
+ padding: 0
117
+ vertical-align: baseline
118
+
119
+ .um-member-directory-header
120
+ +flex( column, flex-start, stretch, nowrap )
121
+ width: 100%
122
+ .um-member-directory-header-row
123
+ &.um-member-directory-filters-bar
124
+ padding: 0 0 10px 0
125
+ &:not(.um-member-directory-filters-bar)
126
+ +flex( row, flex-start, baseline, nowrap )
127
+ margin: 0 0 10px 0
128
+ &.um-header-row-invisible
129
+ margin: 0
130
+ &.um-member-directory-search-row
131
+ justify-content: flex-end
132
+ .um-member-directory-search-line
133
+ +flex( row, flex-start, center, nowrap )
134
+ width: 60%
135
+ label
136
+ flex: 1
137
+ margin: 0 10px 0 0
138
+ min-width: 90px
139
+ max-width: 85%
140
+ span
141
+ display: none
142
+ margin: 0 5px 0 0
143
+ .um-search-line
144
+ -webkit-appearance: textfield
145
+ width: 100%
146
+ +border-box
147
+ .um-do-search
148
+ min-width: 15%
149
+ width: auto
150
+ .um-member-directory-nav-line
151
+ +flex( row, space-between, center, nowrap )
152
+ width: 100%
153
+ .um-member-directory-view-type
154
+ font-size: 30px
155
+ line-height: 30px
156
+ margin: 0 10px 0 0
157
+ width: 30px
158
+ .um-member-directory-view-type-a
159
+ color: $border
160
+ display: none
161
+ &.um-disabled
162
+ cursor: default
163
+ a
164
+ cursor: default
165
+ &:not( .um-disabled )
166
+ .um-member-directory-view-type-a
167
+ &:hover
168
+ color: $hover
169
+ &:focus
170
+ color: $border
171
+ .um-member-directory-sorting
172
+ +flex( row, flex-start, baseline, nowrap )
173
+ flex: 5
174
+ .um-member-directory-sorting-a
175
+ +flex( row, flex-start, baseline, nowrap )
176
+ position: relative
177
+ cursor: pointer
178
+ a
179
+ margin: 0 5px 0 0
180
+ i
181
+ &.um-faicon-caret-down
182
+ display: inline
183
+ &.um-faicon-caret-up
184
+ display: none
185
+ &.um-member-directory-sorting-visible
186
+ i
187
+ &.um-faicon-caret-down
188
+ display: none
189
+ &.um-faicon-caret-up
190
+ display: inline
191
+ .um-new-dropdown
192
+ top : 24px
193
+ width: 200px
194
+ left: -12px
195
+ li
196
+ a[data-selected="1"]
197
+ display: none
198
+ .um-member-directory-filters
199
+ +flex( row, flex-end, baseline, nowrap )
200
+ flex: 2
201
+ text-align: right
202
+ .um-member-directory-filters-a
203
+ +flex( row, flex-start, baseline, nowrap )
204
+ cursor: pointer
205
+ a
206
+ margin: 0 5px 0 0
207
+ i
208
+ &.um-faicon-caret-down
209
+ display: inline
210
+ &.um-faicon-caret-up
211
+ display: none
212
+ &.um-member-directory-filters-visible
213
+ i
214
+ &.um-faicon-caret-down
215
+ display: none
216
+ &.um-faicon-caret-up
217
+ display: inline
218
+
219
+ .um-search
220
+ margin: 0
221
+ width: 100%
222
+ display: grid
223
+
224
+ grid-template-rows: auto 1fr
225
+ grid-template-columns: repeat(3, 1fr)
226
+ grid-gap: 10px
227
+ grid-auto-rows: minmax(max-content, auto)
228
+ -ms-grid-template-rows: auto 1fr
229
+ -ms-grid-template-columns: repeat(3, 1fr)
230
+ -ms-grid-gap: 10px
231
+ -ms-grid-auto-rows: minmax(max-content, auto)
232
+ align-items: center
233
+ .um-search-filter
234
+ +flex( row, flex-start, baseline, nowrap )
235
+ width: 100%
236
+
237
+ .select2-container
238
+ float: left
239
+ width: 100% !important
240
+
241
+ .um-s1
242
+ width: 100%
243
+ &.um-text-filter-type
244
+ input
245
+ width: 100%
246
+ &.um-slider-filter-type
247
+ flex-direction: column
248
+ align-items: stretch
249
+ .um-slider
250
+ width: calc( 100% - 16px )
251
+ .ui-slider-range.ui-widget-header
252
+ background: #44b0ec
253
+ border: 1px solid #44b0ec !important
254
+ margin-top: -1px
255
+
256
+ &.ui-slider.ui-slider-horizontal
257
+ border: 1px solid #ddd !important
258
+ box-sizing: border-box
259
+ margin: 4px 8px 0 8px
260
+
261
+ .um-slider-range
262
+ +flex( row, flex-start, baseline, nowrap )
263
+ margin: 6px 0 0 8px
264
+ font-size: 0.8em
265
+ &.um-datepicker-filter-type,
266
+ &.um-timepicker-filter-type
267
+ +flex( row, flex-start, baseline, nowrap )
268
+ input
269
+ width: calc( 50% - 5px )
270
+ margin: 0 5px 0 0 !important
271
+ +border-box
272
+ //float: left
273
+ &:nth-child(even)
274
+ margin: 0 0 0 5px !important
275
+ &[style*="overflow: hidden;"]
276
+ .um-search-filter
277
+ pointer-events: none
278
+ &.um-search-invisible
279
+ display: none
280
+
281
+ .um-filtered-line
282
+ +flex( row, flex-start, baseline, wrap )
283
+ //margin: 5px 0 0 0
284
+ margin: 0
285
+ padding: 0
286
+ box-sizing: border-box
287
+ border: none
288
+ .um-members-filter-tag
289
+ +flex( row, flex-start, center, nowrap )
290
+ margin: 0 10px 5px 0
291
+ padding: 0 10px
292
+ border-radius: 3px
293
+ cursor: default
294
+ background: #f1f1f1
295
+ font-size: 13px
296
+ &:first-child
297
+ margin-left: 0
298
+ .um-members-filter-remove
299
+ float: right
300
+ display: inline-block
301
+ margin-left: 10px
302
+ cursor: pointer
303
+ font-weight: bold
304
+ font-size: 20px
305
+ &:hover
306
+ color: #a00
307
+
308
+ .um-clear-filters
309
+ display: none
310
+ a
311
+ padding: 3px 10px
312
+ margin: 0 10px
313
+
314
+
315
+ .um-members-wrapper
316
+ +flex( column, flex-start, stretch, nowrap )
317
+ width: 100%
318
+ margin: 0 0 10px 0
319
+ padding: 0
320
+ position: relative
321
+ height: 300px
322
+
323
+ .um-members-intro
324
+ text-align: center
325
+ margin: 0 0 10px 0
326
+
327
+ .um-members-total
328
+ font-size: 20px
329
+ font-weight: 300
330
+
331
+ .um-members
332
+ width: 100%
333
+ margin: 0
334
+ padding: 0
335
+ -ms-word-break: break-all
336
+ word-break: break-word
337
+ word-wrap: break-word
338
+
339
+ .um-member
340
+ border: 1px solid $border
341
+ +border-box
342
+ .um-member-photo
343
+ &.radius-1
344
+ a img
345
+ -moz-border-radius: 999px !important
346
+ -webkit-border-radius: 999px !important
347
+ border-radius: 999px !important
348
+ &.radius-2
349
+ a img
350
+ -moz-border-radius: 4px !important
351
+ -webkit-border-radius: 4px !important
352
+ border-radius: 4px !important
353
+ &.radius-3
354
+ a img
355
+ -moz-border-radius: 0 !important
356
+ -webkit-border-radius: 0 !important
357
+ border-radius: 0 !important
358
+ .um-member-card
359
+ .um-member-name
360
+ +flex( row, flex-start, baseline, nowrap )
361
+ a
362
+ +flex( row, flex-start, center, nowrap )
363
+
364
+
365
+ img
366
+ display: block
367
+ overflow: hidden
368
+ -moz-border-radius: 0
369
+ -webkit-border-radius: 0
370
+ border-radius: 0
371
+ margin: 0
372
+ padding: 0
373
+
374
+ &.um-members-grid
375
+ .um-gutter-sizer
376
+ width: 5%
377
+ .um-member
378
+ float: left
379
+ width: 30%
380
+ background: #fff
381
+ text-align: center
382
+ margin-bottom: 40px
383
+ position: relative
384
+ .um-member-status
385
+ display: none
386
+ background: #999
387
+ &.awaiting_admin_review,
388
+ &.inactive,
389
+ &.rejected
390
+ display: block
391
+ position: absolute
392
+ top: 0
393
+ left: 0
394
+ width: 100%
395
+ padding: 7px 15px
396
+ color: #fff
397
+ z-index: 10
398
+ font-size: 13px
399
+ +border-box
400
+ &.awaiting_admin_review
401
+ background: #c74a4a
402
+ .um-member-photo
403
+ padding: 40px 0 20px 0
404
+ text-align: center
405
+ a
406
+ text-decoration: none
407
+ box-shadow: none !important
408
+ display: inline !important
409
+ img
410
+ display: inline !important
411
+ border: 5px solid #fff
412
+ background: #fff
413
+ width: 140px
414
+ height: 140px
415
+ float: none !important
416
+
417
+ &.awaiting_admin_review,
418
+ &.inactive,
419
+ &.rejected
420
+ opacity: 0.7
421
+ &.with-cover
422
+ .um-member-photo
423
+ padding-top: 0
424
+ a img
425
+ width: 90px
426
+ height: 90px
427
+ position: relative
428
+ top: -35px
429
+ margin-bottom: -45px
430
+ float: none
431
+ opacity: 1
432
+
433
+ .um-member-cover
434
+ background-color: #eee
435
+ box-sizing: border-box
436
+ position: relative
437
+ &[data-ratio]
438
+ overflow-y: hidden
439
+ .um-member-cover-e
440
+ text-align: center
441
+ box-sizing: border-box
442
+ img
443
+ width: 100% !important
444
+ .um-member-card
445
+ padding-bottom: 15px
446
+ &.no-photo
447
+ padding-top: 30px
448
+
449
+ .um-member-name
450
+ margin: 0 0 4px 0
451
+ justify-content: center
452
+ a
453
+ font-size: 16px
454
+ line-height: 26px
455
+ color: #444
456
+ font-weight: 700
457
+
458
+
459
+ .um-members-edit-btn
460
+ margin: 2px 0
461
+ height: 40px
462
+ a.um-edit-profile-btn
463
+ padding: 10px 15px !important
464
+ transition: none !important
465
+ display: inline-block !important
466
+ margin: 0 auto !important
467
+ min-width: 110px
468
+ width: auto
469
+ text-align: center
470
+ font-size: 13px
471
+ &:before
472
+ font-family: "FontAwesome"
473
+ margin-right: 8px
474
+ width: 14px
475
+ text-align: left
476
+ display: inline-block
477
+ font-size: 16px
478
+ position: relative
479
+ left: 0
480
+ top: 1px
481
+ content: "\f013"
482
+
483
+
484
+ .um-member-tagline
485
+ font-size: 13px
486
+ line-height: 22px
487
+ color: #999
488
+ padding: 0 15px
489
+
490
+ .um-member-meta-main
491
+ .um-member-meta
492
+ display: none
493
+ margin: 20px 15px 0 15px
494
+ padding: 15px 0
495
+ border-top: 1px solid #e5e5e5
496
+ &.no-animate
497
+ display: block
498
+ .um-member-metaline
499
+ font-size: 13px
500
+ padding: 12px 0 0 0
501
+ line-height: 16px
502
+ vertical-align: middle
503
+ strong
504
+ display: block
505
+ clear: both
506
+ span
507
+ display: block
508
+ text-align: center
509
+
510
+ .um-member-connect
511
+ padding-top: 20px
512
+
513
+ a
514
+ display: inline-block
515
+ width: 40px
516
+ line-height: 40px
517
+ height: 40px
518
+ -moz-border-radius: 999px
519
+ -webkit-border-radius: 999px
520
+ border-radius: 999px
521
+ color: #fff !important
522
+ opacity: 0.85
523
+ margin: 0 1px
524
+ font-size: 22px
525
+ transition: 0.25s
526
+
527
+ &:hover
528
+ opacity: 1
529
+ color: #fff
530
+
531
+ .um-member-less
532
+ display: none
533
+ a
534
+ color: #666
535
+ display: inline-block
536
+ i
537
+ display: block
538
+ font-size: 32px
539
+ height: 32px
540
+ line-height: 32px
541
+ .um-member-more
542
+ a
543
+ color: #666
544
+ display: inline-block
545
+ i
546
+ display: block
547
+ font-size: 32px
548
+ height: 32px
549
+ line-height: 32px
550
+
551
+
552
+ &.um-members-list
553
+ display: grid
554
+
555
+ grid-template-rows: auto 1fr
556
+ grid-template-columns: repeat(1, 1fr)
557
+ grid-gap: 10px
558
+ grid-auto-rows: minmax(max-content, auto)
559
+ -ms-grid-template-rows: auto 1fr
560
+ -ms-grid-template-columns: repeat(1, 1fr)
561
+ -ms-grid-gap: 10px
562
+ -ms-grid-auto-rows: minmax(max-content, auto)
563
+ align-items: center
564
+
565
+ .um-member
566
+ +flex( column, flex-start, stretch, nowrap )
567
+ width: 100%
568
+ padding: 15px
569
+ margin: 0
570
+ background: #fff
571
+ +border-box
572
+ .um-member-status
573
+ display: none
574
+ background: #999
575
+ &.awaiting_admin_review,
576
+ &.inactive,
577
+ &.rejected
578
+ display: block
579
+ width: 100%
580
+ padding: 7px 15px
581
+ margin-bottom: 10px
582
+ color: #fff
583
+ font-size: 13px
584
+ +border-box
585
+ &.awaiting_admin_review
586
+ background: #c74a4a
587
+ .um-member-card-container
588
+ +flex( row, flex-start, flex-start, nowrap )
589
+ width: 100%
590
+ margin: 0 0 10px 0
591
+ padding: 0
592
+ .um-member-photo
593
+ width: 100px
594
+ margin: 0 15px 0 0
595
+ padding: 0
596
+ a
597
+ width: 100px
598
+ height: 100px
599
+ display: block
600
+ img
601
+ width: 100px
602
+ height: 100px
603
+ position: relative
604
+ top: 0
605
+ margin: 0
606
+ margin-bottom: 0
607
+ border: none
608
+
609
+ .um-member-card
610
+ +flex( row, flex-start, flex-start, nowrap )
611
+ width: calc( 100% - 115px )
612
+ padding: 0
613
+ margin: 0
614
+ +border-box
615
+ &.no-photo
616
+ width: 100%
617
+
618
+ .um-member-card-content
619
+ +flex( column, flex-start, stretch, nowrap )
620
+ width: calc( 100% - 30px )
621
+ margin: 0 10px 0 0
622
+ .um-member-card-header
623
+ width: 100%
624
+ .um-member-name
625
+ margin: 0 0 4px 0
626
+ a
627
+ font-size: 16px
628
+ line-height: 26px
629
+ color: #444
630
+ font-weight: 700
631
+
632
+ .um-member-tagline
633
+ +flex( row, flex-start, baseline, wrap )
634
+ width: 100%
635
+ font-size: 13px
636
+ //line-height: 22px
637
+ color: #999
638
+ padding: 0
639
+ box-sizing: border-box
640
+ .um-member-meta-main
641
+ width: 100%
642
+ padding: 0
643
+ box-sizing: border-box
644
+ display: none
645
+ &.no-animate
646
+ display: block
647
+ .um-member-meta
648
+ float: left
649
+ width: 100%
650
+ display: block
651
+ margin: 10px 0 0 0
652
+ box-sizing: border-box
653
+ border: none
654
+
655
+ .um-member-metaline
656
+ +flex( row, flex-start, center, wrap )
657
+ font-size: 13px
658
+ padding: 12px 0 0 0
659
+ line-height: 16px
660
+ width: 100%
661
+
662
+ .um-member-connect
663
+ padding-top: 10px
664
+ a
665
+ display: inline-block
666
+ width: 40px
667
+ line-height: 40px
668
+ height: 40px
669
+ -moz-border-radius: 999px
670
+ -webkit-border-radius: 999px
671
+ border-radius: 999px
672
+ color: #fff !important
673
+ opacity: 0.85
674
+ margin: 0 1px
675
+ font-size: 22px
676
+ transition: 0.25s
677
+ text-align: center
678
+
679
+ &:hover
680
+ opacity: 1
681
+ color: #fff
682
+
683
+ .um-member-card-actions
684
+ +flex( column, flex-start, flex-end, nowrap )
685
+ width: 20px
686
+ text-align: right
687
+ padding: 0
688
+ .um-member-cog
689
+ position: relative
690
+ .um-member-actions-a
691
+ line-height: 1
692
+ display: block
693
+ color: #666
694
+ i
695
+ display: block
696
+ font-size: 20px
697
+ line-height: 1
698
+ .um-new-dropdown
699
+ width: 180px
700
+ right: 0
701
+ text-align: left
702
+
703
+ a
704
+ box-sizing: border-box
705
+
706
+ .um-member-card-footer
707
+ +flex( row, flex-end, center, nowrap )
708
+ width: 100%
709
+
710
+ .um-member-card-footer-buttons
711
+ +flex( row, flex-start, baseline, nowrap )
712
+ width: calc( 100% - 145px )
713
+ margin: 0 10px 0 0
714
+
715
+ .um-members-list-footer-button-wrapper
716
+ +flex( row, flex-start, baseline, nowrap )
717
+ margin: 0
718
+ //flex: 1 0 calc( ( 100% - 20px ) / 3 )
719
+ & > :not(:last-child)
720
+ margin: 0 10px 0 0
721
+ .um-member-card-reveal-buttons
722
+ width: 20px
723
+ text-align: right
724
+ .um-member-more
725
+ +flex( column, flex-start, baseline, nowrap )
726
+ a
727
+ color: #666
728
+ display: inline-block
729
+ i
730
+ display: block
731
+ font-size: 28px
732
+ height: 28px
733
+ line-height: 28px
734
+ .um-member-less
735
+ +flex( column, flex-start, baseline, nowrap )
736
+ display: none
737
+ a
738
+ color: #666
739
+ display: inline-block
740
+ i
741
+ display: block
742
+ font-size: 28px
743
+ height: 28px
744
+ line-height: 28px
745
+ &.no-photo.no-reveal
746
+ .um-member-card-footer-buttons
747
+ width: 100%
748
+ &.no-photo:not(.no-reveal)
749
+ .um-member-card-footer-buttons
750
+ width: calc( 100% - 30px )
751
+ &.no-reveal:not(.no-photo)
752
+ .um-member-card-footer-buttons
753
+ width: calc( 100% - 125px )
754
+
755
+
756
+
757
+ .um-members-none
758
+ text-align: center
759
+ font-size: 18px
760
+
761
+
762
+ .um-members-pagination-box
763
+ width: 100%
764
+ float: left
765
+ margin: 0 0 10px 0
766
+ padding: 0
767
+ .um-members-pagi
768
+ +flex( row, center, baseline, nowrap )
769
+ width: 100%
770
+ margin: 0
771
+ padding: 0
772
+ font-size: 15px
773
+ .pagi
774
+ cursor: pointer
775
+ display: inline-block
776
+ width: auto
777
+ height: 34px
778
+ line-height: 34px
779
+ transition: all .2s linear
780
+ padding: 0 14px
781
+ color: #666 !important
782
+ font-weight: normal
783
+ &.pagi-arrow
784
+ line-height: 38px
785
+ i:before
786
+ font-size: 20px
787
+ vertical-align: middle !important
788
+ height: 34px
789
+ line-height: 34px
790
+ top: -2px
791
+ position: relative
792
+ &.current
793
+ cursor: default
794
+ color: #fff !important
795
+ &:hover
796
+ color: #fff !important
797
+ &.disabled
798
+ cursor: default
799
+ opacity: .4
800
+ &.none
801
+ color: #aaa !important
802
+
803
+ .um-members-pagidrop
804
+ width: 100%
805
+ float: left
806
+ margin: 0
807
+ text-align: center
808
+ padding: 5px 0
809
+ font-size: 15px
810
+
811
+
812
+ &.um-loaded
813
+ .um-members-wrapper
814
+ height: auto
815
+
816
+ &[data-view_type="list"]
817
+ .um-member-directory-header
818
+ .um-member-directory-header-row
819
+ .um-member-directory-view-type
820
+ .um-member-directory-view-type-a[data-type="list"]
821
+ display: block
822
+ &[data-view_type="grid"]
823
+ .um-member-directory-header
824
+ .um-member-directory-header-row
825
+ .um-member-directory-view-type
826
+ .um-member-directory-view-type-a[data-type="grid"]
827
+ display: block
828
+ &[data-view_type="map"]
829
+ .um-member-directory-header
830
+ .um-member-directory-header-row
831
+ .um-member-directory-view-type
832
+ .um-member-directory-view-type-a[data-type="map"]
833
+ display: block
834
+
835
+ &.uimob340
836
+ .um-member-directory-header
837
+ .um-member-directory-header-row
838
+ .um-member-directory-search-line
839
+ width: 100%
840
+ &.um-member-directory-search-row
841
+ justify-content: flex-start
842
+
843
+ .um-member-directory-nav-line
844
+ flex-wrap: wrap
845
+ .um-member-directory-view-type
846
+ width: 20px
847
+ font-size: 20px
848
+ line-height: 20px
849
+ margin: 0 2px 0 0
850
+ .um-member-directory-sorting
851
+ width: calc( 100% - 25px )
852
+ justify-content: flex-end
853
+ .um-new-dropdown
854
+ right: 0
855
+ left: auto
856
+ .um-member-directory-filters
857
+ flex: none
858
+ width: 100%
859
+ .um-search
860
+ grid-template-columns: repeat(1, 1fr)
861
+
862
+ .um-members-wrapper
863
+ .um-members
864
+ .um-member
865
+ width: 100%
866
+ &.um-members-grid
867
+ .um-gutter-sizer
868
+ width: 0
869
+ &.um-members-list
870
+ .um-member
871
+ padding: 10px
872
+ .um-member-photo
873
+ width: 50px
874
+ margin: 0 10px 0 0
875
+ a
876
+ width: 50px
877
+ height: 50px
878
+ img
879
+ width: 50px
880
+ height: 50px
881
+
882
+ .um-member-card
883
+ width: calc( 100% - 60px )
884
+
885
+ .um-member-card-footer
886
+ align-items: flex-start
887
+ .um-member-card-footer-buttons
888
+ +flex( column, flex-start, stretch, nowrap )
889
+ width: calc( 100% - 90px )
890
+ margin: 0 10px 0 0
891
+ .um-members-list-footer-button-wrapper
892
+ margin: 0 0 5px 0
893
+ a.um-button
894
+ width: 100% !important
895
+ &.no-reveal:not(.no-photo)
896
+ .um-member-card-footer-buttons
897
+ width: calc( 100% - 70px )
898
+ .um-members-pagination-box
899
+ .um-members-pagi
900
+ display: none
901
+
902
+ &.uimob500
903
+ .um-member-directory-header
904
+ .um-member-directory-header-row
905
+ .um-member-directory-search-line
906
+ width: 100%
907
+ &.um-member-directory-search-row
908
+ justify-content: flex-start
909
+ .um-member-directory-nav-line
910
+ .um-member-directory-view-type
911
+ width: 20px
912
+ font-size: 20px
913
+ line-height: 20px
914
+ margin: 0 5px 0 0
915
+ .um-search
916
+ grid-template-columns: repeat(1, 1fr)
917
+ .um-members-wrapper
918
+ .um-members
919
+ .um-member
920
+ width: 100%
921
+ &.um-members-grid
922
+ .um-gutter-sizer
923
+ width: 0
924
+ &.um-members-list
925
+ .um-member
926
+ .um-member-photo
927
+ width: 70px
928
+ margin: 0 10px 0 0
929
+ a
930
+ width: 70px
931
+ height: 70px
932
+ img
933
+ width: 70px
934
+ height: 70px
935
+
936
+ .um-member-card
937
+ width: calc( 100% - 80px )
938
+ .um-member-card-footer
939
+ align-items: flex-start
940
+ .um-member-card-footer-buttons
941
+ flex-wrap: wrap
942
+ width: calc( 100% - 110px )
943
+ margin: 0 10px 0 0
944
+ .um-members-list-footer-button-wrapper
945
+ margin: 0 10px 5px 0
946
+ &.no-reveal:not(.no-photo)
947
+ .um-member-card-footer-buttons
948
+ width: calc( 100% - 90px )
949
+ .um-members-pagination-box
950
+ .um-members-pagi
951
+ display: none
952
+ &.uimob800
953
+ .um-member-directory-header
954
+ .um-member-directory-header-row
955
+ .um-member-directory-search-line
956
+ width: 100%
957
+ .um-search
958
+ grid-template-columns: repeat(2, 1fr)
959
+
960
+ .um-members-wrapper
961
+ .um-members
962
+ &.um-members-grid
963
+ .um-gutter-sizer
964
+ width: 4%
965
+ .um-member
966
+ width: 48%
967
+ &.um-members-list
968
+ .um-member
969
+ .um-member-photo
970
+ width: 80px
971
+ margin: 0 10px 0 0
972
+ a
973
+ width: 80px
974
+ height: 80px
975
+ img
976
+ width: 80px
977
+ height: 80px
978
+
979
+ .um-member-card
980
+ width: calc( 100% - 90px )
981
+ .um-member-card-footer
982
+ align-items: flex-start
983
+ .um-member-card-footer-buttons
984
+ flex-wrap: wrap
985
+ width: calc( 100% - 120px )
986
+ margin: 0 10px 0 0
987
+ .um-members-list-footer-button-wrapper
988
+ margin: 0 10px 5px 0
989
+ &.no-reveal:not(.no-photo)
990
+ .um-member-card-footer-buttons
991
+ width: calc( 100% - 100px )
992
+ &.uimob960
993
+ .um-member-directory-header
994
+ .um-search
995
+ grid-template-columns: repeat(2, 1fr)
996
+
997
+ .um-members-wrapper
998
+ .um-members
999
+ &.um-members-grid
1000
+ .um-gutter-sizer
1001
+ width: 4%
1002
+ .um-member
1003
+ width: 48%
1004
+
1005
+
1006
+ .select2-container .select2-results li.select2-results__option[aria-disabled=true]
1007
+ display: none
includes/admin/core/class-admin-forms.php CHANGED
@@ -914,7 +914,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) {
914
  $id = ( ! empty( $this->form_data['prefix_id'] ) ? $this->form_data['prefix_id'] : '' ) . '_' . $field_data['id'];
915
  $id_attr = ' id="' . esc_attr( $id ) . '" ';
916
 
917
- $class = ! empty( $field_data['class'] ) ? $field_data['class'] : '';
918
  $class .= ! empty( $field_data['size'] ) ? 'um-' . $field_data['size'] . '-field' : 'um-long-field';
919
  $class_attr = ' class="um-forms-field ' . esc_attr( $class ) . '" ';
920
 
914
  $id = ( ! empty( $this->form_data['prefix_id'] ) ? $this->form_data['prefix_id'] : '' ) . '_' . $field_data['id'];
915
  $id_attr = ' id="' . esc_attr( $id ) . '" ';
916
 
917
+ $class = ! empty( $field_data['class'] ) ? $field_data['class'] . ' ' : ' ';
918
  $class .= ! empty( $field_data['size'] ) ? 'um-' . $field_data['size'] . '-field' : 'um-long-field';
919
  $class_attr = ' class="um-forms-field ' . esc_attr( $class ) . '" ';
920
 
includes/admin/core/class-admin-navmenu.php CHANGED
@@ -56,7 +56,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Navmenu' ) ) {
56
  * @param \stdClass $args An object of menu item arguments.
57
  * @param int $id Nav menu ID.
58
  */
59
- function wp_nav_menu_item_custom_fields( $item_id, $item, $depth, $args, $id ) {
60
 
61
  $um_nav_public = get_post_meta( $item->ID, 'menu-item-um_nav_public', true );
62
  $_nav_roles_meta = get_post_meta( $item->ID, 'menu-item-um_nav_roles', true );
@@ -284,4 +284,4 @@ if ( ! class_exists( 'um\admin\core\Admin_Navmenu' ) ) {
284
  <?php
285
  }
286
  }
287
- }
56
  * @param \stdClass $args An object of menu item arguments.
57
  * @param int $id Nav menu ID.
58
  */
59
+ function wp_nav_menu_item_custom_fields( $item_id, $item, $depth, $args, $id = null ) {
60
 
61
  $um_nav_public = get_post_meta( $item->ID, 'menu-item-um_nav_public', true );
62
  $_nav_roles_meta = get_post_meta( $item->ID, 'menu-item-um_nav_roles', true );
284
  <?php
285
  }
286
  }
287
+ }
includes/admin/core/class-admin-settings.php CHANGED
@@ -177,8 +177,8 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
177
  $wp_usermeta_option = get_option( 'um_usermeta_fields', array() );
178
 
179
  $count = $wpdb->get_var(
180
- "SELECT COUNT(*)
181
- FROM {$wpdb->usermeta}
182
  WHERE meta_key IN ('" . implode( "','", $wp_usermeta_option ) . "')"
183
  );
184
 
@@ -194,8 +194,8 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
194
 
195
  global $wpdb;
196
  $metadata = $wpdb->get_results( $wpdb->prepare(
197
- "SELECT *
198
- FROM {$wpdb->usermeta}
199
  WHERE meta_key IN ('" . implode( "','", $wp_usermeta_option ) . "')
200
  LIMIT %d, %d",
201
  ( absint( $_POST['page'] ) - 1 ) * $per_page,
@@ -209,7 +209,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
209
 
210
  if ( ! empty( $values ) ) {
211
  $wpdb->query(
212
- "INSERT INTO
213
  {$wpdb->prefix}um_metadata(user_id, um_key, um_value)
214
  VALUES " . implode( ',', $values ) );
215
  }
@@ -645,26 +645,35 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
645
  array(
646
  'id' => 'account_tab_privacy',
647
  'type' => 'checkbox',
648
- 'label' => __( 'Privacy Account Tab','ultimate-member' ),
649
  'tooltip' => __( 'Enable/disable the Privacy account tab in account page', 'ultimate-member' ),
650
  ),
651
  array(
652
  'id' => 'account_tab_notifications',
653
  'type' => 'checkbox',
654
- 'label' => __( 'Notifications Account Tab','ultimate-member' ),
655
  'tooltip' => __( 'Enable/disable the Notifications account tab in account page', 'ultimate-member' ),
656
  ),
657
  array(
658
  'id' => 'account_tab_delete',
659
  'type' => 'checkbox',
660
- 'label' => __( 'Delete Account Tab','ultimate-member' ),
661
  'tooltip' => __( 'Enable/disable the Delete account tab in account page', 'ultimate-member' ),
662
  ),
663
  array(
664
  'id' => 'delete_account_text',
665
  'type' => 'textarea', // bug with wp 4.4? should be editor
666
- 'label' => __( 'Account Deletion Custom Text','ultimate-member' ),
667
- 'tooltip' => __( 'This is custom text that will be displayed to users before they delete their accounts from your site', 'ultimate-member' ),
 
 
 
 
 
 
 
 
 
668
  'args' => array(
669
  'textarea_rows' => 6
670
  ),
@@ -672,13 +681,13 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
672
  array(
673
  'id' => 'account_name',
674
  'type' => 'checkbox',
675
- 'label' => __( 'Add a First & Last Name fields','ultimate-member' ),
676
  'tooltip' => __( 'Whether to enable these fields on the user account page by default or hide them.', 'ultimate-member' ),
677
  ),
678
  array(
679
  'id' => 'account_name_disable',
680
  'type' => 'checkbox',
681
- 'label' => __( 'Disable First & Last Name fields','ultimate-member' ),
682
  'tooltip' => __( 'Whether to allow users changing their first and last name in account page.', 'ultimate-member' ),
683
  'conditional' => array( 'account_name', '=', '1' ),
684
  ),
@@ -692,19 +701,19 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
692
  array(
693
  'id' => 'account_email',
694
  'type' => 'checkbox',
695
- 'label' => __( 'Allow users to change e-mail','ultimate-member' ),
696
  'tooltip' => __( 'Whether to allow users changing their email in account page.', 'ultimate-member' ),
697
  ),
698
  array(
699
  'id' => 'account_general_password',
700
  'type' => 'checkbox',
701
- 'label' => __( 'Password is required?','ultimate-member' ),
702
  'tooltip' => __( 'Password is required to save account data.', 'ultimate-member' ),
703
  ),
704
  array(
705
  'id' => 'account_require_strongpass',
706
  'type' => 'checkbox',
707
- 'label' => __( 'Require a strong password?','ultimate-member' ),
708
  'tooltip' => __( 'Enable or disable a strong password rules on account page / change password tab', 'ultimate-member' ),
709
  ),
710
  array(
@@ -766,6 +775,12 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
766
  'show_default_number' => 1,
767
  ),
768
 
 
 
 
 
 
 
769
  array(
770
  'id' => 'image_compression',
771
  'type' => 'text',
@@ -1894,7 +1909,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
1894
  if ( ! empty( $_POST['um_options']['use_gravatars'] ) ) {
1895
 
1896
  $results = $wpdb->get_col(
1897
- "SELECT u.ID FROM {$wpdb->users} AS u
1898
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND um.meta_key = 'synced_gravatar_hashed_id' )
1899
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1900
  WHERE um.meta_value != '' AND um.meta_value IS NOT NULL AND
@@ -1904,7 +1919,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
1904
  } else {
1905
 
1906
  $results = $wpdb->get_col(
1907
- "SELECT u.ID FROM {$wpdb->users} AS u
1908
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND ( um.meta_key = 'synced_profile_photo' || um.meta_key = 'profile_photo' ) )
1909
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1910
  WHERE ( um.meta_value IS NULL OR um.meta_value = '' ) AND
@@ -1944,7 +1959,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
1944
  if ( $_POST['um_options']['account_hide_in_directory_default'] == 'No' ) {
1945
 
1946
  $results = $wpdb->get_col(
1947
- "SELECT u.ID FROM {$wpdb->users} AS u
1948
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND um.meta_key = 'hide_in_members' )
1949
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1950
  WHERE um.meta_value IS NULL AND
@@ -1954,7 +1969,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
1954
  } else {
1955
 
1956
  $results = $wpdb->get_col(
1957
- "SELECT u.ID FROM {$wpdb->users} AS u
1958
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND um.meta_key = 'hide_in_members' )
1959
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1960
  WHERE um.meta_value IS NULL AND
177
  $wp_usermeta_option = get_option( 'um_usermeta_fields', array() );
178
 
179
  $count = $wpdb->get_var(
180
+ "SELECT COUNT(*)
181
+ FROM {$wpdb->usermeta}
182
  WHERE meta_key IN ('" . implode( "','", $wp_usermeta_option ) . "')"
183
  );
184
 
194
 
195
  global $wpdb;
196
  $metadata = $wpdb->get_results( $wpdb->prepare(
197
+ "SELECT *
198
+ FROM {$wpdb->usermeta}
199
  WHERE meta_key IN ('" . implode( "','", $wp_usermeta_option ) . "')
200
  LIMIT %d, %d",
201
  ( absint( $_POST['page'] ) - 1 ) * $per_page,
209
 
210
  if ( ! empty( $values ) ) {
211
  $wpdb->query(
212
+ "INSERT INTO
213
  {$wpdb->prefix}um_metadata(user_id, um_key, um_value)
214
  VALUES " . implode( ',', $values ) );
215
  }
645
  array(
646
  'id' => 'account_tab_privacy',
647
  'type' => 'checkbox',
648
+ 'label' => __( 'Privacy Account Tab', 'ultimate-member' ),
649
  'tooltip' => __( 'Enable/disable the Privacy account tab in account page', 'ultimate-member' ),
650
  ),
651
  array(
652
  'id' => 'account_tab_notifications',
653
  'type' => 'checkbox',
654
+ 'label' => __( 'Notifications Account Tab', 'ultimate-member' ),
655
  'tooltip' => __( 'Enable/disable the Notifications account tab in account page', 'ultimate-member' ),
656
  ),
657
  array(
658
  'id' => 'account_tab_delete',
659
  'type' => 'checkbox',
660
+ 'label' => __( 'Delete Account Tab', 'ultimate-member' ),
661
  'tooltip' => __( 'Enable/disable the Delete account tab in account page', 'ultimate-member' ),
662
  ),
663
  array(
664
  'id' => 'delete_account_text',
665
  'type' => 'textarea', // bug with wp 4.4? should be editor
666
+ 'label' => __( 'Account Deletion Custom Text', 'ultimate-member' ),
667
+ 'tooltip' => __( 'This is custom text that will be displayed to users before they delete their accounts from your site when password is required.', 'ultimate-member' ),
668
+ 'args' => array(
669
+ 'textarea_rows' => 6
670
+ ),
671
+ ),
672
+ array(
673
+ 'id' => 'delete_account_no_pass_required_text',
674
+ 'type' => 'textarea',
675
+ 'label' => __( 'Account Deletion without password Custom Text', 'ultimate-member' ),
676
+ 'tooltip' => __( 'This is custom text that will be displayed to users before they delete their accounts from your site when password isn\'t required.', 'ultimate-member' ),
677
  'args' => array(
678
  'textarea_rows' => 6
679
  ),
681
  array(
682
  'id' => 'account_name',
683
  'type' => 'checkbox',
684
+ 'label' => __( 'Add a First & Last Name fields', 'ultimate-member' ),
685
  'tooltip' => __( 'Whether to enable these fields on the user account page by default or hide them.', 'ultimate-member' ),
686
  ),
687
  array(
688
  'id' => 'account_name_disable',
689
  'type' => 'checkbox',
690
+ 'label' => __( 'Disable First & Last Name fields', 'ultimate-member' ),
691
  'tooltip' => __( 'Whether to allow users changing their first and last name in account page.', 'ultimate-member' ),
692
  'conditional' => array( 'account_name', '=', '1' ),
693
  ),
701
  array(
702
  'id' => 'account_email',
703
  'type' => 'checkbox',
704
+ 'label' => __( 'Allow users to change e-mail', 'ultimate-member' ),
705
  'tooltip' => __( 'Whether to allow users changing their email in account page.', 'ultimate-member' ),
706
  ),
707
  array(
708
  'id' => 'account_general_password',
709
  'type' => 'checkbox',
710
+ 'label' => __( 'Password is required?', 'ultimate-member' ),
711
  'tooltip' => __( 'Password is required to save account data.', 'ultimate-member' ),
712
  ),
713
  array(
714
  'id' => 'account_require_strongpass',
715
  'type' => 'checkbox',
716
+ 'label' => __( 'Require a strong password?', 'ultimate-member' ),
717
  'tooltip' => __( 'Enable or disable a strong password rules on account page / change password tab', 'ultimate-member' ),
718
  ),
719
  array(
775
  'show_default_number' => 1,
776
  ),
777
 
778
+ array(
779
+ 'id' => 'image_orientation_by_exif',
780
+ 'type' => 'checkbox',
781
+ 'label' => __( 'Change image orientation', 'ultimate-member' ),
782
+ 'tooltip' => __( 'Rotate image to and use orientation by the camera EXIF data.', 'ultimate-member' ),
783
+ ),
784
  array(
785
  'id' => 'image_compression',
786
  'type' => 'text',
1909
  if ( ! empty( $_POST['um_options']['use_gravatars'] ) ) {
1910
 
1911
  $results = $wpdb->get_col(
1912
+ "SELECT u.ID FROM {$wpdb->users} AS u
1913
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND um.meta_key = 'synced_gravatar_hashed_id' )
1914
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1915
  WHERE um.meta_value != '' AND um.meta_value IS NOT NULL AND
1919
  } else {
1920
 
1921
  $results = $wpdb->get_col(
1922
+ "SELECT u.ID FROM {$wpdb->users} AS u
1923
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND ( um.meta_key = 'synced_profile_photo' || um.meta_key = 'profile_photo' ) )
1924
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1925
  WHERE ( um.meta_value IS NULL OR um.meta_value = '' ) AND
1959
  if ( $_POST['um_options']['account_hide_in_directory_default'] == 'No' ) {
1960
 
1961
  $results = $wpdb->get_col(
1962
+ "SELECT u.ID FROM {$wpdb->users} AS u
1963
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND um.meta_key = 'hide_in_members' )
1964
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1965
  WHERE um.meta_value IS NULL AND
1969
  } else {
1970
 
1971
  $results = $wpdb->get_col(
1972
+ "SELECT u.ID FROM {$wpdb->users} AS u
1973
  LEFT JOIN {$wpdb->usermeta} AS um ON ( um.user_id = u.ID AND um.meta_key = 'hide_in_members' )
1974
  LEFT JOIN {$wpdb->usermeta} AS um2 ON ( um2.user_id = u.ID AND um2.meta_key = 'um_member_directory_data' )
1975
  WHERE um.meta_value IS NULL AND
includes/admin/templates/extensions.php CHANGED
@@ -134,11 +134,11 @@ $premium['user-locations'] = array(
134
  'desc' => 'Using the Google Maps API, display users on a map on the member directory page and allow users to add their location via their profile',
135
  );
136
 
137
- //$premium['profile-tabs'] = array(
138
- // 'url' => 'https://ultimatemember.com/extensions/profile-tabs/',
139
- // 'name' => 'Profile Tabs',
140
- // 'desc' => 'Allow users to add custom tabs to profiles',
141
- //);
142
 
143
  $free['forumwp'] = array(
144
  'url' => 'https://ultimatemember.com/extensions/forumwp/',
134
  'desc' => 'Using the Google Maps API, display users on a map on the member directory page and allow users to add their location via their profile',
135
  );
136
 
137
+ $free['jobboardwp'] = array(
138
+ 'url' => 'https://wordpress.org/plugins/um-jobboardwp',
139
+ 'name' => 'JobBoardWP',
140
+ 'desc' => 'Integrates Ultimate Member with the job board plugin <a href="https://wordpress.org/plugins/jobboardwp" target="_blank">JobBoardWP</a>',
141
+ );
142
 
143
  $free['forumwp'] = array(
144
  'url' => 'https://ultimatemember.com/extensions/forumwp/',
includes/class-config.php CHANGED
@@ -526,7 +526,8 @@ if ( ! class_exists( 'um\Config' ) ) {
526
  'account_tab_privacy' => 1,
527
  'account_tab_notifications' => 1,
528
  'account_tab_delete' => 1,
529
- 'delete_account_text' => __('Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below','ultimate-member'),
 
530
  'account_name' => 1,
531
  'account_name_disable' => 0,
532
  'account_name_require' => 1,
@@ -564,6 +565,7 @@ if ( ! class_exists( 'um\Config' ) ) {
564
  'mail_from' => get_bloginfo('name'),
565
  'mail_from_addr' => get_bloginfo('admin_email'),
566
  'email_html' => 1,
 
567
  'image_compression' => 60,
568
  'image_max_width' => 1000,
569
  'cover_min_width' => 1000,
526
  'account_tab_privacy' => 1,
527
  'account_tab_notifications' => 1,
528
  'account_tab_delete' => 1,
529
+ 'delete_account_text' => __( 'Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below.', 'ultimate-member' ),
530
+ 'delete_account_no_pass_required_text' => __( 'Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account, click on the button below.', 'ultimate-member' ),
531
  'account_name' => 1,
532
  'account_name_disable' => 0,
533
  'account_name_require' => 1,
565
  'mail_from' => get_bloginfo('name'),
566
  'mail_from_addr' => get_bloginfo('admin_email'),
567
  'email_html' => 1,
568
+ 'image_orientation_by_exif' => 0,
569
  'image_compression' => 60,
570
  'image_max_width' => 1000,
571
  'cover_min_width' => 1000,
includes/class-dependencies.php CHANGED
@@ -39,6 +39,7 @@ if ( ! class_exists( 'um\Dependencies' ) ) {
39
  'friends' => '2.1.4',
40
  'groups' => '2.1.7',
41
  'instagram' => '2.0.5',
 
42
  'mailchimp' => '2.2.0',
43
  'messaging' => '2.2.5',
44
  'mycred' => '2.1.6',
@@ -144,6 +145,20 @@ if ( ! class_exists( 'um\Dependencies' ) ) {
144
  }
145
 
146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  /**
148
  * Check if myCRED plugin is active
149
  *
39
  'friends' => '2.1.4',
40
  'groups' => '2.1.7',
41
  'instagram' => '2.0.5',
42
+ 'jobboardwp' => '1.0.0',
43
  'mailchimp' => '2.2.0',
44
  'messaging' => '2.2.5',
45
  'mycred' => '2.1.6',
145
  }
146
 
147
 
148
+ /**
149
+ * Check if JobBoardWP plugin is active
150
+ *
151
+ * @return bool
152
+ */
153
+ public static function jobboardwp_active_check() {
154
+
155
+ if ( ! self::$active_plugins ) self::init();
156
+
157
+ return in_array( 'jobboardwp/jobboardwp.php', self::$active_plugins ) || array_key_exists( 'jobboardwp/jobboardwp.php', self::$active_plugins );
158
+
159
+ }
160
+
161
+
162
  /**
163
  * Check if myCRED plugin is active
164
  *
includes/class-init.php CHANGED
@@ -38,6 +38,7 @@ if ( ! class_exists( 'UM' ) ) {
38
  * @method UM_Unsplash Unsplash()
39
  * @method UM_ForumWP ForumWP()
40
  * @method UM_Profile_Tabs Profile_Tabs()
 
41
  */
42
  final class UM extends UM_Functions {
43
 
@@ -211,6 +212,10 @@ if ( ! class_exists( 'UM' ) ) {
211
  //run activation
212
  register_activation_hook( um_plugin, array( &$this, 'activation' ) );
213
 
 
 
 
 
214
  // init widgets
215
  add_action( 'widgets_init', array( &$this, 'widgets_init' ) );
216
 
@@ -441,11 +446,27 @@ if ( ! class_exists( 'UM' ) ) {
441
  * @since 2.0
442
  */
443
  function activation() {
 
444
  if ( is_multisite() ) {
445
- if ( ! is_plugin_active_for_network( um_plugin ) ) {
446
- $this->single_site_activation();
447
- } else {
448
- //get all blogs
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  $blogs = get_sites();
450
  if ( ! empty( $blogs ) ) {
451
  foreach( $blogs as $blog ) {
@@ -456,8 +477,6 @@ if ( ! class_exists( 'UM' ) ) {
456
  }
457
  }
458
  }
459
- } else {
460
- $this->single_site_activation();
461
  }
462
  }
463
 
38
  * @method UM_Unsplash Unsplash()
39
  * @method UM_ForumWP ForumWP()
40
  * @method UM_Profile_Tabs Profile_Tabs()
41
+ * @method UM_JobBoardWP JobBoardWP()
42
  */
43
  final class UM extends UM_Functions {
44
 
212
  //run activation
213
  register_activation_hook( um_plugin, array( &$this, 'activation' ) );
214
 
215
+ if ( is_multisite() && ! defined( 'DOING_AJAX' ) ) {
216
+ add_action( 'wp_loaded', array( $this, 'maybe_network_activation' ) );
217
+ }
218
+
219
  // init widgets
220
  add_action( 'widgets_init', array( &$this, 'widgets_init' ) );
221
 
446
  * @since 2.0
447
  */
448
  function activation() {
449
+ $this->single_site_activation();
450
  if ( is_multisite() ) {
451
+ update_network_option( get_current_network_id(), 'um_maybe_network_wide_activation', 1 );
452
+ }
453
+ }
454
+
455
+
456
+ /**
457
+ * Maybe need multisite activation process
458
+ *
459
+ * @since 2.1.7
460
+ */
461
+ function maybe_network_activation() {
462
+ $maybe_activation = get_network_option( get_current_network_id(), 'um_maybe_network_wide_activation' );
463
+
464
+ if ( $maybe_activation ) {
465
+
466
+ delete_network_option( get_current_network_id(), 'um_maybe_network_wide_activation' );
467
+
468
+ if ( is_plugin_active_for_network( um_plugin ) ) {
469
+ // get all blogs
470
  $blogs = get_sites();
471
  if ( ! empty( $blogs ) ) {
472
  foreach( $blogs as $blog ) {
477
  }
478
  }
479
  }
 
 
480
  }
481
  }
482
 
includes/core/class-account.php CHANGED
@@ -160,6 +160,10 @@ if ( ! class_exists( 'um\core\Account' ) ) {
160
  * @throws \Exception
161
  */
162
  function ultimatemember_account( $args = array() ) {
 
 
 
 
163
  um_fetch_user( get_current_user_id() );
164
 
165
  ob_start();
@@ -590,7 +594,7 @@ if ( ! class_exists( 'um\core\Account' ) ) {
590
 
591
  case 'privacy':
592
 
593
- $args = 'profile_privacy,hide_in_members';
594
  /**
595
  * UM hook
596
  *
@@ -626,7 +630,10 @@ if ( ! class_exists( 'um\core\Account' ) ) {
626
 
627
  case 'delete':
628
 
629
- $args = 'single_user_password';
 
 
 
630
 
631
  /**
632
  * UM hook
@@ -660,6 +667,10 @@ if ( ! class_exists( 'um\core\Account' ) ) {
660
  $output .= UM()->fields()->edit_field( $key, $data );
661
  }
662
 
 
 
 
 
663
  break;
664
 
665
  case 'general':
@@ -674,7 +685,7 @@ if ( ! class_exists( 'um\core\Account' ) ) {
674
  $args = str_replace(',user_email','', $args );
675
  }
676
 
677
- if ( UM()->options()->get( 'account_general_password' ) ) {
678
  $args .= ',single_user_password';
679
  }
680
 
@@ -930,5 +941,34 @@ if ( ! class_exists( 'um\core\Account' ) ) {
930
  $classes = apply_filters( 'um_form_official_classes__hook', $classes );
931
  return $classes;
932
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
933
  }
934
  }
160
  * @throws \Exception
161
  */
162
  function ultimatemember_account( $args = array() ) {
163
+ if ( ! is_user_logged_in() ) {
164
+ return '';
165
+ }
166
+
167
  um_fetch_user( get_current_user_id() );
168
 
169
  ob_start();
594
 
595
  case 'privacy':
596
 
597
+ $args = 'profile_privacy,profile_noindex,hide_in_members';
598
  /**
599
  * UM hook
600
  *
630
 
631
  case 'delete':
632
 
633
+ $args = '';
634
+ if ( $this->current_password_is_required( $id ) ) {
635
+ $args = 'single_user_password';
636
+ }
637
 
638
  /**
639
  * UM hook
667
  $output .= UM()->fields()->edit_field( $key, $data );
668
  }
669
 
670
+ if ( ! $output && ! $this->current_password_is_required( $id ) ) {
671
+ $output = '<div></div>';
672
+ }
673
+
674
  break;
675
 
676
  case 'general':
685
  $args = str_replace(',user_email','', $args );
686
  }
687
 
688
+ if ( $this->current_password_is_required( $id ) ) {
689
  $args .= ',single_user_password';
690
  }
691
 
941
  $classes = apply_filters( 'um_form_official_classes__hook', $classes );
942
  return $classes;
943
  }
944
+
945
+
946
+ /**
947
+ * Checks account actions require current password
948
+ *
949
+ * @param $tab_key
950
+ *
951
+ * @return bool
952
+ */
953
+ function current_password_is_required( $tab_key ) {
954
+ $is_required = true;
955
+
956
+ switch ( $tab_key ) {
957
+ case 'general':
958
+ $is_required = UM()->options()->get( 'account_general_password' );
959
+ break;
960
+ case 'delete':
961
+ break;
962
+ case 'password':
963
+ break;
964
+ case 'privacy_erase_data':
965
+ case 'privacy_download_data':
966
+ break;
967
+ }
968
+
969
+ $is_required = apply_filters( "um_account_{$tab_key}_require_current", $is_required );
970
+
971
+ return $is_required;
972
+ }
973
  }
974
  }
includes/core/class-builtin.php CHANGED
@@ -1114,23 +1114,42 @@ if ( ! class_exists( 'um\core\Builtin' ) ) {
1114
 
1115
  // account page use ( not public )
1116
 
1117
- 'profile_privacy' => array(
1118
- 'title' => __('Profile Privacy','ultimate-member'),
1119
- 'metakey' => 'profile_privacy',
1120
- 'type' => 'select',
1121
- 'label' => __('Profile Privacy','ultimate-member'),
1122
- 'help' => __('Who can see your public profile?','ultimate-member'),
1123
- 'required' => 0,
1124
- 'public' => 1,
1125
- 'editable' => 1,
1126
- 'default' => 'Everyone',
1127
- 'options' => $profile_privacy,
1128
- 'allowclear' => 0,
1129
- 'account_only' => true,
1130
  'required_perm' => 'can_make_private_profile',
1131
  ),
1132
 
1133
- 'hide_in_members' => array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  'title' => __( 'Hide my profile from directory', 'ultimate-member' ),
1135
  'metakey' => 'hide_in_members',
1136
  'type' => 'radio',
@@ -1148,29 +1167,32 @@ if ( ! class_exists( 'um\core\Builtin' ) ) {
1148
  'required_opt' => array( 'members_page', 1 ),
1149
  ),
1150
 
1151
- 'delete_account' => array(
1152
- 'title' => __('Delete Account','ultimate-member'),
1153
- 'metakey' => 'delete_account',
1154
- 'type' => 'radio',
1155
- 'label' => __('Delete Account','ultimate-member'),
1156
- 'help' => __('If you confirm, everything related to your profile will be deleted permanently from the site','ultimate-member'),
1157
- 'required' => 0,
1158
- 'public' => 1,
1159
- 'editable' => 1,
1160
- 'default' => __('No','ultimate-member'),
1161
- 'options' => array( __('Yes','ultimate-member') , __('No','ultimate-member') ),
1162
- 'account_only' => true,
 
 
 
1163
  ),
1164
 
1165
- 'single_user_password' => array(
1166
- 'title' => __('Password','ultimate-member'),
1167
- 'metakey' => 'single_user_password',
1168
- 'type' => 'password',
1169
- 'label' => __('Password','ultimate-member'),
1170
- 'required' => 1,
1171
- 'public' => 1,
1172
- 'editable' => 1,
1173
- 'account_only' => true,
1174
  ),
1175
 
1176
  );
1114
 
1115
  // account page use ( not public )
1116
 
1117
+ 'profile_privacy' => array(
1118
+ 'title' => __( 'Profile Privacy', 'ultimate-member' ),
1119
+ 'metakey' => 'profile_privacy',
1120
+ 'type' => 'select',
1121
+ 'label' => __( 'Profile Privacy', 'ultimate-member' ),
1122
+ 'help' => __( 'Who can see your public profile?', 'ultimate-member' ),
1123
+ 'required' => 0,
1124
+ 'public' => 1,
1125
+ 'editable' => 1,
1126
+ 'default' => 'Everyone',
1127
+ 'options' => $profile_privacy,
1128
+ 'allowclear' => 0,
1129
+ 'account_only' => true,
1130
  'required_perm' => 'can_make_private_profile',
1131
  ),
1132
 
1133
+ 'profile_noindex' => array(
1134
+ 'title' => __( 'Avoid indexing my profile by search engines', 'ultimate-member' ),
1135
+ 'metakey' => 'profile_noindex',
1136
+ 'type' => 'select',
1137
+ 'label' => __( 'Avoid indexing my profile by search engines', 'ultimate-member' ),
1138
+ 'help' => __( 'Hide my profile for robots?', 'ultimate-member' ),
1139
+ 'required' => 0,
1140
+ 'public' => 1,
1141
+ 'editable' => 1,
1142
+ 'default' => '0',
1143
+ 'options' => array(
1144
+ '0' => __( 'No', 'ultimate-member' ),
1145
+ '1' => __( 'Yes', 'ultimate-member' ),
1146
+ ),
1147
+ 'allowclear' => 0,
1148
+ 'account_only' => true,
1149
+ 'required_perm' => 'can_make_private_profile',
1150
+ ),
1151
+
1152
+ 'hide_in_members' => array(
1153
  'title' => __( 'Hide my profile from directory', 'ultimate-member' ),
1154
  'metakey' => 'hide_in_members',
1155
  'type' => 'radio',
1167
  'required_opt' => array( 'members_page', 1 ),
1168
  ),
1169
 
1170
+ 'delete_account' => array(
1171
+ 'title' => __( 'Delete Account', 'ultimate-member' ),
1172
+ 'metakey' => 'delete_account',
1173
+ 'type' => 'radio',
1174
+ 'label' => __( 'Delete Account', 'ultimate-member'),
1175
+ 'help' => __( 'If you confirm, everything related to your profile will be deleted permanently from the site', 'ultimate-member' ),
1176
+ 'required' => 0,
1177
+ 'public' => 1,
1178
+ 'editable' => 1,
1179
+ 'default' => __( 'No', 'ultimate-member' ),
1180
+ 'options' => array(
1181
+ __( 'Yes', 'ultimate-member' ),
1182
+ __( 'No', 'ultimate-member' )
1183
+ ),
1184
+ 'account_only' => true,
1185
  ),
1186
 
1187
+ 'single_user_password' => array(
1188
+ 'title' => __( 'Password', 'ultimate-member' ),
1189
+ 'metakey' => 'single_user_password',
1190
+ 'type' => 'password',
1191
+ 'label' => __( 'Password', 'ultimate-member' ),
1192
+ 'required' => 1,
1193
+ 'public' => 1,
1194
+ 'editable' => 1,
1195
+ 'account_only' => true,
1196
  ),
1197
 
1198
  );
includes/core/class-enqueue.php CHANGED
@@ -158,7 +158,9 @@ if ( ! class_exists( 'um\core\Enqueue' ) ) {
158
 
159
  wp_register_script('um_members', $this->js_baseurl . 'um-members' . $this->suffix . '.js', array( 'jquery', 'wp-util', 'jquery-ui-slider', 'um_dropdown', 'wp-hooks', 'jquery-masonry', 'um_scripts' ), ultimatemember_version, true );
160
  wp_register_script('um_profile', $this->js_baseurl . 'um-profile' . $this->suffix . '.js', array( 'jquery', 'wp-util', 'wp-i18n' ), ultimatemember_version, true );
161
- wp_register_script('um_account', $this->js_baseurl . 'um-account' . $this->suffix . '.js', array( 'jquery' ), ultimatemember_version, true );
 
 
162
 
163
  wp_register_script( 'um_gchart', 'https://www.google.com/jsapi', array(), ultimatemember_version, true );
164
  }
158
 
159
  wp_register_script('um_members', $this->js_baseurl . 'um-members' . $this->suffix . '.js', array( 'jquery', 'wp-util', 'jquery-ui-slider', 'um_dropdown', 'wp-hooks', 'jquery-masonry', 'um_scripts' ), ultimatemember_version, true );
160
  wp_register_script('um_profile', $this->js_baseurl . 'um-profile' . $this->suffix . '.js', array( 'jquery', 'wp-util', 'wp-i18n' ), ultimatemember_version, true );
161
+
162
+ $account_deps = apply_filters( 'um_account_scripts_dependencies', array( 'jquery', 'wp-hooks' ) );
163
+ wp_register_script('um_account', $this->js_baseurl . 'um-account' . $this->suffix . '.js', $account_deps, ultimatemember_version, true );
164
 
165
  wp_register_script( 'um_gchart', 'https://www.google.com/jsapi', array(), ultimatemember_version, true );
166
  }
includes/core/class-external-integrations.php CHANGED
@@ -269,8 +269,9 @@ if ( ! class_exists( 'um\core\External_Integrations' ) ) {
269
  function get_languages_codes( $current_code = false ) {
270
  global $sitepress;
271
 
272
- if ( ! $this->is_wpml_active() )
273
  return $current_code;
 
274
 
275
  $current_code = ! empty( $current_code ) ? $current_code : $sitepress->get_current_language();
276
 
269
  function get_languages_codes( $current_code = false ) {
270
  global $sitepress;
271
 
272
+ if ( ! $this->is_wpml_active() ) {
273
  return $current_code;
274
+ }
275
 
276
  $current_code = ! empty( $current_code ) ? $current_code : $sitepress->get_current_language();
277
 
includes/core/class-fields.php CHANGED
@@ -378,20 +378,25 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
378
  * @return string
379
  */
380
  function field_error( $text, $force_show = false ) {
 
 
 
 
 
381
  if ( $force_show ) {
382
- $output = '<div class="um-field-error"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . $text . '</div>';
383
  return $output;
384
  }
385
 
386
 
387
  if ( isset( $this->set_id ) && UM()->form()->processing == $this->set_id ) {
388
- $output = '<div class="um-field-error"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . $text . '</div>';
389
  } else {
390
  $output = '';
391
  }
392
 
393
  if ( ! UM()->form()->processing ) {
394
- $output = '<div class="um-field-error"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . $text . '</div>';
395
  }
396
 
397
  return $output;
@@ -407,20 +412,25 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
407
  * @return string
408
  */
409
  function field_notice( $text, $force_show = false ) {
 
 
 
 
 
410
  if ( $force_show ) {
411
- $output = '<div class="um-field-notice"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . $text . '</div>';
412
  return $output;
413
  }
414
 
415
 
416
  if ( isset( $this->set_id ) && UM()->form()->processing == $this->set_id ) {
417
- $output = '<div class="um-field-notice"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . $text . '</div>';
418
  } else {
419
  $output = '';
420
  }
421
 
422
  if ( ! UM()->form()->processing ) {
423
- $output = '<div class="um-field-notice"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . $text . '</div>';
424
  }
425
 
426
  return $output;
@@ -2279,7 +2289,8 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
2279
 
2280
  } else {
2281
 
2282
- if ( $this->set_mode == 'account' || um_is_core_page( 'account' ) ) {
 
2283
 
2284
  $key = 'current_' . $original_key;
2285
  $output .= '<div ' . $this->get_atts( $key, $classes, $conditional, $data ) . '>';
@@ -2302,7 +2313,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
2302
 
2303
  if ( $this->is_error( $key ) ) {
2304
  $output .= $this->field_error( $this->show_error( $key ) );
2305
- }else if ( $this->is_notice( $key ) ) {
2306
  $output .= $this->field_notice( $this->show_notice( $key ) );
2307
  }
2308
 
@@ -2332,7 +2343,12 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
2332
 
2333
  }
2334
 
2335
- $output .= '<input class="' . $this->get_class( $key, $data ) . '" type="' . esc_attr( $input ) . '" name="' . esc_attr( $key . UM()->form()->form_suffix ) . '" id="' . esc_attr( $key . UM()->form()->form_suffix ) . '" value="' . $this->field_value( $key, $default, $data ) . '" placeholder="' . esc_attr( $placeholder ) . '" data-validate="' . esc_attr( $validate ) . '" data-key="' . esc_attr( $key ) . '" />
 
 
 
 
 
2336
 
2337
  </div>';
2338
 
@@ -2361,7 +2377,12 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
2361
 
2362
  }
2363
 
2364
- $output .= '<input class="' . $this->get_class( $key, $data ) . '" type="' . esc_attr( $input ) . '" name="' . esc_attr( $key . UM()->form()->form_suffix ) . '" id="' . esc_attr( $key . UM()->form()->form_suffix ) . '" value="' . $this->field_value( $key, $default, $data ) . '" placeholder="' . esc_attr( $placeholder ) . '" data-validate="' . esc_attr( $validate ) . '" data-key="' . esc_attr( $key ) . '" />
 
 
 
 
 
2365
 
2366
  </div>';
2367
 
378
  * @return string
379
  */
380
  function field_error( $text, $force_show = false ) {
381
+
382
+ if ( empty( $text ) ) {
383
+ return '';
384
+ }
385
+
386
  if ( $force_show ) {
387
+ $output = '<div class="um-field-error"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . esc_attr( $text ) . '</div>';
388
  return $output;
389
  }
390
 
391
 
392
  if ( isset( $this->set_id ) && UM()->form()->processing == $this->set_id ) {
393
+ $output = '<div class="um-field-error"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . esc_attr( $text ) . '</div>';
394
  } else {
395
  $output = '';
396
  }
397
 
398
  if ( ! UM()->form()->processing ) {
399
+ $output = '<div class="um-field-error"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . esc_attr( $text ) . '</div>';
400
  }
401
 
402
  return $output;
412
  * @return string
413
  */
414
  function field_notice( $text, $force_show = false ) {
415
+
416
+ if ( empty( $text ) ) {
417
+ return '';
418
+ }
419
+
420
  if ( $force_show ) {
421
+ $output = '<div class="um-field-notice"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . esc_attr( $text ) . '</div>';
422
  return $output;
423
  }
424
 
425
 
426
  if ( isset( $this->set_id ) && UM()->form()->processing == $this->set_id ) {
427
+ $output = '<div class="um-field-notice"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . esc_attr( $text ) . '</div>';
428
  } else {
429
  $output = '';
430
  }
431
 
432
  if ( ! UM()->form()->processing ) {
433
+ $output = '<div class="um-field-notice"><span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span>' . esc_attr( $text ) . '</div>';
434
  }
435
 
436
  return $output;
2289
 
2290
  } else {
2291
 
2292
+ if ( UM()->account()->current_password_is_required( 'password' ) &&
2293
+ ( $this->set_mode == 'account' || um_is_core_page( 'account' ) ) ) {
2294
 
2295
  $key = 'current_' . $original_key;
2296
  $output .= '<div ' . $this->get_atts( $key, $classes, $conditional, $data ) . '>';
2313
 
2314
  if ( $this->is_error( $key ) ) {
2315
  $output .= $this->field_error( $this->show_error( $key ) );
2316
+ } elseif ( $this->is_notice( $key ) ) {
2317
  $output .= $this->field_notice( $this->show_notice( $key ) );
2318
  }
2319
 
2343
 
2344
  }
2345
 
2346
+ $name = $key . UM()->form()->form_suffix;
2347
+ if ( $this->set_mode == 'password' && um_is_core_page( 'password-reset' ) ) {
2348
+ $name = $key;
2349
+ }
2350
+
2351
+ $output .= '<input class="' . $this->get_class( $key, $data ) . '" type="' . esc_attr( $input ) . '" name="' . esc_attr( $name ) . '" id="' . esc_attr( $key . UM()->form()->form_suffix ) . '" value="' . $this->field_value( $key, $default, $data ) . '" placeholder="' . esc_attr( $placeholder ) . '" data-validate="' . esc_attr( $validate ) . '" data-key="' . esc_attr( $key ) . '" />
2352
 
2353
  </div>';
2354
 
2377
 
2378
  }
2379
 
2380
+ $name = $key . UM()->form()->form_suffix;
2381
+ if ( $this->set_mode == 'password' && um_is_core_page( 'password-reset' ) ) {
2382
+ $name = $key;
2383
+ }
2384
+
2385
+ $output .= '<input class="' . $this->get_class( $key, $data ) . '" type="' . esc_attr( $input ) . '" name="' . esc_attr( $name ) . '" id="' . esc_attr( $key . UM()->form()->form_suffix ) . '" value="' . $this->field_value( $key, $default, $data ) . '" placeholder="' . esc_attr( $placeholder ) . '" data-validate="' . esc_attr( $validate ) . '" data-key="' . esc_attr( $key ) . '" />
2386
 
2387
  </div>';
2388
 
includes/core/class-files.php CHANGED
@@ -745,21 +745,21 @@ if ( ! class_exists( 'um\core\Files' ) ) {
745
  * @return resource
746
  */
747
  function fix_image_orientation( $rotate, $source ) {
748
- if ( extension_loaded('exif') ){
749
  $exif = @exif_read_data( $source );
750
 
751
- if (isset($exif['Orientation'])) {
752
- switch ($exif['Orientation']) {
753
  case 3:
754
- $rotate = imagerotate($rotate, 180, 0);
755
  break;
756
 
757
  case 6:
758
- $rotate = imagerotate($rotate, -90, 0);
759
  break;
760
 
761
  case 8:
762
- $rotate = imagerotate($rotate, 90, 0);
763
  break;
764
  }
765
  }
@@ -1274,19 +1274,23 @@ if ( ! class_exists( 'um\core\Files' ) ) {
1274
  function get_profile_photo_size( $type ) {
1275
  $sizes = UM()->options()->get( $type );
1276
 
1277
- $sizes = array_combine( $sizes, $sizes );
 
1278
 
1279
- if ( $type == 'cover_thumb_sizes' ) {
1280
- foreach ( $sizes as $key => $value ) {
1281
- $sizes[ $key ] = $value . 'px';
1282
- }
1283
- } elseif ( $type == 'photo_thumb_sizes' ) {
1284
- foreach ( $sizes as $key => $value ) {
1285
- $sizes[ $key ] = $value . 'x' . $value . 'px';
 
1286
  }
 
 
 
1287
  }
1288
 
1289
- $sizes['original'] = __( 'Original size', 'ultimate-member' );
1290
  return $sizes;
1291
  }
1292
 
745
  * @return resource
746
  */
747
  function fix_image_orientation( $rotate, $source ) {
748
+ if ( extension_loaded('exif') ) {
749
  $exif = @exif_read_data( $source );
750
 
751
+ if ( isset( $exif['Orientation'] ) ) {
752
+ switch ( $exif['Orientation'] ) {
753
  case 3:
754
+ $rotate = imagerotate( $rotate, 180, 0 );
755
  break;
756
 
757
  case 6:
758
+ $rotate = imagerotate( $rotate, -90, 0 );
759
  break;
760
 
761
  case 8:
762
+ $rotate = imagerotate( $rotate, 90, 0 );
763
  break;
764
  }
765
  }
1274
  function get_profile_photo_size( $type ) {
1275
  $sizes = UM()->options()->get( $type );
1276
 
1277
+ if ( ! empty( $sizes ) && is_array( $sizes ) ) {
1278
+ $sizes = array_combine( $sizes, $sizes );
1279
 
1280
+ if ( $type == 'cover_thumb_sizes' ) {
1281
+ foreach ( $sizes as $key => $value ) {
1282
+ $sizes[ $key ] = $value . 'px';
1283
+ }
1284
+ } elseif ( $type == 'photo_thumb_sizes' ) {
1285
+ foreach ( $sizes as $key => $value ) {
1286
+ $sizes[ $key ] = $value . 'x' . $value . 'px';
1287
+ }
1288
  }
1289
+ } else {
1290
+ $sizes = array();
1291
+ $sizes['original'] = __( 'Original size', 'ultimate-member' );
1292
  }
1293
 
 
1294
  return $sizes;
1295
  }
1296
 
includes/core/class-form.php CHANGED
@@ -407,7 +407,7 @@ if ( ! class_exists( 'um\core\Form' ) ) {
407
  //$this->post_form['submitted']['role'] = $role;
408
  }
409
 
410
- if ( isset( $_POST[ UM()->honeypot ] ) && $_POST[ UM()->honeypot ] != '' ){
411
  wp_die( 'Hello, spam bot!', 'ultimate-member' );
412
  }
413
 
407
  //$this->post_form['submitted']['role'] = $role;
408
  }
409
 
410
+ if ( isset( $_POST[ UM()->honeypot ] ) && $_POST[ UM()->honeypot ] != '' ) {
411
  wp_die( 'Hello, spam bot!', 'ultimate-member' );
412
  }
413
 
includes/core/class-member-directory-meta.php CHANGED
@@ -22,6 +22,8 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) {
22
  var $where_clauses = array();
23
 
24
  var $roles = array();
 
 
25
  var $general_meta_joined = false;
26
 
27
  var $having = '';
@@ -393,6 +395,8 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) {
393
  if ( empty( $this->roles ) && ! is_multisite() ) {
394
  $this->joins[] = "LEFT JOIN {$wpdb->prefix}um_metadata umm_roles ON ( umm_roles.user_id = u.ID AND umm_roles.um_key = '" . $wpdb->get_blog_prefix( $blog_id ) . "capabilities' )";
395
  $this->roles = $value;
 
 
396
  }
397
 
398
  $roles_clauses = array();
@@ -431,12 +435,12 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) {
431
  } else {
432
  $gmt_offset = get_post_meta( $directory_data['form_id'], '_um_search_filters_gmt', true );
433
  if ( is_numeric( $gmt_offset ) ) {
434
- $offset = $gmt_offset;
435
  }
436
  }
437
 
438
- $from_date = date( 'Y-m-d H:s:i', strtotime( date( 'Y-m-d H:s:i', min( $value ) ) . "+$offset hours" ) );
439
- $to_date = date( 'Y-m-d H:s:i', strtotime( date( 'Y-m-d H:s:i', max( $value ) ) . "+$offset hours" ) );
440
 
441
  $this->where_clauses[] = $wpdb->prepare( "u.user_registered BETWEEN %s AND %s", $from_date, $to_date );
442
 
@@ -565,6 +569,8 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) {
565
 
566
  if ( ! $view_roles ) {
567
  $view_roles = array();
 
 
568
  }
569
 
570
  $this->roles = array_merge( $this->roles, maybe_unserialize( $view_roles ) );
@@ -576,6 +582,8 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) {
576
  } else {
577
  $this->roles = array_merge( $this->roles, maybe_unserialize( $directory_data['roles'] ) );
578
  }
 
 
579
  }
580
 
581
  if ( ! empty( $this->roles ) ) {
@@ -588,10 +596,19 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) {
588
 
589
  $this->where_clauses[] = '( ' . implode( ' OR ', $roles_clauses ) . ' )';
590
  } else {
591
- if ( is_multisite() ) {
 
592
  // select users who have capabilities for current blog
593
  $this->joins[] = "LEFT JOIN {$wpdb->prefix}um_metadata umm_roles ON ( umm_roles.user_id = u.ID AND umm_roles.um_key = '" . $wpdb->get_blog_prefix( $blog_id ) . "capabilities' )";
594
  $this->where_clauses[] = "umm_roles.um_value IS NOT NULL";
 
 
 
 
 
 
 
 
595
  }
596
  }
597
 
22
  var $where_clauses = array();
23
 
24
  var $roles = array();
25
+ var $roles_in_query = false;
26
+
27
  var $general_meta_joined = false;
28
 
29
  var $having = '';
395
  if ( empty( $this->roles ) && ! is_multisite() ) {
396
  $this->joins[] = "LEFT JOIN {$wpdb->prefix}um_metadata umm_roles ON ( umm_roles.user_id = u.ID AND umm_roles.um_key = '" . $wpdb->get_blog_prefix( $blog_id ) . "capabilities' )";
397
  $this->roles = $value;
398
+
399
+ $this->roles_in_query = true;
400
  }
401
 
402
  $roles_clauses = array();
435
  } else {
436
  $gmt_offset = get_post_meta( $directory_data['form_id'], '_um_search_filters_gmt', true );
437
  if ( is_numeric( $gmt_offset ) ) {
438
+ $offset = (int) $gmt_offset;
439
  }
440
  }
441
 
442
+ $from_date = date( 'Y-m-d H:s:i', strtotime( min( $value ) ) + $offset * HOUR_IN_SECONDS ); // client time zone offset
443
+ $to_date = date( 'Y-m-d H:s:i', strtotime( max( $value ) ) + $offset * HOUR_IN_SECONDS + DAY_IN_SECONDS - 1 ); // time 23:59
444
 
445
  $this->where_clauses[] = $wpdb->prepare( "u.user_registered BETWEEN %s AND %s", $from_date, $to_date );
446
 
569
 
570
  if ( ! $view_roles ) {
571
  $view_roles = array();
572
+ } else {
573
+ $this->roles_in_query = true;
574
  }
575
 
576
  $this->roles = array_merge( $this->roles, maybe_unserialize( $view_roles ) );
582
  } else {
583
  $this->roles = array_merge( $this->roles, maybe_unserialize( $directory_data['roles'] ) );
584
  }
585
+
586
+ $this->roles_in_query = true;
587
  }
588
 
589
  if ( ! empty( $this->roles ) ) {
596
 
597
  $this->where_clauses[] = '( ' . implode( ' OR ', $roles_clauses ) . ' )';
598
  } else {
599
+
600
+ if ( ! $this->roles_in_query && is_multisite() ) {
601
  // select users who have capabilities for current blog
602
  $this->joins[] = "LEFT JOIN {$wpdb->prefix}um_metadata umm_roles ON ( umm_roles.user_id = u.ID AND umm_roles.um_key = '" . $wpdb->get_blog_prefix( $blog_id ) . "capabilities' )";
603
  $this->where_clauses[] = "umm_roles.um_value IS NOT NULL";
604
+ } elseif ( $this->roles_in_query ) {
605
+ $member_directory_response = apply_filters( 'um_ajax_get_members_response', array(
606
+ 'pagination' => $this->calculate_pagination( $directory_data, 0 ),
607
+ 'users' => array(),
608
+ 'is_search' => $this->is_search,
609
+ ), $directory_data );
610
+
611
+ wp_send_json_success( $member_directory_response );
612
  }
613
  }
614
 
includes/core/class-member-directory.php CHANGED
@@ -248,7 +248,7 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) {
248
 
249
  foreach ( $value as $k => &$row ) {
250
  if ( ! empty( $other_data[ $k ]['meta_key'] ) ) {
251
- $metakey = sanitize_key( $other_data[ $k ]['meta_key'] );
252
  if ( ! empty( $metakey ) ) {
253
  if ( ! empty( $other_data[ $k ]['label'] ) ) {
254
  $metalabel = wp_strip_all_tags( $other_data[ $k ]['label'] );
@@ -261,7 +261,7 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) {
261
  }
262
  }
263
  } elseif ( $key == '_um_sortby_custom' ) {
264
- $value = sanitize_key( $value );
265
  } elseif ( $key == '_um_sortby_custom_label' ) {
266
  $value = wp_strip_all_tags( $value );
267
  }
@@ -1047,10 +1047,14 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) {
1047
  *
1048
  */
1049
  function hide_by_role() {
 
 
 
 
1050
  $roles = um_user( 'can_view_roles' );
1051
  $roles = maybe_unserialize( $roles );
1052
 
1053
- if ( empty( $roles ) || ! UM()->roles()->um_user_can( 'can_view_all' ) ) {
1054
  return;
1055
  }
1056
 
@@ -2429,6 +2433,16 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) {
2429
  unset( $this->query_args['meta_query'] );
2430
  }
2431
 
 
 
 
 
 
 
 
 
 
 
2432
  /**
2433
  * UM hook
2434
  *
248
 
249
  foreach ( $value as $k => &$row ) {
250
  if ( ! empty( $other_data[ $k ]['meta_key'] ) ) {
251
+ $metakey = sanitize_text_field( $other_data[ $k ]['meta_key'] );
252
  if ( ! empty( $metakey ) ) {
253
  if ( ! empty( $other_data[ $k ]['label'] ) ) {
254
  $metalabel = wp_strip_all_tags( $other_data[ $k ]['label'] );
261
  }
262
  }
263
  } elseif ( $key == '_um_sortby_custom' ) {
264
+ $value = sanitize_text_field( $value );
265
  } elseif ( $key == '_um_sortby_custom_label' ) {
266
  $value = wp_strip_all_tags( $value );
267
  }
1047
  *
1048
  */
1049
  function hide_by_role() {
1050
+ if ( ! is_user_logged_in() ) {
1051
+ return;
1052
+ }
1053
+
1054
  $roles = um_user( 'can_view_roles' );
1055
  $roles = maybe_unserialize( $roles );
1056
 
1057
+ if ( UM()->roles()->um_user_can( 'can_view_all' ) && empty( $roles ) ) {
1058
  return;
1059
  }
1060
 
2433
  unset( $this->query_args['meta_query'] );
2434
  }
2435
 
2436
+ if ( isset( $this->query_args['role__in'] ) && empty( $this->query_args['role__in'] ) ) {
2437
+ $member_directory_response = apply_filters( 'um_ajax_get_members_response', array(
2438
+ 'pagination' => $this->calculate_pagination( $directory_data, 0 ),
2439
+ 'users' => array(),
2440
+ 'is_search' => $this->is_search,
2441
+ ), $directory_data );
2442
+
2443
+ wp_send_json_success( $member_directory_response );
2444
+ }
2445
+
2446
  /**
2447
  * UM hook
2448
  *
includes/core/class-password.php CHANGED
@@ -262,7 +262,7 @@ if ( ! class_exists( 'um\core\Password' ) ) {
262
  * @return bool
263
  */
264
  function is_change_request() {
265
- if ( um_is_core_page( 'account' ) && isset( $_POST['_um_account'] ) == 1 && isset( $_POST['_um_account_tab'] ) && $_POST['_um_account_tab'] == 'password' ) {
266
  return true;
267
  } elseif ( isset( $_POST['_um_password_change'] ) && $_POST['_um_password_change'] == 1 ) {
268
  return true;
@@ -526,41 +526,41 @@ if ( ! class_exists( 'um\core\Password' ) ) {
526
  * @param $args
527
  */
528
  function um_change_password_errors_hook( $args ) {
529
- if ( isset( $_POST[ UM()->honeypot ] ) && $_POST[ UM()->honeypot ] != '' ){
530
- wp_die('Hello, spam bot!','ultimate-member');
531
  }
532
 
533
  if ( ! is_user_logged_in() && isset( $args ) && ! um_is_core_page( 'password-reset' ) ||
534
  is_user_logged_in() && isset( $args['user_id'] ) && $args['user_id'] != get_current_user_id() ) {
535
- wp_die( __( 'This is not possible for security reasons.','ultimate-member') );
536
  }
537
 
538
  if ( isset( $args['user_password'] ) && empty( $args['user_password'] ) ) {
539
- UM()->form()->add_error('user_password', __('You must enter a new password','ultimate-member') );
540
  }
541
 
542
  if ( UM()->options()->get( 'reset_require_strongpass' ) ) {
543
 
544
  if ( strlen( utf8_decode( $args['user_password'] ) ) < 8 ) {
545
- UM()->form()->add_error('user_password', __('Your password must contain at least 8 characters','ultimate-member') );
546
  }
547
 
548
  if ( strlen( utf8_decode( $args['user_password'] ) ) > 30 ) {
549
- UM()->form()->add_error('user_password', __('Your password must contain less than 30 characters','ultimate-member') );
550
  }
551
 
552
  if ( ! UM()->validation()->strong_pass( $args['user_password'] ) ) {
553
- UM()->form()->add_error('user_password', __('Your password must contain at least one lowercase letter, one capital letter and one number','ultimate-member') );
554
  }
555
 
556
  }
557
 
558
  if ( isset( $args['confirm_user_password'] ) && empty( $args['confirm_user_password'] ) ) {
559
- UM()->form()->add_error('confirm_user_password', __('You must confirm your new password','ultimate-member') );
560
  }
561
 
562
  if ( isset( $args['user_password'] ) && isset( $args['confirm_user_password'] ) && $args['user_password'] != $args['confirm_user_password'] ) {
563
- UM()->form()->add_error('confirm_user_password', __('Your passwords do not match','ultimate-member') );
564
  }
565
 
566
  }
262
  * @return bool
263
  */
264
  function is_change_request() {
265
+ if ( isset( $_POST['_um_account'] ) == 1 && isset( $_POST['_um_account_tab'] ) && $_POST['_um_account_tab'] == 'password' ) {
266
  return true;
267
  } elseif ( isset( $_POST['_um_password_change'] ) && $_POST['_um_password_change'] == 1 ) {
268
  return true;
526
  * @param $args
527
  */
528
  function um_change_password_errors_hook( $args ) {
529
+ if ( isset( $_POST[ UM()->honeypot ] ) && $_POST[ UM()->honeypot ] != '' ) {
530
+ wp_die( 'Hello, spam bot!', 'ultimate-member' );
531
  }
532
 
533
  if ( ! is_user_logged_in() && isset( $args ) && ! um_is_core_page( 'password-reset' ) ||
534
  is_user_logged_in() && isset( $args['user_id'] ) && $args['user_id'] != get_current_user_id() ) {
535
+ wp_die( __( 'This is not possible for security reasons.', 'ultimate-member' ) );
536
  }
537
 
538
  if ( isset( $args['user_password'] ) && empty( $args['user_password'] ) ) {
539
+ UM()->form()->add_error( 'user_password', __( 'You must enter a new password', 'ultimate-member' ) );
540
  }
541
 
542
  if ( UM()->options()->get( 'reset_require_strongpass' ) ) {
543
 
544
  if ( strlen( utf8_decode( $args['user_password'] ) ) < 8 ) {
545
+ UM()->form()->add_error( 'user_password', __( 'Your password must contain at least 8 characters', 'ultimate-member' ) );
546
  }
547
 
548
  if ( strlen( utf8_decode( $args['user_password'] ) ) > 30 ) {
549
+ UM()->form()->add_error( 'user_password', __( 'Your password must contain less than 30 characters', 'ultimate-member' ) );
550
  }
551
 
552
  if ( ! UM()->validation()->strong_pass( $args['user_password'] ) ) {
553
+ UM()->form()->add_error( 'user_password', __( 'Your password must contain at least one lowercase letter, one capital letter and one number', 'ultimate-member' ) );
554
  }
555
 
556
  }
557
 
558
  if ( isset( $args['confirm_user_password'] ) && empty( $args['confirm_user_password'] ) ) {
559
+ UM()->form()->add_error( 'confirm_user_password', __( 'You must confirm your new password', 'ultimate-member' ) );
560
  }
561
 
562
  if ( isset( $args['user_password'] ) && isset( $args['confirm_user_password'] ) && $args['user_password'] != $args['confirm_user_password'] ) {
563
+ UM()->form()->add_error( 'confirm_user_password', __( 'Your passwords do not match', 'ultimate-member' ) );
564
  }
565
 
566
  }
includes/core/class-permalinks.php CHANGED
@@ -30,18 +30,11 @@ if ( ! class_exists( 'um\core\Permalinks' ) ) {
30
  * Permalinks constructor.
31
  */
32
  function __construct() {
33
-
34
  add_action( 'init', array( &$this, 'set_current_url' ), 0 );
35
 
36
  add_action( 'init', array( &$this, 'check_for_querystrings' ), 1 );
37
 
38
  add_action( 'init', array( &$this, 'activate_account_via_email_link' ), 1 );
39
-
40
- //add_action( 'um_user_after_updating_profile', array( &$this, 'profile_url' ), 1 );
41
-
42
- remove_action( 'wp_head', 'rel_canonical' );
43
-
44
- add_action( 'wp_head', array( &$this, 'um_rel_canonical_' ), 9 );
45
  }
46
 
47
 
@@ -55,6 +48,10 @@ if ( ! class_exists( 'um\core\Permalinks' ) ) {
55
 
56
  /**
57
  * SEO canonical href bugfix
 
 
 
 
58
  */
59
  function um_rel_canonical_() {
60
  global $wp_the_query;
30
  * Permalinks constructor.
31
  */
32
  function __construct() {
 
33
  add_action( 'init', array( &$this, 'set_current_url' ), 0 );
34
 
35
  add_action( 'init', array( &$this, 'check_for_querystrings' ), 1 );
36
 
37
  add_action( 'init', array( &$this, 'activate_account_via_email_link' ), 1 );
 
 
 
 
 
 
38
  }
39
 
40
 
48
 
49
  /**
50
  * SEO canonical href bugfix
51
+ *
52
+ * @deprecated since version 2.1.7
53
+ *
54
+ * @see function um_profile_remove_wpseo()
55
  */
56
  function um_rel_canonical_() {
57
  global $wp_the_query;
includes/core/class-plugin-updater.php CHANGED
@@ -355,16 +355,10 @@ if ( ! class_exists( 'um\core\Plugin_Updater' ) ) {
355
  * @return \stdClass modified plugin update array.
356
  */
357
  function check_update( $_transient_data ) {
358
- global $pagenow;
359
-
360
  if ( ! is_object( $_transient_data ) ) {
361
  $_transient_data = new \stdClass;
362
  }
363
 
364
- if ( 'plugins.php' == $pagenow && is_multisite() ) {
365
- return $_transient_data;
366
- }
367
-
368
  $exts = $this->get_active_plugins();
369
 
370
  foreach ( $exts as $slug => $data ) {
355
  * @return \stdClass modified plugin update array.
356
  */
357
  function check_update( $_transient_data ) {
 
 
358
  if ( ! is_object( $_transient_data ) ) {
359
  $_transient_data = new \stdClass;
360
  }
361
 
 
 
 
 
362
  $exts = $this->get_active_plugins();
363
 
364
  foreach ( $exts as $slug => $data ) {
includes/core/class-rewrite.php CHANGED
@@ -19,7 +19,7 @@ if ( ! class_exists( 'um\core\Rewrite' ) ) {
19
  */
20
  function __construct() {
21
  if ( ! defined( 'DOING_AJAX' ) ) {
22
- add_filter( 'wp_loaded', array( $this, 'maybe_flush_rewrite_rules' ) );
23
  }
24
 
25
  //add rewrite rules
19
  */
20
  function __construct() {
21
  if ( ! defined( 'DOING_AJAX' ) ) {
22
+ add_action( 'wp_loaded', array( $this, 'maybe_flush_rewrite_rules' ) );
23
  }
24
 
25
  //add rewrite rules
includes/core/class-roles-capabilities.php CHANGED
@@ -20,6 +20,58 @@ if ( ! class_exists( 'um\core\Roles_Capabilities' ) ) {
20
  */
21
  function __construct() {
22
  add_action( 'wp_roles_init', array( &$this, 'um_roles_init' ), 99999 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  }
24
 
25
 
20
  */
21
  function __construct() {
22
  add_action( 'wp_roles_init', array( &$this, 'um_roles_init' ), 99999 );
23
+ add_action( 'update_option', array( &$this, 'um_on_roles_update' ), 10, 3 );
24
+ }
25
+
26
+
27
+ /**
28
+ * @param string $option
29
+ * @param mixed $old_value
30
+ * @param mixed $value
31
+ */
32
+ function um_on_roles_update( $option, $old_value, $value ) {
33
+ global $wp_roles;
34
+
35
+ if ( isset( $wp_roles->role_key ) && $option == $wp_roles->role_key ) {
36
+ foreach ( $value as $role_key => $role_data ) {
37
+ $role_keys = get_option( 'um_roles', array() );
38
+ $role_keys = array_map( function( $item ) {
39
+ return 'um_' . $item;
40
+ }, $role_keys );
41
+
42
+ if ( ! empty( $role_keys ) && in_array( $role_key, $role_keys ) ) {
43
+ $role_meta = get_option( 'um_role_' . substr( $role_key, 3 ) . '_meta' );
44
+
45
+ if ( ! isset( $role_meta['wp_capabilities'] ) ) {
46
+ $role_meta['wp_capabilities'] = array();
47
+ }
48
+
49
+ if ( ! empty( $role_data['capabilities'] ) && is_array( $role_data['capabilities'] ) ) {
50
+ $old_role_caps = ! empty( $old_value[ $role_key ]['capabilities'] ) ? array_keys( $old_value[ $role_key ]['capabilities'] ) : array();
51
+
52
+ if ( ! empty( $old_role_caps ) ) {
53
+ $unset_caps = array_diff( $old_role_caps, array_keys( $role_data['capabilities'] ) );
54
+
55
+ if ( ! empty( $unset_caps ) ) {
56
+ foreach ( $unset_caps as $cap ) {
57
+ if ( ! empty( $role_meta['wp_capabilities'][ $cap ] ) ) {
58
+ unset( $role_meta['wp_capabilities'][ $cap ] );
59
+ }
60
+ }
61
+ }
62
+ }
63
+
64
+ foreach ( $role_data['capabilities'] as $cap => $grant ) {
65
+ if ( $grant ) {
66
+ $role_meta['wp_capabilities'][ $cap ] = true;
67
+ }
68
+ }
69
+ }
70
+
71
+ update_option( 'um_role_' . substr( $role_key, 3 ) . '_meta', $role_meta );
72
+ }
73
+ }
74
+ }
75
  }
76
 
77
 
includes/core/class-uploader.php CHANGED
@@ -107,11 +107,15 @@ if ( ! class_exists( 'um\core\Uploader' ) ) {
107
  add_filter( 'upload_dir', array( $this, 'set_upload_directory' ), 10, 1 );
108
  add_filter( 'wp_handle_upload_prefilter', array( $this, 'validate_upload' ) );
109
 
 
110
  add_filter( 'um_upload_image_process__profile_photo', array( $this, 'profile_photo' ), 10, 7 );
111
  add_filter( 'um_upload_image_process__cover_photo', array( $this, 'cover_photo' ), 10, 7 );
112
  add_action( 'um_upload_stream_image_process', array( $this, 'stream_photo' ), 10, 7 );
113
 
114
  add_action( 'init', array( $this, 'init' ) );
 
 
 
115
  }
116
 
117
 
@@ -356,6 +360,30 @@ if ( ! class_exists( 'um\core\Uploader' ) ) {
356
  $response['error'] = $movefile['error'];
357
  } else {
358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  $movefile['url'] = set_url_scheme( $movefile['url'] );
360
 
361
  $movefile['file_info']['basename'] = wp_basename( $movefile['file'] );
@@ -1164,6 +1192,28 @@ if ( ! class_exists( 'um\core\Uploader' ) ) {
1164
  }
1165
 
1166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1167
  /**
1168
  * Move temporary files
1169
  *
@@ -1258,8 +1308,10 @@ if ( ! class_exists( 'um\core\Uploader' ) ) {
1258
 
1259
  }
1260
 
1261
- //remove user old files
1262
- $this->remove_unused_uploads( $user_id, $new_files, $old_files );
 
 
1263
  }
1264
 
1265
 
@@ -1271,36 +1323,34 @@ if ( ! class_exists( 'um\core\Uploader' ) ) {
1271
  * @param array $old_files
1272
  */
1273
  function remove_unused_uploads( $user_id, $new_files, $old_files = array() ) {
1274
- um_fetch_user( $user_id );
1275
 
1276
- if ( ! file_exists( UM()->uploader()->get_upload_base_dir() . um_user( 'ID' ) . DIRECTORY_SEPARATOR ) ) {
1277
  return;
1278
  }
1279
 
 
 
1280
  $user_meta_keys = UM()->user()->profile;
1281
 
1282
  $_array = $new_files;
1283
  if ( ! empty( UM()->builtin()->custom_fields ) ) {
1284
  foreach ( UM()->builtin()->custom_fields as $_field ) {
1285
- if ( $_field['type'] == 'file' && ! empty( $user_meta_keys[ $_field['metakey'] ] ) ) {
1286
- $_array[ $_field['metakey'] ] = $user_meta_keys[ $_field['metakey'] ];
1287
  }
1288
  }
1289
  }
1290
 
1291
- $files = glob( UM()->uploader()->get_upload_base_dir() . um_user( 'ID' ) . DIRECTORY_SEPARATOR . '*', GLOB_BRACE );
1292
  if ( ! empty( $files ) ) {
1293
  foreach ( $files as $file ) {
1294
  $str = basename( $file );
1295
 
1296
- if ( preg_grep( '/' . $str . '/i', $old_files ) ) {
1297
- unlink( $file );
1298
  }
1299
 
1300
- if ( ! strstr( $str, 'profile_photo' ) && ! strstr( $str, 'cover_photo' ) &&
1301
- ! strstr( $str, 'stream_photo' ) && ! preg_grep( '/' . $str . '/', $_array ) ) {
1302
- unlink( $file );
1303
- }
1304
  }
1305
  }
1306
  }
107
  add_filter( 'upload_dir', array( $this, 'set_upload_directory' ), 10, 1 );
108
  add_filter( 'wp_handle_upload_prefilter', array( $this, 'validate_upload' ) );
109
 
110
+ add_filter( 'um_upload_image_result', array( $this, 'rotate_uploaded_image' ), 10, 1 );
111
  add_filter( 'um_upload_image_process__profile_photo', array( $this, 'profile_photo' ), 10, 7 );
112
  add_filter( 'um_upload_image_process__cover_photo', array( $this, 'cover_photo' ), 10, 7 );
113
  add_action( 'um_upload_stream_image_process', array( $this, 'stream_photo' ), 10, 7 );
114
 
115
  add_action( 'init', array( $this, 'init' ) );
116
+
117
+ //remove user old files
118
+ add_action( 'um_after_move_temporary_files', array( $this, 'remove_unused_uploads' ), 10, 3 );
119
  }
120
 
121
 
360
  $response['error'] = $movefile['error'];
361
  } else {
362
 
363
+ /**
364
+ * UM hook
365
+ *
366
+ * @type filter
367
+ * @title um_upload_image_result
368
+ * @description Filter uploaded image data
369
+ * @input_vars [
370
+ * {"var":"$movefile", "type":"array", "desc":"Uploaded file info"},
371
+ * {"var":"$user_id", "type":"int", "desc":"User ID"},
372
+ * {"var":"$field_data", "type":"array", "desc":"Field data"}
373
+ * ]
374
+ * @change_log
375
+ * ["Since: 2.1.6"]
376
+ * @example
377
+ <?php
378
+ add_filter( 'um_upload_image_result', 'custom_um_upload_image_result', 10, 3 );
379
+ function custom_um_upload_image_result( $movefile, $user_id, $field_data ) {
380
+ // your code here
381
+ return $movefile;
382
+ }
383
+ ?>
384
+ */
385
+ $movefile = apply_filters( 'um_upload_image_result', $movefile, $user_id, $field_data );
386
+
387
  $movefile['url'] = set_url_scheme( $movefile['url'] );
388
 
389
  $movefile['file_info']['basename'] = wp_basename( $movefile['file'] );
1192
  }
1193
 
1194
 
1195
+ /**
1196
+ * Fix image orientation
1197
+ *
1198
+ * @since 2.1.6
1199
+ *
1200
+ * @param array $movefile
1201
+ * @return array
1202
+ */
1203
+ public function rotate_uploaded_image( $movefile ) {
1204
+ $image_fix_orientation = UM()->options()->get( 'image_orientation_by_exif' );
1205
+ if ( $image_fix_orientation && $movefile['type'] == 'image/jpeg' ) {
1206
+ $image = imagecreatefromjpeg( $movefile['file'] );
1207
+ if ( $image ) {
1208
+ $image = UM()->files()->fix_image_orientation( $image, $movefile['file'] );
1209
+ $quality = UM()->options()->get( 'image_compression' );
1210
+ imagejpeg( $image, $movefile['file'], $quality );
1211
+ }
1212
+ }
1213
+ return $movefile;
1214
+ }
1215
+
1216
+
1217
  /**
1218
  * Move temporary files
1219
  *
1308
 
1309
  }
1310
 
1311
+ /**
1312
+ * @hooked UM()->uploader()->remove_unused_uploads() - 10
1313
+ */
1314
+ do_action( 'um_after_move_temporary_files', $user_id, $new_files, $old_files );
1315
  }
1316
 
1317
 
1323
  * @param array $old_files
1324
  */
1325
  function remove_unused_uploads( $user_id, $new_files, $old_files = array() ) {
 
1326
 
1327
+ if ( ! file_exists( $this->get_upload_user_base_dir( $user_id ) ) ) {
1328
  return;
1329
  }
1330
 
1331
+ UM()->user()->remove_cache( $user_id );
1332
+ UM()->user()->set( $user_id );
1333
  $user_meta_keys = UM()->user()->profile;
1334
 
1335
  $_array = $new_files;
1336
  if ( ! empty( UM()->builtin()->custom_fields ) ) {
1337
  foreach ( UM()->builtin()->custom_fields as $_field ) {
1338
+ if ( in_array( $_field['type'], array( 'file', 'image' ) ) && isset( $user_meta_keys[$_field['metakey']] ) && empty( $_array[$_field['metakey']] ) ) {
1339
+ $_array[$_field['metakey']] = $user_meta_keys[$_field['metakey']];
1340
  }
1341
  }
1342
  }
1343
 
1344
+ $files = glob( UM()->uploader()->get_upload_base_dir() . $user_id . DIRECTORY_SEPARATOR . '*', GLOB_BRACE );
1345
  if ( ! empty( $files ) ) {
1346
  foreach ( $files as $file ) {
1347
  $str = basename( $file );
1348
 
1349
+ if ( strstr( $str, 'profile_photo' ) || strstr( $str, 'cover_photo' ) || preg_grep( '/' . $str . '/', $_array ) ) {
1350
+ continue;
1351
  }
1352
 
1353
+ unlink( $file );
 
 
 
1354
  }
1355
  }
1356
  }
includes/core/um-actions-account.php CHANGED
@@ -4,11 +4,10 @@
4
  /**
5
  * Validate for errors in account form
6
  *
7
- * @param $args
8
  */
9
  function um_submit_account_errors_hook( $args ) {
10
-
11
- if ( ! isset( $_POST['um_account_submit'] ) ) {
12
  return;
13
  }
14
 
@@ -22,11 +21,13 @@ function um_submit_account_errors_hook( $args ) {
22
  switch ( $_POST['_um_account_tab'] ) {
23
  case 'delete': {
24
  // delete account
25
- if ( strlen(trim( $_POST['single_user_password'] ) ) == 0 ) {
26
- UM()->form()->add_error( 'single_user_password', __( 'You must enter your password', 'ultimate-member' ) );
27
- } else {
28
- if ( ! wp_check_password( $_POST['single_user_password'], $user->data->user_pass, $user->data->ID ) ) {
29
- UM()->form()->add_error( 'single_user_password', __( 'This is not your password', 'ultimate-member' ) );
 
 
30
  }
31
  }
32
 
@@ -36,39 +37,53 @@ function um_submit_account_errors_hook( $args ) {
36
  }
37
 
38
  case 'password': {
39
- // change password
40
- if ( ( isset( $_POST['current_user_password'] ) && $_POST['current_user_password'] != '' ) ||
41
- ( isset( $_POST['user_password'] ) && $_POST['user_password'] != '' ) ||
42
- ( isset( $_POST['confirm_user_password'] ) && $_POST['confirm_user_password'] != '') ) {
43
 
44
- if ( $_POST['current_user_password'] == '' || ! wp_check_password( $_POST['current_user_password'], $user->data->user_pass, $user->data->ID ) ) {
 
45
 
46
- UM()->form()->add_error('current_user_password', __('This is not your password','ultimate-member') );
47
- UM()->account()->current_tab = 'password';
48
- } else { // correct password
 
49
 
50
- if ( $_POST['user_password'] != $_POST['confirm_user_password'] && $_POST['user_password'] ) {
51
- UM()->form()->add_error('user_password', __('Your new password does not match','ultimate-member') );
52
- UM()->account()->current_tab = 'password';
53
- }
54
 
55
- if ( UM()->options()->get( 'account_require_strongpass' ) ) {
56
 
57
- if ( strlen( utf8_decode( $_POST['user_password'] ) ) < 8 ) {
58
- UM()->form()->add_error('user_password', __('Your password must contain at least 8 characters','ultimate-member') );
 
 
 
 
 
 
59
  }
 
 
60
 
61
- if ( strlen( utf8_decode( $_POST['user_password'] ) ) > 30 ) {
62
- UM()->form()->add_error('user_password', __('Your password must contain less than 30 characters','ultimate-member') );
63
- }
 
64
 
65
- if ( ! UM()->validation()->strong_pass( $_POST['user_password'] ) ) {
66
- UM()->form()->add_error('user_password', __('Your password must contain at least one lowercase letter, one capital letter and one number','ultimate-member') );
67
- }
 
68
 
 
 
69
  }
70
 
 
 
 
71
  }
 
72
  }
73
 
74
  break;
@@ -109,7 +124,7 @@ function um_submit_account_errors_hook( $args ) {
109
  }
110
 
111
  // check account password
112
- if ( UM()->options()->get( 'account_general_password' ) ) {
113
  if ( strlen( trim( $_POST['single_user_password'] ) ) == 0 ) {
114
  UM()->form()->add_error('single_user_password', __( 'You must enter your password', 'ultimate-member' ) );
115
  } else {
@@ -185,10 +200,7 @@ function um_submit_account_details( $args ) {
185
 
186
 
187
  // delete account
188
- $user = get_user_by( 'login', um_user( 'user_login' ) );
189
-
190
- if ( 'delete' == $current_tab && isset( $_POST['single_user_password'] ) &&
191
- wp_check_password( $_POST['single_user_password'], $user->data->user_pass, $user->data->ID ) ) {
192
  if ( current_user_can( 'delete_users' ) || um_user( 'can_delete_profile' ) ) {
193
  UM()->user()->delete();
194
 
@@ -415,7 +427,13 @@ add_action( 'um_account_page_hidden_fields', 'um_account_page_hidden_fields' );
415
  * Before delete account tab content
416
  */
417
  function um_before_account_delete() {
418
- printf( __( '%s', 'ultimate-member' ), wpautop( htmlspecialchars( UM()->options()->get( 'delete_account_text' ) ) ) );
 
 
 
 
 
 
419
  }
420
  add_action( 'um_before_account_delete', 'um_before_account_delete' );
421
 
@@ -530,17 +548,29 @@ function um_after_account_privacy( $args ) {
530
  echo '<p>' . esc_html__( 'A confirmation email has been sent to your email. Click the link within the email to confirm your export request.', 'ultimate-member' ) . '</p>';
531
  } elseif ( ! empty( $pending ) && $pending['post_status'] == 'request-confirmed' ) {
532
  echo '<p>' . esc_html__( 'The administrator has not yet approved downloading the data. Please expect an email with a link to your data.', 'ultimate-member' ) . '</p>';
533
- } else { ?>
534
- <label name="um-export-data">
535
- <?php esc_html_e( 'Enter your current password to confirm a new export of your personal data.', 'ultimate-member' ); ?>
536
- </label>
537
- <div class="um-field-area">
538
- <input id="um-export-data" type="password" placeholder="<?php esc_attr_e( 'Password', 'ultimate-member' )?>">
539
- <div class="um-field-error um-export-data">
540
- <span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span><?php esc_html_e( 'You must enter a password', 'ultimate-member' ); ?>
 
 
 
 
541
  </div>
 
 
 
 
 
 
542
  <div class="um-field-area-response um-export-data"></div>
543
- </div>
 
 
544
  <a class="um-request-button um-export-data-button" data-action="um-export-data" href="javascript:void(0);">
545
  <?php esc_html_e( 'Request data', 'ultimate-member' ); ?>
546
  </a>
@@ -592,15 +622,27 @@ function um_after_account_privacy( $args ) {
592
  echo '<p>' . esc_html__( 'A confirmation email has been sent to your email. Click the link within the email to confirm your export request.', 'ultimate-member' ) . '</p>';
593
  } elseif ( ! empty( $pending ) && $pending['post_status'] == 'request-confirmed' ) {
594
  echo '<p>' . esc_html__( 'The administrator has not yet approved deleting your data. Please expect an email with a link to your data.', 'ultimate-member' ) . '</p>';
595
- } else { ?>
596
- <label name="um-erase-data">
597
- <?php esc_html_e( 'Enter your current password to confirm the erasure of your personal data.', 'ultimate-member' ); ?>
598
- <input id="um-erase-data" type="password" placeholder="<?php esc_attr_e( 'Password', 'ultimate-member' )?>">
599
- <div class="um-field-error um-erase-data">
600
- <span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span><?php esc_html_e( 'You must enter a password', 'ultimate-member' ); ?>
601
- </div>
602
- <div class="um-field-area-response um-erase-data"></div>
603
- </label>
 
 
 
 
 
 
 
 
 
 
 
 
604
  <a class="um-request-button um-erase-data-button" data-action="um-erase-data" href="javascript:void(0);">
605
  <?php esc_html_e( 'Request data erase', 'ultimate-member' ); ?>
606
  </a>
@@ -615,37 +657,48 @@ function um_after_account_privacy( $args ) {
615
  function um_request_user_data() {
616
  UM()->check_ajax_nonce();
617
 
 
 
 
 
618
  $user_id = get_current_user_id();
619
- $password = $_POST['password'];
620
  $user = get_userdata( $user_id );
621
  $hash = $user->data->user_pass;
622
 
623
- if ( wp_check_password( $password, $hash ) && isset( $_POST['request_action'] ) ) {
624
-
625
- if ( $_POST['request_action'] == 'um-export-data' ) {
626
- $request_id = wp_create_user_request( $user->data->user_email, 'export_personal_data' );
627
- } elseif ( $_POST['request_action'] == 'um-erase-data' ) {
628
- $request_id = wp_create_user_request( $user->data->user_email, 'remove_personal_data' );
629
- }
630
-
631
- if ( empty( $request_id ) ) {
632
- wp_send_json_error( __( 'Wrong request.', 'ultimate-member' ) );
633
  }
634
-
635
- if ( is_wp_error( $request_id ) ) {
636
- $answer = $request_id->get_error_message();
637
- } else {
638
- wp_send_user_request( $request_id );
639
- $answer = esc_html__( 'A confirmation email has been sent to your email. Click the link within the email to confirm your export request.', 'ultimate-member' );
640
  }
 
641
 
642
- } else {
 
 
 
 
643
 
644
- $answer = esc_html__( 'The password you entered is incorrect.', 'ultimate-member' );
 
 
645
 
 
 
 
 
 
646
  }
647
 
648
- wp_send_json_success( array( 'answer' => esc_html( $answer ) ) );
649
  }
650
- add_action( 'wp_ajax_nopriv_um_request_user_data', 'um_request_user_data' );
651
  add_action( 'wp_ajax_um_request_user_data', 'um_request_user_data' );
4
  /**
5
  * Validate for errors in account form
6
  *
7
+ * @param array $args
8
  */
9
  function um_submit_account_errors_hook( $args ) {
10
+ if ( ! isset( $_POST['_um_account'] ) && ! isset( $_POST['_um_account_tab'] ) ) {
 
11
  return;
12
  }
13
 
21
  switch ( $_POST['_um_account_tab'] ) {
22
  case 'delete': {
23
  // delete account
24
+ if ( UM()->account()->current_password_is_required( 'delete' ) ) {
25
+ if ( strlen( trim( $_POST['single_user_password'] ) ) == 0 ) {
26
+ UM()->form()->add_error( 'single_user_password', __( 'You must enter your password', 'ultimate-member' ) );
27
+ } else {
28
+ if ( ! wp_check_password( $_POST['single_user_password'], $user->data->user_pass, $user->data->ID ) ) {
29
+ UM()->form()->add_error( 'single_user_password', __( 'This is not your password', 'ultimate-member' ) );
30
+ }
31
  }
32
  }
33
 
37
  }
38
 
39
  case 'password': {
 
 
 
 
40
 
41
+ // change password
42
+ UM()->account()->current_tab = 'password';
43
 
44
+ if ( empty( $_POST['user_password'] ) ) {
45
+ UM()->form()->add_error('user_password', __( 'Password is required', 'ultimate-member' ) );
46
+ return;
47
+ }
48
 
49
+ if ( empty( $_POST['confirm_user_password'] ) ) {
50
+ UM()->form()->add_error('user_password', __( 'Password confirmation is required', 'ultimate-member' ) );
51
+ return;
52
+ }
53
 
54
+ if ( ! empty( $_POST['user_password'] ) && ! empty( $_POST['confirm_user_password'] ) ) {
55
 
56
+ if ( UM()->account()->current_password_is_required( 'password' ) ) {
57
+ if ( empty( $_POST['current_user_password'] ) ) {
58
+ UM()->form()->add_error('current_user_password', __( 'This is not your password', 'ultimate-member' ) );
59
+ return;
60
+ } else {
61
+ if ( ! wp_check_password( $_POST['current_user_password'], $user->data->user_pass, $user->data->ID ) ) {
62
+ UM()->form()->add_error('current_user_password', __( 'This is not your password', 'ultimate-member' ) );
63
+ return;
64
  }
65
+ }
66
+ }
67
 
68
+ if ( $_POST['user_password'] != $_POST['confirm_user_password'] && $_POST['user_password'] ) {
69
+ UM()->form()->add_error('user_password', __( 'Your new password does not match', 'ultimate-member' ) );
70
+ return;
71
+ }
72
 
73
+ if ( UM()->options()->get( 'account_require_strongpass' ) ) {
74
+ if ( strlen( utf8_decode( $_POST['user_password'] ) ) < 8 ) {
75
+ UM()->form()->add_error( 'user_password', __( 'Your password must contain at least 8 characters', 'ultimate-member' ) );
76
+ }
77
 
78
+ if ( strlen( utf8_decode( $_POST['user_password'] ) ) > 30 ) {
79
+ UM()->form()->add_error( 'user_password', __( 'Your password must contain less than 30 characters', 'ultimate-member' ) );
80
  }
81
 
82
+ if ( ! UM()->validation()->strong_pass( $_POST['user_password'] ) ) {
83
+ UM()->form()->add_error( 'user_password', __( 'Your password must contain at least one lowercase letter, one capital letter and one number', 'ultimate-member' ) );
84
+ }
85
  }
86
+
87
  }
88
 
89
  break;
124
  }
125
 
126
  // check account password
127
+ if ( UM()->account()->current_password_is_required( 'general' ) ) {
128
  if ( strlen( trim( $_POST['single_user_password'] ) ) == 0 ) {
129
  UM()->form()->add_error('single_user_password', __( 'You must enter your password', 'ultimate-member' ) );
130
  } else {
200
 
201
 
202
  // delete account
203
+ if ( 'delete' == $current_tab ) {
 
 
 
204
  if ( current_user_can( 'delete_users' ) || um_user( 'can_delete_profile' ) ) {
205
  UM()->user()->delete();
206
 
427
  * Before delete account tab content
428
  */
429
  function um_before_account_delete() {
430
+ if ( UM()->account()->current_password_is_required( 'delete' ) ) {
431
+ $text = UM()->options()->get( 'delete_account_text' );
432
+ } else {
433
+ $text = UM()->options()->get( 'delete_account_no_pass_required_text' );
434
+ }
435
+
436
+ printf( __( '%s', 'ultimate-member' ), wpautop( htmlspecialchars( $text ) ) );
437
  }
438
  add_action( 'um_before_account_delete', 'um_before_account_delete' );
439
 
548
  echo '<p>' . esc_html__( 'A confirmation email has been sent to your email. Click the link within the email to confirm your export request.', 'ultimate-member' ) . '</p>';
549
  } elseif ( ! empty( $pending ) && $pending['post_status'] == 'request-confirmed' ) {
550
  echo '<p>' . esc_html__( 'The administrator has not yet approved downloading the data. Please expect an email with a link to your data.', 'ultimate-member' ) . '</p>';
551
+ } else {
552
+ if ( UM()->account()->current_password_is_required( 'privacy_download_data' ) ) { ?>
553
+
554
+ <label name="um-export-data">
555
+ <?php esc_html_e( 'Enter your current password to confirm a new export of your personal data.', 'ultimate-member' ); ?>
556
+ </label>
557
+ <div class="um-field-area">
558
+ <input id="um-export-data" type="password" placeholder="<?php esc_attr_e( 'Password', 'ultimate-member' )?>">
559
+ <div class="um-field-error um-export-data">
560
+ <span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span><?php esc_html_e( 'You must enter a password', 'ultimate-member' ); ?>
561
+ </div>
562
+ <div class="um-field-area-response um-export-data"></div>
563
  </div>
564
+
565
+ <?php } else { ?>
566
+
567
+ <label name="um-export-data">
568
+ <?php esc_html_e( 'To export of your personal data, click the button below.', 'ultimate-member' ); ?>
569
+ </label>
570
  <div class="um-field-area-response um-export-data"></div>
571
+
572
+ <?php } ?>
573
+
574
  <a class="um-request-button um-export-data-button" data-action="um-export-data" href="javascript:void(0);">
575
  <?php esc_html_e( 'Request data', 'ultimate-member' ); ?>
576
  </a>
622
  echo '<p>' . esc_html__( 'A confirmation email has been sent to your email. Click the link within the email to confirm your export request.', 'ultimate-member' ) . '</p>';
623
  } elseif ( ! empty( $pending ) && $pending['post_status'] == 'request-confirmed' ) {
624
  echo '<p>' . esc_html__( 'The administrator has not yet approved deleting your data. Please expect an email with a link to your data.', 'ultimate-member' ) . '</p>';
625
+ } else {
626
+ if ( UM()->account()->current_password_is_required( 'privacy_erase_data' ) ) { ?>
627
+
628
+ <label name="um-erase-data">
629
+ <?php esc_html_e( 'Enter your current password to confirm the erasure of your personal data.', 'ultimate-member' ); ?>
630
+ <input id="um-erase-data" type="password" placeholder="<?php esc_attr_e( 'Password', 'ultimate-member' )?>">
631
+ <div class="um-field-error um-erase-data">
632
+ <span class="um-field-arrow"><i class="um-faicon-caret-up"></i></span><?php esc_html_e( 'You must enter a password', 'ultimate-member' ); ?>
633
+ </div>
634
+ <div class="um-field-area-response um-erase-data"></div>
635
+ </label>
636
+
637
+ <?php } else { ?>
638
+
639
+ <label name="um-erase-data">
640
+ <?php esc_html_e( 'Require erasure of your personal data, click on the button below.', 'ultimate-member' ); ?>
641
+ <div class="um-field-area-response um-erase-data"></div>
642
+ </label>
643
+
644
+ <?php } ?>
645
+
646
  <a class="um-request-button um-erase-data-button" data-action="um-erase-data" href="javascript:void(0);">
647
  <?php esc_html_e( 'Request data erase', 'ultimate-member' ); ?>
648
  </a>
657
  function um_request_user_data() {
658
  UM()->check_ajax_nonce();
659
 
660
+ if ( ! isset( $_POST['request_action'] ) ) {
661
+ wp_send_json_error( __( 'Wrong request.', 'ultimate-member' ) );
662
+ }
663
+
664
  $user_id = get_current_user_id();
665
+ $password = ! empty( $_POST['password'] ) ? $_POST['password'] : '';
666
  $user = get_userdata( $user_id );
667
  $hash = $user->data->user_pass;
668
 
669
+ if ( $_POST['request_action'] == 'um-export-data' ) {
670
+ if ( UM()->account()->current_password_is_required( 'privacy_download_data' ) ) {
671
+ if ( ! wp_check_password( $password, $hash ) ) {
672
+ $answer = esc_html__( 'The password you entered is incorrect.', 'ultimate-member' );
673
+ wp_send_json_success( array( 'answer' => $answer ) );
674
+ }
 
 
 
 
675
  }
676
+ } elseif ( $_POST['request_action'] == 'um-erase-data' ) {
677
+ if ( UM()->account()->current_password_is_required( 'privacy_erase_data' ) ) {
678
+ if ( ! wp_check_password( $password, $hash ) ) {
679
+ $answer = esc_html__( 'The password you entered is incorrect.', 'ultimate-member' );
680
+ wp_send_json_success( array( 'answer' => $answer ) );
681
+ }
682
  }
683
+ }
684
 
685
+ if ( $_POST['request_action'] == 'um-export-data' ) {
686
+ $request_id = wp_create_user_request( $user->data->user_email, 'export_personal_data' );
687
+ } elseif ( $_POST['request_action'] == 'um-erase-data' ) {
688
+ $request_id = wp_create_user_request( $user->data->user_email, 'remove_personal_data' );
689
+ }
690
 
691
+ if ( ! isset( $request_id ) || empty( $request_id ) ) {
692
+ wp_send_json_error( __( 'Wrong request.', 'ultimate-member' ) );
693
+ }
694
 
695
+ if ( is_wp_error( $request_id ) ) {
696
+ $answer = esc_html( $request_id->get_error_message() );
697
+ } else {
698
+ wp_send_user_request( $request_id );
699
+ $answer = esc_html__( 'A confirmation email has been sent to your email. Click the link within the email to confirm your export request.', 'ultimate-member' );
700
  }
701
 
702
+ wp_send_json_success( array( 'answer' => $answer ) );
703
  }
 
704
  add_action( 'wp_ajax_um_request_user_data', 'um_request_user_data' );
includes/core/um-actions-form.php CHANGED
@@ -523,10 +523,8 @@ function um_submit_form_errors_hook_( $args ) {
523
  }
524
  }
525
 
526
- $profile_show_html_bio = UM()->options()->get( 'profile_show_html_bio' );
527
-
528
- if ( $profile_show_html_bio == 1 && $key !== 'description' ) {
529
- if ( isset( $array['html'] ) && $array['html'] == 0 ) {
530
  if ( wp_strip_all_tags( $args[ $key ] ) != trim( $args[ $key ] ) ) {
531
  UM()->form()->add_error( $key, __( 'You can not use HTML tags here', 'ultimate-member' ) );
532
  }
@@ -535,7 +533,7 @@ function um_submit_form_errors_hook_( $args ) {
535
 
536
  if ( isset( $array['force_good_pass'] ) && $array['force_good_pass'] == 1 ) {
537
  if ( ! UM()->validation()->strong_pass( $args[ $key ] ) ) {
538
- UM()->form()->add_error( $key, __('Your password must contain at least one lowercase letter, one capital letter and one number', 'ultimate-member' ) );
539
  }
540
  }
541
 
523
  }
524
  }
525
 
526
+ if ( isset( $array['type'] ) && $array['type'] == 'textarea' && UM()->profile()->get_show_bio_key( $args ) !== $key ) {
527
+ if ( ! isset( $array['html'] ) || $array['html'] == 0 ) {
 
 
528
  if ( wp_strip_all_tags( $args[ $key ] ) != trim( $args[ $key ] ) ) {
529
  UM()->form()->add_error( $key, __( 'You can not use HTML tags here', 'ultimate-member' ) );
530
  }
533
 
534
  if ( isset( $array['force_good_pass'] ) && $array['force_good_pass'] == 1 ) {
535
  if ( ! UM()->validation()->strong_pass( $args[ $key ] ) ) {
536
+ UM()->form()->add_error( $key, __( 'Your password must contain at least one lowercase letter, one capital letter and one number', 'ultimate-member' ) );
537
  }
538
  }
539
 
includes/core/um-actions-global.php CHANGED
@@ -28,7 +28,7 @@ function um_add_security_checks( $args ) {
28
 
29
  <p class="<?php echo esc_attr( UM()->honeypot ); ?>_name">
30
  <label for="<?php echo esc_attr( UM()->honeypot ) . '_' . $args['form_id']; ?>"><?php _e( 'Only fill in if you are not human' ); ?></label>
31
- <input type="text" name="<?php echo esc_attr( UM()->honeypot ); ?>" id="<?php echo esc_attr( UM()->honeypot ) . '_' . $args['form_id']; ?>" class="input" value="" size="25" autocomplete="off" />
32
  </p>
33
 
34
  <?php
@@ -58,7 +58,7 @@ function um_add_form_honeypot_js() {
58
  ?>
59
  <script type="text/javascript">
60
  jQuery( window ).on( 'load', function() {
61
- jQuery("input[name='<?php echo esc_js( UM()->honeypot ); ?>']").val('');
62
  });
63
  </script>
64
  <?php
28
 
29
  <p class="<?php echo esc_attr( UM()->honeypot ); ?>_name">
30
  <label for="<?php echo esc_attr( UM()->honeypot ) . '_' . $args['form_id']; ?>"><?php _e( 'Only fill in if you are not human' ); ?></label>
31
+ <input type="hidden" name="<?php echo esc_attr( UM()->honeypot ); ?>" id="<?php echo esc_attr( UM()->honeypot ) . '_' . $args['form_id']; ?>" class="input" value="" size="25" autocomplete="off" />
32
  </p>
33
 
34
  <?php
58
  ?>
59
  <script type="text/javascript">
60
  jQuery( window ).on( 'load', function() {
61
+ jQuery('input[name="<?php echo esc_js( UM()->honeypot ); ?>"]').val('');
62
  });
63
  </script>
64
  <?php
includes/core/um-actions-login.php CHANGED
@@ -68,9 +68,9 @@ function um_submit_form_errors_hook_login( $args ) {
68
  UM()->form()->add_error( $user->get_error_code(), __( $user->get_error_message(), 'ultimate-member' ) );
69
  }
70
 
71
- $authenticate_user = apply_filters( 'wp_authenticate_user', $user_name, $args['user_password'] );
72
- if ( is_wp_error( $authenticate_user ) && ! in_array( $authenticate_user->get_error_code(), $ignore_codes ) ) {
73
- UM()->form()->add_error( $authenticate_user->get_error_code(), __( $authenticate_user->get_error_message(), 'ultimate-member' ) );
74
  }
75
 
76
  // if there is an error notify wp
@@ -209,7 +209,7 @@ function um_user_login( $args ) {
209
 
210
  // Priority redirect
211
  if ( ! empty( $args['redirect_to'] ) ) {
212
- exit( wp_redirect( $args['redirect_to'] ) );
213
  }
214
 
215
  // Role redirect
68
  UM()->form()->add_error( $user->get_error_code(), __( $user->get_error_message(), 'ultimate-member' ) );
69
  }
70
 
71
+ $user = apply_filters( 'wp_authenticate_user', $user, $args['user_password'] );
72
+ if ( is_wp_error( $user ) && ! in_array( $user->get_error_code(), $ignore_codes ) ) {
73
+ UM()->form()->add_error( $user->get_error_code(), __( $user->get_error_message(), 'ultimate-member' ) );
74
  }
75
 
76
  // if there is an error notify wp
209
 
210
  // Priority redirect
211
  if ( ! empty( $args['redirect_to'] ) ) {
212
+ exit( wp_safe_redirect( $args['redirect_to'] ) );
213
  }
214
 
215
  // Role redirect
includes/core/um-actions-profile.php CHANGED
@@ -608,9 +608,13 @@ if ( !function_exists( 'um_profile_remove_wpseo' ) ) {
608
  /* Yoast SEO 14.1 */
609
  remove_all_filters( 'wpseo_head' );
610
 
611
- if( ! has_action( 'wp_head', '_wp_render_title_tag' ) ){
 
612
  add_action( 'wp_head', '_wp_render_title_tag', 18 );
613
  }
 
 
 
614
  }
615
  }
616
 
@@ -619,7 +623,7 @@ add_action( 'get_header', 'um_profile_remove_wpseo', 8 );
619
 
620
 
621
  /**
622
- * Meta description
623
  *
624
  * @see https://ogp.me/ - The Open Graph protocol
625
  * @see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/summary - The Twitter Summary card
@@ -629,6 +633,20 @@ function um_profile_dynamic_meta_desc() {
629
  if ( um_is_core_page( 'user' ) && um_get_requested_user() ) {
630
 
631
  $user_id = um_get_requested_user();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  um_fetch_user( $user_id );
633
 
634
  $locale = get_user_locale( $user_id );
@@ -647,21 +665,20 @@ function um_profile_dynamic_meta_desc() {
647
  $image = um_get_user_avatar_url( $user_id, $size );
648
 
649
  $person = array(
650
- "@context" => "http://schema.org",
651
- "@type" => "Person",
652
- "name" => esc_attr( $title ),
653
- "description" => esc_attr( $description ),
654
- "image" => esc_url( $image ),
655
- "url" => esc_url( $url )
656
  );
657
 
658
  um_reset_user();
659
  ?>
660
  <!-- START - Ultimate Member profile SEO meta tags -->
661
 
662
- <link rel="canonical" href="<?php echo esc_url( $url ); ?>"/>
663
  <link rel="image_src" href="<?php echo esc_url( $image ); ?>"/>
664
-
665
  <meta name="description" content="<?php echo esc_attr( $description ); ?>"/>
666
 
667
  <meta property="og:type" content="profile"/>
608
  /* Yoast SEO 14.1 */
609
  remove_all_filters( 'wpseo_head' );
610
 
611
+ /* Restore title and canonical if broken */
612
+ if ( ! has_action( 'wp_head', '_wp_render_title_tag' ) ) {
613
  add_action( 'wp_head', '_wp_render_title_tag', 18 );
614
  }
615
+ if ( ! has_action( 'wp_head', 'rel_canonical' ) ) {
616
+ add_action( 'wp_head', 'rel_canonical', 18 );
617
+ }
618
  }
619
  }
620
 
623
 
624
 
625
  /**
626
+ * The profile page SEO tags
627
  *
628
  * @see https://ogp.me/ - The Open Graph protocol
629
  * @see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/summary - The Twitter Summary card
633
  if ( um_is_core_page( 'user' ) && um_get_requested_user() ) {
634
 
635
  $user_id = um_get_requested_user();
636
+
637
+ $privacy = get_user_meta( $user_id, 'profile_privacy', true );
638
+ if ( $privacy == __( 'Only me', 'ultimate-member' ) || $privacy == 'Only me' ) {
639
+ return;
640
+ }
641
+
642
+ $noindex = get_user_meta( $user_id, 'profile_noindex', true );
643
+ if ( ! empty( $noindex ) ) { ?>
644
+
645
+ <meta name="robots" content="noindex, nofollow" />
646
+
647
+ <?php return;
648
+ }
649
+
650
  um_fetch_user( $user_id );
651
 
652
  $locale = get_user_locale( $user_id );
665
  $image = um_get_user_avatar_url( $user_id, $size );
666
 
667
  $person = array(
668
+ "@context" => "http://schema.org",
669
+ "@type" => "Person",
670
+ "name" => esc_attr( $title ),
671
+ "description" => esc_attr( $description ),
672
+ "image" => esc_url( $image ),
673
+ "url" => esc_url( $url ),
674
  );
675
 
676
  um_reset_user();
677
  ?>
678
  <!-- START - Ultimate Member profile SEO meta tags -->
679
 
 
680
  <link rel="image_src" href="<?php echo esc_url( $image ); ?>"/>
681
+
682
  <meta name="description" content="<?php echo esc_attr( $description ); ?>"/>
683
 
684
  <meta property="og:type" content="profile"/>
includes/core/um-actions-register.php CHANGED
@@ -177,7 +177,7 @@ function um_check_user_status( $user_id, $args ) {
177
 
178
  // Priority redirect
179
  if ( isset( $args['redirect_to'] ) ) {
180
- exit( wp_redirect( urldecode( $args['redirect_to'] ) ) );
181
  }
182
 
183
  if ( $status == 'approved' ) {
177
 
178
  // Priority redirect
179
  if ( isset( $args['redirect_to'] ) ) {
180
+ exit( wp_safe_redirect( urldecode( $args['redirect_to'] ) ) );
181
  }
182
 
183
  if ( $status == 'approved' ) {
includes/core/um-filters-fields.php CHANGED
@@ -692,7 +692,7 @@ function um_profile_field_filter_xss_validation( $value, $data, $type = '' ) {
692
  $value = esc_url( $value );
693
  } elseif ( 'textarea' == $type ) {
694
  if ( empty( $data['html'] ) ) {
695
- $value = wp_kses_post( $value );
696
  }
697
  } elseif ( 'rating' == $type ) {
698
  if ( ! is_numeric( $value ) ) {
@@ -722,16 +722,23 @@ function um_profile_field_filter_xss_validation( $value, $data, $type = '' ) {
722
  */
723
  $option_pairs = apply_filters( 'um_select_options_pair', null, $data );
724
 
725
- $arr = empty( $data['options'] ) ? array() : $data['options'];
 
 
 
 
 
726
  if ( $option_pairs ) {
727
- $arr = array_keys( $arr );
 
 
728
  }
729
 
730
  if ( ! empty( $arr ) && ! in_array( $value, array_map( 'trim', $arr ) ) && empty( $data['custom_dropdown_options_source'] ) ) {
731
  $value = '';
732
  } else {
733
- if ( $option_pairs && isset( $data['options'] ) && is_array( $data['options'] ) && isset( $data['options'][ $value ] ) ) {
734
- $value = $data['options'][ $value ];
735
  }
736
  }
737
  }
692
  $value = esc_url( $value );
693
  } elseif ( 'textarea' == $type ) {
694
  if ( empty( $data['html'] ) ) {
695
+ $value = wp_kses_post( $value );
696
  }
697
  } elseif ( 'rating' == $type ) {
698
  if ( ! is_numeric( $value ) ) {
722
  */
723
  $option_pairs = apply_filters( 'um_select_options_pair', null, $data );
724
 
725
+ $array = empty( $data['options'] ) ? array() : $data['options'];
726
+
727
+ if ( $data['metakey'] == 'country' && empty( $array ) ) {
728
+ $array = UM()->builtin()->get( 'countries' );
729
+ }
730
+
731
  if ( $option_pairs ) {
732
+ $arr = array_keys( $array );
733
+ } else {
734
+ $arr = $array;
735
  }
736
 
737
  if ( ! empty( $arr ) && ! in_array( $value, array_map( 'trim', $arr ) ) && empty( $data['custom_dropdown_options_source'] ) ) {
738
  $value = '';
739
  } else {
740
+ if ( $option_pairs && is_array( $array ) && isset( $array[ $value ] ) ) {
741
+ $value = $array[ $value ];
742
  }
743
  }
744
  }
includes/core/um-filters-profile.php CHANGED
@@ -16,6 +16,18 @@ function um_dynamic_user_profile_pagetitle( $title, $sep = '' ) {
16
 
17
  if ( um_is_core_page( 'user' ) && um_get_requested_user() ) {
18
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  um_fetch_user( um_get_requested_user() );
20
 
21
  $profile_title = um_convert_tags( $profile_title );
@@ -65,6 +77,54 @@ function um_dynamic_user_profile_title( $title, $id = '' ) {
65
  add_filter( 'the_title', 'um_dynamic_user_profile_title', 100000, 2 );
66
 
67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  /**
69
  * Add cover photo label of file size limit
70
  *
16
 
17
  if ( um_is_core_page( 'user' ) && um_get_requested_user() ) {
18
 
19
+ $user_id = um_get_requested_user();
20
+
21
+ $privacy = get_user_meta( $user_id, 'profile_privacy', true );
22
+ if ( $privacy == __( 'Only me', 'ultimate-member' ) || $privacy == 'Only me' ) {
23
+ return $title;
24
+ }
25
+
26
+ $noindex = get_user_meta( $user_id, 'profile_noindex', true );
27
+ if ( ! empty( $noindex ) ) {
28
+ return $title;
29
+ }
30
+
31
  um_fetch_user( um_get_requested_user() );
32
 
33
  $profile_title = um_convert_tags( $profile_title );
77
  add_filter( 'the_title', 'um_dynamic_user_profile_title', 100000, 2 );
78
 
79
 
80
+ /**
81
+ * Fix SEO canonical for the profile page
82
+ *
83
+ * @param string $canonical_url The canonical URL.
84
+ * @param WP_Post $post Optional. Post ID or object. Default is global `$post`.
85
+ * @return string|false The canonical URL, or false if current URL is canonical.
86
+ */
87
+ function um_get_canonical_url( $canonical_url, $post ) {
88
+ if ( UM()->config()->permalinks['user'] == $post->ID ) {
89
+
90
+ /**
91
+ * UM hook
92
+ *
93
+ * @type filter
94
+ * @title um_allow_canonical__filter
95
+ * @description Allow canonical
96
+ * @input_vars
97
+ * [{"var":"$allow_canonical","type":"bool","desc":"Allow?"}]
98
+ * @change_log
99
+ * ["Since: 2.0"]
100
+ * @usage
101
+ * <?php add_filter( 'um_allow_canonical__filter', 'function_name', 10, 1 ); ?>
102
+ * @example
103
+ * <?php
104
+ * add_filter( 'um_allow_canonical__filter', 'my_allow_canonical', 10, 1 );
105
+ * function my_allow_canonical( $allow_canonical ) {
106
+ * // your code here
107
+ * return $allow_canonical;
108
+ * }
109
+ * ?>
110
+ */
111
+ $enable_canonical = apply_filters( 'um_allow_canonical__filter', true );
112
+
113
+ if ( $enable_canonical ) {
114
+ $url = um_user_profile_url( um_get_requested_user() );
115
+ $canonical_url = ( $url === home_url( $_SERVER['REQUEST_URI'] ) ) ? false : $url;
116
+
117
+ if ( $page = get_query_var( 'cpage' ) ) {
118
+ $canonical_url = get_comments_pagenum_link( $page );
119
+ }
120
+ }
121
+ }
122
+
123
+ return $canonical_url;
124
+ }
125
+ add_filter( 'get_canonical_url', 'um_get_canonical_url', 20, 2 );
126
+
127
+
128
  /**
129
  * Add cover photo label of file size limit
130
  *
includes/um-short-functions.php CHANGED
@@ -778,7 +778,7 @@ function um_user_submitted_registration( $style = false ) {
778
  *
779
  * @since 2.1.4
780
  */
781
- function um_user_submitted_registration_formatted( $style = false ){
782
  $output = null;
783
 
784
  $submitted_data = um_user( 'submitted' );
@@ -793,7 +793,9 @@ function um_user_submitted_registration_formatted( $style = false ){
793
 
794
  if ( isset( $submitted_data ) && is_array( $submitted_data ) ) {
795
 
796
- $fields = UM()->query()->get_attr( 'custom_fields', $submitted_data['form_id'] );
 
 
797
 
798
  if ( isset( $fields ) ) {
799
 
@@ -1033,6 +1035,9 @@ function um_filtered_social_link( $key, $match ) {
1033
  */
1034
  function um_filtered_value( $key, $data = false ) {
1035
  $value = um_user( $key );
 
 
 
1036
 
1037
  if ( ! $data ) {
1038
  $data = UM()->builtin()->get_specific_field( $key );
@@ -1331,24 +1336,27 @@ function um_is_core_page( $page ) {
1331
  return false;
1332
  }
1333
 
1334
- if ( isset( $post->ID ) && isset( UM()->config()->permalinks[ $page ] ) && $post->ID == UM()->config()->permalinks[ $page ] )
1335
  return true;
 
1336
 
1337
- if ( isset( $post->ID ) && get_post_meta( $post->ID, '_um_wpml_' . $page, true ) == 1 )
1338
  return true;
 
1339
 
1340
  if ( UM()->external_integrations()->is_wpml_active() ) {
1341
  global $sitepress;
1342
- if ( UM()->config()->permalinks[ $page ] == wpml_object_id_filter( $post->ID, 'page', true, $sitepress->get_default_language() ) ) {
1343
  return true;
1344
  }
1345
  }
1346
 
1347
- if (isset( $post->ID )) {
1348
  $_icl_lang_duplicate_of = get_post_meta( $post->ID, '_icl_lang_duplicate_of', true );
1349
 
1350
- if (isset( UM()->config()->permalinks[$page] ) && ( ( $_icl_lang_duplicate_of == UM()->config()->permalinks[$page] && !empty( $_icl_lang_duplicate_of ) ) || UM()->config()->permalinks[$page] == $post->ID ))
1351
  return true;
 
1352
  }
1353
 
1354
  return false;
@@ -1362,16 +1370,19 @@ function um_is_core_page( $page ) {
1362
  * @return bool
1363
  */
1364
  function um_is_core_post( $post, $core_page ) {
1365
- if (isset( $post->ID ) && isset( UM()->config()->permalinks[$core_page] ) && $post->ID == UM()->config()->permalinks[$core_page])
1366
  return true;
1367
- if (isset( $post->ID ) && get_post_meta( $post->ID, '_um_wpml_' . $core_page, true ) == 1)
 
1368
  return true;
 
1369
 
1370
- if (isset( $post->ID )) {
1371
  $_icl_lang_duplicate_of = get_post_meta( $post->ID, '_icl_lang_duplicate_of', true );
1372
 
1373
- if (isset( UM()->config()->permalinks[$core_page] ) && ( ( $_icl_lang_duplicate_of == UM()->config()->permalinks[$core_page] && !empty( $_icl_lang_duplicate_of ) ) || UM()->config()->permalinks[$core_page] == $post->ID ))
1374
  return true;
 
1375
  }
1376
 
1377
  return false;
@@ -2053,7 +2064,7 @@ function um_get_cover_uri( $image, $attrs ) {
2053
  function um_get_avatar_url( $get_avatar ) {
2054
  preg_match( '/src="(.*?)"/i', $get_avatar, $matches );
2055
 
2056
- return $matches[1];
2057
  }
2058
 
2059
 
778
  *
779
  * @since 2.1.4
780
  */
781
+ function um_user_submitted_registration_formatted( $style = false ) {
782
  $output = null;
783
 
784
  $submitted_data = um_user( 'submitted' );
793
 
794
  if ( isset( $submitted_data ) && is_array( $submitted_data ) ) {
795
 
796
+ if ( isset( $submitted_data['form_id'] ) ) {
797
+ $fields = UM()->query()->get_attr( 'custom_fields', $submitted_data['form_id'] );
798
+ }
799
 
800
  if ( isset( $fields ) ) {
801
 
1035
  */
1036
  function um_filtered_value( $key, $data = false ) {
1037
  $value = um_user( $key );
1038
+ if ( is_array( $value ) ) {
1039
+ $value = add_magic_quotes( $value );
1040
+ }
1041
 
1042
  if ( ! $data ) {
1043
  $data = UM()->builtin()->get_specific_field( $key );
1336
  return false;
1337
  }
1338
 
1339
+ if ( isset( $post->ID ) && isset( UM()->config()->permalinks[ $page ] ) && $post->ID == UM()->config()->permalinks[ $page ] ) {
1340
  return true;
1341
+ }
1342
 
1343
+ if ( isset( $post->ID ) && get_post_meta( $post->ID, '_um_wpml_' . $page, true ) == 1 ) {
1344
  return true;
1345
+ }
1346
 
1347
  if ( UM()->external_integrations()->is_wpml_active() ) {
1348
  global $sitepress;
1349
+ if ( isset( UM()->config()->permalinks[ $page ] ) && UM()->config()->permalinks[ $page ] == wpml_object_id_filter( $post->ID, 'page', true, $sitepress->get_default_language() ) ) {
1350
  return true;
1351
  }
1352
  }
1353
 
1354
+ if ( isset( $post->ID ) ) {
1355
  $_icl_lang_duplicate_of = get_post_meta( $post->ID, '_icl_lang_duplicate_of', true );
1356
 
1357
+ if ( isset( UM()->config()->permalinks[ $page ] ) && ( ( $_icl_lang_duplicate_of == UM()->config()->permalinks[ $page ] && !empty( $_icl_lang_duplicate_of ) ) || UM()->config()->permalinks[ $page ] == $post->ID ) ) {
1358
  return true;
1359
+ }
1360
  }
1361
 
1362
  return false;
1370
  * @return bool
1371
  */
1372
  function um_is_core_post( $post, $core_page ) {
1373
+ if ( isset( $post->ID ) && isset( UM()->config()->permalinks[ $core_page ] ) && $post->ID == UM()->config()->permalinks[ $core_page ] ) {
1374
  return true;
1375
+ }
1376
+ if ( isset( $post->ID ) && get_post_meta( $post->ID, '_um_wpml_' . $core_page, true ) == 1 ) {
1377
  return true;
1378
+ }
1379
 
1380
+ if ( isset( $post->ID ) ) {
1381
  $_icl_lang_duplicate_of = get_post_meta( $post->ID, '_icl_lang_duplicate_of', true );
1382
 
1383
+ if ( isset( UM()->config()->permalinks[ $core_page ] ) && ( ( $_icl_lang_duplicate_of == UM()->config()->permalinks[ $core_page ] && ! empty( $_icl_lang_duplicate_of ) ) || UM()->config()->permalinks[ $core_page ] == $post->ID ) ) {
1384
  return true;
1385
+ }
1386
  }
1387
 
1388
  return false;
2064
  function um_get_avatar_url( $get_avatar ) {
2065
  preg_match( '/src="(.*?)"/i', $get_avatar, $matches );
2066
 
2067
+ return isset( $matches[1] ) ? $matches[1] : '';
2068
  }
2069
 
2070
 
languages/ultimate-member-en.po DELETED
@@ -1,7088 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Ultimate Member\n"
4
- "POT-Creation-Date: 2018-08-18 00:01+0800\n"
5
- "PO-Revision-Date: 2018-08-18 00:01+0800\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: en\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.1.1\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
- "X-Poedit-WPHeader: ultimate-member.php\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
-
24
- #: includes/admin/class-admin.php:133
25
- #, php-format
26
- msgid "Duplicate of %s"
27
- msgstr ""
28
-
29
- #: includes/admin/class-admin.php:282
30
- msgid "Docs"
31
- msgstr ""
32
-
33
- #: includes/admin/class-admin.php:283
34
- #: includes/admin/core/class-admin-settings.php:1119
35
- msgid "Settings"
36
- msgstr ""
37
-
38
- #: includes/admin/class-admin.php:354 includes/admin/class-admin.php:357
39
- msgid "Form updated."
40
- msgstr ""
41
-
42
- #: includes/admin/class-admin.php:355
43
- msgid "Custom field updated."
44
- msgstr ""
45
-
46
- #: includes/admin/class-admin.php:356
47
- msgid "Custom field deleted."
48
- msgstr ""
49
-
50
- #: includes/admin/class-admin.php:358
51
- msgid "Form restored to revision."
52
- msgstr ""
53
-
54
- #: includes/admin/class-admin.php:359
55
- msgid "Form created."
56
- msgstr ""
57
-
58
- #: includes/admin/class-admin.php:360
59
- msgid "Form saved."
60
- msgstr ""
61
-
62
- #: includes/admin/class-admin.php:361
63
- msgid "Form submitted."
64
- msgstr ""
65
-
66
- #: includes/admin/class-admin.php:362
67
- msgid "Form scheduled."
68
- msgstr ""
69
-
70
- #: includes/admin/class-admin.php:363
71
- msgid "Form draft updated."
72
- msgstr ""
73
-
74
- #: includes/admin/core/class-admin-builder.php:227
75
- msgid "Manage conditional fields support"
76
- msgstr ""
77
-
78
- #: includes/admin/core/class-admin-builder.php:227
79
- #: includes/admin/core/class-admin-builder.php:229
80
- msgid ""
81
- "Here you can setup conditional logic to show/hide this field based on "
82
- "specific fields value or conditions"
83
- msgstr ""
84
-
85
- #: includes/admin/core/class-admin-builder.php:229
86
- msgid "Add conditional fields support"
87
- msgstr ""
88
-
89
- #: includes/admin/core/class-admin-builder.php:244
90
- msgid "Add new rule"
91
- msgstr ""
92
-
93
- #: includes/admin/core/class-admin-builder.php:245
94
- msgid "Reset all rules"
95
- msgstr ""
96
-
97
- #: includes/admin/core/class-admin-builder.php:402
98
- #: includes/admin/core/class-admin-builder.php:472
99
- #: includes/admin/core/class-admin-dragdrop.php:161
100
- msgid "Add Row"
101
- msgstr ""
102
-
103
- #: includes/admin/core/class-admin-builder.php:403
104
- #: includes/admin/core/class-admin-builder.php:473
105
- #: includes/admin/core/class-admin-dragdrop.php:162
106
- msgid "Edit Row"
107
- msgstr ""
108
-
109
- #: includes/admin/core/class-admin-builder.php:476
110
- #: includes/admin/core/class-admin-dragdrop.php:164
111
- #: includes/admin/core/class-admin-dragdrop.php:178
112
- #: includes/admin/core/class-admin-dragdrop.php:203
113
- msgid "Delete Row"
114
- msgstr ""
115
-
116
- #: includes/admin/core/class-admin-builder.php:610
117
- #: includes/admin/core/class-admin-builder.php:764
118
- #: includes/core/class-fields.php:4009
119
- msgid "Please login as administrator"
120
- msgstr ""
121
-
122
- #: includes/admin/core/class-admin-builder.php:830
123
- msgid "Search Icons..."
124
- msgstr ""
125
-
126
- #: includes/admin/core/class-admin-builder.php:851
127
- msgid "Setup New Field"
128
- msgstr ""
129
-
130
- #: includes/admin/core/class-admin-builder.php:867
131
- msgid "Predefined Fields"
132
- msgstr ""
133
-
134
- #: includes/admin/core/class-admin-builder.php:878
135
- #: includes/core/class-builtin.php:1315
136
- msgid "None"
137
- msgstr ""
138
-
139
- #: includes/admin/core/class-admin-builder.php:882
140
- msgid "Custom Fields"
141
- msgstr ""
142
-
143
- #: includes/admin/core/class-admin-builder.php:893
144
- msgid "You did not create any custom fields"
145
- msgstr ""
146
-
147
- #: includes/admin/core/class-admin-builder.php:925
148
- #: includes/admin/core/class-admin-builder.php:999
149
- msgid "This field type is not setup correcty."
150
- msgstr ""
151
-
152
- #: includes/admin/core/class-admin-builder.php:1146
153
- #: includes/core/class-form.php:153 includes/core/class-form.php:326
154
- #: includes/core/um-actions-password.php:202
155
- msgid "This is not possible for security reasons."
156
- msgstr ""
157
-
158
- #: includes/admin/core/class-admin-columns.php:64
159
- msgid "Duplicate"
160
- msgstr ""
161
-
162
- #: includes/admin/core/class-admin-columns.php:93
163
- #: includes/admin/core/class-admin-columns.php:112
164
- #: includes/admin/templates/role/role-edit.php:171
165
- msgid "Title"
166
- msgstr ""
167
-
168
- #: includes/admin/core/class-admin-columns.php:94
169
- #: includes/admin/core/class-admin-columns.php:113
170
- msgid "ID"
171
- msgstr ""
172
-
173
- #: includes/admin/core/class-admin-columns.php:95
174
- msgid "Type"
175
- msgstr ""
176
-
177
- #: includes/admin/core/class-admin-columns.php:96
178
- #: includes/admin/core/class-admin-columns.php:114
179
- #: includes/admin/core/class-admin-metabox.php:818
180
- #: includes/admin/core/class-admin-metabox.php:979
181
- msgid "Shortcode"
182
- msgstr ""
183
-
184
- #: includes/admin/core/class-admin-columns.php:97
185
- #: includes/admin/core/class-admin-columns.php:115
186
- msgid "Date"
187
- msgstr ""
188
-
189
- #: includes/admin/core/class-admin-enqueue.php:127
190
- #: includes/admin/core/class-admin-enqueue.php:161
191
- #: includes/admin/core/class-admin-forms.php:812
192
- #: includes/admin/core/class-admin-forms.php:826
193
- #: includes/admin/core/class-admin-forms.php:931
194
- #: includes/admin/core/class-admin-forms.php:940
195
- #: includes/admin/core/class-admin-notices.php:415
196
- #: includes/core/um-actions-profile.php:553
197
- msgid "Remove"
198
- msgstr ""
199
-
200
- #: includes/admin/core/class-admin-enqueue.php:128
201
- #: includes/admin/core/class-admin-enqueue.php:162
202
- #: includes/admin/core/class-admin-forms.php:1008
203
- msgid "Select"
204
- msgstr ""
205
-
206
- #: includes/admin/core/class-admin-enqueue.php:159
207
- msgid "Are sure, maybe some settings not saved"
208
- msgstr ""
209
-
210
- #: includes/admin/core/class-admin-forms.php:456
211
- msgid "Choose Icon"
212
- msgstr ""
213
-
214
- #: includes/admin/core/class-admin-forms.php:462
215
- msgid "No Icon"
216
- msgstr ""
217
-
218
- #: includes/admin/core/class-admin-forms.php:985
219
- msgid "Select media"
220
- msgstr ""
221
-
222
- #: includes/admin/core/class-admin-forms.php:1009
223
- msgid "Clear"
224
- msgstr ""
225
-
226
- #: includes/admin/core/class-admin-gdpr.php:42
227
- msgid "Privacy Policy"
228
- msgstr ""
229
-
230
- #: includes/admin/core/class-admin-gdpr.php:57
231
- msgid "Account Status"
232
- msgstr ""
233
-
234
- #: includes/admin/core/class-admin-gdpr.php:58
235
- msgid "Submitted data on Registration"
236
- msgstr ""
237
-
238
- #: includes/admin/core/class-admin-gdpr.php:59
239
- msgid "Registration Form ID"
240
- msgstr ""
241
-
242
- #: includes/admin/core/class-admin-gdpr.php:60
243
- msgid "Registration Timestamp"
244
- msgstr ""
245
-
246
- #: includes/admin/core/class-admin-gdpr.php:61
247
- msgid "Registration Request"
248
- msgstr ""
249
-
250
- #: includes/admin/core/class-admin-gdpr.php:62
251
- msgid "Registration Nonce"
252
- msgstr ""
253
-
254
- #: includes/admin/core/class-admin-gdpr.php:63
255
- msgid "Registration HTTP referer"
256
- msgstr ""
257
-
258
- #: includes/admin/core/class-admin-gdpr.php:64
259
- msgid "Community Role"
260
- msgstr ""
261
-
262
- #: includes/admin/core/class-admin-gdpr.php:65
263
- msgid "Profile Slug \"Username\""
264
- msgstr ""
265
-
266
- #: includes/admin/core/class-admin-gdpr.php:66
267
- msgid "Profile Slug \"First and Last Name with '.'\""
268
- msgstr ""
269
-
270
- #: includes/admin/core/class-admin-gdpr.php:67
271
- msgid "Profile Slug \"First and Last Name with '-'\""
272
- msgstr ""
273
-
274
- #: includes/admin/core/class-admin-gdpr.php:68
275
- msgid "Profile Slug \"First and Last Name with '+'\""
276
- msgstr ""
277
-
278
- #: includes/admin/core/class-admin-gdpr.php:69
279
- msgid "Profile Slug \"User ID\""
280
- msgstr ""
281
-
282
- #: includes/admin/core/class-admin-gdpr.php:70
283
- msgid "Last Login Timestamp"
284
- msgstr ""
285
-
286
- #: includes/admin/core/class-admin-gdpr.php:73
287
- msgid "Private Content Post ID"
288
- msgstr ""
289
-
290
- #: includes/admin/core/class-admin-gdpr.php:76
291
- msgid "Verified Account"
292
- msgstr ""
293
-
294
- #: includes/admin/core/class-admin-gdpr.php:79
295
- msgid "Terms&Conditions Agreement"
296
- msgstr ""
297
-
298
- #: includes/admin/core/class-admin-gdpr.php:82
299
- msgid "Privacy Policy Agreement"
300
- msgstr ""
301
-
302
- #: includes/admin/core/class-admin-gdpr.php:298
303
- #, php-format
304
- msgid "Your %s was unable to be removed at this time."
305
- msgstr ""
306
-
307
- #: includes/admin/core/class-admin-menu.php:64
308
- msgid "Thanks :)"
309
- msgstr ""
310
-
311
- #: includes/admin/core/class-admin-menu.php:71
312
- #, php-format
313
- msgid ""
314
- "If you like Ultimate Member please consider leaving a %s review. It will "
315
- "help us to grow the plugin and make it more popular. Thank you."
316
- msgstr ""
317
-
318
- #: includes/admin/core/class-admin-menu.php:118
319
- msgctxt "Admin menu name"
320
- msgid "Users"
321
- msgstr ""
322
-
323
- #: includes/admin/core/class-admin-menu.php:126
324
- msgctxt "Admin menu name"
325
- msgid "All Users"
326
- msgstr ""
327
-
328
- #. Plugin Name of the plugin/theme
329
- #. Author of the plugin/theme
330
- #: includes/admin/core/class-admin-menu.php:138
331
- #: includes/core/class-user.php:552
332
- msgid "Ultimate Member"
333
- msgstr ""
334
-
335
- #: includes/admin/core/class-admin-menu.php:142
336
- msgid "Dashboard"
337
- msgstr ""
338
-
339
- #: includes/admin/core/class-admin-menu.php:150
340
- #: includes/admin/templates/gdpr.php:7 includes/core/class-common.php:56
341
- msgid "Forms"
342
- msgstr ""
343
-
344
- #: includes/admin/core/class-admin-menu.php:152
345
- #: includes/admin/core/list-tables/roles-list-table.php:477
346
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:12
347
- msgid "User Roles"
348
- msgstr ""
349
-
350
- #: includes/admin/core/class-admin-menu.php:155
351
- #: includes/core/class-common.php:85
352
- msgid "Member Directories"
353
- msgstr ""
354
-
355
- #: includes/admin/core/class-admin-menu.php:197
356
- #: includes/admin/core/class-admin-settings.php:1007
357
- msgid "Extensions"
358
- msgstr ""
359
-
360
- #: includes/admin/core/class-admin-menu.php:210
361
- msgid "Users Overview"
362
- msgstr ""
363
-
364
- #: includes/admin/core/class-admin-menu.php:212
365
- msgid "Latest from our blog"
366
- msgstr ""
367
-
368
- #: includes/admin/core/class-admin-menu.php:214
369
- msgid "Purge Temp Files"
370
- msgstr ""
371
-
372
- #: includes/admin/core/class-admin-menu.php:216
373
- msgid "User Cache"
374
- msgstr ""
375
-
376
- #: includes/admin/core/class-admin-menu.php:219
377
- #: includes/admin/core/class-admin-menu.php:221
378
- #: includes/admin/core/class-admin-menu.php:223
379
- msgid "Language"
380
- msgstr ""
381
-
382
- #: includes/admin/core/class-admin-menu.php:229
383
- msgid "Upgrade's Manual Request"
384
- msgstr ""
385
-
386
- #: includes/admin/core/class-admin-metabox.php:72
387
- msgid "This is a translation of UM profile page?"
388
- msgstr ""
389
-
390
- #: includes/admin/core/class-admin-metabox.php:79
391
- msgid "This is a translation of UM account page?"
392
- msgstr ""
393
-
394
- #: includes/admin/core/class-admin-metabox.php:259
395
- msgid "UM Content Restriction"
396
- msgstr ""
397
-
398
- #: includes/admin/core/class-admin-metabox.php:415
399
- #: includes/admin/core/class-admin-metabox.php:565
400
- #: includes/admin/templates/access/restrict_content.php:47
401
- msgid "Restrict access to this content?"
402
- msgstr ""
403
-
404
- #: includes/admin/core/class-admin-metabox.php:416
405
- #: includes/admin/core/class-admin-metabox.php:423
406
- #: includes/admin/core/class-admin-metabox.php:436
407
- #: includes/admin/core/class-admin-metabox.php:566
408
- #: includes/admin/core/class-admin-metabox.php:574
409
- #: includes/admin/core/class-admin-metabox.php:588
410
- #: includes/admin/templates/access/restrict_content.php:48
411
- #: includes/admin/templates/access/restrict_content.php:55
412
- #: includes/admin/templates/access/restrict_content.php:68
413
- msgid "Activate content restriction for this post"
414
- msgstr ""
415
-
416
- #: includes/admin/core/class-admin-metabox.php:422
417
- #: includes/admin/core/class-admin-metabox.php:573
418
- #: includes/admin/templates/access/restrict_content.php:54
419
- msgid "Who can access this content?"
420
- msgstr ""
421
-
422
- #: includes/admin/core/class-admin-metabox.php:426
423
- #: includes/admin/core/class-admin-metabox.php:577
424
- #: includes/admin/templates/access/restrict_content.php:58
425
- #: includes/core/class-builtin.php:662 includes/core/um-navmenu.php:142
426
- msgid "Everyone"
427
- msgstr ""
428
-
429
- #: includes/admin/core/class-admin-metabox.php:427
430
- #: includes/admin/core/class-admin-metabox.php:578
431
- #: includes/admin/templates/access/restrict_content.php:59
432
- msgid "Logged out users"
433
- msgstr ""
434
-
435
- #: includes/admin/core/class-admin-metabox.php:428
436
- #: includes/admin/core/class-admin-metabox.php:579
437
- #: includes/admin/templates/access/restrict_content.php:60
438
- msgid "Logged in users"
439
- msgstr ""
440
-
441
- #: includes/admin/core/class-admin-metabox.php:435
442
- #: includes/admin/core/class-admin-metabox.php:587
443
- #: includes/admin/templates/access/restrict_content.php:67
444
- msgid "Select which roles can access this content"
445
- msgstr ""
446
-
447
- #: includes/admin/core/class-admin-metabox.php:444
448
- #: includes/admin/core/class-admin-metabox.php:598
449
- #: includes/admin/templates/access/restrict_content.php:77
450
- msgid "What happens when users without access tries to view the content?"
451
- msgstr ""
452
-
453
- #: includes/admin/core/class-admin-metabox.php:445
454
- #: includes/admin/core/class-admin-metabox.php:457
455
- #: includes/admin/core/class-admin-metabox.php:599
456
- #: includes/admin/core/class-admin-metabox.php:612
457
- #: includes/admin/templates/access/restrict_content.php:78
458
- #: includes/admin/templates/access/restrict_content.php:90
459
- msgid "Action when users without access tries to view the content"
460
- msgstr ""
461
-
462
- #: includes/admin/core/class-admin-metabox.php:448
463
- #: includes/admin/core/class-admin-metabox.php:602
464
- #: includes/admin/templates/access/restrict_content.php:81
465
- msgid "Show access restricted message"
466
- msgstr ""
467
-
468
- #: includes/admin/core/class-admin-metabox.php:449
469
- #: includes/admin/core/class-admin-metabox.php:603
470
- #: includes/admin/templates/access/restrict_content.php:82
471
- msgid "Redirect user"
472
- msgstr ""
473
-
474
- #: includes/admin/core/class-admin-metabox.php:456
475
- #: includes/admin/core/class-admin-metabox.php:611
476
- #: includes/admin/templates/access/restrict_content.php:89
477
- msgid ""
478
- "Would you like to use the global default message or apply a custom message "
479
- "to this content?"
480
- msgstr ""
481
-
482
- #: includes/admin/core/class-admin-metabox.php:460
483
- #: includes/admin/core/class-admin-metabox.php:615
484
- #: includes/admin/templates/access/restrict_content.php:93
485
- msgid "Global default message (default)"
486
- msgstr ""
487
-
488
- #: includes/admin/core/class-admin-metabox.php:461
489
- #: includes/admin/core/class-admin-metabox.php:616
490
- #: includes/admin/templates/access/restrict_content.php:94
491
- msgid "Custom message"
492
- msgstr ""
493
-
494
- #: includes/admin/core/class-admin-metabox.php:468
495
- #: includes/admin/core/class-admin-metabox.php:624
496
- #: includes/admin/templates/access/restrict_content.php:101
497
- msgid "Custom Restrict Content message"
498
- msgstr ""
499
-
500
- #: includes/admin/core/class-admin-metabox.php:469
501
- #: includes/admin/core/class-admin-metabox.php:489
502
- #: includes/admin/core/class-admin-metabox.php:625
503
- #: includes/admin/core/class-admin-metabox.php:647
504
- #: includes/admin/templates/access/restrict_content.php:102
505
- #: includes/admin/templates/access/restrict_content.php:122
506
- msgid "Changed global restrict message"
507
- msgstr ""
508
-
509
- #: includes/admin/core/class-admin-metabox.php:476
510
- #: includes/admin/core/class-admin-metabox.php:633
511
- #: includes/admin/templates/access/restrict_content.php:109
512
- msgid "Where should users be redirected to?"
513
- msgstr ""
514
-
515
- #: includes/admin/core/class-admin-metabox.php:477
516
- #: includes/admin/core/class-admin-metabox.php:634
517
- #: includes/admin/templates/access/restrict_content.php:110
518
- msgid "Select redirect to page when user hasn't access to content"
519
- msgstr ""
520
-
521
- #: includes/admin/core/class-admin-metabox.php:481
522
- #: includes/admin/core/class-admin-metabox.php:638
523
- #: includes/admin/templates/access/restrict_content.php:114
524
- msgid "Login page"
525
- msgstr ""
526
-
527
- #: includes/admin/core/class-admin-metabox.php:482
528
- #: includes/admin/core/class-admin-metabox.php:639
529
- #: includes/admin/templates/access/restrict_content.php:115
530
- msgid "Custom URL"
531
- msgstr ""
532
-
533
- #: includes/admin/core/class-admin-metabox.php:488
534
- #: includes/admin/core/class-admin-metabox.php:646
535
- #: includes/admin/templates/access/restrict_content.php:121
536
- msgid "Redirect URL"
537
- msgstr ""
538
-
539
- #: includes/admin/core/class-admin-metabox.php:496
540
- #: includes/admin/core/class-admin-metabox.php:655
541
- #: includes/admin/templates/access/restrict_content.php:129
542
- msgid "Hide from queries"
543
- msgstr ""
544
-
545
- #: includes/admin/core/class-admin-metabox.php:497
546
- #: includes/admin/core/class-admin-metabox.php:656
547
- #: includes/admin/templates/access/restrict_content.php:130
548
- msgid ""
549
- "Hide this content from archives, RSS feeds etc for users who do not have "
550
- "permission to view this content"
551
- msgstr ""
552
-
553
- #: includes/admin/core/class-admin-metabox.php:814
554
- msgid "General Options"
555
- msgstr ""
556
-
557
- #: includes/admin/core/class-admin-metabox.php:815
558
- msgid "Profile Card"
559
- msgstr ""
560
-
561
- #: includes/admin/core/class-admin-metabox.php:816
562
- msgid "Search Options"
563
- msgstr ""
564
-
565
- #: includes/admin/core/class-admin-metabox.php:817
566
- msgid "Results &amp; Pagination"
567
- msgstr ""
568
-
569
- #: includes/admin/core/class-admin-metabox.php:819
570
- msgid "Styling: General"
571
- msgstr ""
572
-
573
- #: includes/admin/core/class-admin-metabox.php:832
574
- msgid "Administrative Permissions"
575
- msgstr ""
576
-
577
- #: includes/admin/core/class-admin-metabox.php:840
578
- msgid "General Permissions"
579
- msgstr ""
580
-
581
- #: includes/admin/core/class-admin-metabox.php:848
582
- msgid "Profile Access"
583
- msgstr ""
584
-
585
- #: includes/admin/core/class-admin-metabox.php:859
586
- msgid "Homepage Options"
587
- msgstr ""
588
-
589
- #: includes/admin/core/class-admin-metabox.php:870
590
- msgid "Registration Options"
591
- msgstr ""
592
-
593
- #: includes/admin/core/class-admin-metabox.php:878
594
- msgid "Login Options"
595
- msgstr ""
596
-
597
- #: includes/admin/core/class-admin-metabox.php:886
598
- msgid "Logout Options"
599
- msgstr ""
600
-
601
- #: includes/admin/core/class-admin-metabox.php:894
602
- msgid "Delete Options"
603
- msgstr ""
604
-
605
- #: includes/admin/core/class-admin-metabox.php:902
606
- msgid "Publish"
607
- msgstr ""
608
-
609
- #: includes/admin/core/class-admin-metabox.php:950
610
- msgid "WP Capabilities"
611
- msgstr ""
612
-
613
- #: includes/admin/core/class-admin-metabox.php:977
614
- msgid "Select Form Type"
615
- msgstr ""
616
-
617
- #: includes/admin/core/class-admin-metabox.php:978
618
- msgid "Form Builder"
619
- msgstr ""
620
-
621
- #: includes/admin/core/class-admin-metabox.php:981
622
- #: includes/admin/core/class-admin-metabox.php:1002
623
- #: includes/admin/core/class-admin-metabox.php:1024
624
- msgid "Customize this form"
625
- msgstr ""
626
-
627
- #: includes/admin/core/class-admin-metabox.php:1003
628
- msgid "User Meta"
629
- msgstr ""
630
-
631
- #: includes/admin/core/class-admin-metabox.php:1025
632
- msgid "Options"
633
- msgstr ""
634
-
635
- #: includes/admin/core/class-admin-metabox.php:1205
636
- msgid ""
637
- "Select where this field should appear. This option should only be changed on "
638
- "the profile form and allows you to show a field in one mode only (edit or "
639
- "view) or in both modes."
640
- msgstr ""
641
-
642
- #: includes/admin/core/class-admin-metabox.php:1239
643
- msgid "If"
644
- msgstr ""
645
-
646
- #: includes/admin/core/class-admin-metabox.php:1316
647
- msgid "Value"
648
- msgstr ""
649
-
650
- #: includes/admin/core/class-admin-metabox.php:1325
651
- msgid "Does this field require a special validation"
652
- msgstr ""
653
-
654
- #: includes/admin/core/class-admin-metabox.php:1370
655
- msgid ""
656
- "If you want to apply your custom validation, you can use action hooks to add "
657
- "custom validation. Please refer to documentation for further details."
658
- msgstr ""
659
-
660
- #: includes/admin/core/class-admin-metabox.php:1384
661
- #: includes/admin/core/class-admin-metabox.php:1412
662
- msgid ""
663
- "Select an icon to appear in the field. Leave blank if you do not want an "
664
- "icon to show in the field."
665
- msgstr ""
666
-
667
- #: includes/admin/core/class-admin-metabox.php:1439
668
- msgid "Specify a custom CSS class to be applied to this element"
669
- msgstr ""
670
-
671
- #: includes/admin/core/class-admin-metabox.php:1449
672
- msgid "This is the width in pixels, e.g. 4 or 2, etc"
673
- msgstr ""
674
-
675
- #: includes/admin/core/class-admin-metabox.php:1459
676
- msgid "Optional text to include with the divider"
677
- msgstr ""
678
-
679
- #: includes/admin/core/class-admin-metabox.php:1469
680
- msgid "Set padding for this section"
681
- msgstr ""
682
-
683
- #: includes/admin/core/class-admin-metabox.php:1479
684
- msgid "Set margin for this section"
685
- msgstr ""
686
-
687
- #: includes/admin/core/class-admin-metabox.php:1489
688
- msgid "Set border for this section"
689
- msgstr ""
690
-
691
- #: includes/admin/core/class-admin-metabox.php:1499
692
- msgid "Choose the border style"
693
- msgstr ""
694
-
695
- #: includes/admin/core/class-admin-metabox.php:1514
696
- msgid "Rounded corners can be applied by setting a pixels value here. e.g. 5px"
697
- msgstr ""
698
-
699
- #: includes/admin/core/class-admin-metabox.php:1524
700
- msgid "Give a color to this border"
701
- msgstr ""
702
-
703
- #: includes/admin/core/class-admin-metabox.php:1534
704
- msgid "Enable Row Heading"
705
- msgstr ""
706
-
707
- #: includes/admin/core/class-admin-metabox.php:1534
708
- msgid "Whether to enable a heading for this row"
709
- msgstr ""
710
-
711
- #: includes/admin/core/class-admin-metabox.php:1544
712
- msgid "Enter the row heading text here"
713
- msgstr ""
714
-
715
- #: includes/admin/core/class-admin-metabox.php:1554
716
- msgid "This will be the background of entire section"
717
- msgstr ""
718
-
719
- #: includes/admin/core/class-admin-metabox.php:1564
720
- msgid "This will be the background of the heading section"
721
- msgstr ""
722
-
723
- #: includes/admin/core/class-admin-metabox.php:1574
724
- msgid "This will be the text color of heading part only"
725
- msgstr ""
726
-
727
- #: includes/admin/core/class-admin-metabox.php:1584
728
- msgid "This will be the text color of entire section"
729
- msgstr ""
730
-
731
- #: includes/admin/core/class-admin-metabox.php:1594
732
- msgid ""
733
- "This will be the color of selected icon. By default It will be the same "
734
- "color as heading text color"
735
- msgstr ""
736
-
737
- #: includes/admin/core/class-admin-metabox.php:1604
738
- msgid "Select a color for this divider"
739
- msgstr ""
740
-
741
- #: includes/admin/core/class-admin-metabox.php:1614
742
- msgid "Entering custom text here will replace the url with a text link"
743
- msgstr ""
744
-
745
- #: includes/admin/core/class-admin-metabox.php:1624
746
- msgid "Choose whether to open this link in same window or in a new window"
747
- msgstr ""
748
-
749
- #: includes/admin/core/class-admin-metabox.php:1637
750
- msgid "Whether to follow or nofollow this link by search engines"
751
- msgstr ""
752
-
753
- #: includes/admin/core/class-admin-metabox.php:1650
754
- msgid ""
755
- "Turn on to force users to create a strong password (A combination of one "
756
- "lowercase letter, one uppercase letter, and one number). If turned on this "
757
- "option is only applied to register forms and not to login forms."
758
- msgstr ""
759
-
760
- #: includes/admin/core/class-admin-metabox.php:1660
761
- msgid ""
762
- "Turn on to add a confirm password field. If turned on the confirm password "
763
- "field will only show on register forms and not on login forms."
764
- msgstr ""
765
-
766
- #: includes/admin/core/class-admin-metabox.php:1670
767
- msgid "This is the line-style of divider"
768
- msgstr ""
769
-
770
- #: includes/admin/core/class-admin-metabox.php:1686
771
- msgid "Choose the minutes interval between each time in the time picker."
772
- msgstr ""
773
-
774
- #: includes/admin/core/class-admin-metabox.php:1699
775
- msgid "The display format of the date which is visible to user."
776
- msgstr ""
777
-
778
- #: includes/admin/core/class-admin-metabox.php:1710
779
- msgid "Choose the displayed time-format for this field"
780
- msgstr ""
781
-
782
- #: includes/admin/core/class-admin-metabox.php:1725
783
- msgid ""
784
- "Whether you wish to show the date in full or only show the years e.g. 25 "
785
- "Years"
786
- msgstr ""
787
-
788
- #: includes/admin/core/class-admin-metabox.php:1744
789
- msgid ""
790
- "Disable specific week days from being available for selection in this date "
791
- "picker"
792
- msgstr ""
793
-
794
- #: includes/admin/core/class-admin-metabox.php:1762
795
- msgid ""
796
- "Number of years available for the date selection. Default to last 50 years"
797
- msgstr ""
798
-
799
- #: includes/admin/core/class-admin-metabox.php:1772
800
- msgid "This decides which years should be shown relative to today date"
801
- msgstr ""
802
-
803
- #: includes/admin/core/class-admin-metabox.php:1786
804
- msgid "Set the minimum date/day in range in the format YYYY/MM/DD"
805
- msgstr ""
806
-
807
- #: includes/admin/core/class-admin-metabox.php:1796
808
- msgid "Set the maximum date/day in range in the format YYYY/MM/DD"
809
- msgstr ""
810
-
811
- #: includes/admin/core/class-admin-metabox.php:1806
812
- msgid ""
813
- "Whether to show a specific number of years or specify a date range to be "
814
- "available for the date picker."
815
- msgstr ""
816
-
817
- #: includes/admin/core/class-admin-metabox.php:1822
818
- msgid ""
819
- "Enter the shortcode in the following textarea and it will be displayed on "
820
- "the fields"
821
- msgstr ""
822
-
823
- #: includes/admin/core/class-admin-metabox.php:1832
824
- msgid "Edit the content of this field here"
825
- msgstr ""
826
-
827
- #: includes/admin/core/class-admin-metabox.php:1845
828
- msgid "Enable/disable crop feature for this image upload and define ratio"
829
- msgstr ""
830
-
831
- #: includes/admin/core/class-admin-metabox.php:1867
832
- #: includes/admin/core/class-admin-metabox.php:1887
833
- msgid ""
834
- "Select the image types that you want to allow to be uploaded via this field."
835
- msgstr ""
836
-
837
- #: includes/admin/core/class-admin-metabox.php:1908
838
- msgid "This is the headline that appears in the upload box for this field"
839
- msgstr ""
840
-
841
- #: includes/admin/core/class-admin-metabox.php:1918
842
- msgid ""
843
- "If you need to add information or secondary line below the headline of "
844
- "upload box, enter it here"
845
- msgstr ""
846
-
847
- #: includes/admin/core/class-admin-metabox.php:1928
848
- msgid "The text that appears on the button. e.g. Upload"
849
- msgstr ""
850
-
851
- #: includes/admin/core/class-admin-metabox.php:1938
852
- msgid ""
853
- "The maximum size for image that can be uploaded through this field. Leave "
854
- "empty for unlimited size."
855
- msgstr ""
856
-
857
- #: includes/admin/core/class-admin-metabox.php:1948
858
- msgid "The height of textarea in pixels. Default is 100 pixels"
859
- msgstr ""
860
-
861
- #: includes/admin/core/class-admin-metabox.php:1958
862
- msgid "This is the required spacing in pixels. e.g. 20px"
863
- msgstr ""
864
-
865
- #: includes/admin/core/class-admin-metabox.php:1968
866
- msgid "Enable/disable multiple selections for this field"
867
- msgstr ""
868
-
869
- #: includes/admin/core/class-admin-metabox.php:1978
870
- msgid ""
871
- "Enter a number here to force a maximum number of selections by user for this "
872
- "field"
873
- msgstr ""
874
-
875
- #: includes/admin/core/class-admin-metabox.php:1988
876
- msgid ""
877
- "Enter a number here to force a minimum number of selections by user for this "
878
- "field"
879
- msgstr ""
880
-
881
- #: includes/admin/core/class-admin-metabox.php:1998
882
- msgid "This is the max number of entries the user can add via field group."
883
- msgstr ""
884
-
885
- #: includes/admin/core/class-admin-metabox.php:2008
886
- msgid ""
887
- "If you want to enable a maximum number of words to be input in this "
888
- "textarea. Leave empty to disable this setting"
889
- msgstr ""
890
-
891
- #: includes/admin/core/class-admin-metabox.php:2018
892
- msgid "Minimum number that can be entered in this field"
893
- msgstr ""
894
-
895
- #: includes/admin/core/class-admin-metabox.php:2028
896
- msgid "Maximum number that can be entered in this field"
897
- msgstr ""
898
-
899
- #: includes/admin/core/class-admin-metabox.php:2038
900
- msgid ""
901
- "If you want to enable a minimum number of characters to be input in this "
902
- "field. Leave empty to disable this setting"
903
- msgstr ""
904
-
905
- #: includes/admin/core/class-admin-metabox.php:2048
906
- msgid ""
907
- "If you want to enable a maximum number of characters to be input in this "
908
- "field. Leave empty to disable this setting"
909
- msgstr ""
910
-
911
- #: includes/admin/core/class-admin-metabox.php:2058
912
- msgid "Turn on/off HTML tags for this textarea"
913
- msgstr ""
914
-
915
- #: includes/admin/core/class-admin-metabox.php:2077
916
- msgid ""
917
- "Enter one choice per line. This will represent the available choices or "
918
- "selections available for user."
919
- msgstr ""
920
-
921
- #: includes/admin/core/class-admin-metabox.php:2087
922
- msgid ""
923
- "This is the title of the field for your reference in the backend. The title "
924
- "will not appear on the front-end of your website."
925
- msgstr ""
926
-
927
- #: includes/admin/core/class-admin-metabox.php:2112
928
- msgid ""
929
- "The meta key cannot be changed for duplicated fields or when editing an "
930
- "existing field. If you require a different meta key please create a new "
931
- "field."
932
- msgstr ""
933
-
934
- #: includes/admin/core/class-admin-metabox.php:2118
935
- msgid ""
936
- "A meta key is required to store the entered info in this field in the "
937
- "database. The meta key should be unique to this field and be written in "
938
- "lowercase with an underscore ( _ ) separating words e.g country_list or "
939
- "job_title"
940
- msgstr ""
941
-
942
- #: includes/admin/core/class-admin-metabox.php:2131
943
- msgid ""
944
- "This is the text that appears in a tooltip when a user hovers over the info "
945
- "icon. Help text is useful for providing users with more information about "
946
- "what they should enter in the field. Leave blank if no help text is needed "
947
- "for field."
948
- msgstr ""
949
-
950
- #: includes/admin/core/class-admin-metabox.php:2143
951
- msgid "Text to display by default in this field"
952
- msgstr ""
953
-
954
- #: includes/admin/core/class-admin-metabox.php:2149
955
- msgid ""
956
- "If you wish the rating field to be prefilled with a number of stars, enter "
957
- "it here."
958
- msgstr ""
959
-
960
- #: includes/admin/core/class-admin-metabox.php:2155
961
- msgid ""
962
- "This option allows you to pre-fill the field with a default value prior to "
963
- "the user entering a value in the field. Leave blank to have no default value"
964
- msgstr ""
965
-
966
- #: includes/admin/core/class-admin-metabox.php:2167
967
- msgid ""
968
- "The field label is the text that appears above the field on your front-end "
969
- "form. Leave blank to not show a label above field."
970
- msgstr ""
971
-
972
- #: includes/admin/core/class-admin-metabox.php:2177
973
- msgid ""
974
- "This is the text that appears within the field e.g please enter your email "
975
- "address. Leave blank to not show any placeholder text."
976
- msgstr ""
977
-
978
- #: includes/admin/core/class-admin-metabox.php:2187
979
- msgid ""
980
- "Field privacy allows you to select who can view this field on the front-end. "
981
- "The site admin can view all fields regardless of the option set here."
982
- msgstr ""
983
-
984
- #: includes/admin/core/class-admin-metabox.php:2210
985
- msgid "Select the member roles that can view this field on the front-end."
986
- msgstr ""
987
-
988
- #: includes/admin/core/class-admin-metabox.php:2236
989
- msgid ""
990
- "This option allows you to set whether the field must be filled in before the "
991
- "form can be processed."
992
- msgstr ""
993
-
994
- #: includes/admin/core/class-admin-metabox.php:2250
995
- msgid ""
996
- "This option allows you to set whether or not the user can edit the "
997
- "information in this field."
998
- msgstr ""
999
-
1000
- #: includes/admin/core/class-admin-metabox.php:2263
1001
- msgid "Choose whether you want a 5-stars or 10-stars ratings based here."
1002
- msgstr ""
1003
-
1004
- #: includes/admin/core/class-admin-metabox.php:2276
1005
- msgid "Add a callback source to retrieve choices."
1006
- msgstr ""
1007
-
1008
- #: includes/admin/core/class-admin-metabox.php:2287
1009
- msgid "Parent Option"
1010
- msgstr ""
1011
-
1012
- #: includes/admin/core/class-admin-metabox.php:2287
1013
- msgid "Dynamically populates the option based from selected parent option."
1014
- msgstr ""
1015
-
1016
- #: includes/admin/core/class-admin-metabox.php:2289
1017
- msgid "No Selected"
1018
- msgstr ""
1019
-
1020
- #: includes/admin/core/class-admin-notices.php:280
1021
- #, php-format
1022
- msgid ""
1023
- "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions "
1024
- "installed on your site. <br /> Please update %s extensions to latest "
1025
- "versions. For more info see this <a href=\"%s\" target=\"_blank\">doc</a>."
1026
- msgstr ""
1027
-
1028
- #: includes/admin/core/class-admin-notices.php:295
1029
- #, php-format
1030
- msgid ""
1031
- "Exif is not enabled on your server. Mobile photo uploads will not be rotated "
1032
- "correctly until you enable the exif extension. <a href=\"%s\">Hide this "
1033
- "notice</a>"
1034
- msgstr ""
1035
-
1036
- #: includes/admin/core/class-admin-notices.php:318
1037
- msgid ""
1038
- "One or more of your Ultimate Member pages are not correctly setup. Please "
1039
- "visit <strong>Ultimate Member > Settings</strong> to re-assign your missing "
1040
- "pages."
1041
- msgstr ""
1042
-
1043
- #: includes/admin/core/class-admin-notices.php:327
1044
- msgid "Ultimate Member Setup Error: User page can not be a child page."
1045
- msgstr ""
1046
-
1047
- #: includes/admin/core/class-admin-notices.php:337
1048
- msgid "Ultimate Member Setup Error: Account page can not be a child page."
1049
- msgstr ""
1050
-
1051
- #: includes/admin/core/class-admin-notices.php:370
1052
- #, php-format
1053
- msgid ""
1054
- "Your site language is <strong>%1$s</strong>. Good news! Ultimate Member is "
1055
- "already available in <strong>%2$s language</strong>. <a href=\"%3$s"
1056
- "\">Download the translation</a> files and start using the plugin in your "
1057
- "language now. <a href=\"%4$s\">Hide this notice</a>"
1058
- msgstr ""
1059
-
1060
- #: includes/admin/core/class-admin-notices.php:377
1061
- #, php-format
1062
- msgid ""
1063
- "Ultimate Member has not yet been translated to your language: <strong>%1$s</"
1064
- "strong>. If you have translated the plugin you need put these files "
1065
- "<code>ultimatemember-%1$s.po and ultimatemember-%1$s.mo</code> in <strong>/"
1066
- "wp-content/languages/plugins/</strong> for the plugin to be translated in "
1067
- "your language. <a href=\"%2$s\">Hide this notice</a>"
1068
- msgstr ""
1069
-
1070
- #: includes/admin/core/class-admin-notices.php:414
1071
- #, php-format
1072
- msgid ""
1073
- "Are you sure you want to delete the selected user(s)? The following users "
1074
- "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
1075
- msgstr ""
1076
-
1077
- #: includes/admin/core/class-admin-notices.php:415
1078
- msgid "Undo"
1079
- msgstr ""
1080
-
1081
- #: includes/admin/core/class-admin-notices.php:420
1082
- msgid "Your translation files have been updated successfully."
1083
- msgstr ""
1084
-
1085
- #: includes/admin/core/class-admin-notices.php:424
1086
- msgid "Your temp uploads directory is now clean."
1087
- msgstr ""
1088
-
1089
- #: includes/admin/core/class-admin-notices.php:428
1090
- msgid "Your user cache is now removed."
1091
- msgstr ""
1092
-
1093
- #: includes/admin/core/class-admin-notices.php:432
1094
- msgid "You got the latest upgrades."
1095
- msgstr ""
1096
-
1097
- #: includes/admin/core/class-admin-notices.php:436
1098
- msgid "Try again later. You can run this action once daily."
1099
- msgstr ""
1100
-
1101
- #: includes/admin/core/class-admin-notices.php:440
1102
- msgid "The form has been duplicated successfully."
1103
- msgstr ""
1104
-
1105
- #: includes/admin/core/class-admin-notices.php:444
1106
- msgid "User has been updated."
1107
- msgstr ""
1108
-
1109
- #: includes/admin/core/class-admin-notices.php:448
1110
- msgid "Users have been updated."
1111
- msgstr ""
1112
-
1113
- #: includes/admin/core/class-admin-notices.php:452
1114
- msgid "Changed roles."
1115
- msgstr ""
1116
-
1117
- #: includes/admin/core/class-admin-notices.php:456
1118
- msgid "Super administrators cannot be modified."
1119
- msgstr ""
1120
-
1121
- #: includes/admin/core/class-admin-notices.php:457
1122
- msgid "Other users have been updated."
1123
- msgstr ""
1124
-
1125
- #: includes/admin/core/class-admin-notices.php:494
1126
- #, php-format
1127
- msgid ""
1128
- "You have installed <strong>%s</strong> with wrong folder name. Correct "
1129
- "folder name is <strong>\"ultimate-member\"</strong>."
1130
- msgstr ""
1131
-
1132
- #: includes/admin/core/class-admin-notices.php:519
1133
- #, php-format
1134
- msgid ""
1135
- "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To "
1136
- "fund full-time development and support of the plugin we also sell "
1137
- "extensions. If you subscribe to our mailing list we will send you a 20%% "
1138
- "discount code for our <a href=\"%s\" target=\"_blank\">extensions bundle</a>."
1139
- msgstr ""
1140
-
1141
- #: includes/admin/core/class-admin-notices.php:523
1142
- #, php-format
1143
- msgid "Claim 20% discount code"
1144
- msgstr ""
1145
-
1146
- #: includes/admin/core/class-admin-notices.php:525
1147
- msgid "No thanks"
1148
- msgstr ""
1149
-
1150
- #: includes/admin/core/class-admin-notices.php:562
1151
- #, php-format
1152
- msgid ""
1153
- "There are %d inactive %s license keys for this site. This site is not "
1154
- "authorized to get plugin updates. You can active this site on <a href=\"%s"
1155
- "\">www.ultimatemember.com</a>."
1156
- msgstr ""
1157
-
1158
- #: includes/admin/core/class-admin-notices.php:569
1159
- #, php-format
1160
- msgid ""
1161
- "You have %d invalid or expired license keys for %s. Please go to the <a href="
1162
- "\"%s\">Licenses page</a> to correct this issue."
1163
- msgstr ""
1164
-
1165
- #: includes/admin/core/class-admin-notices.php:583
1166
- #, php-format
1167
- msgid ""
1168
- "<strong>%s version %s</strong> needs to be updated to work correctly.<br /"
1169
- ">It is necessary to update the structure of the database and options that "
1170
- "are associated with <strong>%s %s</strong>.<br />Please visit <a href=\"%s\">"
1171
- "\"Upgrade\"</a> page and run the upgrade process."
1172
- msgstr ""
1173
-
1174
- #: includes/admin/core/class-admin-notices.php:587
1175
- msgid "Upgrade Now"
1176
- msgstr ""
1177
-
1178
- #: includes/admin/core/class-admin-notices.php:601
1179
- #, php-format
1180
- msgid "<strong>%s %s</strong> Successfully Upgraded"
1181
- msgstr ""
1182
-
1183
- #: includes/admin/core/class-admin-notices.php:627
1184
- #, php-format
1185
- msgid ""
1186
- "Hey there! It's been one month since you installed %s. How have you found "
1187
- "the plugin so far?"
1188
- msgstr ""
1189
-
1190
- #: includes/admin/core/class-admin-notices.php:630
1191
- msgid "I love it!"
1192
- msgstr ""
1193
-
1194
- #: includes/admin/core/class-admin-notices.php:631
1195
- msgid "It's good but could be better"
1196
- msgstr ""
1197
-
1198
- #: includes/admin/core/class-admin-notices.php:632
1199
- msgid "I don't like the plugin"
1200
- msgstr ""
1201
-
1202
- #: includes/admin/core/class-admin-notices.php:637
1203
- #, php-format
1204
- msgid ""
1205
- "Great! We're happy to hear that you love the plugin. It would be amazing if "
1206
- "you could let others know why you like %s by leaving a review of the plugin. "
1207
- "This will help %s to grow and become more popular and would be massively "
1208
- "appreciated by us!"
1209
- msgstr ""
1210
-
1211
- #: includes/admin/core/class-admin-notices.php:641
1212
- msgid "Leave Review"
1213
- msgstr ""
1214
-
1215
- #: includes/admin/core/class-admin-notices.php:646
1216
- msgid ""
1217
- "We're glad to hear that you like the plugin but we would love to get your "
1218
- "feedback so we can make the plugin better."
1219
- msgstr ""
1220
-
1221
- #: includes/admin/core/class-admin-notices.php:650
1222
- #: includes/admin/core/class-admin-notices.php:659
1223
- msgid "Provide Feedback"
1224
- msgstr ""
1225
-
1226
- #: includes/admin/core/class-admin-notices.php:655
1227
- #, php-format
1228
- msgid ""
1229
- "We're sorry to hear that. If you're having the issue with the plugin you can "
1230
- "create a topic on our <a href=\"%s\" target=\"_blank\">support forum</a> and "
1231
- "we will try and help you out with the issue. Alternatively if you have an "
1232
- "idea on how we can make the plugin better or want to tell us what you don't "
1233
- "like about the plugin you can tell us know by giving us feedback."
1234
- msgstr ""
1235
-
1236
- #: includes/admin/core/class-admin-notices.php:681
1237
- #, php-format
1238
- msgid ""
1239
- "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" "
1240
- "target=\"_blank\">here</a>"
1241
- msgstr ""
1242
-
1243
- #: includes/admin/core/class-admin-notices.php:696
1244
- msgid "Wrong Nonce"
1245
- msgstr ""
1246
-
1247
- #: includes/admin/core/class-admin-notices.php:701
1248
- msgid "Wrong Data"
1249
- msgstr ""
1250
-
1251
- #: includes/admin/core/class-admin-settings.php:107
1252
- #: includes/admin/core/class-admin-settings.php:116
1253
- #, php-format
1254
- msgid "%s page"
1255
- msgstr ""
1256
-
1257
- #: includes/admin/core/class-admin-settings.php:108
1258
- msgid "Add page ID"
1259
- msgstr ""
1260
-
1261
- #: includes/admin/core/class-admin-settings.php:118
1262
- msgid "Choose a page..."
1263
- msgstr ""
1264
-
1265
- #: includes/admin/core/class-admin-settings.php:131
1266
- msgid "Enable profile menu"
1267
- msgstr ""
1268
-
1269
- #: includes/admin/core/class-admin-settings.php:143
1270
- #, php-format
1271
- msgid "%s Tab"
1272
- msgstr ""
1273
-
1274
- #: includes/admin/core/class-admin-settings.php:149
1275
- #, php-format
1276
- msgid "Who can see %s Tab?"
1277
- msgstr ""
1278
-
1279
- #: includes/admin/core/class-admin-settings.php:150
1280
- msgid "Select which users can view this tab."
1281
- msgstr ""
1282
-
1283
- #: includes/admin/core/class-admin-settings.php:159
1284
- msgid "Allowed roles"
1285
- msgstr ""
1286
-
1287
- #: includes/admin/core/class-admin-settings.php:160
1288
- msgid "Select the the user roles allowed to view this tab."
1289
- msgstr ""
1290
-
1291
- #: includes/admin/core/class-admin-settings.php:162
1292
- msgid "Choose user roles..."
1293
- msgstr ""
1294
-
1295
- #: includes/admin/core/class-admin-settings.php:173
1296
- msgid "Profile menu default tab"
1297
- msgstr ""
1298
-
1299
- #: includes/admin/core/class-admin-settings.php:174
1300
- msgid "This will be the default tab on user profile page"
1301
- msgstr ""
1302
-
1303
- #: includes/admin/core/class-admin-settings.php:182
1304
- msgid "Enable menu icons in desktop view"
1305
- msgstr ""
1306
-
1307
- #: includes/admin/core/class-admin-settings.php:236
1308
- msgid "General"
1309
- msgstr ""
1310
-
1311
- #: includes/admin/core/class-admin-settings.php:239
1312
- msgid "Pages"
1313
- msgstr ""
1314
-
1315
- #: includes/admin/core/class-admin-settings.php:243
1316
- #: includes/admin/templates/dashboard/users.php:6
1317
- msgid "Users"
1318
- msgstr ""
1319
-
1320
- #: includes/admin/core/class-admin-settings.php:249
1321
- msgid "Profile Permalink Base"
1322
- msgstr ""
1323
-
1324
- #: includes/admin/core/class-admin-settings.php:250
1325
- msgid ""
1326
- "Here you can control the permalink structure of the user profile URL "
1327
- "globally e.g. "
1328
- msgstr ""
1329
-
1330
- #: includes/admin/core/class-admin-settings.php:252
1331
- #: includes/admin/core/class-admin-settings.php:269
1332
- #: includes/core/class-builtin.php:669 includes/core/class-builtin.php:672
1333
- msgid "Username"
1334
- msgstr ""
1335
-
1336
- #: includes/admin/core/class-admin-settings.php:253
1337
- msgid "First and Last Name with '.'"
1338
- msgstr ""
1339
-
1340
- #: includes/admin/core/class-admin-settings.php:254
1341
- msgid "First and Last Name with '-'"
1342
- msgstr ""
1343
-
1344
- #: includes/admin/core/class-admin-settings.php:255
1345
- msgid "First and Last Name with '+'"
1346
- msgstr ""
1347
-
1348
- #: includes/admin/core/class-admin-settings.php:256
1349
- msgid "User ID"
1350
- msgstr ""
1351
-
1352
- #: includes/admin/core/class-admin-settings.php:258
1353
- #: includes/admin/core/class-admin-settings.php:277
1354
- msgid "Select..."
1355
- msgstr ""
1356
-
1357
- #: includes/admin/core/class-admin-settings.php:264
1358
- msgid "User Display Name"
1359
- msgstr ""
1360
-
1361
- #: includes/admin/core/class-admin-settings.php:265
1362
- msgid ""
1363
- "This is the name that will be displayed for users on the front end of your "
1364
- "site. Default setting uses first/last name as display name if it exists"
1365
- msgstr ""
1366
-
1367
- #: includes/admin/core/class-admin-settings.php:267
1368
- msgid "Default WP Display Name"
1369
- msgstr ""
1370
-
1371
- #: includes/admin/core/class-admin-settings.php:268
1372
- #: includes/core/class-builtin.php:727 includes/core/class-builtin.php:730
1373
- msgid "Nickname"
1374
- msgstr ""
1375
-
1376
- #: includes/admin/core/class-admin-settings.php:270
1377
- msgid "First name & last name"
1378
- msgstr ""
1379
-
1380
- #: includes/admin/core/class-admin-settings.php:271
1381
- msgid "Last name & first name"
1382
- msgstr ""
1383
-
1384
- #: includes/admin/core/class-admin-settings.php:272
1385
- msgid "First name & first initial of last name"
1386
- msgstr ""
1387
-
1388
- #: includes/admin/core/class-admin-settings.php:273
1389
- msgid "First initial of first name & last name"
1390
- msgstr ""
1391
-
1392
- #: includes/admin/core/class-admin-settings.php:274
1393
- msgid "First name only"
1394
- msgstr ""
1395
-
1396
- #: includes/admin/core/class-admin-settings.php:275
1397
- msgid "Custom field(s)"
1398
- msgstr ""
1399
-
1400
- #: includes/admin/core/class-admin-settings.php:282
1401
- msgid "Display Name Custom Field(s)"
1402
- msgstr ""
1403
-
1404
- #: includes/admin/core/class-admin-settings.php:283
1405
- msgid ""
1406
- "Specify the custom field meta key or custom fields seperated by comma that "
1407
- "you want to use to display users name on the frontend of your site"
1408
- msgstr ""
1409
-
1410
- #: includes/admin/core/class-admin-settings.php:289
1411
- msgid "Automatically redirect author page to their profile?"
1412
- msgstr ""
1413
-
1414
- #: includes/admin/core/class-admin-settings.php:290
1415
- msgid ""
1416
- "If enabled, author pages will automatically redirect to the user's profile "
1417
- "page"
1418
- msgstr ""
1419
-
1420
- #: includes/admin/core/class-admin-settings.php:295
1421
- msgid "Enable Members Directory"
1422
- msgstr ""
1423
-
1424
- #: includes/admin/core/class-admin-settings.php:296
1425
- msgid "Control whether to enable or disable member directories on this site"
1426
- msgstr ""
1427
-
1428
- #: includes/admin/core/class-admin-settings.php:301
1429
- msgid "Use Gravatars?"
1430
- msgstr ""
1431
-
1432
- #: includes/admin/core/class-admin-settings.php:302
1433
- msgid ""
1434
- "Do you want to use gravatars instead of the default plugin profile photo (If "
1435
- "the user did not upload a custom profile photo / avatar)"
1436
- msgstr ""
1437
-
1438
- #: includes/admin/core/class-admin-settings.php:307
1439
- msgid "Use Gravatar builtin image"
1440
- msgstr ""
1441
-
1442
- #: includes/admin/core/class-admin-settings.php:308
1443
- msgid ""
1444
- "Gravatar has a number of built in options which you can also use as defaults"
1445
- msgstr ""
1446
-
1447
- #: includes/admin/core/class-admin-settings.php:310
1448
- #: includes/admin/templates/form/login_settings.php:13
1449
- #: includes/admin/templates/form/register_customize.php:3
1450
- #: includes/admin/templates/form/register_customize.php:29
1451
- msgid "Default"
1452
- msgstr ""
1453
-
1454
- #: includes/admin/core/class-admin-settings.php:311
1455
- msgid "404 ( File Not Found response )"
1456
- msgstr ""
1457
-
1458
- #: includes/admin/core/class-admin-settings.php:312
1459
- msgid "Mystery Man"
1460
- msgstr ""
1461
-
1462
- #: includes/admin/core/class-admin-settings.php:313
1463
- msgid "Identicon"
1464
- msgstr ""
1465
-
1466
- #: includes/admin/core/class-admin-settings.php:314
1467
- msgid "Monsterid"
1468
- msgstr ""
1469
-
1470
- #: includes/admin/core/class-admin-settings.php:315
1471
- msgid "Wavatar"
1472
- msgstr ""
1473
-
1474
- #: includes/admin/core/class-admin-settings.php:316
1475
- msgid "Retro"
1476
- msgstr ""
1477
-
1478
- #: includes/admin/core/class-admin-settings.php:317
1479
- msgid "Blank ( a transparent PNG image )"
1480
- msgstr ""
1481
-
1482
- #: includes/admin/core/class-admin-settings.php:325
1483
- msgid "Use Default plugin avatar as Gravatar's Default avatar"
1484
- msgstr ""
1485
-
1486
- #: includes/admin/core/class-admin-settings.php:326
1487
- msgid ""
1488
- "Do you want to use the plugin default avatar instead of the gravatar default "
1489
- "photo (If the user did not upload a custom profile photo / avatar)"
1490
- msgstr ""
1491
-
1492
- #: includes/admin/core/class-admin-settings.php:332
1493
- msgid "Require a strong password? (when user resets password only)"
1494
- msgstr ""
1495
-
1496
- #: includes/admin/core/class-admin-settings.php:333
1497
- msgid ""
1498
- "Enable or disable a strong password rules on password reset and change "
1499
- "procedure"
1500
- msgstr ""
1501
-
1502
- #: includes/admin/core/class-admin-settings.php:338
1503
- #: includes/class-config.php:134 includes/class-config.php:738
1504
- #: includes/core/class-account.php:90
1505
- msgid "Account"
1506
- msgstr ""
1507
-
1508
- #: includes/admin/core/class-admin-settings.php:343
1509
- msgid "Password Account Tab"
1510
- msgstr ""
1511
-
1512
- #: includes/admin/core/class-admin-settings.php:349
1513
- msgid "Privacy Account Tab"
1514
- msgstr ""
1515
-
1516
- #: includes/admin/core/class-admin-settings.php:350
1517
- msgid "Enable/disable the Privacy account tab in account page"
1518
- msgstr ""
1519
-
1520
- #: includes/admin/core/class-admin-settings.php:355
1521
- msgid "Notifications Account Tab"
1522
- msgstr ""
1523
-
1524
- #: includes/admin/core/class-admin-settings.php:356
1525
- msgid "Enable/disable the Notifications account tab in account page"
1526
- msgstr ""
1527
-
1528
- #: includes/admin/core/class-admin-settings.php:361
1529
- msgid "Delete Account Tab"
1530
- msgstr ""
1531
-
1532
- #: includes/admin/core/class-admin-settings.php:362
1533
- msgid "Enable/disable the Delete account tab in account page"
1534
- msgstr ""
1535
-
1536
- #: includes/admin/core/class-admin-settings.php:367
1537
- msgid "Account Deletion Custom Text"
1538
- msgstr ""
1539
-
1540
- #: includes/admin/core/class-admin-settings.php:368
1541
- msgid ""
1542
- "This is custom text that will be displayed to users before they delete their "
1543
- "accounts from your site"
1544
- msgstr ""
1545
-
1546
- #: includes/admin/core/class-admin-settings.php:376
1547
- msgid "Add a First & Last Name fields"
1548
- msgstr ""
1549
-
1550
- #: includes/admin/core/class-admin-settings.php:377
1551
- msgid ""
1552
- "Whether to enable these fields on the user account page by default or hide "
1553
- "them."
1554
- msgstr ""
1555
-
1556
- #: includes/admin/core/class-admin-settings.php:382
1557
- msgid "Disable First & Last Name fields"
1558
- msgstr ""
1559
-
1560
- #: includes/admin/core/class-admin-settings.php:383
1561
- msgid ""
1562
- "Whether to allow users changing their first and last name in account page."
1563
- msgstr ""
1564
-
1565
- #: includes/admin/core/class-admin-settings.php:389
1566
- msgid "Require First & Last Name"
1567
- msgstr ""
1568
-
1569
- #: includes/admin/core/class-admin-settings.php:390
1570
- msgid "Require first and last name?"
1571
- msgstr ""
1572
-
1573
- #: includes/admin/core/class-admin-settings.php:396
1574
- msgid "Allow users to change e-mail"
1575
- msgstr ""
1576
-
1577
- #: includes/admin/core/class-admin-settings.php:397
1578
- msgid "Whether to allow users changing their email in account page."
1579
- msgstr ""
1580
-
1581
- #: includes/admin/core/class-admin-settings.php:402
1582
- msgid "Allow users to hide their profiles from directory"
1583
- msgstr ""
1584
-
1585
- #: includes/admin/core/class-admin-settings.php:403
1586
- msgid ""
1587
- "Whether to allow users changing their profile visibility from member "
1588
- "directory in account page."
1589
- msgstr ""
1590
-
1591
- #: includes/admin/core/class-admin-settings.php:408
1592
- msgid "Require a strong password?"
1593
- msgstr ""
1594
-
1595
- #: includes/admin/core/class-admin-settings.php:409
1596
- msgid ""
1597
- "Enable or disable a strong password rules on account page / change password "
1598
- "tab"
1599
- msgstr ""
1600
-
1601
- #: includes/admin/core/class-admin-settings.php:414
1602
- msgid "Uploads"
1603
- msgstr ""
1604
-
1605
- #: includes/admin/core/class-admin-settings.php:420
1606
- msgid "Profile Photo Maximum File Size (bytes)"
1607
- msgstr ""
1608
-
1609
- #: includes/admin/core/class-admin-settings.php:421
1610
- msgid "Sets a maximum size for the uploaded photo"
1611
- msgstr ""
1612
-
1613
- #: includes/admin/core/class-admin-settings.php:428
1614
- msgid "Cover Photo Maximum File Size (bytes)"
1615
- msgstr ""
1616
-
1617
- #: includes/admin/core/class-admin-settings.php:429
1618
- msgid "Sets a maximum size for the uploaded cover"
1619
- msgstr ""
1620
-
1621
- #: includes/admin/core/class-admin-settings.php:435
1622
- msgid "Profile Photo Thumbnail Sizes (px)"
1623
- msgstr ""
1624
-
1625
- #: includes/admin/core/class-admin-settings.php:436
1626
- msgid ""
1627
- "Here you can define which thumbnail sizes will be created for each profile "
1628
- "photo upload."
1629
- msgstr ""
1630
-
1631
- #: includes/admin/core/class-admin-settings.php:438
1632
- #: includes/admin/core/class-admin-settings.php:448
1633
- msgid "Add New Size"
1634
- msgstr ""
1635
-
1636
- #: includes/admin/core/class-admin-settings.php:445
1637
- msgid "Cover Photo Thumbnail Sizes (px)"
1638
- msgstr ""
1639
-
1640
- #: includes/admin/core/class-admin-settings.php:446
1641
- msgid ""
1642
- "Here you can define which thumbnail sizes will be created for each cover "
1643
- "photo upload."
1644
- msgstr ""
1645
-
1646
- #: includes/admin/core/class-admin-settings.php:456
1647
- msgid "Image Quality"
1648
- msgstr ""
1649
-
1650
- #: includes/admin/core/class-admin-settings.php:457
1651
- msgid ""
1652
- "Quality is used to determine quality of image uploads, and ranges from 0 "
1653
- "(worst quality, smaller file) to 100 (best quality, biggest file). The "
1654
- "default range is 60."
1655
- msgstr ""
1656
-
1657
- #: includes/admin/core/class-admin-settings.php:464
1658
- msgid "Image Upload Maximum Width (px)"
1659
- msgstr ""
1660
-
1661
- #: includes/admin/core/class-admin-settings.php:465
1662
- msgid ""
1663
- "Any image upload above this width will be resized to this limit "
1664
- "automatically."
1665
- msgstr ""
1666
-
1667
- #: includes/admin/core/class-admin-settings.php:472
1668
- msgid "Cover Photo Minimum Width (px)"
1669
- msgstr ""
1670
-
1671
- #: includes/admin/core/class-admin-settings.php:473
1672
- msgid "This will be the minimum width for cover photo uploads"
1673
- msgstr ""
1674
-
1675
- #: includes/admin/core/class-admin-settings.php:480
1676
- msgid "Access"
1677
- msgstr ""
1678
-
1679
- #: includes/admin/core/class-admin-settings.php:483
1680
- msgid "Restriction Content"
1681
- msgstr ""
1682
-
1683
- #: includes/admin/core/class-admin-settings.php:488
1684
- msgid "Global Site Access"
1685
- msgstr ""
1686
-
1687
- #: includes/admin/core/class-admin-settings.php:489
1688
- msgid ""
1689
- "Globally control the access of your site, you can have seperate restrict "
1690
- "options per post/page by editing the desired item."
1691
- msgstr ""
1692
-
1693
- #: includes/admin/core/class-admin-settings.php:499
1694
- msgid "Custom Redirect URL"
1695
- msgstr ""
1696
-
1697
- #: includes/admin/core/class-admin-settings.php:500
1698
- msgid ""
1699
- "A logged out user will be redirected to this url If he is not permitted to "
1700
- "access the site"
1701
- msgstr ""
1702
-
1703
- #: includes/admin/core/class-admin-settings.php:506
1704
- msgid "Exclude the following URLs"
1705
- msgstr ""
1706
-
1707
- #: includes/admin/core/class-admin-settings.php:507
1708
- msgid ""
1709
- "Here you can exclude URLs beside the redirect URI to be accessible to "
1710
- "everyone"
1711
- msgstr ""
1712
-
1713
- #: includes/admin/core/class-admin-settings.php:508
1714
- msgid "Add New URL"
1715
- msgstr ""
1716
-
1717
- #: includes/admin/core/class-admin-settings.php:515
1718
- msgid "Allow Homepage to be accessible"
1719
- msgstr ""
1720
-
1721
- #: includes/admin/core/class-admin-settings.php:521
1722
- msgid "Allow Category pages to be accessible"
1723
- msgstr ""
1724
-
1725
- #: includes/admin/core/class-admin-settings.php:527
1726
- msgid "Restricted Access Message"
1727
- msgstr ""
1728
-
1729
- #: includes/admin/core/class-admin-settings.php:528
1730
- msgid ""
1731
- "This is the message shown to users that do not have permission to view the "
1732
- "content"
1733
- msgstr ""
1734
-
1735
- #: includes/admin/core/class-admin-settings.php:543
1736
- msgid "Restricted Access to Posts"
1737
- msgstr ""
1738
-
1739
- #: includes/admin/core/class-admin-settings.php:544
1740
- msgid "Restriction content of the current Posts"
1741
- msgstr ""
1742
-
1743
- #: includes/admin/core/class-admin-settings.php:553
1744
- msgid "Restricted Access to Taxonomies"
1745
- msgstr ""
1746
-
1747
- #: includes/admin/core/class-admin-settings.php:554
1748
- msgid "Restriction content of the current Taxonomies"
1749
- msgstr ""
1750
-
1751
- #: includes/admin/core/class-admin-settings.php:563
1752
- msgid "Other"
1753
- msgstr ""
1754
-
1755
- #: includes/admin/core/class-admin-settings.php:568
1756
- msgid "Enable the Reset Password Limit?"
1757
- msgstr ""
1758
-
1759
- #: includes/admin/core/class-admin-settings.php:573
1760
- msgid "Reset Password Limit"
1761
- msgstr ""
1762
-
1763
- #: includes/admin/core/class-admin-settings.php:574
1764
- msgid ""
1765
- "Set the maximum reset password limit. If reached the maximum limit, user "
1766
- "will be locked from using this."
1767
- msgstr ""
1768
-
1769
- #: includes/admin/core/class-admin-settings.php:582
1770
- msgid "Blocked Email Addresses"
1771
- msgstr ""
1772
-
1773
- #: includes/admin/core/class-admin-settings.php:583
1774
- msgid ""
1775
- "This will block the specified e-mail addresses from being able to sign up or "
1776
- "sign in to your site. To block an entire domain, use something like *@domain."
1777
- "com"
1778
- msgstr ""
1779
-
1780
- #: includes/admin/core/class-admin-settings.php:588
1781
- msgid "Blacklist Words"
1782
- msgstr ""
1783
-
1784
- #: includes/admin/core/class-admin-settings.php:589
1785
- msgid ""
1786
- "This option lets you specify blacklist of words to prevent anyone from "
1787
- "signing up with such a word as their username"
1788
- msgstr ""
1789
-
1790
- #: includes/admin/core/class-admin-settings.php:596
1791
- #: includes/admin/core/list-tables/emails-list-table.php:300
1792
- msgid "Email"
1793
- msgstr ""
1794
-
1795
- #: includes/admin/core/class-admin-settings.php:601
1796
- msgid "Admin E-mail Address"
1797
- msgstr ""
1798
-
1799
- #: includes/admin/core/class-admin-settings.php:602
1800
- #: includes/admin/core/class-admin-settings.php:614
1801
- msgid "e.g. admin@companyname.com"
1802
- msgstr ""
1803
-
1804
- #: includes/admin/core/class-admin-settings.php:607
1805
- msgid "Mail appears from"
1806
- msgstr ""
1807
-
1808
- #: includes/admin/core/class-admin-settings.php:608
1809
- msgid "e.g. Site Name"
1810
- msgstr ""
1811
-
1812
- #: includes/admin/core/class-admin-settings.php:613
1813
- msgid "Mail appears from address"
1814
- msgstr ""
1815
-
1816
- #: includes/admin/core/class-admin-settings.php:619
1817
- msgid "Use HTML for E-mails?"
1818
- msgstr ""
1819
-
1820
- #: includes/admin/core/class-admin-settings.php:620
1821
- msgid ""
1822
- "If you plan use e-mails with HTML, please make sure that this option is "
1823
- "enabled. Otherwise, HTML will be displayed as plain text."
1824
- msgstr ""
1825
-
1826
- #: includes/admin/core/class-admin-settings.php:625
1827
- msgid "Appearance"
1828
- msgstr ""
1829
-
1830
- #: includes/admin/core/class-admin-settings.php:628
1831
- msgid "Profile"
1832
- msgstr ""
1833
-
1834
- #: includes/admin/core/class-admin-settings.php:633
1835
- msgid "Profile Default Template"
1836
- msgstr ""
1837
-
1838
- #: includes/admin/core/class-admin-settings.php:634
1839
- msgid "This will be the default template to output profile"
1840
- msgstr ""
1841
-
1842
- #: includes/admin/core/class-admin-settings.php:642
1843
- msgid "Profile Maximum Width"
1844
- msgstr ""
1845
-
1846
- #: includes/admin/core/class-admin-settings.php:651
1847
- msgid "Profile Area Maximum Width"
1848
- msgstr ""
1849
-
1850
- #: includes/admin/core/class-admin-settings.php:653
1851
- #: includes/admin/templates/form/profile_customize.php:56
1852
- msgid ""
1853
- "The maximum width of the profile area inside profile (below profile header)"
1854
- msgstr ""
1855
-
1856
- #: includes/admin/core/class-admin-settings.php:659
1857
- msgid "Profile Field Icons"
1858
- msgstr ""
1859
-
1860
- #: includes/admin/core/class-admin-settings.php:660
1861
- msgid "This is applicable for edit mode only"
1862
- msgstr ""
1863
-
1864
- #: includes/admin/core/class-admin-settings.php:663
1865
- #: includes/admin/core/class-admin-settings.php:859
1866
- #: includes/admin/core/class-admin-settings.php:949
1867
- #: includes/admin/templates/form/login_customize.php:40
1868
- #: includes/admin/templates/form/profile_customize.php:67
1869
- #: includes/admin/templates/form/register_customize.php:55
1870
- msgid "Show inside text field"
1871
- msgstr ""
1872
-
1873
- #: includes/admin/core/class-admin-settings.php:664
1874
- #: includes/admin/core/class-admin-settings.php:860
1875
- #: includes/admin/core/class-admin-settings.php:950
1876
- #: includes/admin/templates/form/login_customize.php:41
1877
- #: includes/admin/templates/form/profile_customize.php:68
1878
- #: includes/admin/templates/form/register_customize.php:56
1879
- msgid "Show with label"
1880
- msgstr ""
1881
-
1882
- #: includes/admin/core/class-admin-settings.php:665
1883
- #: includes/admin/core/class-admin-settings.php:861
1884
- #: includes/admin/core/class-admin-settings.php:951
1885
- #: includes/admin/templates/form/login_customize.php:42
1886
- #: includes/admin/templates/form/profile_customize.php:69
1887
- #: includes/admin/templates/form/register_customize.php:57
1888
- msgid "Turn off"
1889
- msgstr ""
1890
-
1891
- #: includes/admin/core/class-admin-settings.php:672
1892
- msgid "Profile Primary Button Text"
1893
- msgstr ""
1894
-
1895
- #: includes/admin/core/class-admin-settings.php:674
1896
- msgid "The text that is used for updating profile button"
1897
- msgstr ""
1898
-
1899
- #: includes/admin/core/class-admin-settings.php:680
1900
- msgid "Profile Secondary Button"
1901
- msgstr ""
1902
-
1903
- #: includes/admin/core/class-admin-settings.php:682
1904
- #: includes/admin/core/class-admin-settings.php:878
1905
- #: includes/admin/core/class-admin-settings.php:968
1906
- msgid "Switch on/off the secondary button display in the form"
1907
- msgstr ""
1908
-
1909
- #: includes/admin/core/class-admin-settings.php:687
1910
- msgid "Profile Secondary Button Text"
1911
- msgstr ""
1912
-
1913
- #: includes/admin/core/class-admin-settings.php:689
1914
- msgid "The text that is used for cancelling update profile button"
1915
- msgstr ""
1916
-
1917
- #: includes/admin/core/class-admin-settings.php:696
1918
- msgid "Default Profile Photo"
1919
- msgstr ""
1920
-
1921
- #: includes/admin/core/class-admin-settings.php:697
1922
- msgid ""
1923
- "You can change the default profile picture globally here. Please make sure "
1924
- "that the photo is 300x300px."
1925
- msgstr ""
1926
-
1927
- #: includes/admin/core/class-admin-settings.php:698
1928
- msgid "Select Default Profile Photo"
1929
- msgstr ""
1930
-
1931
- #: includes/admin/core/class-admin-settings.php:708
1932
- msgid "Default Cover Photo"
1933
- msgstr ""
1934
-
1935
- #: includes/admin/core/class-admin-settings.php:709
1936
- msgid ""
1937
- "You can change the default cover photo globally here. Please make sure that "
1938
- "the default cover is large enough and respects the ratio you are using for "
1939
- "cover photos."
1940
- msgstr ""
1941
-
1942
- #: includes/admin/core/class-admin-settings.php:710
1943
- msgid "Select Default Cover Photo"
1944
- msgstr ""
1945
-
1946
- #: includes/admin/core/class-admin-settings.php:715
1947
- #: includes/admin/templates/form/profile_customize.php:127
1948
- msgid "Profile Photo Size"
1949
- msgstr ""
1950
-
1951
- #: includes/admin/core/class-admin-settings.php:717
1952
- msgid ""
1953
- "The global default of profile photo size. This can be overridden by "
1954
- "individual form settings"
1955
- msgstr ""
1956
-
1957
- #: includes/admin/core/class-admin-settings.php:723
1958
- msgid "Profile Cover Photos"
1959
- msgstr ""
1960
-
1961
- #: includes/admin/core/class-admin-settings.php:725
1962
- msgid "Switch on/off the profile cover photos"
1963
- msgstr ""
1964
-
1965
- #: includes/admin/core/class-admin-settings.php:730
1966
- msgid "Profile Cover Ratio"
1967
- msgstr ""
1968
-
1969
- #: includes/admin/core/class-admin-settings.php:731
1970
- msgid "Choose global ratio for cover photos of profiles"
1971
- msgstr ""
1972
-
1973
- #: includes/admin/core/class-admin-settings.php:745
1974
- msgid "Profile Header Meta Text Icon"
1975
- msgstr ""
1976
-
1977
- #: includes/admin/core/class-admin-settings.php:747
1978
- msgid "Display field icons for related user meta fields in header or not"
1979
- msgstr ""
1980
-
1981
- #: includes/admin/core/class-admin-settings.php:752
1982
- msgid "Show display name in profile header"
1983
- msgstr ""
1984
-
1985
- #: includes/admin/core/class-admin-settings.php:754
1986
- msgid "Switch on/off the user name on profile header"
1987
- msgstr ""
1988
-
1989
- #: includes/admin/core/class-admin-settings.php:759
1990
- msgid "Show social links in profile header"
1991
- msgstr ""
1992
-
1993
- #: includes/admin/core/class-admin-settings.php:761
1994
- msgid "Switch on/off the social links on profile header"
1995
- msgstr ""
1996
-
1997
- #: includes/admin/core/class-admin-settings.php:766
1998
- msgid "Show user description in header"
1999
- msgstr ""
2000
-
2001
- #: includes/admin/core/class-admin-settings.php:768
2002
- msgid "Switch on/off the user description on profile header"
2003
- msgstr ""
2004
-
2005
- #: includes/admin/core/class-admin-settings.php:773
2006
- msgid "Enable html support for user description"
2007
- msgstr ""
2008
-
2009
- #: includes/admin/core/class-admin-settings.php:775
2010
- msgid ""
2011
- "Switch on/off to enable/disable support for html tags on user description."
2012
- msgstr ""
2013
-
2014
- #: includes/admin/core/class-admin-settings.php:780
2015
- msgid "User description maximum chars"
2016
- msgstr ""
2017
-
2018
- #: includes/admin/core/class-admin-settings.php:782
2019
- msgid ""
2020
- "Maximum number of characters to allow in user description field in header."
2021
- msgstr ""
2022
-
2023
- #: includes/admin/core/class-admin-settings.php:789
2024
- msgid "Profile Header Menu Position"
2025
- msgstr ""
2026
-
2027
- #: includes/admin/core/class-admin-settings.php:791
2028
- msgid ""
2029
- "For incompatible themes, please make the menu open from left instead of "
2030
- "bottom by default."
2031
- msgstr ""
2032
-
2033
- #: includes/admin/core/class-admin-settings.php:801
2034
- msgid "Show a custom message if profile is empty"
2035
- msgstr ""
2036
-
2037
- #: includes/admin/core/class-admin-settings.php:803
2038
- msgid "Switch on/off the custom message that appears when the profile is empty"
2039
- msgstr ""
2040
-
2041
- #: includes/admin/core/class-admin-settings.php:808
2042
- msgid "Show the emoticon"
2043
- msgstr ""
2044
-
2045
- #: includes/admin/core/class-admin-settings.php:810
2046
- msgid "Switch on/off the emoticon (sad face) that appears above the message"
2047
- msgstr ""
2048
-
2049
- #: includes/admin/core/class-admin-settings.php:816
2050
- msgid "Profile Menu"
2051
- msgstr ""
2052
-
2053
- #: includes/admin/core/class-admin-settings.php:820
2054
- #: includes/admin/templates/form/mode.php:9
2055
- msgid "Registration Form"
2056
- msgstr ""
2057
-
2058
- #: includes/admin/core/class-admin-settings.php:825
2059
- msgid "Registration Default Template"
2060
- msgstr ""
2061
-
2062
- #: includes/admin/core/class-admin-settings.php:826
2063
- msgid "This will be the default template to output registration"
2064
- msgstr ""
2065
-
2066
- #: includes/admin/core/class-admin-settings.php:834
2067
- msgid "Registration Maximum Width"
2068
- msgstr ""
2069
-
2070
- #: includes/admin/core/class-admin-settings.php:836
2071
- #: includes/admin/core/class-admin-settings.php:926
2072
- msgid "The maximum width this shortcode can take from the page width"
2073
- msgstr ""
2074
-
2075
- #: includes/admin/core/class-admin-settings.php:842
2076
- msgid "Registration Shortcode Alignment"
2077
- msgstr ""
2078
-
2079
- #: includes/admin/core/class-admin-settings.php:843
2080
- #: includes/admin/core/class-admin-settings.php:933
2081
- #: includes/admin/templates/form/profile_customize.php:115
2082
- msgid "The shortcode is centered by default unless you specify otherwise here"
2083
- msgstr ""
2084
-
2085
- #: includes/admin/core/class-admin-settings.php:846
2086
- #: includes/admin/core/class-admin-settings.php:936
2087
- msgid "Centered"
2088
- msgstr ""
2089
-
2090
- #: includes/admin/core/class-admin-settings.php:847
2091
- #: includes/admin/core/class-admin-settings.php:937
2092
- msgid "Left aligned"
2093
- msgstr ""
2094
-
2095
- #: includes/admin/core/class-admin-settings.php:848
2096
- #: includes/admin/core/class-admin-settings.php:938
2097
- msgid "Right aligned"
2098
- msgstr ""
2099
-
2100
- #: includes/admin/core/class-admin-settings.php:855
2101
- msgid "Registration Field Icons"
2102
- msgstr ""
2103
-
2104
- #: includes/admin/core/class-admin-settings.php:856
2105
- msgid "This controls the display of field icons in the registration form"
2106
- msgstr ""
2107
-
2108
- #: includes/admin/core/class-admin-settings.php:868
2109
- msgid "Registration Primary Button Text"
2110
- msgstr ""
2111
-
2112
- #: includes/admin/core/class-admin-settings.php:870
2113
- #: includes/admin/core/class-admin-settings.php:960
2114
- msgid "The text that is used for primary button text"
2115
- msgstr ""
2116
-
2117
- #: includes/admin/core/class-admin-settings.php:876
2118
- msgid "Registration Secondary Button"
2119
- msgstr ""
2120
-
2121
- #: includes/admin/core/class-admin-settings.php:883
2122
- msgid "Registration Secondary Button Text"
2123
- msgstr ""
2124
-
2125
- #: includes/admin/core/class-admin-settings.php:885
2126
- #: includes/admin/core/class-admin-settings.php:975
2127
- msgid "The text that is used for the secondary button text"
2128
- msgstr ""
2129
-
2130
- #: includes/admin/core/class-admin-settings.php:892
2131
- msgid "Registration Secondary Button URL"
2132
- msgstr ""
2133
-
2134
- #: includes/admin/core/class-admin-settings.php:894
2135
- #: includes/admin/core/class-admin-settings.php:984
2136
- msgid "You can replace default link for this button by entering custom URL"
2137
- msgstr ""
2138
-
2139
- #: includes/admin/core/class-admin-settings.php:901
2140
- msgid "Registration Default Role"
2141
- msgstr ""
2142
-
2143
- #: includes/admin/core/class-admin-settings.php:902
2144
- msgid ""
2145
- "This will be the default role assigned to users registering thru "
2146
- "registration form"
2147
- msgstr ""
2148
-
2149
- #: includes/admin/core/class-admin-settings.php:910
2150
- #: includes/admin/templates/form/mode.php:13
2151
- msgid "Login Form"
2152
- msgstr ""
2153
-
2154
- #: includes/admin/core/class-admin-settings.php:915
2155
- msgid "Login Default Template"
2156
- msgstr ""
2157
-
2158
- #: includes/admin/core/class-admin-settings.php:916
2159
- msgid "This will be the default template to output login"
2160
- msgstr ""
2161
-
2162
- #: includes/admin/core/class-admin-settings.php:924
2163
- msgid "Login Maximum Width"
2164
- msgstr ""
2165
-
2166
- #: includes/admin/core/class-admin-settings.php:932
2167
- msgid "Login Shortcode Alignment"
2168
- msgstr ""
2169
-
2170
- #: includes/admin/core/class-admin-settings.php:945
2171
- msgid "Login Field Icons"
2172
- msgstr ""
2173
-
2174
- #: includes/admin/core/class-admin-settings.php:946
2175
- msgid "This controls the display of field icons in the login form"
2176
- msgstr ""
2177
-
2178
- #: includes/admin/core/class-admin-settings.php:958
2179
- msgid "Login Primary Button Text"
2180
- msgstr ""
2181
-
2182
- #: includes/admin/core/class-admin-settings.php:966
2183
- msgid "Login Secondary Button"
2184
- msgstr ""
2185
-
2186
- #: includes/admin/core/class-admin-settings.php:973
2187
- msgid "Login Secondary Button Text"
2188
- msgstr ""
2189
-
2190
- #: includes/admin/core/class-admin-settings.php:982
2191
- msgid "Login Secondary Button URL"
2192
- msgstr ""
2193
-
2194
- #: includes/admin/core/class-admin-settings.php:991
2195
- msgid "Login Forgot Password Link"
2196
- msgstr ""
2197
-
2198
- #: includes/admin/core/class-admin-settings.php:993
2199
- msgid "Switch on/off the forgot password link in login form"
2200
- msgstr ""
2201
-
2202
- #: includes/admin/core/class-admin-settings.php:998
2203
- msgid "Show \"Remember Me\""
2204
- msgstr ""
2205
-
2206
- #: includes/admin/core/class-admin-settings.php:1000
2207
- msgid ""
2208
- "Allow users to choose If they want to stay signed in even after closing the "
2209
- "browser. If you do not show this option, the default will be to not remember "
2210
- "login session."
2211
- msgstr ""
2212
-
2213
- #: includes/admin/core/class-admin-settings.php:1010
2214
- msgid "Licenses"
2215
- msgstr ""
2216
-
2217
- #: includes/admin/core/class-admin-settings.php:1013
2218
- msgid "Misc"
2219
- msgstr ""
2220
-
2221
- #: includes/admin/core/class-admin-settings.php:1018
2222
- msgid "Show an asterisk for required fields"
2223
- msgstr ""
2224
-
2225
- #: includes/admin/core/class-admin-settings.php:1023
2226
- msgid "User Profile Title"
2227
- msgstr ""
2228
-
2229
- #: includes/admin/core/class-admin-settings.php:1024
2230
- msgid "This is the title that is displayed on a specific user profile"
2231
- msgstr ""
2232
-
2233
- #: includes/admin/core/class-admin-settings.php:1030
2234
- msgid "User Profile Dynamic Meta Description"
2235
- msgstr ""
2236
-
2237
- #: includes/admin/core/class-admin-settings.php:1031
2238
- msgid ""
2239
- "This will be used in the meta description that is available for search-"
2240
- "engines."
2241
- msgstr ""
2242
-
2243
- #: includes/admin/core/class-admin-settings.php:1039
2244
- msgid "Remove Data on Uninstall?"
2245
- msgstr ""
2246
-
2247
- #: includes/admin/core/class-admin-settings.php:1040
2248
- msgid ""
2249
- "Check this box if you would like Ultimate Member to completely remove all of "
2250
- "its data when the plugin/extensions are deleted."
2251
- msgstr ""
2252
-
2253
- #: includes/admin/core/class-admin-settings.php:1045
2254
- msgid "Install Info"
2255
- msgstr ""
2256
-
2257
- #: includes/admin/core/class-admin-settings.php:1150
2258
- msgid "Ultimate Member - Settings"
2259
- msgstr ""
2260
-
2261
- #: includes/admin/core/class-admin-settings.php:1289
2262
- msgid "Save Changes"
2263
- msgstr ""
2264
-
2265
- #: includes/admin/core/class-admin-settings.php:1732
2266
- msgid "Subject Line"
2267
- msgstr ""
2268
-
2269
- #: includes/admin/core/class-admin-settings.php:1734
2270
- msgid "This is the subject line of the e-mail"
2271
- msgstr ""
2272
-
2273
- #: includes/admin/core/class-admin-settings.php:1739
2274
- msgid "Message Body"
2275
- msgstr ""
2276
-
2277
- #: includes/admin/core/class-admin-settings.php:1741
2278
- msgid "This is the content of the e-mail"
2279
- msgstr ""
2280
-
2281
- #: includes/admin/core/class-admin-settings.php:1791
2282
- #: includes/admin/core/class-admin-settings.php:1889
2283
- #, php-format
2284
- msgid ""
2285
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
2286
- "\">renew your license key</a>."
2287
- msgstr ""
2288
-
2289
- #: includes/admin/core/class-admin-settings.php:1804
2290
- #: includes/admin/core/class-admin-settings.php:1902
2291
- #, php-format
2292
- msgid ""
2293
- "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
2294
- "\">contact support</a> for more information."
2295
- msgstr ""
2296
-
2297
- #: includes/admin/core/class-admin-settings.php:1816
2298
- #: includes/admin/core/class-admin-settings.php:1914
2299
- #, php-format
2300
- msgid ""
2301
- "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
2302
- "page</a> and verify it."
2303
- msgstr ""
2304
-
2305
- #: includes/admin/core/class-admin-settings.php:1829
2306
- #: includes/admin/core/class-admin-settings.php:1927
2307
- #, php-format
2308
- msgid ""
2309
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
2310
- "\">visit your account page</a> to manage your license key URLs."
2311
- msgstr ""
2312
-
2313
- #: includes/admin/core/class-admin-settings.php:1841
2314
- #: includes/admin/core/class-admin-settings.php:1939
2315
- #, php-format
2316
- msgid "This appears to be an invalid license key for %s."
2317
- msgstr ""
2318
-
2319
- #: includes/admin/core/class-admin-settings.php:1850
2320
- #: includes/admin/core/class-admin-settings.php:1948
2321
- #, php-format
2322
- msgid ""
2323
- "Your license key has reached its activation limit. <a href=\"%s\">View "
2324
- "possible upgrades</a> now."
2325
- msgstr ""
2326
-
2327
- #: includes/admin/core/class-admin-settings.php:1859
2328
- #: includes/admin/core/class-admin-settings.php:1957
2329
- msgid ""
2330
- "The key you entered belongs to a bundle, please use the product specific "
2331
- "license key."
2332
- msgstr ""
2333
-
2334
- #: includes/admin/core/class-admin-settings.php:1867
2335
- #: includes/admin/core/class-admin-settings.php:1875
2336
- msgid "unknown_error"
2337
- msgstr ""
2338
-
2339
- #: includes/admin/core/class-admin-settings.php:1868
2340
- #: includes/admin/core/class-admin-settings.php:1876
2341
- #, php-format
2342
- msgid ""
2343
- "There was an error with this license key: %s. Please <a href=\"%s\">contact "
2344
- "our support team</a>."
2345
- msgstr ""
2346
-
2347
- #: includes/admin/core/class-admin-settings.php:1972
2348
- msgid "License key never expires."
2349
- msgstr ""
2350
-
2351
- #: includes/admin/core/class-admin-settings.php:1979
2352
- #, php-format
2353
- msgid ""
2354
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
2355
- "\"_blank\">Renew your license key</a>."
2356
- msgstr ""
2357
-
2358
- #: includes/admin/core/class-admin-settings.php:1989
2359
- #, php-format
2360
- msgid "Your license key expires on %s."
2361
- msgstr ""
2362
-
2363
- #: includes/admin/core/class-admin-settings.php:2007
2364
- #, php-format
2365
- msgid "To receive updates, please enter your valid %s license key."
2366
- msgstr ""
2367
-
2368
- #: includes/admin/core/class-admin-settings.php:2031
2369
- msgid "Clear License"
2370
- msgstr ""
2371
-
2372
- #: includes/admin/core/class-admin-settings.php:2033
2373
- msgid "Activate"
2374
- msgstr ""
2375
-
2376
- #: includes/admin/core/class-admin-settings.php:2035
2377
- msgid "Re-Activate"
2378
- msgstr ""
2379
-
2380
- #: includes/admin/core/class-admin-settings.php:2087
2381
- msgid ""
2382
- "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
2383
- "(Mac)."
2384
- msgstr ""
2385
-
2386
- #: includes/admin/core/class-admin-upgrade.php:129
2387
- #, php-format
2388
- msgid ""
2389
- "%s is a major update, and we highly recommend creating a full backup of your "
2390
- "site before updating."
2391
- msgstr ""
2392
-
2393
- #: includes/admin/core/class-admin-upgrade.php:221
2394
- msgid "Upgrade"
2395
- msgstr ""
2396
-
2397
- #: includes/admin/core/class-admin-upgrade.php:229
2398
- msgid "empty"
2399
- msgstr ""
2400
-
2401
- #: includes/admin/core/class-admin-upgrade.php:232
2402
- #, php-format
2403
- msgid "%s - Upgrade Process"
2404
- msgstr ""
2405
-
2406
- #: includes/admin/core/class-admin-upgrade.php:233
2407
- #, php-format
2408
- msgid ""
2409
- "You have installed %s version. Your latest DB version is %s. Before the "
2410
- "click to \"Run\" button make sure that did the following:"
2411
- msgstr ""
2412
-
2413
- #: includes/admin/core/class-admin-upgrade.php:235
2414
- msgid "Create full site's backup."
2415
- msgstr ""
2416
-
2417
- #: includes/admin/core/class-admin-upgrade.php:236
2418
- msgid "Set maintenance mode (if you need)"
2419
- msgstr ""
2420
-
2421
- #: includes/admin/core/class-admin-upgrade.php:237
2422
- msgid "You have nice Internet connection"
2423
- msgstr ""
2424
-
2425
- #: includes/admin/core/class-admin-upgrade.php:239
2426
- msgid ""
2427
- "After the click to \"Run\" button, the update process will be started. All "
2428
- "information will be displayed in \"Upgrade Log\" field."
2429
- msgstr ""
2430
-
2431
- #: includes/admin/core/class-admin-upgrade.php:240
2432
- msgid ""
2433
- "If the update was successful, you will see a corresponding message. "
2434
- "Otherwise, contact technical support if the update failed."
2435
- msgstr ""
2436
-
2437
- #: includes/admin/core/class-admin-upgrade.php:241
2438
- msgid "Upgrade Log"
2439
- msgstr ""
2440
-
2441
- #: includes/admin/core/class-admin-upgrade.php:244
2442
- msgid "Run"
2443
- msgstr ""
2444
-
2445
- #: includes/admin/core/class-admin-users.php:109
2446
- #: includes/admin/core/class-admin-users.php:112
2447
- msgid "UM Action"
2448
- msgstr ""
2449
-
2450
- #: includes/admin/core/class-admin-users.php:116
2451
- #: includes/core/class-fields.php:2270
2452
- msgid "Apply"
2453
- msgstr ""
2454
-
2455
- #: includes/admin/core/class-admin-users.php:158
2456
- #: includes/core/um-filters-user.php:20 includes/core/um-filters-user.php:25
2457
- msgid "Approve Membership"
2458
- msgstr ""
2459
-
2460
- #: includes/admin/core/class-admin-users.php:161
2461
- #: includes/core/um-filters-user.php:21
2462
- msgid "Reject Membership"
2463
- msgstr ""
2464
-
2465
- #: includes/admin/core/class-admin-users.php:164
2466
- #: includes/core/um-filters-user.php:29
2467
- msgid "Put as Pending Review"
2468
- msgstr ""
2469
-
2470
- #: includes/admin/core/class-admin-users.php:167
2471
- #: includes/core/um-filters-user.php:33
2472
- msgid "Resend Activation E-mail"
2473
- msgstr ""
2474
-
2475
- #: includes/admin/core/class-admin-users.php:170
2476
- msgid "Deactivate"
2477
- msgstr ""
2478
-
2479
- #: includes/admin/core/class-admin-users.php:173
2480
- msgid "Reactivate"
2481
- msgstr ""
2482
-
2483
- #: includes/admin/core/class-admin-users.php:196 templates/account.php:38
2484
- #: templates/account.php:62
2485
- msgid "View profile"
2486
- msgstr ""
2487
-
2488
- #: includes/admin/core/class-admin-users.php:200
2489
- msgid "Info"
2490
- msgstr ""
2491
-
2492
- #: includes/admin/core/class-admin-users.php:305
2493
- #: includes/admin/templates/dashboard/users.php:11
2494
- #: includes/core/class-user.php:816
2495
- msgid "Approved"
2496
- msgstr ""
2497
-
2498
- #: includes/admin/core/class-admin-users.php:306
2499
- msgid "Pending review"
2500
- msgstr ""
2501
-
2502
- #: includes/admin/core/class-admin-users.php:307
2503
- msgid "Waiting e-mail confirmation"
2504
- msgstr ""
2505
-
2506
- #: includes/admin/core/class-admin-users.php:308
2507
- #: includes/admin/templates/dashboard/users.php:37
2508
- msgid "Inactive"
2509
- msgstr ""
2510
-
2511
- #: includes/admin/core/class-admin-users.php:309
2512
- #: includes/admin/templates/dashboard/users.php:16
2513
- msgid "Rejected"
2514
- msgstr ""
2515
-
2516
- #: includes/admin/core/class-admin-users.php:369
2517
- msgid "You do not have enough permissions to do that."
2518
- msgstr ""
2519
-
2520
- #: includes/admin/core/list-tables/emails-list-table.php:69
2521
- #: includes/admin/core/list-tables/roles-list-table.php:172
2522
- msgid "item"
2523
- msgstr ""
2524
-
2525
- #: includes/admin/core/list-tables/emails-list-table.php:70
2526
- #: includes/admin/core/list-tables/roles-list-table.php:173
2527
- msgid "items"
2528
- msgstr ""
2529
-
2530
- #: includes/admin/core/list-tables/emails-list-table.php:74
2531
- #: includes/admin/core/list-tables/roles-list-table.php:177
2532
- msgid "not found."
2533
- msgstr ""
2534
-
2535
- #: includes/admin/core/list-tables/emails-list-table.php:236
2536
- msgid "Member"
2537
- msgstr ""
2538
-
2539
- #: includes/admin/core/list-tables/emails-list-table.php:270
2540
- msgid "Email Notification"
2541
- msgstr ""
2542
-
2543
- #: includes/admin/core/list-tables/emails-list-table.php:271
2544
- msgid "Email Notifications"
2545
- msgstr ""
2546
-
2547
- #: includes/admin/core/list-tables/emails-list-table.php:301
2548
- msgid "Recipient(s)"
2549
- msgstr ""
2550
-
2551
- #: includes/admin/core/list-tables/roles-list-table.php:23
2552
- #: includes/admin/core/list-tables/roles-list-table.php:88
2553
- #: includes/admin/core/list-tables/roles-list-table.php:398
2554
- msgid "Roles"
2555
- msgstr ""
2556
-
2557
- #: includes/admin/core/list-tables/roles-list-table.php:335
2558
- msgid "Edit"
2559
- msgstr ""
2560
-
2561
- #: includes/admin/core/list-tables/roles-list-table.php:338
2562
- msgid "Are you sure you want to delete this role?"
2563
- msgstr ""
2564
-
2565
- #: includes/admin/core/list-tables/roles-list-table.php:338
2566
- #: includes/admin/core/list-tables/roles-list-table.php:406
2567
- msgid "Delete"
2568
- msgstr ""
2569
-
2570
- #: includes/admin/core/list-tables/roles-list-table.php:343
2571
- msgid "Are you sure you want to reset UM role meta?"
2572
- msgstr ""
2573
-
2574
- #: includes/admin/core/list-tables/roles-list-table.php:343
2575
- msgid "Reset UM Role meta"
2576
- msgstr ""
2577
-
2578
- #: includes/admin/core/list-tables/roles-list-table.php:367
2579
- #: includes/admin/core/list-tables/roles-list-table.php:375
2580
- #: includes/admin/templates/form/login_customize.php:14
2581
- #: includes/admin/templates/form/login_customize.php:62
2582
- #: includes/admin/templates/form/login_customize.php:81
2583
- #: includes/admin/templates/form/login_customize.php:92
2584
- #: includes/admin/templates/form/profile_customize.php:23
2585
- #: includes/admin/templates/form/profile_customize.php:89
2586
- #: includes/admin/templates/form/profile_customize.php:108
2587
- #: includes/admin/templates/form/profile_customize.php:141
2588
- #: includes/admin/templates/form/profile_customize.php:152
2589
- #: includes/admin/templates/form/profile_customize.php:163
2590
- #: includes/admin/templates/form/profile_customize.php:174
2591
- #: includes/admin/templates/form/register_customize.php:21
2592
- #: includes/admin/templates/form/register_customize.php:77
2593
- #: includes/admin/templates/form/register_gdpr.php:24
2594
- #: includes/core/class-builtin.php:1137 includes/core/class-builtin.php:1152
2595
- #: includes/core/um-filters-members.php:68
2596
- msgid "Yes"
2597
- msgstr ""
2598
-
2599
- #: includes/admin/core/list-tables/roles-list-table.php:367
2600
- #: includes/admin/core/list-tables/roles-list-table.php:375
2601
- #: includes/admin/templates/form/login_customize.php:13
2602
- #: includes/admin/templates/form/login_customize.php:61
2603
- #: includes/admin/templates/form/login_customize.php:80
2604
- #: includes/admin/templates/form/login_customize.php:91
2605
- #: includes/admin/templates/form/profile_customize.php:22
2606
- #: includes/admin/templates/form/profile_customize.php:88
2607
- #: includes/admin/templates/form/profile_customize.php:107
2608
- #: includes/admin/templates/form/profile_customize.php:140
2609
- #: includes/admin/templates/form/profile_customize.php:151
2610
- #: includes/admin/templates/form/profile_customize.php:162
2611
- #: includes/admin/templates/form/profile_customize.php:173
2612
- #: includes/admin/templates/form/register_customize.php:20
2613
- #: includes/admin/templates/form/register_customize.php:76
2614
- #: includes/admin/templates/form/register_gdpr.php:23
2615
- #: includes/core/class-builtin.php:1137 includes/core/class-builtin.php:1151
2616
- #: includes/core/class-builtin.php:1152
2617
- #: includes/core/um-actions-account.php:245
2618
- msgid "No"
2619
- msgstr ""
2620
-
2621
- #: includes/admin/core/list-tables/roles-list-table.php:397
2622
- msgid "Role"
2623
- msgstr ""
2624
-
2625
- #: includes/admin/core/list-tables/roles-list-table.php:410
2626
- msgid "Role Title"
2627
- msgstr ""
2628
-
2629
- #: includes/admin/core/list-tables/roles-list-table.php:411
2630
- msgid "Role ID"
2631
- msgstr ""
2632
-
2633
- #: includes/admin/core/list-tables/roles-list-table.php:412
2634
- msgid "No.of Members"
2635
- msgstr ""
2636
-
2637
- #: includes/admin/core/list-tables/roles-list-table.php:413
2638
- msgid "UM Custom Role"
2639
- msgstr ""
2640
-
2641
- #: includes/admin/core/list-tables/roles-list-table.php:414
2642
- msgid "WP-Admin Access"
2643
- msgstr ""
2644
-
2645
- #: includes/admin/core/list-tables/roles-list-table.php:415
2646
- msgid "Priority"
2647
- msgstr ""
2648
-
2649
- #: includes/admin/core/list-tables/roles-list-table.php:479
2650
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:14
2651
- #: includes/admin/templates/role/role-edit.php:136
2652
- #: includes/core/class-common.php:58 includes/core/class-common.php:87
2653
- msgid "Add New"
2654
- msgstr ""
2655
-
2656
- #: includes/admin/core/list-tables/roles-list-table.php:486
2657
- msgid "User Role <strong>Deleted</strong> Successfully."
2658
- msgstr ""
2659
-
2660
- #: includes/admin/core/packages/2.0-beta1/functions.php:6
2661
- #: includes/admin/core/packages/2.0.10/functions.php:6
2662
- msgid "Styles was upgraded successfully"
2663
- msgstr ""
2664
-
2665
- #: includes/admin/core/packages/2.0-beta1/functions.php:17
2666
- msgid "User Roles was upgraded successfully"
2667
- msgstr ""
2668
-
2669
- #: includes/admin/core/packages/2.0-beta1/functions.php:80
2670
- #, php-format
2671
- msgid "Users from %s to %s was upgraded successfully..."
2672
- msgstr ""
2673
-
2674
- #: includes/admin/core/packages/2.0-beta1/functions.php:100
2675
- msgid "Settings was upgraded successfully"
2676
- msgstr ""
2677
-
2678
- #: includes/admin/core/packages/2.0-beta1/functions.php:108
2679
- msgid "Menus settings was upgraded successfully"
2680
- msgstr ""
2681
-
2682
- #: includes/admin/core/packages/2.0-beta1/functions.php:116
2683
- msgid "Mailchimp Lists was upgraded successfully"
2684
- msgstr ""
2685
-
2686
- #: includes/admin/core/packages/2.0-beta1/functions.php:124
2687
- msgid "Social login forms was upgraded successfully"
2688
- msgstr ""
2689
-
2690
- #: includes/admin/core/packages/2.0-beta1/functions.php:132
2691
- msgid "UM Custom Posts was upgraded successfully"
2692
- msgstr ""
2693
-
2694
- #: includes/admin/core/packages/2.0-beta1/functions.php:147
2695
- msgid "Forums are ready for upgrade"
2696
- msgstr ""
2697
-
2698
- #: includes/admin/core/packages/2.0-beta1/functions.php:200
2699
- #, php-format
2700
- msgid "Forums from %s to %s was upgraded successfully..."
2701
- msgstr ""
2702
-
2703
- #: includes/admin/core/packages/2.0-beta1/functions.php:216
2704
- msgid "Woocommerce Products are ready for upgrade"
2705
- msgstr ""
2706
-
2707
- #: includes/admin/core/packages/2.0-beta1/functions.php:290
2708
- #, php-format
2709
- msgid "Woocommerce Products from %s to %s was upgraded successfully..."
2710
- msgstr ""
2711
-
2712
- #: includes/admin/core/packages/2.0-beta1/functions.php:306
2713
- msgid "Email Templates was upgraded successfully"
2714
- msgstr ""
2715
-
2716
- #: includes/admin/core/packages/2.0-beta1/init.php:13
2717
- #: includes/admin/core/packages/2.0.10/init.php:6
2718
- msgid "Upgrade Styles..."
2719
- msgstr ""
2720
-
2721
- #: includes/admin/core/packages/2.0-beta1/init.php:37
2722
- msgid "Upgrade Roles..."
2723
- msgstr ""
2724
-
2725
- #: includes/admin/core/packages/2.0-beta1/init.php:50
2726
- msgid "Upgrade Users..."
2727
- msgstr ""
2728
-
2729
- #: includes/admin/core/packages/2.0-beta1/init.php:71
2730
- msgid "Getting "
2731
- msgstr ""
2732
-
2733
- #: includes/admin/core/packages/2.0-beta1/init.php:71
2734
- #: includes/admin/core/packages/2.0-beta1/init.php:82
2735
- msgid " users..."
2736
- msgstr ""
2737
-
2738
- #: includes/admin/core/packages/2.0-beta1/init.php:82
2739
- msgid "There are "
2740
- msgstr ""
2741
-
2742
- #: includes/admin/core/packages/2.0-beta1/init.php:83
2743
- msgid "Start users upgrading..."
2744
- msgstr ""
2745
-
2746
- #: includes/admin/core/packages/2.0-beta1/init.php:135
2747
- msgid "Upgrade Content Restriction Settings..."
2748
- msgstr ""
2749
-
2750
- #: includes/admin/core/packages/2.0-beta1/init.php:160
2751
- msgid "Upgrade Settings..."
2752
- msgstr ""
2753
-
2754
- #: includes/admin/core/packages/2.0-beta1/init.php:185
2755
- msgid "Upgrade Menu Items..."
2756
- msgstr ""
2757
-
2758
- #: includes/admin/core/packages/2.0-beta1/init.php:210
2759
- msgid "Upgrade Mailchimp Lists..."
2760
- msgstr ""
2761
-
2762
- #: includes/admin/core/packages/2.0-beta1/init.php:235
2763
- msgid "Upgrade Social Login Forms..."
2764
- msgstr ""
2765
-
2766
- #: includes/admin/core/packages/2.0-beta1/init.php:260
2767
- msgid "Upgrade UM Custom Post Types..."
2768
- msgstr ""
2769
-
2770
- #: includes/admin/core/packages/2.0-beta1/init.php:285
2771
- msgid "Upgrade bbPress Forums..."
2772
- msgstr ""
2773
-
2774
- #: includes/admin/core/packages/2.0-beta1/init.php:286
2775
- msgid "Get bbPress Forums count..."
2776
- msgstr ""
2777
-
2778
- #: includes/admin/core/packages/2.0-beta1/init.php:343
2779
- msgid "Upgrade Woocommerce Products..."
2780
- msgstr ""
2781
-
2782
- #: includes/admin/core/packages/2.0-beta1/init.php:344
2783
- msgid "Get all Products..."
2784
- msgstr ""
2785
-
2786
- #: includes/admin/core/packages/2.0-beta1/init.php:403
2787
- msgid "Upgrade Email Templates..."
2788
- msgstr ""
2789
-
2790
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:13
2791
- msgid "User Role"
2792
- msgstr ""
2793
-
2794
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:15
2795
- msgid "Add New User Role"
2796
- msgstr ""
2797
-
2798
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:16
2799
- msgid "Edit User Role"
2800
- msgstr ""
2801
-
2802
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:17
2803
- msgid "You did not create any user roles yet"
2804
- msgstr ""
2805
-
2806
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:18
2807
- #: includes/core/class-common.php:62 includes/core/class-common.php:91
2808
- msgid "Nothing found in Trash"
2809
- msgstr ""
2810
-
2811
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:19
2812
- msgid "Search User Roles"
2813
- msgstr ""
2814
-
2815
- #: includes/admin/core/packages/2.0.10/functions.php:17
2816
- msgid "Users cache was cleared successfully"
2817
- msgstr ""
2818
-
2819
- #: includes/admin/core/packages/2.0.10/init.php:31
2820
- msgid "Clear Users Cache..."
2821
- msgstr ""
2822
-
2823
- #: includes/admin/core/packages/2.0.24/functions.php:9
2824
- msgid "Temporary dir was purged successfully"
2825
- msgstr ""
2826
-
2827
- #: includes/admin/core/packages/2.0.24/init.php:6
2828
- msgid "Purge temp files dir..."
2829
- msgstr ""
2830
-
2831
- #: includes/admin/templates/dashboard/cache.php:9
2832
- msgid "Run this task from time to time to keep your DB clean."
2833
- msgstr ""
2834
-
2835
- #: includes/admin/templates/dashboard/cache.php:12
2836
- #, php-format
2837
- msgid "Clear cache of %s users"
2838
- msgstr ""
2839
-
2840
- #: includes/admin/templates/dashboard/feed.php:4
2841
- msgid "Latest From Ultimate Member"
2842
- msgstr ""
2843
-
2844
- #: includes/admin/templates/dashboard/language-contrib.php:2
2845
- #, php-format
2846
- msgid ""
2847
- "Ultimate Member is not yet available in your language: <strong>%1$s</strong>."
2848
- msgstr ""
2849
-
2850
- #: includes/admin/templates/dashboard/language-contrib.php:6
2851
- msgid ""
2852
- "If you want to contribute this translation to the plugin, please add it on "
2853
- "our <a href=\"https://ultimatemember.com/forums/\">community forum</a>."
2854
- msgstr ""
2855
-
2856
- #: includes/admin/templates/dashboard/language-download.php:2
2857
- #, php-format
2858
- msgid ""
2859
- "Ultimate Member is available in your language: <strong>%1$s (%2$s)</strong>."
2860
- msgstr ""
2861
-
2862
- #: includes/admin/templates/dashboard/language-download.php:7
2863
- msgid "Download Translation"
2864
- msgstr ""
2865
-
2866
- #: includes/admin/templates/dashboard/language-update.php:2
2867
- #, php-format
2868
- msgid ""
2869
- "You are currently using Ultimate Member in your language: <strong>%1$s "
2870
- "(%2$s)</strong>."
2871
- msgstr ""
2872
-
2873
- #: includes/admin/templates/dashboard/language-update.php:7
2874
- msgid "Force Update Translation"
2875
- msgstr ""
2876
-
2877
- #: includes/admin/templates/dashboard/purge.php:4
2878
- #, php-format
2879
- msgid ""
2880
- "You can free up <span class=\"red\">%s MB</span> by purging your temp upload "
2881
- "directory."
2882
- msgstr ""
2883
-
2884
- #: includes/admin/templates/dashboard/purge.php:9
2885
- msgid "Purge Temp"
2886
- msgstr ""
2887
-
2888
- #: includes/admin/templates/dashboard/purge.php:16
2889
- msgid ""
2890
- "Your temp uploads directory is <span class=\"ok\">clean</span>. There is "
2891
- "nothing to purge."
2892
- msgstr ""
2893
-
2894
- #: includes/admin/templates/dashboard/upgrade-request.php:1
2895
- msgid ""
2896
- "Run this task from time to time if you have issues with WP Cron and need to "
2897
- "get UM extension updates."
2898
- msgstr ""
2899
-
2900
- #: includes/admin/templates/dashboard/upgrade-request.php:4
2901
- msgid "Get latest versions"
2902
- msgstr ""
2903
-
2904
- #: includes/admin/templates/dashboard/users.php:27
2905
- #: includes/core/class-user.php:824
2906
- msgid "Pending Review"
2907
- msgstr ""
2908
-
2909
- #: includes/admin/templates/dashboard/users.php:32
2910
- #: includes/core/class-user.php:820
2911
- msgid "Awaiting E-mail Confirmation"
2912
- msgstr ""
2913
-
2914
- #: includes/admin/templates/directory/appearance.php:9
2915
- #: includes/admin/templates/form/login_customize.php:20
2916
- #: includes/admin/templates/form/profile_customize.php:39
2917
- #: includes/admin/templates/form/register_customize.php:35
2918
- msgid "Template"
2919
- msgstr ""
2920
-
2921
- #: includes/admin/templates/directory/general.php:46
2922
- msgid "New users first"
2923
- msgstr ""
2924
-
2925
- #: includes/admin/templates/directory/general.php:47
2926
- msgid "Old users first"
2927
- msgstr ""
2928
-
2929
- #: includes/admin/templates/directory/general.php:48
2930
- msgid "Last login"
2931
- msgstr ""
2932
-
2933
- #: includes/admin/templates/directory/general.php:49
2934
- msgid "Display Name"
2935
- msgstr ""
2936
-
2937
- #: includes/admin/templates/directory/general.php:50
2938
- #: includes/core/class-builtin.php:707 includes/core/class-builtin.php:710
2939
- msgid "First Name"
2940
- msgstr ""
2941
-
2942
- #: includes/admin/templates/directory/general.php:51
2943
- #: includes/core/class-builtin.php:717 includes/core/class-builtin.php:720
2944
- msgid "Last Name"
2945
- msgstr ""
2946
-
2947
- #: includes/admin/templates/directory/general.php:52
2948
- msgid "Random"
2949
- msgstr ""
2950
-
2951
- #: includes/admin/templates/directory/general.php:53
2952
- msgid "Other (custom field)"
2953
- msgstr ""
2954
-
2955
- #: includes/admin/templates/directory/general.php:65
2956
- msgid "User Roles to Display"
2957
- msgstr ""
2958
-
2959
- #: includes/admin/templates/directory/general.php:66
2960
- msgid ""
2961
- "If you do not want to show all members, select only user roles to appear in "
2962
- "this directory"
2963
- msgstr ""
2964
-
2965
- #: includes/admin/templates/directory/general.php:74
2966
- msgid "Only show members who have uploaded a profile photo"
2967
- msgstr ""
2968
-
2969
- #: includes/admin/templates/directory/general.php:75
2970
- msgid "If 'Use Gravatars' as profile photo is enabled, this option is ignored"
2971
- msgstr ""
2972
-
2973
- #: includes/admin/templates/directory/general.php:81
2974
- msgid "Only show members who have uploaded a cover photo"
2975
- msgstr ""
2976
-
2977
- #: includes/admin/templates/directory/general.php:87
2978
- msgid "Sort users by"
2979
- msgstr ""
2980
-
2981
- #: includes/admin/templates/directory/general.php:88
2982
- msgid "Sort users by a specific parameter in the directory"
2983
- msgstr ""
2984
-
2985
- #: includes/admin/templates/directory/general.php:95
2986
- msgid "Meta key"
2987
- msgstr ""
2988
-
2989
- #: includes/admin/templates/directory/general.php:96
2990
- msgid "To sort by a custom field, enter the meta key of field here"
2991
- msgstr ""
2992
-
2993
- #: includes/admin/templates/directory/general.php:103
2994
- msgid "Only show specific users (Enter one username per line)"
2995
- msgstr ""
2996
-
2997
- #: includes/admin/templates/directory/pagination.php:9
2998
- msgid "Number of profiles per page"
2999
- msgstr ""
3000
-
3001
- #: includes/admin/templates/directory/pagination.php:10
3002
- msgid "Number of profiles to appear on page for standard users"
3003
- msgstr ""
3004
-
3005
- #: includes/admin/templates/directory/pagination.php:17
3006
- msgid "Number of profiles per page (for Mobiles & Tablets)"
3007
- msgstr ""
3008
-
3009
- #: includes/admin/templates/directory/pagination.php:18
3010
- msgid "Number of profiles to appear on page for mobile users"
3011
- msgstr ""
3012
-
3013
- #: includes/admin/templates/directory/pagination.php:25
3014
- msgid "Maximum number of profiles"
3015
- msgstr ""
3016
-
3017
- #: includes/admin/templates/directory/pagination.php:26
3018
- msgid ""
3019
- "Use this setting to control the maximum number of profiles to appear in this "
3020
- "directory. Leave blank to disable this limit"
3021
- msgstr ""
3022
-
3023
- #: includes/admin/templates/directory/profile.php:19
3024
- msgid "Enable Profile Photo"
3025
- msgstr ""
3026
-
3027
- #: includes/admin/templates/directory/profile.php:25
3028
- msgid "Enable Cover Photo"
3029
- msgstr ""
3030
-
3031
- #: includes/admin/templates/directory/profile.php:26
3032
- msgid "If turned on, the users cover photo will appear in the directory"
3033
- msgstr ""
3034
-
3035
- #: includes/admin/templates/directory/profile.php:32
3036
- msgid "Show display name"
3037
- msgstr ""
3038
-
3039
- #: includes/admin/templates/directory/profile.php:38
3040
- msgid "Show tagline below profile name"
3041
- msgstr ""
3042
-
3043
- #: includes/admin/templates/directory/profile.php:44
3044
- msgid "Choose field(s) to display in tagline"
3045
- msgstr ""
3046
-
3047
- #: includes/admin/templates/directory/profile.php:47
3048
- #: includes/admin/templates/directory/profile.php:69
3049
- #: includes/admin/templates/directory/search.php:78
3050
- msgid "Add New Custom Field"
3051
- msgstr ""
3052
-
3053
- #: includes/admin/templates/directory/profile.php:54
3054
- msgid "Show extra user information below tagline?"
3055
- msgstr ""
3056
-
3057
- #: includes/admin/templates/directory/profile.php:60
3058
- msgid "Enable reveal section transition by default"
3059
- msgstr ""
3060
-
3061
- #: includes/admin/templates/directory/profile.php:67
3062
- msgid "Choose field(s) to display in reveal section"
3063
- msgstr ""
3064
-
3065
- #: includes/admin/templates/directory/profile.php:77
3066
- msgid "Show social connect icons"
3067
- msgstr ""
3068
-
3069
- #: includes/admin/templates/directory/search.php:49
3070
- msgid "Enable Search feature"
3071
- msgstr ""
3072
-
3073
- #: includes/admin/templates/directory/search.php:50
3074
- msgid "If turned on, users will be able to search members in this directory"
3075
- msgstr ""
3076
-
3077
- #: includes/admin/templates/directory/search.php:56
3078
- msgid "Show results only after search"
3079
- msgstr ""
3080
-
3081
- #: includes/admin/templates/directory/search.php:57
3082
- msgid "If turned on, member results will only appear after search is performed"
3083
- msgstr ""
3084
-
3085
- #: includes/admin/templates/directory/search.php:65
3086
- msgid "User Roles that can use search"
3087
- msgstr ""
3088
-
3089
- #: includes/admin/templates/directory/search.php:66
3090
- msgid "If you want to allow specific user roles to be able to search only"
3091
- msgstr ""
3092
-
3093
- #: includes/admin/templates/directory/search.php:74
3094
- msgid "Choose field(s) to enable in search"
3095
- msgstr ""
3096
-
3097
- #: includes/admin/templates/directory/search.php:84
3098
- msgid "Results Text"
3099
- msgstr ""
3100
-
3101
- #: includes/admin/templates/directory/search.php:85
3102
- msgid ""
3103
- "Customize the search result text . e.g. Found 3,000 Members. Leave this "
3104
- "blank to not show result text"
3105
- msgstr ""
3106
-
3107
- #: includes/admin/templates/directory/search.php:86
3108
- #: includes/class-config.php:152 includes/class-config.php:247
3109
- msgid "{total_users} Members"
3110
- msgstr ""
3111
-
3112
- #: includes/admin/templates/directory/search.php:92
3113
- msgid "Single Result Text"
3114
- msgstr ""
3115
-
3116
- #: includes/admin/templates/directory/search.php:93
3117
- msgid "Same as above but in case of 1 user found only"
3118
- msgstr ""
3119
-
3120
- #: includes/admin/templates/directory/search.php:94
3121
- #: includes/class-config.php:153 includes/class-config.php:248
3122
- msgid "{total_users} Member"
3123
- msgstr ""
3124
-
3125
- #: includes/admin/templates/directory/search.php:100
3126
- msgid "Custom text if no users were found"
3127
- msgstr ""
3128
-
3129
- #: includes/admin/templates/directory/search.php:101
3130
- msgid ""
3131
- "This is the text that is displayed if no users are found during a search"
3132
- msgstr ""
3133
-
3134
- #: includes/admin/templates/directory/search.php:102
3135
- #: includes/class-config.php:154
3136
- msgid "We are sorry. We cannot find any users who match your search criteria."
3137
- msgstr ""
3138
-
3139
- #: includes/admin/templates/extensions.php:155
3140
- msgid "View our Extensions Bundle"
3141
- msgstr ""
3142
-
3143
- #: includes/admin/templates/extensions.php:164
3144
- msgid "Premium"
3145
- msgstr ""
3146
-
3147
- #: includes/admin/templates/extensions.php:169
3148
- msgid "Free"
3149
- msgstr ""
3150
-
3151
- #: includes/admin/templates/extensions.php:195
3152
- #: includes/admin/templates/extensions.php:229
3153
- msgid "Get this Add on"
3154
- msgstr ""
3155
-
3156
- #: includes/admin/templates/extensions.php:200
3157
- #: includes/admin/templates/extensions.php:234
3158
- msgid "More Details"
3159
- msgstr ""
3160
-
3161
- #: includes/admin/templates/form/builder.php:9
3162
- msgid "Live Preview"
3163
- msgstr ""
3164
-
3165
- #: includes/admin/templates/form/builder.php:23
3166
- msgid "Add Master Row"
3167
- msgstr ""
3168
-
3169
- #: includes/admin/templates/form/login_customize.php:9
3170
- #: includes/admin/templates/form/profile_customize.php:18
3171
- #: includes/admin/templates/form/register_customize.php:16
3172
- msgid "Apply custom settings to this form"
3173
- msgstr ""
3174
-
3175
- #: includes/admin/templates/form/login_customize.php:10
3176
- #: includes/admin/templates/form/profile_customize.php:19
3177
- #: includes/admin/templates/form/register_customize.php:17
3178
- msgid ""
3179
- "Switch to yes if you want to customize this form settings, styling &amp; "
3180
- "appearance"
3181
- msgstr ""
3182
-
3183
- #: includes/admin/templates/form/login_customize.php:28
3184
- #: includes/admin/templates/form/profile_customize.php:47
3185
- #: includes/admin/templates/form/register_customize.php:43
3186
- msgid "Max. Width (px)"
3187
- msgstr ""
3188
-
3189
- #: includes/admin/templates/form/login_customize.php:29
3190
- #: includes/admin/templates/form/profile_customize.php:48
3191
- #: includes/admin/templates/form/register_customize.php:44
3192
- msgid "The maximum width of shortcode in pixels e.g. 600px"
3193
- msgstr ""
3194
-
3195
- #: includes/admin/templates/form/login_customize.php:36
3196
- #: includes/admin/templates/form/profile_customize.php:63
3197
- #: includes/admin/templates/form/register_customize.php:51
3198
- msgid "Field Icons"
3199
- msgstr ""
3200
-
3201
- #: includes/admin/templates/form/login_customize.php:37
3202
- #: includes/admin/templates/form/profile_customize.php:64
3203
- #: includes/admin/templates/form/register_customize.php:52
3204
- msgid ""
3205
- "Whether to show field icons and where to show them relative to the field"
3206
- msgstr ""
3207
-
3208
- #: includes/admin/templates/form/login_customize.php:49
3209
- #: includes/admin/templates/form/profile_customize.php:76
3210
- #: includes/admin/templates/form/register_customize.php:64
3211
- msgid "Primary Button Text"
3212
- msgstr ""
3213
-
3214
- #: includes/admin/templates/form/login_customize.php:50
3215
- #: includes/admin/templates/form/login_customize.php:69
3216
- #: includes/admin/templates/form/profile_customize.php:77
3217
- #: includes/admin/templates/form/profile_customize.php:96
3218
- #: includes/admin/templates/form/register_customize.php:65
3219
- #: includes/admin/templates/form/register_customize.php:84
3220
- msgid "Customize the button text"
3221
- msgstr ""
3222
-
3223
- #: includes/admin/templates/form/login_customize.php:57
3224
- #: includes/admin/templates/form/profile_customize.php:84
3225
- #: includes/admin/templates/form/register_customize.php:72
3226
- msgid "Show Secondary Button"
3227
- msgstr ""
3228
-
3229
- #: includes/admin/templates/form/login_customize.php:68
3230
- #: includes/admin/templates/form/profile_customize.php:95
3231
- #: includes/admin/templates/form/register_customize.php:83
3232
- msgid "Secondary Button Text"
3233
- msgstr ""
3234
-
3235
- #: includes/admin/templates/form/login_customize.php:76
3236
- msgid "Show Forgot Password Link?"
3237
- msgstr ""
3238
-
3239
- #: includes/admin/templates/form/login_customize.php:87
3240
- msgid "Show \"Remember Me\"?"
3241
- msgstr ""
3242
-
3243
- #: includes/admin/templates/form/login_settings.php:9
3244
- msgid "Redirection after Login"
3245
- msgstr ""
3246
-
3247
- #: includes/admin/templates/form/login_settings.php:10
3248
- msgid ""
3249
- "Change this If you want to override role redirection settings after login "
3250
- "only."
3251
- msgstr ""
3252
-
3253
- #: includes/admin/templates/form/login_settings.php:14
3254
- #: includes/admin/templates/role/login.php:16
3255
- #: includes/admin/templates/role/register.php:27
3256
- msgid "Redirect to profile"
3257
- msgstr ""
3258
-
3259
- #: includes/admin/templates/form/login_settings.php:15
3260
- #: includes/admin/templates/role/login.php:17
3261
- #: includes/admin/templates/role/register.php:28
3262
- #: includes/admin/templates/role/register.php:55
3263
- #: includes/admin/templates/role/register.php:89
3264
- msgid "Redirect to URL"
3265
- msgstr ""
3266
-
3267
- #: includes/admin/templates/form/login_settings.php:16
3268
- #: includes/admin/templates/role/login.php:18
3269
- msgid "Refresh active page"
3270
- msgstr ""
3271
-
3272
- #: includes/admin/templates/form/login_settings.php:17
3273
- #: includes/admin/templates/role/login.php:19
3274
- msgid "Redirect to WordPress Admin"
3275
- msgstr ""
3276
-
3277
- #: includes/admin/templates/form/login_settings.php:23
3278
- #: includes/admin/templates/role/delete.php:23
3279
- #: includes/admin/templates/role/login.php:25
3280
- #: includes/admin/templates/role/logout.php:23
3281
- #: includes/admin/templates/role/register.php:35
3282
- #: includes/admin/templates/role/register.php:69
3283
- #: includes/admin/templates/role/register.php:103
3284
- msgid "Set Custom Redirect URL"
3285
- msgstr ""
3286
-
3287
- #: includes/admin/templates/form/mode.php:6
3288
- msgid ""
3289
- "<strong>Note:</strong> Form type cannot be changed for the default forms."
3290
- msgstr ""
3291
-
3292
- #: includes/admin/templates/form/mode.php:11
3293
- msgid "Profile Form"
3294
- msgstr ""
3295
-
3296
- #: includes/admin/templates/form/profile_customize.php:30
3297
- msgid "Make this profile form role-specific"
3298
- msgstr ""
3299
-
3300
- #: includes/admin/templates/form/profile_customize.php:31
3301
- msgid ""
3302
- "Please note if you make a profile form specific to a role then you must make "
3303
- "sure that every other role is assigned a profile form"
3304
- msgstr ""
3305
-
3306
- #: includes/admin/templates/form/profile_customize.php:55
3307
- msgid "Profile Area Max. Width (px)"
3308
- msgstr ""
3309
-
3310
- #: includes/admin/templates/form/profile_customize.php:103
3311
- msgid "Enable Cover Photos"
3312
- msgstr ""
3313
-
3314
- #: includes/admin/templates/form/profile_customize.php:114
3315
- msgid "Cover photo ratio"
3316
- msgstr ""
3317
-
3318
- #: includes/admin/templates/form/profile_customize.php:128
3319
- msgid "Set the profile photo size in pixels here"
3320
- msgstr ""
3321
-
3322
- #: includes/admin/templates/form/profile_customize.php:135
3323
- msgid "Make Profile Photo Required"
3324
- msgstr ""
3325
-
3326
- #: includes/admin/templates/form/profile_customize.php:136
3327
- msgid "Require user to update a profile photo when updating their profile"
3328
- msgstr ""
3329
-
3330
- #: includes/admin/templates/form/profile_customize.php:147
3331
- msgid "Show display name in profile header?"
3332
- msgstr ""
3333
-
3334
- #: includes/admin/templates/form/profile_customize.php:158
3335
- msgid "Show social links in profile header?"
3336
- msgstr ""
3337
-
3338
- #: includes/admin/templates/form/profile_customize.php:169
3339
- msgid "Show user description in profile header?"
3340
- msgstr ""
3341
-
3342
- #: includes/admin/templates/form/profile_settings.php:17
3343
- msgid "Field(s) to show in user meta"
3344
- msgstr ""
3345
-
3346
- #: includes/admin/templates/form/profile_settings.php:18
3347
- msgid ""
3348
- "Fields selected here will appear in the profile header area below the user's "
3349
- "display name"
3350
- msgstr ""
3351
-
3352
- #: includes/admin/templates/form/profile_settings.php:21
3353
- msgid "Add New Field"
3354
- msgstr ""
3355
-
3356
- #: includes/admin/templates/form/register_customize.php:27
3357
- msgid "Assign role to form"
3358
- msgstr ""
3359
-
3360
- #: includes/admin/templates/form/register_gdpr.php:5
3361
- msgid "Select page"
3362
- msgstr ""
3363
-
3364
- #: includes/admin/templates/form/register_gdpr.php:20
3365
- msgid "Enable on this form"
3366
- msgstr ""
3367
-
3368
- #: includes/admin/templates/form/register_gdpr.php:30
3369
- msgid "Content"
3370
- msgstr ""
3371
-
3372
- #: includes/admin/templates/form/register_gdpr.php:38
3373
- msgid "Toggle Show text"
3374
- msgstr ""
3375
-
3376
- #: includes/admin/templates/form/register_gdpr.php:39
3377
- #: includes/admin/templates/form/register_gdpr.php:40
3378
- #: templates/gdpr-register.php:15 templates/gdpr-register.php:17
3379
- msgid "Show privacy policy"
3380
- msgstr ""
3381
-
3382
- #: includes/admin/templates/form/register_gdpr.php:46
3383
- msgid "Toggle Hide text"
3384
- msgstr ""
3385
-
3386
- #: includes/admin/templates/form/register_gdpr.php:47
3387
- #: includes/admin/templates/form/register_gdpr.php:48
3388
- #: templates/gdpr-register.php:16
3389
- msgid "Hide privacy policy"
3390
- msgstr ""
3391
-
3392
- #: includes/admin/templates/form/register_gdpr.php:54
3393
- msgid "Checkbox agreement description"
3394
- msgstr ""
3395
-
3396
- #: includes/admin/templates/form/register_gdpr.php:55
3397
- #: includes/admin/templates/form/register_gdpr.php:56
3398
- #: templates/gdpr-register.php:28
3399
- msgid "Please confirm that you agree to our privacy policy"
3400
- msgstr ""
3401
-
3402
- #: includes/admin/templates/form/register_gdpr.php:62
3403
- msgid "Error Text"
3404
- msgstr ""
3405
-
3406
- #: includes/admin/templates/form/register_gdpr.php:63
3407
- #: includes/admin/templates/form/register_gdpr.php:64
3408
- #: templates/gdpr-register.php:37
3409
- msgid "Please confirm your acceptance of our privacy policy"
3410
- msgstr ""
3411
-
3412
- #: includes/admin/templates/gdpr.php:4
3413
- msgid "What personal data we collect and why we collect it"
3414
- msgstr ""
3415
-
3416
- #: includes/admin/templates/gdpr.php:10
3417
- #, php-format
3418
- msgid "%s provides you with forms for user registration, login and profiles."
3419
- msgstr ""
3420
-
3421
- #: includes/admin/templates/gdpr.php:13
3422
- msgid "Via these forms you are collecting personal data from your users."
3423
- msgstr ""
3424
-
3425
- #: includes/admin/templates/gdpr.php:16
3426
- msgid ""
3427
- "You should include in your privacy policy what personal data is captured "
3428
- "when someone submits/fills in one of the forms, why you collect it and what "
3429
- "you do with this data and how long you keep it."
3430
- msgstr ""
3431
-
3432
- #: includes/admin/templates/gdpr.php:20
3433
- msgid "How long we retain your data"
3434
- msgstr ""
3435
-
3436
- #: includes/admin/templates/gdpr.php:23
3437
- msgid ""
3438
- "Registered user information is retained in your website’s database "
3439
- "indefinitely."
3440
- msgstr ""
3441
-
3442
- #: includes/admin/templates/gdpr.php:26
3443
- msgid ""
3444
- "Data can be exported or removed upon users request via the existing "
3445
- "WordPress data exporter or eraser."
3446
- msgstr ""
3447
-
3448
- #: includes/admin/templates/gdpr.php:29
3449
- msgid ""
3450
- "If syncing data to a 3rd party service (e.g Mailchimp via our MailChimp "
3451
- "extension), data is retained there until unsubscribed or deleted."
3452
- msgstr ""
3453
-
3454
- #: includes/admin/templates/gdpr.php:33
3455
- msgid "Where we send your data"
3456
- msgstr ""
3457
-
3458
- #: includes/admin/templates/gdpr.php:36
3459
- #, php-format
3460
- msgid "%s does not send any user data outside of your site by default."
3461
- msgstr ""
3462
-
3463
- #: includes/admin/templates/gdpr.php:39
3464
- msgid ""
3465
- "If you have extended the functionality of the plugin (e.g sending registered "
3466
- "user data to MailChimp via our MailChimp extension, this user info may be "
3467
- "passed to these external services. These services may be located abroad and "
3468
- "outwith the EU."
3469
- msgstr ""
3470
-
3471
- #: includes/admin/templates/modal/dynamic_edit_field.php:6
3472
- msgid "Edit Field"
3473
- msgstr ""
3474
-
3475
- #: includes/admin/templates/modal/dynamic_edit_field.php:12
3476
- #: includes/admin/templates/modal/dynamic_edit_row.php:12
3477
- msgid "Update"
3478
- msgstr ""
3479
-
3480
- #: includes/admin/templates/modal/dynamic_edit_field.php:14
3481
- #: includes/admin/templates/modal/dynamic_edit_row.php:14
3482
- #: includes/admin/templates/modal/dynamic_new_divider.php:14
3483
- #: includes/admin/templates/modal/dynamic_new_field.php:14
3484
- #: includes/admin/templates/modal/dynamic_new_group.php:14
3485
- #: includes/admin/templates/modal/fonticons.php:11
3486
- #: includes/admin/templates/role/publish.php:24
3487
- #: includes/core/class-fields.php:2271 includes/core/class-fields.php:2354
3488
- #: includes/core/um-actions-profile.php:554
3489
- #: includes/core/um-actions-profile.php:693
3490
- #: includes/core/um-actions-profile.php:726
3491
- #: includes/core/um-actions-profile.php:1073
3492
- #: includes/core/um-actions-profile.php:1080
3493
- msgid "Cancel"
3494
- msgstr ""
3495
-
3496
- #: includes/admin/templates/modal/dynamic_edit_row.php:6
3497
- msgid "Edit Row Settings"
3498
- msgstr ""
3499
-
3500
- #: includes/admin/templates/modal/dynamic_form_preview.php:4
3501
- msgid "Live Form Preview"
3502
- msgstr ""
3503
-
3504
- #: includes/admin/templates/modal/dynamic_form_preview.php:10
3505
- msgid "Continue editing"
3506
- msgstr ""
3507
-
3508
- #: includes/admin/templates/modal/dynamic_new_divider.php:6
3509
- msgid "Add a New Divider"
3510
- msgstr ""
3511
-
3512
- #: includes/admin/templates/modal/dynamic_new_divider.php:12
3513
- #: includes/admin/templates/modal/dynamic_new_field.php:12
3514
- #: includes/admin/templates/modal/dynamic_new_group.php:12
3515
- msgid "Add"
3516
- msgstr ""
3517
-
3518
- #: includes/admin/templates/modal/dynamic_new_field.php:6
3519
- msgid "Add a New Field"
3520
- msgstr ""
3521
-
3522
- #: includes/admin/templates/modal/dynamic_new_group.php:6
3523
- msgid "Add a New Field Group"
3524
- msgstr ""
3525
-
3526
- #: includes/admin/templates/modal/dynamic_registration_preview.php:4
3527
- msgid "Review Registration Details"
3528
- msgstr ""
3529
-
3530
- #: includes/admin/templates/modal/fields.php:4
3531
- msgid "Fields Manager"
3532
- msgstr ""
3533
-
3534
- #: includes/admin/templates/modal/fonticons.php:4
3535
- #, php-format
3536
- msgid "Choose from %s available icons"
3537
- msgstr ""
3538
-
3539
- #: includes/admin/templates/modal/fonticons.php:10
3540
- msgid "Finish"
3541
- msgstr ""
3542
-
3543
- #: includes/admin/templates/role/admin-permissions.php:11
3544
- msgid "Can access wp-admin?"
3545
- msgstr ""
3546
-
3547
- #: includes/admin/templates/role/admin-permissions.php:12
3548
- msgid ""
3549
- "The core admin role must always have access to wp-admin / WordPress backend"
3550
- msgstr ""
3551
-
3552
- #: includes/admin/templates/role/admin-permissions.php:18
3553
- msgid "Force hiding adminbar in frontend?"
3554
- msgstr ""
3555
-
3556
- #: includes/admin/templates/role/admin-permissions.php:19
3557
- msgid "Show/hide the adminbar on frontend"
3558
- msgstr ""
3559
-
3560
- #: includes/admin/templates/role/admin-permissions.php:25
3561
- msgid "Can edit other member accounts?"
3562
- msgstr ""
3563
-
3564
- #: includes/admin/templates/role/admin-permissions.php:26
3565
- #: includes/admin/templates/role/admin-permissions.php:43
3566
- msgid "Allow this role to edit accounts of other members"
3567
- msgstr ""
3568
-
3569
- #: includes/admin/templates/role/admin-permissions.php:32
3570
- msgid "Can edit these user roles only"
3571
- msgstr ""
3572
-
3573
- #: includes/admin/templates/role/admin-permissions.php:33
3574
- #: includes/admin/templates/role/admin-permissions.php:50
3575
- msgid ""
3576
- "Which roles that role can edit, choose none to allow role to edit all member "
3577
- "roles"
3578
- msgstr ""
3579
-
3580
- #: includes/admin/templates/role/admin-permissions.php:42
3581
- msgid "Can delete other member accounts?"
3582
- msgstr ""
3583
-
3584
- #: includes/admin/templates/role/admin-permissions.php:49
3585
- msgid "Can delete these user roles only"
3586
- msgstr ""
3587
-
3588
- #: includes/admin/templates/role/delete.php:12
3589
- msgid "Action to be taken after account is deleted"
3590
- msgstr ""
3591
-
3592
- #: includes/admin/templates/role/delete.php:13
3593
- msgid ""
3594
- "Select what happens when a user with this role deletes their own account"
3595
- msgstr ""
3596
-
3597
- #: includes/admin/templates/role/delete.php:16
3598
- #: includes/admin/templates/role/logout.php:16
3599
- msgid "Go to Homepage"
3600
- msgstr ""
3601
-
3602
- #: includes/admin/templates/role/delete.php:17
3603
- #: includes/admin/templates/role/logout.php:17
3604
- msgid "Go to Custom URL"
3605
- msgstr ""
3606
-
3607
- #: includes/admin/templates/role/delete.php:24
3608
- msgid "Set a url to redirect this user role to after they delete account"
3609
- msgstr ""
3610
-
3611
- #: includes/admin/templates/role/general.php:11
3612
- msgid "Can edit their profile?"
3613
- msgstr ""
3614
-
3615
- #: includes/admin/templates/role/general.php:12
3616
- msgid "Can this role edit his own profile?"
3617
- msgstr ""
3618
-
3619
- #: includes/admin/templates/role/general.php:18
3620
- msgid "Can delete their account?"
3621
- msgstr ""
3622
-
3623
- #: includes/admin/templates/role/general.php:19
3624
- msgid ""
3625
- "Allow this role to delete their account and end their membership on your site"
3626
- msgstr ""
3627
-
3628
- #: includes/admin/templates/role/home.php:12
3629
- msgid "Can view default homepage?"
3630
- msgstr ""
3631
-
3632
- #: includes/admin/templates/role/home.php:13
3633
- msgid "Allow this user role to view your site's homepage"
3634
- msgstr ""
3635
-
3636
- #: includes/admin/templates/role/home.php:19
3637
- msgid "Custom Homepage Redirect"
3638
- msgstr ""
3639
-
3640
- #: includes/admin/templates/role/home.php:20
3641
- msgid ""
3642
- "Set a url to redirect this user role to if they try to view your site's "
3643
- "homepage"
3644
- msgstr ""
3645
-
3646
- #: includes/admin/templates/role/login.php:12
3647
- msgid "Action to be taken after login"
3648
- msgstr ""
3649
-
3650
- #: includes/admin/templates/role/login.php:13
3651
- msgid "Select what happens when a user with this role logins to your site"
3652
- msgstr ""
3653
-
3654
- #: includes/admin/templates/role/login.php:26
3655
- msgid ""
3656
- "Set a url to redirect this user role to after they login with their account"
3657
- msgstr ""
3658
-
3659
- #: includes/admin/templates/role/logout.php:12
3660
- msgid "Action to be taken after logout"
3661
- msgstr ""
3662
-
3663
- #: includes/admin/templates/role/logout.php:13
3664
- msgid "Select what happens when a user with this role logouts of your site"
3665
- msgstr ""
3666
-
3667
- #: includes/admin/templates/role/logout.php:24
3668
- msgid "Set a url to redirect this user role to after they logout from site"
3669
- msgstr ""
3670
-
3671
- #: includes/admin/templates/role/profile.php:11
3672
- msgid "Can view other member profiles?"
3673
- msgstr ""
3674
-
3675
- #: includes/admin/templates/role/profile.php:12
3676
- msgid "Can this role view all member profiles?"
3677
- msgstr ""
3678
-
3679
- #: includes/admin/templates/role/profile.php:18
3680
- msgid "Can view these user roles only"
3681
- msgstr ""
3682
-
3683
- #: includes/admin/templates/role/profile.php:19
3684
- msgid ""
3685
- "Which roles that role can view, choose none to allow role to view all member "
3686
- "roles"
3687
- msgstr ""
3688
-
3689
- #: includes/admin/templates/role/profile.php:29
3690
- msgid "Can make their profile private?"
3691
- msgstr ""
3692
-
3693
- #: includes/admin/templates/role/profile.php:30
3694
- msgid "Can this role make their profile private?"
3695
- msgstr ""
3696
-
3697
- #: includes/admin/templates/role/profile.php:37
3698
- msgid "Can view/access private profiles?"
3699
- msgstr ""
3700
-
3701
- #: includes/admin/templates/role/profile.php:38
3702
- msgid "Can this role view private profiles?"
3703
- msgstr ""
3704
-
3705
- #: includes/admin/templates/role/publish.php:14
3706
- msgid "Role Priority"
3707
- msgstr ""
3708
-
3709
- #: includes/admin/templates/role/publish.php:15
3710
- msgid "The higher the number, the higher the priority"
3711
- msgstr ""
3712
-
3713
- #: includes/admin/templates/role/publish.php:23
3714
- msgid "Update Role"
3715
- msgstr ""
3716
-
3717
- #: includes/admin/templates/role/publish.php:23
3718
- msgid "Create Role"
3719
- msgstr ""
3720
-
3721
- #: includes/admin/templates/role/register.php:11
3722
- msgid "Registration Status"
3723
- msgstr ""
3724
-
3725
- #: includes/admin/templates/role/register.php:12
3726
- msgid ""
3727
- "Select the status you would like this user role to have after they register "
3728
- "on your site"
3729
- msgstr ""
3730
-
3731
- #: includes/admin/templates/role/register.php:15
3732
- msgid "Auto Approve"
3733
- msgstr ""
3734
-
3735
- #: includes/admin/templates/role/register.php:16
3736
- msgid "Require Email Activation"
3737
- msgstr ""
3738
-
3739
- #: includes/admin/templates/role/register.php:17
3740
- msgid "Require Admin Review"
3741
- msgstr ""
3742
-
3743
- #: includes/admin/templates/role/register.php:23
3744
- #: includes/admin/templates/role/register.php:50
3745
- #: includes/admin/templates/role/register.php:84
3746
- msgid "Action to be taken after registration"
3747
- msgstr ""
3748
-
3749
- #: includes/admin/templates/role/register.php:24
3750
- #: includes/admin/templates/role/register.php:51
3751
- #: includes/admin/templates/role/register.php:85
3752
- msgid ""
3753
- "Select what action is taken after a person registers on your site. Depending "
3754
- "on the status you can redirect them to their profile, a custom url or show a "
3755
- "custom message"
3756
- msgstr ""
3757
-
3758
- #: includes/admin/templates/role/register.php:42
3759
- msgid "Login user after validating the activation link?"
3760
- msgstr ""
3761
-
3762
- #: includes/admin/templates/role/register.php:43
3763
- msgid "Login the user after validating the activation link"
3764
- msgstr ""
3765
-
3766
- #: includes/admin/templates/role/register.php:54
3767
- #: includes/admin/templates/role/register.php:88
3768
- msgid "Show custom message"
3769
- msgstr ""
3770
-
3771
- #: includes/admin/templates/role/register.php:62
3772
- #: includes/admin/templates/role/register.php:96
3773
- msgid "Personalize the custom message"
3774
- msgstr ""
3775
-
3776
- #: includes/admin/templates/role/register.php:63
3777
- msgid ""
3778
- "Thank you for registering. Before you can login we need you to activate your "
3779
- "account by clicking the activation link in the email we just sent you."
3780
- msgstr ""
3781
-
3782
- #: includes/admin/templates/role/register.php:76
3783
- msgid "URL redirect after e-mail activation"
3784
- msgstr ""
3785
-
3786
- #: includes/admin/templates/role/register.php:77
3787
- msgid ""
3788
- "If you want users to go to a specific page other than login page after e-"
3789
- "mail activation, enter the URL here."
3790
- msgstr ""
3791
-
3792
- #: includes/admin/templates/role/register.php:97
3793
- msgid ""
3794
- "Thank you for applying for membership to our site. We will review your "
3795
- "details and send you an email letting you know whether your application has "
3796
- "been successful or not."
3797
- msgstr ""
3798
-
3799
- #: includes/admin/templates/role/role-edit.php:70
3800
- msgid "Title is empty!"
3801
- msgstr ""
3802
-
3803
- #: includes/admin/templates/role/role-edit.php:95
3804
- msgid "Role already exists!"
3805
- msgstr ""
3806
-
3807
- #: includes/admin/templates/role/role-edit.php:134
3808
- msgid "Add New Role"
3809
- msgstr ""
3810
-
3811
- #: includes/admin/templates/role/role-edit.php:134
3812
- msgid "Edit Role"
3813
- msgstr ""
3814
-
3815
- #: includes/admin/templates/role/role-edit.php:143
3816
- msgid "User Role <strong>Added</strong> Successfully."
3817
- msgstr ""
3818
-
3819
- #: includes/admin/templates/role/role-edit.php:146
3820
- msgid "User Role <strong>Updated</strong> Successfully."
3821
- msgstr ""
3822
-
3823
- #: includes/admin/templates/role/role-edit.php:172
3824
- msgid "Enter Title Here"
3825
- msgstr ""
3826
-
3827
- #: includes/admin/templates/role/wp-capabilities.php:36
3828
- msgid "Uncheck All"
3829
- msgstr ""
3830
-
3831
- #: includes/admin/templates/role/wp-capabilities.php:38
3832
- #: includes/admin/templates/role/wp-capabilities.php:46
3833
- msgid "Check All"
3834
- msgstr ""
3835
-
3836
- #: includes/class-config.php:129 includes/class-config.php:733
3837
- msgid "User"
3838
- msgstr ""
3839
-
3840
- #: includes/class-config.php:130 includes/class-config.php:234
3841
- #: includes/class-config.php:240 includes/class-config.php:734
3842
- msgid "Login"
3843
- msgstr ""
3844
-
3845
- #: includes/class-config.php:131 includes/class-config.php:232
3846
- #: includes/class-config.php:244 includes/class-config.php:735
3847
- msgid "Register"
3848
- msgstr ""
3849
-
3850
- #: includes/class-config.php:132 includes/class-config.php:736
3851
- msgid "Members"
3852
- msgstr ""
3853
-
3854
- #: includes/class-config.php:133 includes/class-config.php:737
3855
- #: includes/core/um-actions-profile.php:1079
3856
- #: includes/core/um-actions-user.php:15
3857
- msgid "Logout"
3858
- msgstr ""
3859
-
3860
- #: includes/class-config.php:135 includes/class-config.php:739
3861
- #: includes/core/class-builtin.php:1092
3862
- msgid "Password Reset"
3863
- msgstr ""
3864
-
3865
- #: includes/class-config.php:307
3866
- msgid "Account Welcome Email"
3867
- msgstr ""
3868
-
3869
- #: includes/class-config.php:318
3870
- msgid ""
3871
- "Whether to send the user an email when his account is automatically approved"
3872
- msgstr ""
3873
-
3874
- #: includes/class-config.php:324
3875
- msgid "Account Activation Email"
3876
- msgstr ""
3877
-
3878
- #: includes/class-config.php:332
3879
- msgid ""
3880
- "Whether to send the user an email when his account needs e-mail activation"
3881
- msgstr ""
3882
-
3883
- #: includes/class-config.php:337
3884
- msgid "Your account is pending review"
3885
- msgstr ""
3886
-
3887
- #: includes/class-config.php:345
3888
- msgid "Whether to send the user an email when his account needs admin review"
3889
- msgstr ""
3890
-
3891
- #: includes/class-config.php:350
3892
- msgid "Account Approved Email"
3893
- msgstr ""
3894
-
3895
- #: includes/class-config.php:362
3896
- msgid "Whether to send the user an email when his account is approved"
3897
- msgstr ""
3898
-
3899
- #: includes/class-config.php:367
3900
- msgid "Account Rejected Email"
3901
- msgstr ""
3902
-
3903
- #: includes/class-config.php:374
3904
- msgid "Whether to send the user an email when his account is rejected"
3905
- msgstr ""
3906
-
3907
- #: includes/class-config.php:379
3908
- msgid "Account Deactivated Email"
3909
- msgstr ""
3910
-
3911
- #: includes/class-config.php:386
3912
- msgid "Whether to send the user an email when his account is deactivated"
3913
- msgstr ""
3914
-
3915
- #: includes/class-config.php:392
3916
- msgid "Account Deleted Email"
3917
- msgstr ""
3918
-
3919
- #: includes/class-config.php:399
3920
- msgid "Whether to send the user an email when his account is deleted"
3921
- msgstr ""
3922
-
3923
- #: includes/class-config.php:405
3924
- msgid "Password Reset Email"
3925
- msgstr ""
3926
-
3927
- #: includes/class-config.php:413
3928
- msgid ""
3929
- "Whether to send an email when users changed their password (Recommended, "
3930
- "please keep on)"
3931
- msgstr ""
3932
-
3933
- #: includes/class-config.php:419
3934
- msgid "Password Changed Email"
3935
- msgstr ""
3936
-
3937
- #: includes/class-config.php:426
3938
- msgid ""
3939
- "Whether to send the user an email when he request to reset password "
3940
- "(Recommended, please keep on)"
3941
- msgstr ""
3942
-
3943
- #: includes/class-config.php:432
3944
- msgid "Account Updated Email"
3945
- msgstr ""
3946
-
3947
- #: includes/class-config.php:439
3948
- msgid "Whether to send the user an email when he updated their account"
3949
- msgstr ""
3950
-
3951
- #: includes/class-config.php:445
3952
- msgid "New User Notification"
3953
- msgstr ""
3954
-
3955
- #: includes/class-config.php:451
3956
- msgid "Whether to receive notification when a new user account is approved"
3957
- msgstr ""
3958
-
3959
- #: includes/class-config.php:457
3960
- msgid "Account Needs Review Notification"
3961
- msgstr ""
3962
-
3963
- #: includes/class-config.php:464
3964
- msgid "Whether to receive notification when an account needs admin review"
3965
- msgstr ""
3966
-
3967
- #: includes/class-config.php:469
3968
- msgid "Account Deletion Notification"
3969
- msgstr ""
3970
-
3971
- #: includes/class-config.php:472
3972
- msgid "Whether to receive notification when an account is deleted"
3973
- msgstr ""
3974
-
3975
- #: includes/class-config.php:495
3976
- msgid ""
3977
- "Are you sure you want to delete your account? This will erase all of your "
3978
- "account data from the site. To delete your account enter your password below"
3979
- msgstr ""
3980
-
3981
- #: includes/class-dependencies.php:160
3982
- #, php-format
3983
- msgid ""
3984
- "This version of <strong>\"%s\"</strong> requires the core <strong>%s</"
3985
- "strong> plugin to be <strong>%s</strong> or higher."
3986
- msgstr ""
3987
-
3988
- #: includes/class-dependencies.php:162
3989
- #, php-format
3990
- msgid "Please update <strong>%s</strong> to the latest version."
3991
- msgstr ""
3992
-
3993
- #: includes/class-dependencies.php:164
3994
- #, php-format
3995
- msgid ""
3996
- "Sorry, but this version of <strong>%s</strong> does not work with extension "
3997
- "<strong>\"%s\" %s</strong> version."
3998
- msgstr ""
3999
-
4000
- #: includes/class-dependencies.php:166
4001
- #, php-format
4002
- msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4003
- msgstr ""
4004
-
4005
- #: includes/class-dependencies.php:175
4006
- #, php-format
4007
- msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4008
- msgstr ""
4009
-
4010
- #: includes/class-dependencies.php:177
4011
- #, php-format
4012
- msgid "Correct folder name is <strong>\"%s\"</strong>"
4013
- msgstr ""
4014
-
4015
- #: includes/class-init.php:147 includes/class-init.php:156
4016
- msgid "Cheatin&#8217; huh?"
4017
- msgstr ""
4018
-
4019
- #: includes/core/class-account.php:91
4020
- msgid "Update Account"
4021
- msgstr ""
4022
-
4023
- #: includes/core/class-account.php:96
4024
- msgid "Change Password"
4025
- msgstr ""
4026
-
4027
- #: includes/core/class-account.php:97
4028
- msgid "Update Password"
4029
- msgstr ""
4030
-
4031
- #: includes/core/class-account.php:102
4032
- msgid "Privacy"
4033
- msgstr ""
4034
-
4035
- #: includes/core/class-account.php:103
4036
- msgid "Update Privacy"
4037
- msgstr ""
4038
-
4039
- #: includes/core/class-account.php:108
4040
- msgid "Notifications"
4041
- msgstr ""
4042
-
4043
- #: includes/core/class-account.php:109
4044
- msgid "Update Notifications"
4045
- msgstr ""
4046
-
4047
- #: includes/core/class-account.php:117 includes/core/class-account.php:118
4048
- #: includes/core/class-builtin.php:1143 includes/core/class-builtin.php:1146
4049
- msgid "Delete Account"
4050
- msgstr ""
4051
-
4052
- #: includes/core/class-builtin.php:132
4053
- msgid "Please provide a meta key"
4054
- msgstr ""
4055
-
4056
- #: includes/core/class-builtin.php:133
4057
- msgid "Your meta key is a reserved core field and cannot be used"
4058
- msgstr ""
4059
-
4060
- #: includes/core/class-builtin.php:134
4061
- msgid "Your meta key is a predefined reserved key and cannot be used"
4062
- msgstr ""
4063
-
4064
- #: includes/core/class-builtin.php:135
4065
- msgid "Your meta key already exists in your fields list"
4066
- msgstr ""
4067
-
4068
- #: includes/core/class-builtin.php:136
4069
- msgid "Your meta key contains illegal characters. Please correct it."
4070
- msgstr ""
4071
-
4072
- #: includes/core/class-builtin.php:149
4073
- msgid "Please provide a date range beginning"
4074
- msgstr ""
4075
-
4076
- #: includes/core/class-builtin.php:150
4077
- msgid "Please enter a valid start date in the date range"
4078
- msgstr ""
4079
-
4080
- #: includes/core/class-builtin.php:164
4081
- msgid "Please provide a date range end"
4082
- msgstr ""
4083
-
4084
- #: includes/core/class-builtin.php:165
4085
- msgid "Please enter a valid end date in the date range"
4086
- msgstr ""
4087
-
4088
- #: includes/core/class-builtin.php:166
4089
- msgid "The end of date range must be greater than the start of date range"
4090
- msgstr ""
4091
-
4092
- #: includes/core/class-builtin.php:208 includes/core/class-builtin.php:224
4093
- #: includes/core/class-builtin.php:240 includes/core/class-builtin.php:256
4094
- #: includes/core/class-builtin.php:276 includes/core/class-builtin.php:296
4095
- #: includes/core/class-builtin.php:316 includes/core/class-builtin.php:336
4096
- #: includes/core/class-builtin.php:352 includes/core/class-builtin.php:368
4097
- #: includes/core/class-builtin.php:388 includes/core/class-builtin.php:408
4098
- #: includes/core/class-builtin.php:434 includes/core/class-builtin.php:450
4099
- #: includes/core/class-builtin.php:467 includes/core/class-builtin.php:480
4100
- #: includes/core/class-builtin.php:497 includes/core/class-builtin.php:510
4101
- #: includes/core/class-builtin.php:523 includes/core/class-builtin.php:539
4102
- #: includes/core/class-builtin.php:555 includes/core/class-builtin.php:571
4103
- msgid "You must provide a title"
4104
- msgstr ""
4105
-
4106
- #: includes/core/class-builtin.php:217
4107
- msgid "Number"
4108
- msgstr ""
4109
-
4110
- #: includes/core/class-builtin.php:263 includes/core/class-builtin.php:283
4111
- #: includes/core/class-builtin.php:303 includes/core/class-builtin.php:323
4112
- msgid "You have not added any choices yet."
4113
- msgstr ""
4114
-
4115
- #: includes/core/class-builtin.php:375 includes/core/class-builtin.php:395
4116
- msgid "Please enter a valid size"
4117
- msgstr ""
4118
-
4119
- #: includes/core/class-builtin.php:415
4120
- msgid "Number of years is not valid"
4121
- msgstr ""
4122
-
4123
- #: includes/core/class-builtin.php:484
4124
- msgid "You must add a shortcode to the content area"
4125
- msgstr ""
4126
-
4127
- #: includes/core/class-builtin.php:663 includes/core/class-user.php:1536
4128
- msgid "Only me"
4129
- msgstr ""
4130
-
4131
- #: includes/core/class-builtin.php:682 includes/core/class-builtin.php:685
4132
- #: includes/core/class-builtin.php:1099
4133
- msgid "Username or E-mail"
4134
- msgstr ""
4135
-
4136
- #: includes/core/class-builtin.php:693 includes/core/class-builtin.php:696
4137
- #: includes/core/class-builtin.php:1157 includes/core/class-builtin.php:1160
4138
- msgid "Password"
4139
- msgstr ""
4140
-
4141
- #: includes/core/class-builtin.php:737 includes/core/class-builtin.php:740
4142
- #: includes/core/class-builtin.php:1334
4143
- msgid "Website URL"
4144
- msgstr ""
4145
-
4146
- #: includes/core/class-builtin.php:748 includes/core/class-builtin.php:751
4147
- msgid "Registration Date"
4148
- msgstr ""
4149
-
4150
- #: includes/core/class-builtin.php:759 includes/core/class-builtin.php:762
4151
- msgid "Last Login"
4152
- msgstr ""
4153
-
4154
- #: includes/core/class-builtin.php:770 includes/core/class-builtin.php:773
4155
- msgid "E-mail Address"
4156
- msgstr ""
4157
-
4158
- #: includes/core/class-builtin.php:781 includes/core/class-builtin.php:784
4159
- msgid "Secondary E-mail Address"
4160
- msgstr ""
4161
-
4162
- #: includes/core/class-builtin.php:793 includes/core/class-builtin.php:796
4163
- msgid "Biography"
4164
- msgstr ""
4165
-
4166
- #: includes/core/class-builtin.php:802
4167
- msgid "Enter a bit about yourself..."
4168
- msgstr ""
4169
-
4170
- #: includes/core/class-builtin.php:806 includes/core/class-builtin.php:809
4171
- msgid "Birth Date"
4172
- msgstr ""
4173
-
4174
- #: includes/core/class-builtin.php:820 includes/core/class-builtin.php:823
4175
- msgid "Gender"
4176
- msgstr ""
4177
-
4178
- #: includes/core/class-builtin.php:827
4179
- msgid "Male"
4180
- msgstr ""
4181
-
4182
- #: includes/core/class-builtin.php:827
4183
- msgid "Female"
4184
- msgstr ""
4185
-
4186
- #: includes/core/class-builtin.php:831 includes/core/class-builtin.php:834
4187
- msgid "Country"
4188
- msgstr ""
4189
-
4190
- #: includes/core/class-builtin.php:835
4191
- msgid "Choose a Country"
4192
- msgstr ""
4193
-
4194
- #: includes/core/class-builtin.php:843 includes/core/class-builtin.php:846
4195
- msgid "Facebook"
4196
- msgstr ""
4197
-
4198
- #: includes/core/class-builtin.php:861 includes/core/class-builtin.php:864
4199
- msgid "Twitter"
4200
- msgstr ""
4201
-
4202
- #: includes/core/class-builtin.php:879 includes/core/class-builtin.php:882
4203
- msgid "LinkedIn"
4204
- msgstr ""
4205
-
4206
- #: includes/core/class-builtin.php:897 includes/core/class-builtin.php:900
4207
- msgid "Google+"
4208
- msgstr ""
4209
-
4210
- #: includes/core/class-builtin.php:915 includes/core/class-builtin.php:918
4211
- msgid "Instagram"
4212
- msgstr ""
4213
-
4214
- #: includes/core/class-builtin.php:933 includes/core/class-builtin.php:936
4215
- #: includes/core/class-builtin.php:1327
4216
- msgid "Skype ID"
4217
- msgstr ""
4218
-
4219
- #: includes/core/class-builtin.php:948 includes/core/class-builtin.php:951
4220
- msgid "YouTube"
4221
- msgstr ""
4222
-
4223
- #: includes/core/class-builtin.php:966 includes/core/class-builtin.php:969
4224
- msgid "SoundCloud"
4225
- msgstr ""
4226
-
4227
- #: includes/core/class-builtin.php:984 includes/core/class-builtin.php:987
4228
- msgid "VKontakte"
4229
- msgstr ""
4230
-
4231
- #: includes/core/class-builtin.php:1002
4232
- msgid "Roles (Dropdown)"
4233
- msgstr ""
4234
-
4235
- #: includes/core/class-builtin.php:1005 includes/core/class-builtin.php:1017
4236
- msgid "Account Type"
4237
- msgstr ""
4238
-
4239
- #: includes/core/class-builtin.php:1014
4240
- msgid "Roles (Radio)"
4241
- msgstr ""
4242
-
4243
- #: includes/core/class-builtin.php:1025
4244
- msgid "Languages"
4245
- msgstr ""
4246
-
4247
- #: includes/core/class-builtin.php:1028
4248
- msgid "Languages Spoken"
4249
- msgstr ""
4250
-
4251
- #: includes/core/class-builtin.php:1029
4252
- msgid "Select languages"
4253
- msgstr ""
4254
-
4255
- #: includes/core/class-builtin.php:1037 includes/core/class-builtin.php:1040
4256
- #: includes/core/class-builtin.php:1326
4257
- msgid "Phone Number"
4258
- msgstr ""
4259
-
4260
- #: includes/core/class-builtin.php:1049 includes/core/class-builtin.php:1052
4261
- msgid "Mobile Number"
4262
- msgstr ""
4263
-
4264
- #: includes/core/class-builtin.php:1063
4265
- msgid "Profile Photo"
4266
- msgstr ""
4267
-
4268
- #: includes/core/class-builtin.php:1066
4269
- msgid "Change your profile photo"
4270
- msgstr ""
4271
-
4272
- #: includes/core/class-builtin.php:1067
4273
- msgid "Upload your photo here"
4274
- msgstr ""
4275
-
4276
- #: includes/core/class-builtin.php:1077
4277
- msgid "Cover Photo"
4278
- msgstr ""
4279
-
4280
- #: includes/core/class-builtin.php:1080
4281
- #: includes/core/um-actions-profile.php:516
4282
- msgid "Change your cover photo"
4283
- msgstr ""
4284
-
4285
- #: includes/core/class-builtin.php:1081
4286
- msgid "Upload profile cover here"
4287
- msgstr ""
4288
-
4289
- #: includes/core/class-builtin.php:1094
4290
- msgid ""
4291
- "To reset your password, please enter your email address or username below"
4292
- msgstr ""
4293
-
4294
- #: includes/core/class-builtin.php:1102
4295
- msgid "Enter your username or email"
4296
- msgstr ""
4297
-
4298
- #: includes/core/class-builtin.php:1112 includes/core/class-builtin.php:1115
4299
- msgid "Profile Privacy"
4300
- msgstr ""
4301
-
4302
- #: includes/core/class-builtin.php:1116
4303
- msgid "Who can see your public profile?"
4304
- msgstr ""
4305
-
4306
- #: includes/core/class-builtin.php:1128 includes/core/class-builtin.php:1131
4307
- msgid "Hide my profile from directory"
4308
- msgstr ""
4309
-
4310
- #: includes/core/class-builtin.php:1132
4311
- msgid "Here you can hide yourself from appearing in public directory"
4312
- msgstr ""
4313
-
4314
- #: includes/core/class-builtin.php:1147
4315
- msgid ""
4316
- "If you confirm, everything related to your profile will be deleted "
4317
- "permanently from the site"
4318
- msgstr ""
4319
-
4320
- #: includes/core/class-builtin.php:1316
4321
- msgid "Alphabetic value only"
4322
- msgstr ""
4323
-
4324
- #: includes/core/class-builtin.php:1317
4325
- msgid "Alpha-numeric value"
4326
- msgstr ""
4327
-
4328
- #: includes/core/class-builtin.php:1318
4329
- msgid "English letters only"
4330
- msgstr ""
4331
-
4332
- #: includes/core/class-builtin.php:1319
4333
- msgid "Facebook URL"
4334
- msgstr ""
4335
-
4336
- #: includes/core/class-builtin.php:1320
4337
- msgid "Google+ URL"
4338
- msgstr ""
4339
-
4340
- #: includes/core/class-builtin.php:1321
4341
- msgid "Instagram URL"
4342
- msgstr ""
4343
-
4344
- #: includes/core/class-builtin.php:1322
4345
- msgid "LinkedIn URL"
4346
- msgstr ""
4347
-
4348
- #: includes/core/class-builtin.php:1323
4349
- msgid "VKontakte URL"
4350
- msgstr ""
4351
-
4352
- #: includes/core/class-builtin.php:1324
4353
- msgid "Lowercase only"
4354
- msgstr ""
4355
-
4356
- #: includes/core/class-builtin.php:1325
4357
- msgid "Numeric value only"
4358
- msgstr ""
4359
-
4360
- #: includes/core/class-builtin.php:1328
4361
- msgid "SoundCloud Profile"
4362
- msgstr ""
4363
-
4364
- #: includes/core/class-builtin.php:1329
4365
- msgid "Twitter URL"
4366
- msgstr ""
4367
-
4368
- #: includes/core/class-builtin.php:1330
4369
- msgid "Unique E-mail"
4370
- msgstr ""
4371
-
4372
- #: includes/core/class-builtin.php:1331
4373
- msgid "Unique Metakey value"
4374
- msgstr ""
4375
-
4376
- #: includes/core/class-builtin.php:1332
4377
- msgid "Unique Username"
4378
- msgstr ""
4379
-
4380
- #: includes/core/class-builtin.php:1333
4381
- msgid "Unique Username/E-mail"
4382
- msgstr ""
4383
-
4384
- #: includes/core/class-builtin.php:1335
4385
- msgid "YouTube Profile"
4386
- msgstr ""
4387
-
4388
- #: includes/core/class-builtin.php:1336
4389
- msgid "Custom Validation"
4390
- msgstr ""
4391
-
4392
- #: includes/core/class-builtin.php:1375
4393
- msgid "Afar"
4394
- msgstr ""
4395
-
4396
- #: includes/core/class-builtin.php:1376
4397
- msgid "Abkhazian"
4398
- msgstr ""
4399
-
4400
- #: includes/core/class-builtin.php:1377
4401
- msgid "Avestan"
4402
- msgstr ""
4403
-
4404
- #: includes/core/class-builtin.php:1378
4405
- msgid "Afrikaans"
4406
- msgstr ""
4407
-
4408
- #: includes/core/class-builtin.php:1379
4409
- msgid "Akan"
4410
- msgstr ""
4411
-
4412
- #: includes/core/class-builtin.php:1380
4413
- msgid "Amharic"
4414
- msgstr ""
4415
-
4416
- #: includes/core/class-builtin.php:1381
4417
- msgid "Aragonese"
4418
- msgstr ""
4419
-
4420
- #: includes/core/class-builtin.php:1382
4421
- msgid "Arabic"
4422
- msgstr ""
4423
-
4424
- #: includes/core/class-builtin.php:1383
4425
- msgid "Assamese"
4426
- msgstr ""
4427
-
4428
- #: includes/core/class-builtin.php:1384
4429
- msgid "Avaric"
4430
- msgstr ""
4431
-
4432
- #: includes/core/class-builtin.php:1385
4433
- msgid "Aymara"
4434
- msgstr ""
4435
-
4436
- #: includes/core/class-builtin.php:1386
4437
- msgid "Azerbaijani"
4438
- msgstr ""
4439
-
4440
- #: includes/core/class-builtin.php:1387
4441
- msgid "Bashkir"
4442
- msgstr ""
4443
-
4444
- #: includes/core/class-builtin.php:1388
4445
- msgid "Belarusian"
4446
- msgstr ""
4447
-
4448
- #: includes/core/class-builtin.php:1389
4449
- msgid "Bulgarian"
4450
- msgstr ""
4451
-
4452
- #: includes/core/class-builtin.php:1390
4453
- msgid "Bihari"
4454
- msgstr ""
4455
-
4456
- #: includes/core/class-builtin.php:1391
4457
- msgid "Bislama"
4458
- msgstr ""
4459
-
4460
- #: includes/core/class-builtin.php:1392
4461
- msgid "Bambara"
4462
- msgstr ""
4463
-
4464
- #: includes/core/class-builtin.php:1393
4465
- msgid "Bengali"
4466
- msgstr ""
4467
-
4468
- #: includes/core/class-builtin.php:1394
4469
- msgid "Tibetan"
4470
- msgstr ""
4471
-
4472
- #: includes/core/class-builtin.php:1395
4473
- msgid "Breton"
4474
- msgstr ""
4475
-
4476
- #: includes/core/class-builtin.php:1396
4477
- msgid "Bosnian"
4478
- msgstr ""
4479
-
4480
- #: includes/core/class-builtin.php:1397
4481
- msgid "Catalan"
4482
- msgstr ""
4483
-
4484
- #: includes/core/class-builtin.php:1398
4485
- msgid "Chechen"
4486
- msgstr ""
4487
-
4488
- #: includes/core/class-builtin.php:1399
4489
- msgid "Chamorro"
4490
- msgstr ""
4491
-
4492
- #: includes/core/class-builtin.php:1400
4493
- msgid "Corsican"
4494
- msgstr ""
4495
-
4496
- #: includes/core/class-builtin.php:1401
4497
- msgid "Cree"
4498
- msgstr ""
4499
-
4500
- #: includes/core/class-builtin.php:1402
4501
- msgid "Czech"
4502
- msgstr ""
4503
-
4504
- #: includes/core/class-builtin.php:1403
4505
- msgid "Church Slavic"
4506
- msgstr ""
4507
-
4508
- #: includes/core/class-builtin.php:1404
4509
- msgid "Chuvash"
4510
- msgstr ""
4511
-
4512
- #: includes/core/class-builtin.php:1405
4513
- msgid "Welsh"
4514
- msgstr ""
4515
-
4516
- #: includes/core/class-builtin.php:1406
4517
- msgid "Danish"
4518
- msgstr ""
4519
-
4520
- #: includes/core/class-builtin.php:1407
4521
- msgid "German"
4522
- msgstr ""
4523
-
4524
- #: includes/core/class-builtin.php:1408
4525
- msgid "Divehi"
4526
- msgstr ""
4527
-
4528
- #: includes/core/class-builtin.php:1409
4529
- msgid "Dzongkha"
4530
- msgstr ""
4531
-
4532
- #: includes/core/class-builtin.php:1410
4533
- msgid "Ewe"
4534
- msgstr ""
4535
-
4536
- #: includes/core/class-builtin.php:1411
4537
- msgid "Greek"
4538
- msgstr ""
4539
-
4540
- #: includes/core/class-builtin.php:1412
4541
- msgid "English"
4542
- msgstr ""
4543
-
4544
- #: includes/core/class-builtin.php:1413
4545
- msgid "Esperanto"
4546
- msgstr ""
4547
-
4548
- #: includes/core/class-builtin.php:1414
4549
- msgid "Spanish"
4550
- msgstr ""
4551
-
4552
- #: includes/core/class-builtin.php:1415
4553
- msgid "Estonian"
4554
- msgstr ""
4555
-
4556
- #: includes/core/class-builtin.php:1416
4557
- msgid "Basque"
4558
- msgstr ""
4559
-
4560
- #: includes/core/class-builtin.php:1417
4561
- msgid "Persian"
4562
- msgstr ""
4563
-
4564
- #: includes/core/class-builtin.php:1418
4565
- msgid "Fulah"
4566
- msgstr ""
4567
-
4568
- #: includes/core/class-builtin.php:1419
4569
- msgid "Finnish"
4570
- msgstr ""
4571
-
4572
- #: includes/core/class-builtin.php:1420
4573
- msgid "Fijian"
4574
- msgstr ""
4575
-
4576
- #: includes/core/class-builtin.php:1421
4577
- msgid "Faroese"
4578
- msgstr ""
4579
-
4580
- #: includes/core/class-builtin.php:1422
4581
- msgid "French"
4582
- msgstr ""
4583
-
4584
- #: includes/core/class-builtin.php:1423
4585
- msgid "Western Frisian"
4586
- msgstr ""
4587
-
4588
- #: includes/core/class-builtin.php:1424
4589
- msgid "Irish"
4590
- msgstr ""
4591
-
4592
- #: includes/core/class-builtin.php:1425
4593
- msgid "Scottish Gaelic"
4594
- msgstr ""
4595
-
4596
- #: includes/core/class-builtin.php:1426
4597
- msgid "Galician"
4598
- msgstr ""
4599
-
4600
- #: includes/core/class-builtin.php:1427
4601
- msgid "Guarani"
4602
- msgstr ""
4603
-
4604
- #: includes/core/class-builtin.php:1428
4605
- msgid "Gujarati"
4606
- msgstr ""
4607
-
4608
- #: includes/core/class-builtin.php:1429
4609
- msgid "Manx"
4610
- msgstr ""
4611
-
4612
- #: includes/core/class-builtin.php:1430
4613
- msgid "Hausa"
4614
- msgstr ""
4615
-
4616
- #: includes/core/class-builtin.php:1431
4617
- msgid "Hebrew"
4618
- msgstr ""
4619
-
4620
- #: includes/core/class-builtin.php:1432
4621
- msgid "Hindi"
4622
- msgstr ""
4623
-
4624
- #: includes/core/class-builtin.php:1433
4625
- msgid "Hiri Motu"
4626
- msgstr ""
4627
-
4628
- #: includes/core/class-builtin.php:1434
4629
- msgid "Croatian"
4630
- msgstr ""
4631
-
4632
- #: includes/core/class-builtin.php:1435
4633
- msgid "Haitian"
4634
- msgstr ""
4635
-
4636
- #: includes/core/class-builtin.php:1436
4637
- msgid "Hungarian"
4638
- msgstr ""
4639
-
4640
- #: includes/core/class-builtin.php:1437
4641
- msgid "Armenian"
4642
- msgstr ""
4643
-
4644
- #: includes/core/class-builtin.php:1438
4645
- msgid "Herero"
4646
- msgstr ""
4647
-
4648
- #: includes/core/class-builtin.php:1439
4649
- msgid "Interlingua (International Auxiliary Language Association)"
4650
- msgstr ""
4651
-
4652
- #: includes/core/class-builtin.php:1440
4653
- msgid "Indonesian"
4654
- msgstr ""
4655
-
4656
- #: includes/core/class-builtin.php:1441
4657
- msgid "Interlingue"
4658
- msgstr ""
4659
-
4660
- #: includes/core/class-builtin.php:1442
4661
- msgid "Igbo"
4662
- msgstr ""
4663
-
4664
- #: includes/core/class-builtin.php:1443
4665
- msgid "Sichuan Yi"
4666
- msgstr ""
4667
-
4668
- #: includes/core/class-builtin.php:1444
4669
- msgid "Inupiaq"
4670
- msgstr ""
4671
-
4672
- #: includes/core/class-builtin.php:1445
4673
- msgid "Ido"
4674
- msgstr ""
4675
-
4676
- #: includes/core/class-builtin.php:1446
4677
- msgid "Icelandic"
4678
- msgstr ""
4679
-
4680
- #: includes/core/class-builtin.php:1447
4681
- msgid "Italian"
4682
- msgstr ""
4683
-
4684
- #: includes/core/class-builtin.php:1448
4685
- msgid "Inuktitut"
4686
- msgstr ""
4687
-
4688
- #: includes/core/class-builtin.php:1449
4689
- msgid "Japanese"
4690
- msgstr ""
4691
-
4692
- #: includes/core/class-builtin.php:1450
4693
- msgid "Javanese"
4694
- msgstr ""
4695
-
4696
- #: includes/core/class-builtin.php:1451
4697
- msgid "Georgian"
4698
- msgstr ""
4699
-
4700
- #: includes/core/class-builtin.php:1452
4701
- msgid "Kongo"
4702
- msgstr ""
4703
-
4704
- #: includes/core/class-builtin.php:1453
4705
- msgid "Kikuyu"
4706
- msgstr ""
4707
-
4708
- #: includes/core/class-builtin.php:1454
4709
- msgid "Kwanyama"
4710
- msgstr ""
4711
-
4712
- #: includes/core/class-builtin.php:1455
4713
- msgid "Kazakh"
4714
- msgstr ""
4715
-
4716
- #: includes/core/class-builtin.php:1456
4717
- msgid "Kalaallisut"
4718
- msgstr ""
4719
-
4720
- #: includes/core/class-builtin.php:1457
4721
- msgid "Khmer"
4722
- msgstr ""
4723
-
4724
- #: includes/core/class-builtin.php:1458
4725
- msgid "Kannada"
4726
- msgstr ""
4727
-
4728
- #: includes/core/class-builtin.php:1459
4729
- msgid "Korean"
4730
- msgstr ""
4731
-
4732
- #: includes/core/class-builtin.php:1460
4733
- msgid "Kanuri"
4734
- msgstr ""
4735
-
4736
- #: includes/core/class-builtin.php:1461
4737
- msgid "Kashmiri"
4738
- msgstr ""
4739
-
4740
- #: includes/core/class-builtin.php:1462
4741
- msgid "Kurdish"
4742
- msgstr ""
4743
-
4744
- #: includes/core/class-builtin.php:1463
4745
- msgid "Komi"
4746
- msgstr ""
4747
-
4748
- #: includes/core/class-builtin.php:1464
4749
- msgid "Cornish"
4750
- msgstr ""
4751
-
4752
- #: includes/core/class-builtin.php:1465
4753
- msgid "Kirghiz"
4754
- msgstr ""
4755
-
4756
- #: includes/core/class-builtin.php:1466
4757
- msgid "Latin"
4758
- msgstr ""
4759
-
4760
- #: includes/core/class-builtin.php:1467
4761
- msgid "Luxembourgish"
4762
- msgstr ""
4763
-
4764
- #: includes/core/class-builtin.php:1468
4765
- msgid "Ganda"
4766
- msgstr ""
4767
-
4768
- #: includes/core/class-builtin.php:1469
4769
- msgid "Limburgish"
4770
- msgstr ""
4771
-
4772
- #: includes/core/class-builtin.php:1470
4773
- msgid "Lingala"
4774
- msgstr ""
4775
-
4776
- #: includes/core/class-builtin.php:1471
4777
- msgid "Lao"
4778
- msgstr ""
4779
-
4780
- #: includes/core/class-builtin.php:1472
4781
- msgid "Lithuanian"
4782
- msgstr ""
4783
-
4784
- #: includes/core/class-builtin.php:1473
4785
- msgid "Luba-Katanga"
4786
- msgstr ""
4787
-
4788
- #: includes/core/class-builtin.php:1474
4789
- msgid "Latvian"
4790
- msgstr ""
4791
-
4792
- #: includes/core/class-builtin.php:1475
4793
- msgid "Malagasy"
4794
- msgstr ""
4795
-
4796
- #: includes/core/class-builtin.php:1476
4797
- msgid "Marshallese"
4798
- msgstr ""
4799
-
4800
- #: includes/core/class-builtin.php:1477
4801
- msgid "Maori"
4802
- msgstr ""
4803
-
4804
- #: includes/core/class-builtin.php:1478
4805
- msgid "Macedonian"
4806
- msgstr ""
4807
-
4808
- #: includes/core/class-builtin.php:1479
4809
- msgid "Malayalam"
4810
- msgstr ""
4811
-
4812
- #: includes/core/class-builtin.php:1480
4813
- msgid "Mongolian"
4814
- msgstr ""
4815
-
4816
- #: includes/core/class-builtin.php:1481
4817
- msgid "Marathi"
4818
- msgstr ""
4819
-
4820
- #: includes/core/class-builtin.php:1482
4821
- msgid "Malay"
4822
- msgstr ""
4823
-
4824
- #: includes/core/class-builtin.php:1483
4825
- msgid "Maltese"
4826
- msgstr ""
4827
-
4828
- #: includes/core/class-builtin.php:1484
4829
- msgid "Burmese"
4830
- msgstr ""
4831
-
4832
- #: includes/core/class-builtin.php:1485 includes/core/class-builtin.php:1716
4833
- msgid "Nauru"
4834
- msgstr ""
4835
-
4836
- #: includes/core/class-builtin.php:1486
4837
- msgid "Norwegian Bokmal"
4838
- msgstr ""
4839
-
4840
- #: includes/core/class-builtin.php:1487
4841
- msgid "North Ndebele"
4842
- msgstr ""
4843
-
4844
- #: includes/core/class-builtin.php:1488
4845
- msgid "Nepali"
4846
- msgstr ""
4847
-
4848
- #: includes/core/class-builtin.php:1489
4849
- msgid "Ndonga"
4850
- msgstr ""
4851
-
4852
- #: includes/core/class-builtin.php:1490
4853
- msgid "Dutch"
4854
- msgstr ""
4855
-
4856
- #: includes/core/class-builtin.php:1491
4857
- msgid "Norwegian Nynorsk"
4858
- msgstr ""
4859
-
4860
- #: includes/core/class-builtin.php:1492
4861
- msgid "Norwegian"
4862
- msgstr ""
4863
-
4864
- #: includes/core/class-builtin.php:1493
4865
- msgid "South Ndebele"
4866
- msgstr ""
4867
-
4868
- #: includes/core/class-builtin.php:1494
4869
- msgid "Navajo"
4870
- msgstr ""
4871
-
4872
- #: includes/core/class-builtin.php:1495
4873
- msgid "Chichewa"
4874
- msgstr ""
4875
-
4876
- #: includes/core/class-builtin.php:1496
4877
- msgid "Occitan"
4878
- msgstr ""
4879
-
4880
- #: includes/core/class-builtin.php:1497
4881
- msgid "Ojibwa"
4882
- msgstr ""
4883
-
4884
- #: includes/core/class-builtin.php:1498
4885
- msgid "Oromo"
4886
- msgstr ""
4887
-
4888
- #: includes/core/class-builtin.php:1499
4889
- msgid "Oriya"
4890
- msgstr ""
4891
-
4892
- #: includes/core/class-builtin.php:1500
4893
- msgid "Ossetian"
4894
- msgstr ""
4895
-
4896
- #: includes/core/class-builtin.php:1501
4897
- msgid "Panjabi"
4898
- msgstr ""
4899
-
4900
- #: includes/core/class-builtin.php:1502
4901
- msgid "Pali"
4902
- msgstr ""
4903
-
4904
- #: includes/core/class-builtin.php:1503
4905
- msgid "Polish"
4906
- msgstr ""
4907
-
4908
- #: includes/core/class-builtin.php:1504
4909
- msgid "Pashto"
4910
- msgstr ""
4911
-
4912
- #: includes/core/class-builtin.php:1505
4913
- msgid "Portuguese"
4914
- msgstr ""
4915
-
4916
- #: includes/core/class-builtin.php:1506
4917
- msgid "Quechua"
4918
- msgstr ""
4919
-
4920
- #: includes/core/class-builtin.php:1507
4921
- msgid "Raeto-Romance"
4922
- msgstr ""
4923
-
4924
- #: includes/core/class-builtin.php:1508
4925
- msgid "Kirundi"
4926
- msgstr ""
4927
-
4928
- #: includes/core/class-builtin.php:1509
4929
- msgid "Romanian"
4930
- msgstr ""
4931
-
4932
- #: includes/core/class-builtin.php:1510
4933
- msgid "Russian"
4934
- msgstr ""
4935
-
4936
- #: includes/core/class-builtin.php:1511
4937
- msgid "Kinyarwanda"
4938
- msgstr ""
4939
-
4940
- #: includes/core/class-builtin.php:1512
4941
- msgid "Sanskrit"
4942
- msgstr ""
4943
-
4944
- #: includes/core/class-builtin.php:1513
4945
- msgid "Sardinian"
4946
- msgstr ""
4947
-
4948
- #: includes/core/class-builtin.php:1514
4949
- msgid "Sindhi"
4950
- msgstr ""
4951
-
4952
- #: includes/core/class-builtin.php:1515
4953
- msgid "Northern Sami"
4954
- msgstr ""
4955
-
4956
- #: includes/core/class-builtin.php:1516
4957
- msgid "Sango"
4958
- msgstr ""
4959
-
4960
- #: includes/core/class-builtin.php:1517
4961
- msgid "Sinhala"
4962
- msgstr ""
4963
-
4964
- #: includes/core/class-builtin.php:1518
4965
- msgid "Slovak"
4966
- msgstr ""
4967
-
4968
- #: includes/core/class-builtin.php:1519
4969
- msgid "Slovenian"
4970
- msgstr ""
4971
-
4972
- #: includes/core/class-builtin.php:1520
4973
- msgid "Samoan"
4974
- msgstr ""
4975
-
4976
- #: includes/core/class-builtin.php:1521
4977
- msgid "Shona"
4978
- msgstr ""
4979
-
4980
- #: includes/core/class-builtin.php:1522
4981
- msgid "Somali"
4982
- msgstr ""
4983
-
4984
- #: includes/core/class-builtin.php:1523
4985
- msgid "Albanian"
4986
- msgstr ""
4987
-
4988
- #: includes/core/class-builtin.php:1524
4989
- msgid "Serbian"
4990
- msgstr ""
4991
-
4992
- #: includes/core/class-builtin.php:1525
4993
- msgid "Swati"
4994
- msgstr ""
4995
-
4996
- #: includes/core/class-builtin.php:1526
4997
- msgid "Southern Sotho"
4998
- msgstr ""
4999
-
5000
- #: includes/core/class-builtin.php:1527
5001
- msgid "Sundanese"
5002
- msgstr ""
5003
-
5004
- #: includes/core/class-builtin.php:1528
5005
- msgid "Swedish"
5006
- msgstr ""
5007
-
5008
- #: includes/core/class-builtin.php:1529
5009
- msgid "Swahili"
5010
- msgstr ""
5011
-
5012
- #: includes/core/class-builtin.php:1530
5013
- msgid "Tamil"
5014
- msgstr ""
5015
-
5016
- #: includes/core/class-builtin.php:1531
5017
- msgid "Telugu"
5018
- msgstr ""
5019
-
5020
- #: includes/core/class-builtin.php:1532
5021
- msgid "Tajik"
5022
- msgstr ""
5023
-
5024
- #: includes/core/class-builtin.php:1533
5025
- msgid "Thai"
5026
- msgstr ""
5027
-
5028
- #: includes/core/class-builtin.php:1534
5029
- msgid "Tigrinya"
5030
- msgstr ""
5031
-
5032
- #: includes/core/class-builtin.php:1535
5033
- msgid "Turkmen"
5034
- msgstr ""
5035
-
5036
- #: includes/core/class-builtin.php:1536
5037
- msgid "Tagalog"
5038
- msgstr ""
5039
-
5040
- #: includes/core/class-builtin.php:1537
5041
- msgid "Tswana"
5042
- msgstr ""
5043
-
5044
- #: includes/core/class-builtin.php:1538 includes/core/class-builtin.php:1786
5045
- msgid "Tonga"
5046
- msgstr ""
5047
-
5048
- #: includes/core/class-builtin.php:1539
5049
- msgid "Turkish"
5050
- msgstr ""
5051
-
5052
- #: includes/core/class-builtin.php:1540
5053
- msgid "Tsonga"
5054
- msgstr ""
5055
-
5056
- #: includes/core/class-builtin.php:1541
5057
- msgid "Tatar"
5058
- msgstr ""
5059
-
5060
- #: includes/core/class-builtin.php:1542
5061
- msgid "Twi"
5062
- msgstr ""
5063
-
5064
- #: includes/core/class-builtin.php:1543
5065
- msgid "Tahitian"
5066
- msgstr ""
5067
-
5068
- #: includes/core/class-builtin.php:1544
5069
- msgid "Uighur"
5070
- msgstr ""
5071
-
5072
- #: includes/core/class-builtin.php:1545
5073
- msgid "Ukrainian"
5074
- msgstr ""
5075
-
5076
- #: includes/core/class-builtin.php:1546
5077
- msgid "Urdu"
5078
- msgstr ""
5079
-
5080
- #: includes/core/class-builtin.php:1547
5081
- msgid "Uzbek"
5082
- msgstr ""
5083
-
5084
- #: includes/core/class-builtin.php:1548
5085
- msgid "Venda"
5086
- msgstr ""
5087
-
5088
- #: includes/core/class-builtin.php:1549
5089
- msgid "Vietnamese"
5090
- msgstr ""
5091
-
5092
- #: includes/core/class-builtin.php:1550
5093
- msgid "Volapuk"
5094
- msgstr ""
5095
-
5096
- #: includes/core/class-builtin.php:1551
5097
- msgid "Walloon"
5098
- msgstr ""
5099
-
5100
- #: includes/core/class-builtin.php:1552
5101
- msgid "Wolof"
5102
- msgstr ""
5103
-
5104
- #: includes/core/class-builtin.php:1553
5105
- msgid "Xhosa"
5106
- msgstr ""
5107
-
5108
- #: includes/core/class-builtin.php:1554
5109
- msgid "Yiddish"
5110
- msgstr ""
5111
-
5112
- #: includes/core/class-builtin.php:1555
5113
- msgid "Yoruba"
5114
- msgstr ""
5115
-
5116
- #: includes/core/class-builtin.php:1556
5117
- msgid "Zhuang"
5118
- msgstr ""
5119
-
5120
- #: includes/core/class-builtin.php:1557
5121
- msgid "Chinese"
5122
- msgstr ""
5123
-
5124
- #: includes/core/class-builtin.php:1558
5125
- msgid "Zulu"
5126
- msgstr ""
5127
-
5128
- #: includes/core/class-builtin.php:1564
5129
- msgid "Afghanistan"
5130
- msgstr ""
5131
-
5132
- #: includes/core/class-builtin.php:1565
5133
- msgid "Åland Islands"
5134
- msgstr ""
5135
-
5136
- #: includes/core/class-builtin.php:1566
5137
- msgid "Albania"
5138
- msgstr ""
5139
-
5140
- #: includes/core/class-builtin.php:1567
5141
- msgid "Algeria"
5142
- msgstr ""
5143
-
5144
- #: includes/core/class-builtin.php:1568
5145
- msgid "American Samoa"
5146
- msgstr ""
5147
-
5148
- #: includes/core/class-builtin.php:1569
5149
- msgid "Andorra"
5150
- msgstr ""
5151
-
5152
- #: includes/core/class-builtin.php:1570
5153
- msgid "Angola"
5154
- msgstr ""
5155
-
5156
- #: includes/core/class-builtin.php:1571
5157
- msgid "Anguilla"
5158
- msgstr ""
5159
-
5160
- #: includes/core/class-builtin.php:1572
5161
- msgid "Antarctica"
5162
- msgstr ""
5163
-
5164
- #: includes/core/class-builtin.php:1573
5165
- msgid "Antigua and Barbuda"
5166
- msgstr ""
5167
-
5168
- #: includes/core/class-builtin.php:1574
5169
- msgid "Argentina"
5170
- msgstr ""
5171
-
5172
- #: includes/core/class-builtin.php:1575
5173
- msgid "Armenia"
5174
- msgstr ""
5175
-
5176
- #: includes/core/class-builtin.php:1576
5177
- msgid "Aruba"
5178
- msgstr ""
5179
-
5180
- #: includes/core/class-builtin.php:1577
5181
- msgid "Australia"
5182
- msgstr ""
5183
-
5184
- #: includes/core/class-builtin.php:1578
5185
- msgid "Austria"
5186
- msgstr ""
5187
-
5188
- #: includes/core/class-builtin.php:1579
5189
- msgid "Azerbaijan"
5190
- msgstr ""
5191
-
5192
- #: includes/core/class-builtin.php:1580
5193
- msgid "Bahamas"
5194
- msgstr ""
5195
-
5196
- #: includes/core/class-builtin.php:1581
5197
- msgid "Bahrain"
5198
- msgstr ""
5199
-
5200
- #: includes/core/class-builtin.php:1582
5201
- msgid "Bangladesh"
5202
- msgstr ""
5203
-
5204
- #: includes/core/class-builtin.php:1583
5205
- msgid "Barbados"
5206
- msgstr ""
5207
-
5208
- #: includes/core/class-builtin.php:1584
5209
- msgid "Belarus"
5210
- msgstr ""
5211
-
5212
- #: includes/core/class-builtin.php:1585
5213
- msgid "Belgium"
5214
- msgstr ""
5215
-
5216
- #: includes/core/class-builtin.php:1586
5217
- msgid "Belize"
5218
- msgstr ""
5219
-
5220
- #: includes/core/class-builtin.php:1587
5221
- msgid "Benin"
5222
- msgstr ""
5223
-
5224
- #: includes/core/class-builtin.php:1588
5225
- msgid "Bermuda"
5226
- msgstr ""
5227
-
5228
- #: includes/core/class-builtin.php:1589
5229
- msgid "Bhutan"
5230
- msgstr ""
5231
-
5232
- #: includes/core/class-builtin.php:1590
5233
- msgid "Bolivia, Plurinational State of"
5234
- msgstr ""
5235
-
5236
- #: includes/core/class-builtin.php:1591
5237
- msgid "Bosnia and Herzegovina"
5238
- msgstr ""
5239
-
5240
- #: includes/core/class-builtin.php:1592
5241
- msgid "Botswana"
5242
- msgstr ""
5243
-
5244
- #: includes/core/class-builtin.php:1593
5245
- msgid "Bouvet Island"
5246
- msgstr ""
5247
-
5248
- #: includes/core/class-builtin.php:1594
5249
- msgid "Brazil"
5250
- msgstr ""
5251
-
5252
- #: includes/core/class-builtin.php:1595
5253
- msgid "British Indian Ocean Territory"
5254
- msgstr ""
5255
-
5256
- #: includes/core/class-builtin.php:1596
5257
- msgid "Brunei Darussalam"
5258
- msgstr ""
5259
-
5260
- #: includes/core/class-builtin.php:1597
5261
- msgid "Bulgaria"
5262
- msgstr ""
5263
-
5264
- #: includes/core/class-builtin.php:1598
5265
- msgid "Burkina Faso"
5266
- msgstr ""
5267
-
5268
- #: includes/core/class-builtin.php:1599
5269
- msgid "Burundi"
5270
- msgstr ""
5271
-
5272
- #: includes/core/class-builtin.php:1600
5273
- msgid "Cambodia"
5274
- msgstr ""
5275
-
5276
- #: includes/core/class-builtin.php:1601
5277
- msgid "Cameroon"
5278
- msgstr ""
5279
-
5280
- #: includes/core/class-builtin.php:1602
5281
- msgid "Canada"
5282
- msgstr ""
5283
-
5284
- #: includes/core/class-builtin.php:1603
5285
- msgid "Cape Verde"
5286
- msgstr ""
5287
-
5288
- #: includes/core/class-builtin.php:1604
5289
- msgid "Cayman Islands"
5290
- msgstr ""
5291
-
5292
- #: includes/core/class-builtin.php:1605
5293
- msgid "Central African Republic"
5294
- msgstr ""
5295
-
5296
- #: includes/core/class-builtin.php:1606
5297
- msgid "Chad"
5298
- msgstr ""
5299
-
5300
- #: includes/core/class-builtin.php:1607
5301
- msgid "Chile"
5302
- msgstr ""
5303
-
5304
- #: includes/core/class-builtin.php:1608
5305
- msgid "China"
5306
- msgstr ""
5307
-
5308
- #: includes/core/class-builtin.php:1609
5309
- msgid "Christmas Island"
5310
- msgstr ""
5311
-
5312
- #: includes/core/class-builtin.php:1610
5313
- msgid "Cocos (Keeling) Islands"
5314
- msgstr ""
5315
-
5316
- #: includes/core/class-builtin.php:1611
5317
- msgid "Colombia"
5318
- msgstr ""
5319
-
5320
- #: includes/core/class-builtin.php:1612
5321
- msgid "Comoros"
5322
- msgstr ""
5323
-
5324
- #: includes/core/class-builtin.php:1613
5325
- msgid "Congo"
5326
- msgstr ""
5327
-
5328
- #: includes/core/class-builtin.php:1614
5329
- msgid "Congo, the Democratic Republic of the"
5330
- msgstr ""
5331
-
5332
- #: includes/core/class-builtin.php:1615
5333
- msgid "Cook Islands"
5334
- msgstr ""
5335
-
5336
- #: includes/core/class-builtin.php:1616
5337
- msgid "Costa Rica"
5338
- msgstr ""
5339
-
5340
- #: includes/core/class-builtin.php:1617
5341
- msgid "Côte d'Ivoire"
5342
- msgstr ""
5343
-
5344
- #: includes/core/class-builtin.php:1618
5345
- msgid "Croatia"
5346
- msgstr ""
5347
-
5348
- #: includes/core/class-builtin.php:1619
5349
- msgid "Cuba"
5350
- msgstr ""
5351
-
5352
- #: includes/core/class-builtin.php:1620
5353
- msgid "Cyprus"
5354
- msgstr ""
5355
-
5356
- #: includes/core/class-builtin.php:1621
5357
- msgid "Czech Republic"
5358
- msgstr ""
5359
-
5360
- #: includes/core/class-builtin.php:1622
5361
- msgid "Denmark"
5362
- msgstr ""
5363
-
5364
- #: includes/core/class-builtin.php:1623
5365
- msgid "Djibouti"
5366
- msgstr ""
5367
-
5368
- #: includes/core/class-builtin.php:1624
5369
- msgid "Dominica"
5370
- msgstr ""
5371
-
5372
- #: includes/core/class-builtin.php:1625
5373
- msgid "Dominican Republic"
5374
- msgstr ""
5375
-
5376
- #: includes/core/class-builtin.php:1626
5377
- msgid "Ecuador"
5378
- msgstr ""
5379
-
5380
- #: includes/core/class-builtin.php:1627
5381
- msgid "Egypt"
5382
- msgstr ""
5383
-
5384
- #: includes/core/class-builtin.php:1628
5385
- msgid "El Salvador"
5386
- msgstr ""
5387
-
5388
- #: includes/core/class-builtin.php:1629
5389
- msgid "Equatorial Guinea"
5390
- msgstr ""
5391
-
5392
- #: includes/core/class-builtin.php:1630
5393
- msgid "Eritrea"
5394
- msgstr ""
5395
-
5396
- #: includes/core/class-builtin.php:1631
5397
- msgid "Estonia"
5398
- msgstr ""
5399
-
5400
- #: includes/core/class-builtin.php:1632
5401
- msgid "Ethiopia"
5402
- msgstr ""
5403
-
5404
- #: includes/core/class-builtin.php:1633
5405
- msgid "Falkland Islands (Malvinas)"
5406
- msgstr ""
5407
-
5408
- #: includes/core/class-builtin.php:1634
5409
- msgid "Faroe Islands"
5410
- msgstr ""
5411
-
5412
- #: includes/core/class-builtin.php:1635
5413
- msgid "Fiji"
5414
- msgstr ""
5415
-
5416
- #: includes/core/class-builtin.php:1636
5417
- msgid "Finland"
5418
- msgstr ""
5419
-
5420
- #: includes/core/class-builtin.php:1637
5421
- msgid "France"
5422
- msgstr ""
5423
-
5424
- #: includes/core/class-builtin.php:1638
5425
- msgid "French Guiana"
5426
- msgstr ""
5427
-
5428
- #: includes/core/class-builtin.php:1639
5429
- msgid "French Polynesia"
5430
- msgstr ""
5431
-
5432
- #: includes/core/class-builtin.php:1640
5433
- msgid "French Southern Territories"
5434
- msgstr ""
5435
-
5436
- #: includes/core/class-builtin.php:1641
5437
- msgid "Gabon"
5438
- msgstr ""
5439
-
5440
- #: includes/core/class-builtin.php:1642
5441
- msgid "Gambia"
5442
- msgstr ""
5443
-
5444
- #: includes/core/class-builtin.php:1643
5445
- msgid "Georgia"
5446
- msgstr ""
5447
-
5448
- #: includes/core/class-builtin.php:1644
5449
- msgid "Germany"
5450
- msgstr ""
5451
-
5452
- #: includes/core/class-builtin.php:1645
5453
- msgid "Ghana"
5454
- msgstr ""
5455
-
5456
- #: includes/core/class-builtin.php:1646
5457
- msgid "Gibraltar"
5458
- msgstr ""
5459
-
5460
- #: includes/core/class-builtin.php:1647
5461
- msgid "Greece"
5462
- msgstr ""
5463
-
5464
- #: includes/core/class-builtin.php:1648
5465
- msgid "Greenland"
5466
- msgstr ""
5467
-
5468
- #: includes/core/class-builtin.php:1649
5469
- msgid "Grenada"
5470
- msgstr ""
5471
-
5472
- #: includes/core/class-builtin.php:1650
5473
- msgid "Guadeloupe"
5474
- msgstr ""
5475
-
5476
- #: includes/core/class-builtin.php:1651
5477
- msgid "Guam"
5478
- msgstr ""
5479
-
5480
- #: includes/core/class-builtin.php:1652
5481
- msgid "Guatemala"
5482
- msgstr ""
5483
-
5484
- #: includes/core/class-builtin.php:1653
5485
- msgid "Guernsey"
5486
- msgstr ""
5487
-
5488
- #: includes/core/class-builtin.php:1654
5489
- msgid "Guinea"
5490
- msgstr ""
5491
-
5492
- #: includes/core/class-builtin.php:1655
5493
- msgid "Guinea-Bissau"
5494
- msgstr ""
5495
-
5496
- #: includes/core/class-builtin.php:1656
5497
- msgid "Guyana"
5498
- msgstr ""
5499
-
5500
- #: includes/core/class-builtin.php:1657
5501
- msgid "Haiti"
5502
- msgstr ""
5503
-
5504
- #: includes/core/class-builtin.php:1658
5505
- msgid "Heard Island and McDonald Islands"
5506
- msgstr ""
5507
-
5508
- #: includes/core/class-builtin.php:1659
5509
- msgid "Holy See (Vatican City State)"
5510
- msgstr ""
5511
-
5512
- #: includes/core/class-builtin.php:1660
5513
- msgid "Honduras"
5514
- msgstr ""
5515
-
5516
- #: includes/core/class-builtin.php:1661
5517
- msgid "Hong Kong"
5518
- msgstr ""
5519
-
5520
- #: includes/core/class-builtin.php:1662
5521
- msgid "Hungary"
5522
- msgstr ""
5523
-
5524
- #: includes/core/class-builtin.php:1663
5525
- msgid "Iceland"
5526
- msgstr ""
5527
-
5528
- #: includes/core/class-builtin.php:1664
5529
- msgid "India"
5530
- msgstr ""
5531
-
5532
- #: includes/core/class-builtin.php:1665
5533
- msgid "Indonesia"
5534
- msgstr ""
5535
-
5536
- #: includes/core/class-builtin.php:1666
5537
- msgid "Iran, Islamic Republic of"
5538
- msgstr ""
5539
-
5540
- #: includes/core/class-builtin.php:1667
5541
- msgid "Iraq"
5542
- msgstr ""
5543
-
5544
- #: includes/core/class-builtin.php:1668
5545
- msgid "Ireland"
5546
- msgstr ""
5547
-
5548
- #: includes/core/class-builtin.php:1669
5549
- msgid "Isle of Man"
5550
- msgstr ""
5551
-
5552
- #: includes/core/class-builtin.php:1670
5553
- msgid "Israel"
5554
- msgstr ""
5555
-
5556
- #: includes/core/class-builtin.php:1671
5557
- msgid "Italy"
5558
- msgstr ""
5559
-
5560
- #: includes/core/class-builtin.php:1672
5561
- msgid "Jamaica"
5562
- msgstr ""
5563
-
5564
- #: includes/core/class-builtin.php:1673
5565
- msgid "Japan"
5566
- msgstr ""
5567
-
5568
- #: includes/core/class-builtin.php:1674
5569
- msgid "Jersey"
5570
- msgstr ""
5571
-
5572
- #: includes/core/class-builtin.php:1675
5573
- msgid "Jordan"
5574
- msgstr ""
5575
-
5576
- #: includes/core/class-builtin.php:1676
5577
- msgid "Kazakhstan"
5578
- msgstr ""
5579
-
5580
- #: includes/core/class-builtin.php:1677
5581
- msgid "Kenya"
5582
- msgstr ""
5583
-
5584
- #: includes/core/class-builtin.php:1678
5585
- msgid "Kiribati"
5586
- msgstr ""
5587
-
5588
- #: includes/core/class-builtin.php:1679
5589
- msgid "Korea, Democratic People's Republic of"
5590
- msgstr ""
5591
-
5592
- #: includes/core/class-builtin.php:1680
5593
- msgid "Korea, Republic of"
5594
- msgstr ""
5595
-
5596
- #: includes/core/class-builtin.php:1681
5597
- msgid "Kuwait"
5598
- msgstr ""
5599
-
5600
- #: includes/core/class-builtin.php:1682
5601
- msgid "Kyrgyzstan"
5602
- msgstr ""
5603
-
5604
- #: includes/core/class-builtin.php:1683
5605
- msgid "Lao People's Democratic Republic"
5606
- msgstr ""
5607
-
5608
- #: includes/core/class-builtin.php:1684
5609
- msgid "Latvia"
5610
- msgstr ""
5611
-
5612
- #: includes/core/class-builtin.php:1685
5613
- msgid "Lebanon"
5614
- msgstr ""
5615
-
5616
- #: includes/core/class-builtin.php:1686
5617
- msgid "Lesotho"
5618
- msgstr ""
5619
-
5620
- #: includes/core/class-builtin.php:1687
5621
- msgid "Liberia"
5622
- msgstr ""
5623
-
5624
- #: includes/core/class-builtin.php:1688
5625
- msgid "Libyan Arab Jamahiriya"
5626
- msgstr ""
5627
-
5628
- #: includes/core/class-builtin.php:1689
5629
- msgid "Liechtenstein"
5630
- msgstr ""
5631
-
5632
- #: includes/core/class-builtin.php:1690
5633
- msgid "Lithuania"
5634
- msgstr ""
5635
-
5636
- #: includes/core/class-builtin.php:1691
5637
- msgid "Luxembourg"
5638
- msgstr ""
5639
-
5640
- #: includes/core/class-builtin.php:1692
5641
- msgid "Macao"
5642
- msgstr ""
5643
-
5644
- #: includes/core/class-builtin.php:1693
5645
- msgid "Macedonia, the former Yugoslav Republic of"
5646
- msgstr ""
5647
-
5648
- #: includes/core/class-builtin.php:1694
5649
- msgid "Madagascar"
5650
- msgstr ""
5651
-
5652
- #: includes/core/class-builtin.php:1695
5653
- msgid "Malawi"
5654
- msgstr ""
5655
-
5656
- #: includes/core/class-builtin.php:1696
5657
- msgid "Malaysia"
5658
- msgstr ""
5659
-
5660
- #: includes/core/class-builtin.php:1697
5661
- msgid "Maldives"
5662
- msgstr ""
5663
-
5664
- #: includes/core/class-builtin.php:1698
5665
- msgid "Mali"
5666
- msgstr ""
5667
-
5668
- #: includes/core/class-builtin.php:1699
5669
- msgid "Malta"
5670
- msgstr ""
5671
-
5672
- #: includes/core/class-builtin.php:1700
5673
- msgid "Marshall Islands"
5674
- msgstr ""
5675
-
5676
- #: includes/core/class-builtin.php:1701
5677
- msgid "Martinique"
5678
- msgstr ""
5679
-
5680
- #: includes/core/class-builtin.php:1702
5681
- msgid "Mauritania"
5682
- msgstr ""
5683
-
5684
- #: includes/core/class-builtin.php:1703
5685
- msgid "Mauritius"
5686
- msgstr ""
5687
-
5688
- #: includes/core/class-builtin.php:1704
5689
- msgid "Mayotte"
5690
- msgstr ""
5691
-
5692
- #: includes/core/class-builtin.php:1705
5693
- msgid "Mexico"
5694
- msgstr ""
5695
-
5696
- #: includes/core/class-builtin.php:1706
5697
- msgid "Micronesia, Federated States of"
5698
- msgstr ""
5699
-
5700
- #: includes/core/class-builtin.php:1707
5701
- msgid "Moldova, Republic of"
5702
- msgstr ""
5703
-
5704
- #: includes/core/class-builtin.php:1708
5705
- msgid "Monaco"
5706
- msgstr ""
5707
-
5708
- #: includes/core/class-builtin.php:1709
5709
- msgid "Mongolia"
5710
- msgstr ""
5711
-
5712
- #: includes/core/class-builtin.php:1710
5713
- msgid "Montenegro"
5714
- msgstr ""
5715
-
5716
- #: includes/core/class-builtin.php:1711
5717
- msgid "Montserrat"
5718
- msgstr ""
5719
-
5720
- #: includes/core/class-builtin.php:1712
5721
- msgid "Morocco"
5722
- msgstr ""
5723
-
5724
- #: includes/core/class-builtin.php:1713
5725
- msgid "Mozambique"
5726
- msgstr ""
5727
-
5728
- #: includes/core/class-builtin.php:1714
5729
- msgid "Myanmar"
5730
- msgstr ""
5731
-
5732
- #: includes/core/class-builtin.php:1715
5733
- msgid "Namibia"
5734
- msgstr ""
5735
-
5736
- #: includes/core/class-builtin.php:1717
5737
- msgid "Nepal"
5738
- msgstr ""
5739
-
5740
- #: includes/core/class-builtin.php:1718
5741
- msgid "Netherlands"
5742
- msgstr ""
5743
-
5744
- #: includes/core/class-builtin.php:1719
5745
- msgid "Netherlands Antilles"
5746
- msgstr ""
5747
-
5748
- #: includes/core/class-builtin.php:1720
5749
- msgid "New Caledonia"
5750
- msgstr ""
5751
-
5752
- #: includes/core/class-builtin.php:1721
5753
- msgid "New Zealand"
5754
- msgstr ""
5755
-
5756
- #: includes/core/class-builtin.php:1722
5757
- msgid "Nicaragua"
5758
- msgstr ""
5759
-
5760
- #: includes/core/class-builtin.php:1723
5761
- msgid "Niger"
5762
- msgstr ""
5763
-
5764
- #: includes/core/class-builtin.php:1724
5765
- msgid "Nigeria"
5766
- msgstr ""
5767
-
5768
- #: includes/core/class-builtin.php:1725
5769
- msgid "Niue"
5770
- msgstr ""
5771
-
5772
- #: includes/core/class-builtin.php:1726
5773
- msgid "Norfolk Island"
5774
- msgstr ""
5775
-
5776
- #: includes/core/class-builtin.php:1727
5777
- msgid "Northern Mariana Islands"
5778
- msgstr ""
5779
-
5780
- #: includes/core/class-builtin.php:1728
5781
- msgid "Norway"
5782
- msgstr ""
5783
-
5784
- #: includes/core/class-builtin.php:1729
5785
- msgid "Oman"
5786
- msgstr ""
5787
-
5788
- #: includes/core/class-builtin.php:1730
5789
- msgid "Pakistan"
5790
- msgstr ""
5791
-
5792
- #: includes/core/class-builtin.php:1731
5793
- msgid "Palau"
5794
- msgstr ""
5795
-
5796
- #: includes/core/class-builtin.php:1732
5797
- msgid "Palestine"
5798
- msgstr ""
5799
-
5800
- #: includes/core/class-builtin.php:1733
5801
- msgid "Panama"
5802
- msgstr ""
5803
-
5804
- #: includes/core/class-builtin.php:1734
5805
- msgid "Papua New Guinea"
5806
- msgstr ""
5807
-
5808
- #: includes/core/class-builtin.php:1735
5809
- msgid "Paraguay"
5810
- msgstr ""
5811
-
5812
- #: includes/core/class-builtin.php:1736
5813
- msgid "Peru"
5814
- msgstr ""
5815
-
5816
- #: includes/core/class-builtin.php:1737
5817
- msgid "Philippines"
5818
- msgstr ""
5819
-
5820
- #: includes/core/class-builtin.php:1738
5821
- msgid "Pitcairn"
5822
- msgstr ""
5823
-
5824
- #: includes/core/class-builtin.php:1739
5825
- msgid "Poland"
5826
- msgstr ""
5827
-
5828
- #: includes/core/class-builtin.php:1740
5829
- msgid "Portugal"
5830
- msgstr ""
5831
-
5832
- #: includes/core/class-builtin.php:1741
5833
- msgid "Puerto Rico"
5834
- msgstr ""
5835
-
5836
- #: includes/core/class-builtin.php:1742
5837
- msgid "Qatar"
5838
- msgstr ""
5839
-
5840
- #: includes/core/class-builtin.php:1743
5841
- msgid "Réunion"
5842
- msgstr ""
5843
-
5844
- #: includes/core/class-builtin.php:1744
5845
- msgid "Romania"
5846
- msgstr ""
5847
-
5848
- #: includes/core/class-builtin.php:1745
5849
- msgid "Russian Federation"
5850
- msgstr ""
5851
-
5852
- #: includes/core/class-builtin.php:1746
5853
- msgid "Rwanda"
5854
- msgstr ""
5855
-
5856
- #: includes/core/class-builtin.php:1747
5857
- msgid "Saint Barthélemy"
5858
- msgstr ""
5859
-
5860
- #: includes/core/class-builtin.php:1748
5861
- msgid "Saint Helena"
5862
- msgstr ""
5863
-
5864
- #: includes/core/class-builtin.php:1749
5865
- msgid "Saint Kitts and Nevis"
5866
- msgstr ""
5867
-
5868
- #: includes/core/class-builtin.php:1750
5869
- msgid "Saint Lucia"
5870
- msgstr ""
5871
-
5872
- #: includes/core/class-builtin.php:1751
5873
- msgid "Saint Martin (French part)"
5874
- msgstr ""
5875
-
5876
- #: includes/core/class-builtin.php:1752
5877
- msgid "Saint Pierre and Miquelon"
5878
- msgstr ""
5879
-
5880
- #: includes/core/class-builtin.php:1753
5881
- msgid "Saint Vincent and the Grenadines"
5882
- msgstr ""
5883
-
5884
- #: includes/core/class-builtin.php:1754
5885
- msgid "Samoa"
5886
- msgstr ""
5887
-
5888
- #: includes/core/class-builtin.php:1755
5889
- msgid "San Marino"
5890
- msgstr ""
5891
-
5892
- #: includes/core/class-builtin.php:1756
5893
- msgid "Sao Tome and Principe"
5894
- msgstr ""
5895
-
5896
- #: includes/core/class-builtin.php:1757
5897
- msgid "Saudi Arabia"
5898
- msgstr ""
5899
-
5900
- #: includes/core/class-builtin.php:1758
5901
- msgid "Senegal"
5902
- msgstr ""
5903
-
5904
- #: includes/core/class-builtin.php:1759
5905
- msgid "Serbia"
5906
- msgstr ""
5907
-
5908
- #: includes/core/class-builtin.php:1760
5909
- msgid "Seychelles"
5910
- msgstr ""
5911
-
5912
- #: includes/core/class-builtin.php:1761
5913
- msgid "Sierra Leone"
5914
- msgstr ""
5915
-
5916
- #: includes/core/class-builtin.php:1762
5917
- msgid "Singapore"
5918
- msgstr ""
5919
-
5920
- #: includes/core/class-builtin.php:1763
5921
- msgid "Slovakia"
5922
- msgstr ""
5923
-
5924
- #: includes/core/class-builtin.php:1764
5925
- msgid "Slovenia"
5926
- msgstr ""
5927
-
5928
- #: includes/core/class-builtin.php:1765
5929
- msgid "Solomon Islands"
5930
- msgstr ""
5931
-
5932
- #: includes/core/class-builtin.php:1766
5933
- msgid "Somalia"
5934
- msgstr ""
5935
-
5936
- #: includes/core/class-builtin.php:1767
5937
- msgid "South Africa"
5938
- msgstr ""
5939
-
5940
- #: includes/core/class-builtin.php:1768
5941
- msgid "South Georgia and the South Sandwich Islands"
5942
- msgstr ""
5943
-
5944
- #: includes/core/class-builtin.php:1769
5945
- msgid "South Sudan"
5946
- msgstr ""
5947
-
5948
- #: includes/core/class-builtin.php:1770
5949
- msgid "Spain"
5950
- msgstr ""
5951
-
5952
- #: includes/core/class-builtin.php:1771
5953
- msgid "Sri Lanka"
5954
- msgstr ""
5955
-
5956
- #: includes/core/class-builtin.php:1772
5957
- msgid "Sudan"
5958
- msgstr ""
5959
-
5960
- #: includes/core/class-builtin.php:1773
5961
- msgid "Suriname"
5962
- msgstr ""
5963
-
5964
- #: includes/core/class-builtin.php:1774
5965
- msgid "Svalbard and Jan Mayen"
5966
- msgstr ""
5967
-
5968
- #: includes/core/class-builtin.php:1775
5969
- msgid "Swaziland"
5970
- msgstr ""
5971
-
5972
- #: includes/core/class-builtin.php:1776
5973
- msgid "Sweden"
5974
- msgstr ""
5975
-
5976
- #: includes/core/class-builtin.php:1777
5977
- msgid "Switzerland"
5978
- msgstr ""
5979
-
5980
- #: includes/core/class-builtin.php:1778
5981
- msgid "Syrian Arab Republic"
5982
- msgstr ""
5983
-
5984
- #: includes/core/class-builtin.php:1779
5985
- msgid "Taiwan, Province of China"
5986
- msgstr ""
5987
-
5988
- #: includes/core/class-builtin.php:1780
5989
- msgid "Tajikistan"
5990
- msgstr ""
5991
-
5992
- #: includes/core/class-builtin.php:1781
5993
- msgid "Tanzania, United Republic of"
5994
- msgstr ""
5995
-
5996
- #: includes/core/class-builtin.php:1782
5997
- msgid "Thailand"
5998
- msgstr ""
5999
-
6000
- #: includes/core/class-builtin.php:1783
6001
- msgid "Timor-Leste"
6002
- msgstr ""
6003
-
6004
- #: includes/core/class-builtin.php:1784
6005
- msgid "Togo"
6006
- msgstr ""
6007
-
6008
- #: includes/core/class-builtin.php:1785
6009
- msgid "Tokelau"
6010
- msgstr ""
6011
-
6012
- #: includes/core/class-builtin.php:1787
6013
- msgid "Trinidad and Tobago"
6014
- msgstr ""
6015
-
6016
- #: includes/core/class-builtin.php:1788
6017
- msgid "Tunisia"
6018
- msgstr ""
6019
-
6020
- #: includes/core/class-builtin.php:1789
6021
- msgid "Turkey"
6022
- msgstr ""
6023
-
6024
- #: includes/core/class-builtin.php:1790
6025
- msgid "Turkmenistan"
6026
- msgstr ""
6027
-
6028
- #: includes/core/class-builtin.php:1791
6029
- msgid "Turks and Caicos Islands"
6030
- msgstr ""
6031
-
6032
- #: includes/core/class-builtin.php:1792
6033
- msgid "Tuvalu"
6034
- msgstr ""
6035
-
6036
- #: includes/core/class-builtin.php:1793
6037
- msgid "Uganda"
6038
- msgstr ""
6039
-
6040
- #: includes/core/class-builtin.php:1794
6041
- msgid "Ukraine"
6042
- msgstr ""
6043
-
6044
- #: includes/core/class-builtin.php:1795
6045
- msgid "United Arab Emirates"
6046
- msgstr ""
6047
-
6048
- #: includes/core/class-builtin.php:1796
6049
- msgid "United Kingdom"
6050
- msgstr ""
6051
-
6052
- #: includes/core/class-builtin.php:1797
6053
- msgid "United States"
6054
- msgstr ""
6055
-
6056
- #: includes/core/class-builtin.php:1798
6057
- msgid "United States Minor Outlying Islands"
6058
- msgstr ""
6059
-
6060
- #: includes/core/class-builtin.php:1799
6061
- msgid "Uruguay"
6062
- msgstr ""
6063
-
6064
- #: includes/core/class-builtin.php:1800
6065
- msgid "Uzbekistan"
6066
- msgstr ""
6067
-
6068
- #: includes/core/class-builtin.php:1801
6069
- msgid "Vanuatu"
6070
- msgstr ""
6071
-
6072
- #: includes/core/class-builtin.php:1802
6073
- msgid "Venezuela, Bolivarian Republic of"
6074
- msgstr ""
6075
-
6076
- #: includes/core/class-builtin.php:1803
6077
- msgid "Viet Nam"
6078
- msgstr ""
6079
-
6080
- #: includes/core/class-builtin.php:1804
6081
- msgid "Virgin Islands, British"
6082
- msgstr ""
6083
-
6084
- #: includes/core/class-builtin.php:1805
6085
- msgid "Virgin Islands, U.S."
6086
- msgstr ""
6087
-
6088
- #: includes/core/class-builtin.php:1806
6089
- msgid "Wallis and Futuna"
6090
- msgstr ""
6091
-
6092
- #: includes/core/class-builtin.php:1807
6093
- msgid "Western Sahara"
6094
- msgstr ""
6095
-
6096
- #: includes/core/class-builtin.php:1808
6097
- msgid "Yemen"
6098
- msgstr ""
6099
-
6100
- #: includes/core/class-builtin.php:1809
6101
- msgid "Zambia"
6102
- msgstr ""
6103
-
6104
- #: includes/core/class-builtin.php:1810
6105
- msgid "Zimbabwe"
6106
- msgstr ""
6107
-
6108
- #: includes/core/class-common.php:57
6109
- msgid "Form"
6110
- msgstr ""
6111
-
6112
- #: includes/core/class-common.php:59
6113
- msgid "Add New Form"
6114
- msgstr ""
6115
-
6116
- #: includes/core/class-common.php:60
6117
- msgid "Edit Form"
6118
- msgstr ""
6119
-
6120
- #: includes/core/class-common.php:61
6121
- msgid "You did not create any forms yet"
6122
- msgstr ""
6123
-
6124
- #: includes/core/class-common.php:63
6125
- msgid "Search Forms"
6126
- msgstr ""
6127
-
6128
- #: includes/core/class-common.php:86
6129
- msgid "Member Directory"
6130
- msgstr ""
6131
-
6132
- #: includes/core/class-common.php:88
6133
- msgid "Add New Member Directory"
6134
- msgstr ""
6135
-
6136
- #: includes/core/class-common.php:89
6137
- msgid "Edit Member Directory"
6138
- msgstr ""
6139
-
6140
- #: includes/core/class-common.php:90
6141
- msgid "You did not create any member directories yet"
6142
- msgstr ""
6143
-
6144
- #: includes/core/class-common.php:92
6145
- msgid "Search Member Directories"
6146
- msgstr ""
6147
-
6148
- #: includes/core/class-cron.php:62
6149
- msgid "Once Weekly"
6150
- msgstr ""
6151
-
6152
- #: includes/core/class-date-time.php:54
6153
- msgid "just now"
6154
- msgstr ""
6155
-
6156
- #: includes/core/class-date-time.php:62
6157
- #, php-format
6158
- msgid "%s min"
6159
- msgstr ""
6160
-
6161
- #: includes/core/class-date-time.php:64
6162
- #, php-format
6163
- msgid "%s mins"
6164
- msgstr ""
6165
-
6166
- #: includes/core/class-date-time.php:73
6167
- #, php-format
6168
- msgid "%s hr"
6169
- msgstr ""
6170
-
6171
- #: includes/core/class-date-time.php:75
6172
- #, php-format
6173
- msgid "%s hrs"
6174
- msgstr ""
6175
-
6176
- #: includes/core/class-date-time.php:84
6177
- #, php-format
6178
- msgid "Yesterday at %s"
6179
- msgstr ""
6180
-
6181
- #: includes/core/class-date-time.php:86 includes/core/class-date-time.php:91
6182
- #: includes/core/class-date-time.php:95 includes/core/class-date-time.php:99
6183
- #, php-format
6184
- msgid "%s at %s"
6185
- msgstr ""
6186
-
6187
- #: includes/core/class-date-time.php:148
6188
- #, php-format
6189
- msgid "%s year old"
6190
- msgstr ""
6191
-
6192
- #: includes/core/class-date-time.php:151
6193
- #, php-format
6194
- msgid "%s years old"
6195
- msgstr ""
6196
-
6197
- #: includes/core/class-date-time.php:154
6198
- msgid "Less than 1 year old"
6199
- msgstr ""
6200
-
6201
- #: includes/core/class-external-integrations.php:367
6202
- #, php-format
6203
- msgid "Edit the %s translation"
6204
- msgstr ""
6205
-
6206
- #: includes/core/class-external-integrations.php:374
6207
- #, php-format
6208
- msgid "Add translation to %s"
6209
- msgstr ""
6210
-
6211
- #: includes/core/class-fields.php:1160
6212
- msgid "Custom Field"
6213
- msgstr ""
6214
-
6215
- #: includes/core/class-fields.php:1457
6216
- msgid "Please upload a valid image!"
6217
- msgstr ""
6218
-
6219
- #: includes/core/class-fields.php:1464 includes/core/class-fields.php:1485
6220
- msgid "Upload"
6221
- msgstr ""
6222
-
6223
- #: includes/core/class-fields.php:1465
6224
- msgid "Sorry this is not a valid image."
6225
- msgstr ""
6226
-
6227
- #: includes/core/class-fields.php:1466
6228
- msgid "This image is too large!"
6229
- msgstr ""
6230
-
6231
- #: includes/core/class-fields.php:1467
6232
- msgid "This image is too small!"
6233
- msgstr ""
6234
-
6235
- #: includes/core/class-fields.php:1468
6236
- msgid "You can only upload one image"
6237
- msgstr ""
6238
-
6239
- #: includes/core/class-fields.php:1935
6240
- msgid "Current Password"
6241
- msgstr ""
6242
-
6243
- #: includes/core/class-fields.php:1964
6244
- msgid "New Password"
6245
- msgstr ""
6246
-
6247
- #: includes/core/class-fields.php:1996
6248
- #, php-format
6249
- msgid "Confirm %s"
6250
- msgstr ""
6251
-
6252
- #: includes/core/class-fields.php:2231 includes/core/class-fields.php:2292
6253
- msgid "Upload Photo"
6254
- msgstr ""
6255
-
6256
- #: includes/core/class-fields.php:2246 includes/core/class-fields.php:2270
6257
- #: includes/core/um-actions-profile.php:724
6258
- msgid "Change photo"
6259
- msgstr ""
6260
-
6261
- #: includes/core/class-fields.php:2270 includes/core/class-fields.php:2353
6262
- msgid "Processing..."
6263
- msgstr ""
6264
-
6265
- #: includes/core/class-fields.php:2320 includes/core/um-filters-fields.php:230
6266
- msgid "This file has been removed."
6267
- msgstr ""
6268
-
6269
- #: includes/core/class-fields.php:2323 includes/core/class-fields.php:2353
6270
- msgid "Change file"
6271
- msgstr ""
6272
-
6273
- #: includes/core/class-fields.php:2353
6274
- msgid "Save"
6275
- msgstr ""
6276
-
6277
- #: includes/core/class-fields.php:3767
6278
- #, php-format
6279
- msgid ""
6280
- "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
6281
- "information!"
6282
- msgstr ""
6283
-
6284
- #: includes/core/class-fields.php:3769
6285
- msgid "This user has not added any information to their profile yet."
6286
- msgstr ""
6287
-
6288
- #: includes/core/class-files.php:100
6289
- msgid "Invalid parameters"
6290
- msgstr ""
6291
-
6292
- #: includes/core/class-files.php:105
6293
- msgid "Invalid coordinates"
6294
- msgstr ""
6295
-
6296
- #: includes/core/class-files.php:110
6297
- msgid "Invalid file ownership"
6298
- msgstr ""
6299
-
6300
- #: includes/core/class-files.php:186 includes/core/class-files.php:271
6301
- msgid "A theme or plugin compatibility issue"
6302
- msgstr ""
6303
-
6304
- #: includes/core/class-files.php:814
6305
- msgid "Ultimate Member: Not a valid temp file"
6306
- msgstr ""
6307
-
6308
- #: includes/core/class-files.php:942
6309
- msgid "Invalid user ID: "
6310
- msgstr ""
6311
-
6312
- #: includes/core/class-files.php:951 includes/core/class-files.php:979
6313
- msgid "Unauthorized to do this attempt."
6314
- msgstr ""
6315
-
6316
- #: includes/core/class-form.php:56 includes/core/class-profile.php:54
6317
- #: includes/core/class-profile.php:70
6318
- msgid "You can not edit this user"
6319
- msgstr ""
6320
-
6321
- #: includes/core/class-password.php:53
6322
- msgid "This is not a valid hash, or it has expired."
6323
- msgstr ""
6324
-
6325
- #: includes/core/class-permalinks.php:180
6326
- msgid "This activation link is expired or have already been used."
6327
- msgstr ""
6328
-
6329
- #. translators: %s: support forums URL
6330
- #: includes/core/class-plugin-updater.php:220
6331
- #, php-format
6332
- msgid ""
6333
- "An unexpected error occurred. Something may be wrong with https://"
6334
- "ultimatemember.com/ or this server&#8217;s configuration. If you continue to "
6335
- "have problems, please try the <a href=\"%s\">support forums</a>."
6336
- msgstr ""
6337
-
6338
- #: includes/core/class-plugin-updater.php:221
6339
- msgid "https://wordpress.org/support/"
6340
- msgstr ""
6341
-
6342
- #: includes/core/class-profile.php:106
6343
- msgid "About"
6344
- msgstr ""
6345
-
6346
- #: includes/core/class-profile.php:110
6347
- msgid "Posts"
6348
- msgstr ""
6349
-
6350
- #: includes/core/class-profile.php:114
6351
- msgid "Comments"
6352
- msgstr ""
6353
-
6354
- #: includes/core/class-profile.php:424 includes/core/class-mail.php:609
6355
- #: includes/core/class-password.php:701
6356
- msgid "Your set password"
6357
- msgstr ""
6358
-
6359
- #: includes/core/class-rest-api.php:217
6360
- msgid "You must specify both a token and API key!"
6361
- msgstr ""
6362
-
6363
- #: includes/core/class-rest-api.php:229
6364
- msgid "Your request could not be authenticated"
6365
- msgstr ""
6366
-
6367
- #: includes/core/class-rest-api.php:241
6368
- msgid "Invalid API key"
6369
- msgstr ""
6370
-
6371
- #: includes/core/class-rest-api.php:420 includes/core/class-rest-api.php:579
6372
- #: includes/core/class-rest-api.php:612
6373
- msgid "You must provide a user ID"
6374
- msgstr ""
6375
-
6376
- #: includes/core/class-rest-api.php:425
6377
- msgid "You need to provide data to update"
6378
- msgstr ""
6379
-
6380
- #: includes/core/class-rest-api.php:434
6381
- msgid "User status has been changed."
6382
- msgstr ""
6383
-
6384
- #: includes/core/class-rest-api.php:463
6385
- msgid "User role has been changed."
6386
- msgstr ""
6387
-
6388
- #: includes/core/class-rest-api.php:467
6389
- msgid "User meta has been changed."
6390
- msgstr ""
6391
-
6392
- #: includes/core/class-rest-api.php:585 includes/core/class-rest-api.php:618
6393
- msgid "Invalid user specified"
6394
- msgstr ""
6395
-
6396
- #: includes/core/class-rest-api.php:592
6397
- msgid "User has been successfully deleted."
6398
- msgstr ""
6399
-
6400
- #: includes/core/class-rest-api.php:798
6401
- msgid "Invalid query!"
6402
- msgstr ""
6403
-
6404
- #: includes/core/class-rest-api.php:1005
6405
- msgid "Ultimate Member REST API"
6406
- msgstr ""
6407
-
6408
- #: includes/core/class-rest-api.php:1010
6409
- msgid "Generate API Key"
6410
- msgstr ""
6411
-
6412
- #: includes/core/class-rest-api.php:1013
6413
- msgid "Public key:"
6414
- msgstr ""
6415
-
6416
- #: includes/core/class-rest-api.php:1014
6417
- msgid "Secret key:"
6418
- msgstr ""
6419
-
6420
- #: includes/core/class-rest-api.php:1015
6421
- msgid "Token:"
6422
- msgstr ""
6423
-
6424
- #: includes/core/class-rest-api.php:1018
6425
- msgid "Revoke API Keys"
6426
- msgstr ""
6427
-
6428
- #: includes/core/class-router.php:24 includes/core/class-router.php:93
6429
- msgid "Wrong action"
6430
- msgstr ""
6431
-
6432
- #: includes/core/class-router.php:27 includes/core/class-router.php:96
6433
- msgid "Wrong resource"
6434
- msgstr ""
6435
-
6436
- #: includes/core/class-router.php:35 includes/core/class-router.php:110
6437
- msgid "Wrong nonce"
6438
- msgstr ""
6439
-
6440
- #: includes/core/class-shortcodes.php:358
6441
- msgid ""
6442
- "This content has been restricted to logged in users only. Please <a href="
6443
- "\"{login_referrer}\">login</a> to view this content."
6444
- msgstr ""
6445
-
6446
- #: includes/core/class-shortcodes.php:518
6447
- msgid "You are already registered"
6448
- msgstr ""
6449
-
6450
- #: includes/core/class-shortcodes.php:759
6451
- msgid "Default Template"
6452
- msgstr ""
6453
-
6454
- #: includes/core/class-uploader.php:627
6455
- msgid "Your image is invalid!"
6456
- msgstr ""
6457
-
6458
- #: includes/core/class-uploader.php:669
6459
- msgid "This media type is not recognized."
6460
- msgstr ""
6461
-
6462
- #: includes/core/class-uploader.php:717
6463
- msgid "Your image is invalid or too large!"
6464
- msgstr ""
6465
-
6466
- #: includes/core/class-uploader.php:723 includes/core/class-uploader.php:725
6467
- #, php-format
6468
- msgid "Your photo is too small. It must be at least %spx wide."
6469
- msgstr ""
6470
-
6471
- #: includes/core/class-uploader.php:779
6472
- msgid "This file type is not recognized."
6473
- msgstr ""
6474
-
6475
- #: includes/core/class-uploader.php:1044
6476
- msgid "Maximum file size allowed: "
6477
- msgstr ""
6478
-
6479
- #: includes/core/class-user.php:610
6480
- msgid "Ultimate Member Role"
6481
- msgstr ""
6482
-
6483
- #: includes/core/class-user.php:613
6484
- msgid "&mdash; No role for Ultimate Member &mdash;"
6485
- msgstr ""
6486
-
6487
- #: includes/core/class-user.php:828
6488
- msgid "Membership Rejected"
6489
- msgstr ""
6490
-
6491
- #: includes/core/class-user.php:832
6492
- msgid "Membership Inactive"
6493
- msgstr ""
6494
-
6495
- #: includes/core/um-actions-account.php:22
6496
- msgid "You must enter your password"
6497
- msgstr ""
6498
-
6499
- #: includes/core/um-actions-account.php:25
6500
- #: includes/core/um-actions-account.php:42
6501
- msgid "This is not your password"
6502
- msgstr ""
6503
-
6504
- #: includes/core/um-actions-account.php:47
6505
- msgid "Your new password does not match"
6506
- msgstr ""
6507
-
6508
- #: includes/core/um-actions-account.php:54
6509
- #: includes/core/um-actions-password.php:212
6510
- msgid "Your password must contain at least 8 characters"
6511
- msgstr ""
6512
-
6513
- #: includes/core/um-actions-account.php:58
6514
- #: includes/core/um-actions-password.php:216
6515
- msgid "Your password must contain less than 30 characters"
6516
- msgstr ""
6517
-
6518
- #: includes/core/um-actions-account.php:62
6519
- #: includes/core/um-actions-form.php:470
6520
- #: includes/core/um-actions-password.php:220
6521
- msgid ""
6522
- "Your password must contain at least one lowercase letter, one capital letter "
6523
- "and one number"
6524
- msgstr ""
6525
-
6526
- #: includes/core/um-actions-account.php:80
6527
- msgid "Your username is invalid"
6528
- msgstr ""
6529
-
6530
- #: includes/core/um-actions-account.php:85
6531
- msgid "You must provide your first name"
6532
- msgstr ""
6533
-
6534
- #: includes/core/um-actions-account.php:89
6535
- msgid "You must provide your last name"
6536
- msgstr ""
6537
-
6538
- #: includes/core/um-actions-account.php:94
6539
- msgid "You must provide your e-mail"
6540
- msgstr ""
6541
-
6542
- #: includes/core/um-actions-account.php:97
6543
- msgid "Please provide a valid e-mail"
6544
- msgstr ""
6545
-
6546
- #: includes/core/um-actions-account.php:100
6547
- msgid "Email already linked to another account"
6548
- msgstr ""
6549
-
6550
- #: includes/core/um-actions-account.php:390
6551
- msgid "Email me when"
6552
- msgstr ""
6553
-
6554
- #: includes/core/um-actions-core.php:27
6555
- msgid "Super administrators can not be modified."
6556
- msgstr ""
6557
-
6558
- #: includes/core/um-actions-core.php:89 includes/core/um-actions-core.php:100
6559
- #: includes/core/um-actions-core.php:110 includes/core/um-actions-core.php:120
6560
- #: includes/core/um-actions-core.php:130
6561
- msgid "You do not have permission to make this action."
6562
- msgstr ""
6563
-
6564
- #: includes/core/um-actions-core.php:140
6565
- msgid "You do not have permission to delete this user."
6566
- msgstr ""
6567
-
6568
- #: includes/core/um-actions-form.php:86
6569
- msgid "You are not allowed to use this word as your username."
6570
- msgstr ""
6571
-
6572
- #: includes/core/um-actions-form.php:276 includes/core/um-actions-form.php:388
6573
- #: includes/core/um-actions-form.php:392 includes/core/um-actions-form.php:396
6574
- #, php-format
6575
- msgid "%s is required."
6576
- msgstr ""
6577
-
6578
- #: includes/core/um-actions-form.php:401
6579
- msgid "Please specify account type."
6580
- msgstr ""
6581
-
6582
- #: includes/core/um-actions-form.php:433
6583
- msgid "This field is required"
6584
- msgstr ""
6585
-
6586
- #: includes/core/um-actions-form.php:435
6587
- #, php-format
6588
- msgid "%s is required"
6589
- msgstr ""
6590
-
6591
- #: includes/core/um-actions-form.php:442
6592
- #, php-format
6593
- msgid "You are only allowed to enter a maximum of %s words"
6594
- msgstr ""
6595
-
6596
- #: includes/core/um-actions-form.php:448
6597
- #, php-format
6598
- msgid "Your %s must contain at least %s characters"
6599
- msgstr ""
6600
-
6601
- #: includes/core/um-actions-form.php:454
6602
- #, php-format
6603
- msgid "Your %s must contain less than %s characters"
6604
- msgstr ""
6605
-
6606
- #: includes/core/um-actions-form.php:463
6607
- msgid "You can not use HTML tags here"
6608
- msgstr ""
6609
-
6610
- #: includes/core/um-actions-form.php:476
6611
- msgid "Please confirm your password"
6612
- msgstr ""
6613
-
6614
- #: includes/core/um-actions-form.php:479
6615
- #: includes/core/um-actions-password.php:230
6616
- msgid "Your passwords do not match"
6617
- msgstr ""
6618
-
6619
- #: includes/core/um-actions-form.php:485
6620
- #, php-format
6621
- msgid "Please select at least %s choices"
6622
- msgstr ""
6623
-
6624
- #: includes/core/um-actions-form.php:491
6625
- #, php-format
6626
- msgid "You can only select up to %s choices"
6627
- msgstr ""
6628
-
6629
- #: includes/core/um-actions-form.php:497
6630
- #, php-format
6631
- msgid "Minimum number limit is %s"
6632
- msgstr ""
6633
-
6634
- #: includes/core/um-actions-form.php:503
6635
- #, php-format
6636
- msgid "Maximum number limit is %s"
6637
- msgstr ""
6638
-
6639
- #: includes/core/um-actions-form.php:539
6640
- msgid "Please enter numbers only in this field"
6641
- msgstr ""
6642
-
6643
- #: includes/core/um-actions-form.php:545
6644
- msgid "Please enter a valid phone number"
6645
- msgstr ""
6646
-
6647
- #: includes/core/um-actions-form.php:551 includes/core/um-actions-form.php:557
6648
- #: includes/core/um-actions-form.php:563 includes/core/um-actions-form.php:569
6649
- #: includes/core/um-actions-form.php:575 includes/core/um-actions-form.php:581
6650
- #: includes/core/um-actions-form.php:587 includes/core/um-actions-form.php:593
6651
- #: includes/core/um-actions-form.php:605
6652
- #, php-format
6653
- msgid "Please enter a valid %s username or profile URL"
6654
- msgstr ""
6655
-
6656
- #: includes/core/um-actions-form.php:599
6657
- msgid "Please enter a valid URL"
6658
- msgstr ""
6659
-
6660
- #: includes/core/um-actions-form.php:612 includes/core/um-actions-form.php:626
6661
- msgid "You must provide a username"
6662
- msgstr ""
6663
-
6664
- #: includes/core/um-actions-form.php:614 includes/core/um-actions-form.php:628
6665
- msgid "Your username is already taken"
6666
- msgstr ""
6667
-
6668
- #: includes/core/um-actions-form.php:616
6669
- msgid "Username cannot be an email"
6670
- msgstr ""
6671
-
6672
- #: includes/core/um-actions-form.php:618 includes/core/um-actions-form.php:632
6673
- msgid "Your username contains invalid characters"
6674
- msgstr ""
6675
-
6676
- #: includes/core/um-actions-form.php:630 includes/core/um-actions-form.php:652
6677
- #: includes/core/um-actions-form.php:654 includes/core/um-actions-form.php:666
6678
- #: includes/core/um-actions-form.php:673
6679
- msgid "This email is already linked to an existing account"
6680
- msgstr ""
6681
-
6682
- #: includes/core/um-actions-form.php:650
6683
- msgid "You must provide your email"
6684
- msgstr ""
6685
-
6686
- #: includes/core/um-actions-form.php:656 includes/core/um-actions-form.php:664
6687
- msgid "This is not a valid email"
6688
- msgstr ""
6689
-
6690
- #: includes/core/um-actions-form.php:658
6691
- msgid "Your email contains invalid characters"
6692
- msgstr ""
6693
-
6694
- #: includes/core/um-actions-form.php:698
6695
- msgid "You must provide a unique value"
6696
- msgstr ""
6697
-
6698
- #: includes/core/um-actions-form.php:708
6699
- msgid "You must provide alphabetic letters"
6700
- msgstr ""
6701
-
6702
- #: includes/core/um-actions-form.php:718
6703
- msgid "You must provide lowercase letters."
6704
- msgstr ""
6705
-
6706
- #: includes/core/um-actions-form.php:737
6707
- #, php-format
6708
- msgid "Your user description must contain less than %s characters"
6709
- msgstr ""
6710
-
6711
- #: includes/core/um-actions-global.php:30
6712
- msgid "Only fill in if you are not human"
6713
- msgstr ""
6714
-
6715
- #: includes/core/um-actions-login.php:20
6716
- msgid "Please enter your username or email"
6717
- msgstr ""
6718
-
6719
- #: includes/core/um-actions-login.php:24
6720
- msgid "Please enter your username"
6721
- msgstr ""
6722
-
6723
- #: includes/core/um-actions-login.php:28
6724
- msgid "Please enter your email"
6725
- msgstr ""
6726
-
6727
- #: includes/core/um-actions-login.php:52
6728
- msgid " Sorry, we can't find an account with that email address"
6729
- msgstr ""
6730
-
6731
- #: includes/core/um-actions-login.php:54
6732
- msgid " Sorry, we can't find an account with that username"
6733
- msgstr ""
6734
-
6735
- #: includes/core/um-actions-login.php:58
6736
- msgid "Please enter your password"
6737
- msgstr ""
6738
-
6739
- #: includes/core/um-actions-login.php:66
6740
- msgid "Password is incorrect. Please try again."
6741
- msgstr ""
6742
-
6743
- #: includes/core/um-actions-login.php:194
6744
- msgid "This action has been prevented for security measures."
6745
- msgstr ""
6746
-
6747
- #: includes/core/um-actions-login.php:418
6748
- msgid "Keep me signed in"
6749
- msgstr ""
6750
-
6751
- #: includes/core/um-actions-login.php:453
6752
- msgid "Forgot your password?"
6753
- msgstr ""
6754
-
6755
- #: includes/core/um-actions-members.php:83
6756
- msgid "Search"
6757
- msgstr ""
6758
-
6759
- #: includes/core/um-actions-members.php:84
6760
- msgid "Reset"
6761
- msgstr ""
6762
-
6763
- #: includes/core/um-actions-members.php:159
6764
- msgid "Jump to page:"
6765
- msgstr ""
6766
-
6767
- #: includes/core/um-actions-members.php:164
6768
- #, php-format
6769
- msgid "%s of %d"
6770
- msgstr ""
6771
-
6772
- #: includes/core/um-actions-members.php:174
6773
- msgid "First Page"
6774
- msgstr ""
6775
-
6776
- #: includes/core/um-actions-members.php:180
6777
- msgid "Previous"
6778
- msgstr ""
6779
-
6780
- #: includes/core/um-actions-members.php:200
6781
- msgid "Next"
6782
- msgstr ""
6783
-
6784
- #: includes/core/um-actions-members.php:206
6785
- msgid "Last Page"
6786
- msgstr ""
6787
-
6788
- #: includes/core/um-actions-misc.php:115
6789
- msgid "Your account was updated successfully."
6790
- msgstr ""
6791
-
6792
- #: includes/core/um-actions-misc.php:119
6793
- msgid "You have successfully changed your password."
6794
- msgstr ""
6795
-
6796
- #: includes/core/um-actions-misc.php:123
6797
- msgid "Your account is now active! You can login."
6798
- msgstr ""
6799
-
6800
- #: includes/core/um-actions-misc.php:157
6801
- msgid "An error has been encountered"
6802
- msgstr ""
6803
-
6804
- #: includes/core/um-actions-misc.php:161
6805
- msgid "Registration is currently disabled"
6806
- msgstr ""
6807
-
6808
- #: includes/core/um-actions-misc.php:165 includes/core/um-filters-login.php:40
6809
- msgid "This email address has been blocked."
6810
- msgstr ""
6811
-
6812
- #: includes/core/um-actions-misc.php:169
6813
- msgid "We do not accept registrations from that domain."
6814
- msgstr ""
6815
-
6816
- #: includes/core/um-actions-misc.php:173 includes/core/um-filters-login.php:43
6817
- msgid "Your IP address has been blocked."
6818
- msgstr ""
6819
-
6820
- #: includes/core/um-actions-misc.php:177 includes/core/um-filters-login.php:136
6821
- msgid "Your account has been disabled."
6822
- msgstr ""
6823
-
6824
- #: includes/core/um-actions-misc.php:181 includes/core/um-filters-login.php:139
6825
- msgid "Your account has not been approved yet."
6826
- msgstr ""
6827
-
6828
- #: includes/core/um-actions-misc.php:185 includes/core/um-filters-login.php:142
6829
- msgid "Your account is awaiting e-mail verification."
6830
- msgstr ""
6831
-
6832
- #: includes/core/um-actions-misc.php:189 includes/core/um-filters-login.php:145
6833
- msgid "Your membership request has been rejected."
6834
- msgstr ""
6835
-
6836
- #: includes/core/um-actions-password.php:145
6837
- msgid "Please provide your username or email"
6838
- msgstr ""
6839
-
6840
- #: includes/core/um-actions-password.php:149
6841
- msgid "We can't find an account registered with that address or username"
6842
- msgstr ""
6843
-
6844
- #: includes/core/um-actions-password.php:168
6845
- msgid ""
6846
- "You have reached the limit for requesting password change for this user "
6847
- "already. Contact support if you cannot open the email"
6848
- msgstr ""
6849
-
6850
- #: includes/core/um-actions-password.php:206
6851
- msgid "You must enter a new password"
6852
- msgstr ""
6853
-
6854
- #: includes/core/um-actions-password.php:226
6855
- msgid "You must confirm your new password"
6856
- msgstr ""
6857
-
6858
- #: includes/core/um-actions-password.php:307
6859
- msgid "Reset my password"
6860
- msgstr ""
6861
-
6862
- #: includes/core/um-actions-password.php:333
6863
- msgid "Change my password"
6864
- msgstr ""
6865
-
6866
- #: includes/core/um-actions-profile.php:186
6867
- msgid "You are not allowed to edit this user."
6868
- msgstr ""
6869
-
6870
- #: includes/core/um-actions-profile.php:242
6871
- #, php-format
6872
- msgid "Your choosed %s"
6873
- msgstr ""
6874
-
6875
- #: includes/core/um-actions-profile.php:552
6876
- msgid "Change cover photo"
6877
- msgstr ""
6878
-
6879
- #: includes/core/um-actions-profile.php:595
6880
- msgid "Upload a cover photo"
6881
- msgstr ""
6882
-
6883
- #: includes/core/um-actions-profile.php:692
6884
- msgid "Upload photo"
6885
- msgstr ""
6886
-
6887
- #: includes/core/um-actions-profile.php:725
6888
- msgid "Remove photo"
6889
- msgstr ""
6890
-
6891
- #: includes/core/um-actions-profile.php:889
6892
- msgid "Tell us a bit about yourself..."
6893
- msgstr ""
6894
-
6895
- #: includes/core/um-actions-profile.php:907
6896
- #, php-format
6897
- msgid "This user account status is %s"
6898
- msgstr ""
6899
-
6900
- #: includes/core/um-actions-profile.php:1046
6901
- #: includes/core/um-actions-profile.php:1077
6902
- msgid "Edit Profile"
6903
- msgstr ""
6904
-
6905
- #: includes/core/um-actions-profile.php:1078
6906
- msgid "My Account"
6907
- msgstr ""
6908
-
6909
- #: includes/core/um-actions-user.php:14
6910
- msgid "Your account"
6911
- msgstr ""
6912
-
6913
- #: includes/core/um-filters-fields.php:16
6914
- msgid "Required"
6915
- msgstr ""
6916
-
6917
- #: includes/core/um-filters-fields.php:34
6918
- msgid "Invalid soundcloud track ID"
6919
- msgstr ""
6920
-
6921
- #: includes/core/um-filters-fields.php:118
6922
- #, php-format
6923
- msgid "Joined %s"
6924
- msgstr ""
6925
-
6926
- #: includes/core/um-filters-fields.php:133
6927
- #, php-format
6928
- msgid "Last login: %s"
6929
- msgstr ""
6930
-
6931
- #: includes/core/um-filters-fields.php:261
6932
- msgid "Untitled photo"
6933
- msgstr ""
6934
-
6935
- #: includes/core/um-filters-profile.php:82
6936
- #: includes/core/um-filters-profile.php:101
6937
- msgid "max"
6938
- msgstr ""
6939
-
6940
- #: includes/core/um-filters-user.php:37
6941
- msgid "Deactivate this account"
6942
- msgstr ""
6943
-
6944
- #: includes/core/um-filters-user.php:41
6945
- msgid "Reactivate this account"
6946
- msgstr ""
6947
-
6948
- #: includes/core/um-filters-user.php:47
6949
- msgid "Delete this user"
6950
- msgstr ""
6951
-
6952
- #: includes/core/um-filters-user.php:51
6953
- msgid "Login as this user"
6954
- msgstr ""
6955
-
6956
- #: includes/core/um-navmenu.php:25
6957
- msgid "Display Mode"
6958
- msgstr ""
6959
-
6960
- #: includes/core/um-navmenu.php:26
6961
- msgid "By Role"
6962
- msgstr ""
6963
-
6964
- #: includes/core/um-navmenu.php:134
6965
- msgid "Ultimate Member Menu Settings"
6966
- msgstr ""
6967
-
6968
- #: includes/core/um-navmenu.php:138
6969
- msgid "Who can see this menu link?"
6970
- msgstr ""
6971
-
6972
- #: includes/core/um-navmenu.php:145
6973
- msgid "Logged Out Users"
6974
- msgstr ""
6975
-
6976
- #: includes/core/um-navmenu.php:148
6977
- msgid "Logged In Users"
6978
- msgstr ""
6979
-
6980
- #: includes/core/um-navmenu.php:154
6981
- msgid "Select the member roles that can see this link"
6982
- msgstr ""
6983
-
6984
- #: includes/um-short-functions.php:566
6985
- msgid "date submitted"
6986
- msgstr ""
6987
-
6988
- #: includes/um-short-functions.php:572
6989
- msgid "(empty)"
6990
- msgstr ""
6991
-
6992
- #: includes/widgets/class-um-search-widget.php:26
6993
- msgid "Ultimate Member - Search"
6994
- msgstr ""
6995
-
6996
- #: includes/widgets/class-um-search-widget.php:29
6997
- msgid "Shows the search member form."
6998
- msgstr ""
6999
-
7000
- #: includes/widgets/class-um-search-widget.php:67
7001
- msgid "Search Users"
7002
- msgstr ""
7003
-
7004
- #: includes/widgets/class-um-search-widget.php:80
7005
- msgid "Title:"
7006
- msgstr ""
7007
-
7008
- #: templates/members-grid.php:65
7009
- msgid "Edit profile"
7010
- msgstr ""
7011
-
7012
- #: templates/password-reset.php:77
7013
- msgid ""
7014
- "We have sent you a password reset link to your e-mail. Please check your "
7015
- "inbox."
7016
- msgstr ""
7017
-
7018
- #: templates/profile/comments-single.php:6
7019
- #, php-format
7020
- msgid "On <a href=\"%1$s\">%2$s</a>"
7021
- msgstr ""
7022
-
7023
- #: templates/profile/comments-single.php:15 templates/profile/comments.php:14
7024
- msgid "load more comments"
7025
- msgstr ""
7026
-
7027
- #: templates/profile/comments.php:23
7028
- msgid "You have not made any comments."
7029
- msgstr ""
7030
-
7031
- #: templates/profile/comments.php:23
7032
- msgid "This user has not made any comments."
7033
- msgstr ""
7034
-
7035
- #: templates/profile/posts-single.php:16
7036
- #, php-format
7037
- msgid "%s ago"
7038
- msgstr ""
7039
-
7040
- #: templates/profile/posts-single.php:17
7041
- msgid "in"
7042
- msgstr ""
7043
-
7044
- #: templates/profile/posts-single.php:18
7045
- msgid "no comments"
7046
- msgstr ""
7047
-
7048
- #: templates/profile/posts-single.php:18
7049
- msgid "1 comment"
7050
- msgstr ""
7051
-
7052
- #: templates/profile/posts-single.php:18
7053
- #, php-format
7054
- msgid "% comments"
7055
- msgstr ""
7056
-
7057
- #: templates/profile/posts-single.php:27 templates/profile/posts.php:35
7058
- msgid "load more posts"
7059
- msgstr ""
7060
-
7061
- #: templates/profile/posts.php:43
7062
- msgid "You have not created any posts."
7063
- msgstr ""
7064
-
7065
- #: templates/profile/posts.php:43
7066
- msgid "This user has not created any posts."
7067
- msgstr ""
7068
-
7069
- #: templates/searchform.php:4 templates/searchform.php:5
7070
- msgctxt "label"
7071
- msgid "Search for:"
7072
- msgstr ""
7073
-
7074
- #: templates/searchform.php:5
7075
- msgctxt "placeholder"
7076
- msgid "Search &hellip;"
7077
- msgstr ""
7078
-
7079
- #. Plugin URI of the plugin/theme
7080
- #. Author URI of the plugin/theme
7081
- msgid "http://ultimatemember.com/"
7082
- msgstr ""
7083
-
7084
- #. Description of the plugin/theme
7085
- msgid ""
7086
- "The easiest way to create powerful online communities and beautiful user "
7087
- "profiles with WordPress"
7088
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/ultimate-member-en_US.mo CHANGED
Binary file
languages/ultimate-member-en_US.po CHANGED
@@ -1,32 +1,44 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Ultimate Member\n"
4
- "POT-Creation-Date: 2020-06-04 12:21+0300\n"
5
- "PO-Revision-Date: 2020-06-04 12:21+0300\n"
6
- "Last-Translator: \n"
7
  "Language-Team: \n"
8
- "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
 
 
12
  "X-Generator: Poedit 2.0.6\n"
13
- "X-Poedit-Basepath: ..\n"
 
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
- "X-Poedit-WPHeader: ultimate-member.php\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  #: includes/admin/class-admin-functions.php:35 includes/class-functions.php:55
25
  msgid "Wrong Nonce"
26
  msgstr ""
27
 
28
  #: includes/admin/class-admin.php:197
29
- #, php-format
30
  msgid "Duplicate of %s"
31
  msgstr ""
32
 
@@ -35,7 +47,7 @@ msgid "Docs"
35
  msgstr ""
36
 
37
  #: includes/admin/class-admin.php:318
38
- #: includes/admin/core/class-admin-settings.php:1409
39
  msgid "Settings"
40
  msgstr ""
41
 
@@ -75,10 +87,6 @@ msgstr ""
75
  msgid "Form draft updated."
76
  msgstr ""
77
 
78
- #: includes/admin/core/class-admin-builder.php:213
79
- msgid "Manage conditional fields support"
80
- msgstr ""
81
-
82
  #: includes/admin/core/class-admin-builder.php:213
83
  #: includes/admin/core/class-admin-builder.php:215
84
  msgid ""
@@ -86,10 +94,6 @@ msgid ""
86
  "specific fields value or conditions"
87
  msgstr ""
88
 
89
- #: includes/admin/core/class-admin-builder.php:215
90
- msgid "Add conditional fields support"
91
- msgstr ""
92
-
93
  #: includes/admin/core/class-admin-builder.php:230
94
  msgid "Add new rule"
95
  msgstr ""
@@ -103,7 +107,7 @@ msgstr ""
103
  #: includes/admin/core/class-admin-builder.php:763
104
  #: includes/admin/core/class-admin-dragdrop.php:33
105
  #: includes/admin/core/class-admin-menu.php:106
106
- #: includes/core/class-fields.php:4544
107
  msgid "Please login as administrator"
108
  msgstr ""
109
 
@@ -164,7 +168,7 @@ msgid "Predefined Fields"
164
  msgstr ""
165
 
166
  #: includes/admin/core/class-admin-builder.php:878
167
- #: includes/core/class-builtin.php:1341
168
  msgid "None"
169
  msgstr ""
170
 
@@ -191,7 +195,6 @@ msgstr ""
191
  msgid "Status"
192
  msgstr ""
193
 
194
- #: includes/admin/core/class-admin-columns.php:131
195
  #: includes/admin/core/class-admin-columns.php:151
196
  #: includes/admin/core/class-admin-metabox.php:2158
197
  #: includes/admin/templates/role/role-edit.php:193
@@ -199,39 +202,23 @@ msgstr ""
199
  msgid "Title"
200
  msgstr ""
201
 
202
- #: includes/admin/core/class-admin-columns.php:132
203
  #: includes/admin/core/class-admin-columns.php:152
204
  msgid "ID"
205
  msgstr ""
206
 
207
- #: includes/admin/core/class-admin-columns.php:133
208
- msgid "Type"
209
- msgstr ""
210
-
211
- #: includes/admin/core/class-admin-columns.php:134
212
- #: includes/admin/core/class-admin-columns.php:153
213
- #: includes/admin/core/class-admin-settings.php:609
214
- #: includes/admin/templates/form/login_settings.php:16
215
- #: includes/admin/templates/form/register_customize.php:6
216
- #: includes/admin/templates/form/register_customize.php:32
217
- msgid "Default"
218
- msgstr ""
219
-
220
- #: includes/admin/core/class-admin-columns.php:135
221
  #: includes/admin/core/class-admin-columns.php:154
222
  #: includes/admin/core/class-admin-metabox.php:812
223
  #: includes/admin/core/class-admin-metabox.php:974
224
  msgid "Shortcode"
225
  msgstr ""
226
 
227
- #: includes/admin/core/class-admin-columns.php:136
228
  #: includes/admin/core/class-admin-columns.php:155
229
  msgid "Date"
230
  msgstr ""
231
 
232
  #: includes/admin/core/class-admin-columns.php:186
233
  #: includes/admin/core/class-admin-columns.php:219
234
- #: includes/admin/core/class-admin-settings.php:722
235
  #: includes/admin/core/list-tables/roles-list-table.php:371
236
  #: includes/admin/core/list-tables/roles-list-table.php:379
237
  #: includes/admin/templates/form/login_customize.php:16
@@ -249,15 +236,15 @@ msgstr ""
249
  #: includes/admin/templates/form/register_customize.php:23
250
  #: includes/admin/templates/form/register_customize.php:79
251
  #: includes/admin/templates/form/register_gdpr.php:26
252
- #: includes/core/class-builtin.php:1144 includes/core/class-builtin.php:1160
253
- #: includes/core/class-builtin.php:1161
254
- #: includes/core/um-actions-account.php:277
255
  msgid "No"
256
  msgstr ""
257
 
258
  #: includes/admin/core/class-admin-columns.php:186
259
  #: includes/admin/core/class-admin-columns.php:219
260
- #: includes/admin/core/class-admin-settings.php:723
261
  #: includes/admin/core/list-tables/roles-list-table.php:371
262
  #: includes/admin/core/list-tables/roles-list-table.php:379
263
  #: includes/admin/core/packages/2.1.3-beta3/functions.php:75
@@ -277,9 +264,9 @@ msgstr ""
277
  #: includes/admin/templates/form/register_customize.php:24
278
  #: includes/admin/templates/form/register_customize.php:80
279
  #: includes/admin/templates/form/register_gdpr.php:27
280
- #: includes/core/class-builtin.php:1145 includes/core/class-builtin.php:1161
281
- #: includes/core/class-user.php:212 includes/core/class-user.php:213
282
- #: includes/core/um-actions-account.php:272
283
  msgid "Yes"
284
  msgstr ""
285
 
@@ -293,9 +280,9 @@ msgstr ""
293
 
294
  #: includes/admin/core/class-admin-enqueue.php:485
295
  #: includes/core/class-builtin.php:706 includes/core/class-builtin.php:709
296
- #: includes/core/class-builtin.php:1166 includes/core/class-builtin.php:1169
297
- #: includes/core/um-actions-account.php:538
298
- #: includes/core/um-actions-account.php:598
299
  msgid "Password"
300
  msgstr ""
301
 
@@ -328,6 +315,8 @@ msgstr ""
328
  #: includes/admin/core/class-admin-forms.php:532
329
  #: includes/admin/core/class-admin-metabox.php:1450
330
  #: includes/admin/core/class-admin-metabox.php:1478
 
 
331
  msgid "No Icon"
332
  msgstr ""
333
 
@@ -345,7 +334,11 @@ msgstr ""
345
  #: includes/admin/core/class-admin-forms.php:1537
346
  #: includes/admin/core/class-admin-forms.php:1559
347
  #: includes/admin/core/class-admin-notices.php:400
348
- #: includes/core/um-actions-profile.php:748
 
 
 
 
349
  msgid "Remove"
350
  msgstr ""
351
 
@@ -354,6 +347,7 @@ msgid "Select media"
354
  msgstr ""
355
 
356
  #: includes/admin/core/class-admin-forms.php:1257
 
357
  msgid "Select"
358
  msgstr ""
359
 
@@ -364,12 +358,14 @@ msgstr ""
364
  #: includes/admin/core/class-admin-forms.php:1538
365
  #: includes/admin/core/class-admin-forms.php:1560
366
  #: includes/admin/templates/directory/sorting.php:23
 
367
  msgid "Meta key"
368
  msgstr ""
369
 
370
  #: includes/admin/core/class-admin-forms.php:1539
371
  #: includes/admin/core/class-admin-forms.php:1561
372
  #: includes/admin/core/class-admin-metabox.php:2250
 
373
  msgid "Label"
374
  msgstr ""
375
 
@@ -450,7 +446,6 @@ msgid "Privacy Policy Agreement"
450
  msgstr ""
451
 
452
  #: includes/admin/core/class-admin-gdpr.php:298
453
- #, php-format
454
  msgid "Your %s was unable to be removed at this time."
455
  msgstr ""
456
 
@@ -459,29 +454,11 @@ msgid "Thanks :)"
459
  msgstr ""
460
 
461
  #: includes/admin/core/class-admin-menu.php:72
462
- #, php-format
463
  msgid ""
464
  "If you like Ultimate Member please consider leaving a %s review. It will "
465
  "help us to grow the plugin and make it more popular. Thank you."
466
  msgstr ""
467
 
468
- #: includes/admin/core/class-admin-menu.php:127
469
- msgctxt "Admin menu name"
470
- msgid "Users"
471
- msgstr ""
472
-
473
- #: includes/admin/core/class-admin-menu.php:135
474
- msgctxt "Admin menu name"
475
- msgid "All Users"
476
- msgstr ""
477
-
478
- #. Plugin Name of the plugin/theme
479
- #. Author of the plugin/theme
480
- #: includes/admin/core/class-admin-menu.php:147
481
- #: includes/core/class-user.php:712
482
- msgid "Ultimate Member"
483
- msgstr ""
484
-
485
  #: includes/admin/core/class-admin-menu.php:151
486
  msgid "Dashboard"
487
  msgstr ""
@@ -493,7 +470,6 @@ msgstr ""
493
 
494
  #: includes/admin/core/class-admin-menu.php:161
495
  #: includes/admin/core/list-tables/roles-list-table.php:483
496
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:12
497
  msgid "User Roles"
498
  msgstr ""
499
 
@@ -503,7 +479,7 @@ msgid "Member Directories"
503
  msgstr ""
504
 
505
  #: includes/admin/core/class-admin-menu.php:206
506
- #: includes/admin/core/class-admin-settings.php:1265
507
  msgid "Extensions"
508
  msgstr ""
509
 
@@ -552,28 +528,32 @@ msgstr ""
552
  #: includes/admin/core/class-admin-metabox.php:392
553
  #: includes/admin/core/class-admin-metabox.php:544
554
  #: includes/admin/templates/access/restrict_content.php:60
 
555
  msgid "Who can access this content?"
556
  msgstr ""
557
 
558
  #: includes/admin/core/class-admin-metabox.php:396
559
  #: includes/admin/core/class-admin-metabox.php:548
560
  #: includes/admin/core/class-admin-metabox.php:2269
561
- #: includes/admin/core/class-admin-navmenu.php:80
562
- #: includes/admin/core/class-admin-navmenu.php:241
563
  #: includes/admin/templates/access/restrict_content.php:64
564
  #: includes/core/class-builtin.php:670
 
565
  msgid "Everyone"
566
  msgstr ""
567
 
568
  #: includes/admin/core/class-admin-metabox.php:397
569
  #: includes/admin/core/class-admin-metabox.php:549
570
  #: includes/admin/templates/access/restrict_content.php:65
 
571
  msgid "Logged out users"
572
  msgstr ""
573
 
574
  #: includes/admin/core/class-admin-metabox.php:398
575
  #: includes/admin/core/class-admin-metabox.php:550
576
  #: includes/admin/templates/access/restrict_content.php:66
 
577
  msgid "Logged in users"
578
  msgstr ""
579
 
@@ -776,12 +756,10 @@ msgid "Options"
776
  msgstr ""
777
 
778
  #: includes/admin/core/class-admin-metabox.php:1072
779
- #, php-format
780
  msgid "Directory #%s"
781
  msgstr ""
782
 
783
  #: includes/admin/core/class-admin-metabox.php:1165
784
- #, php-format
785
  msgid "Form #%s"
786
  msgstr ""
787
 
@@ -808,10 +786,6 @@ msgstr ""
808
  msgid "View mode only"
809
  msgstr ""
810
 
811
- #: includes/admin/core/class-admin-metabox.php:1301
812
- msgid "If"
813
- msgstr ""
814
-
815
  #: includes/admin/core/class-admin-metabox.php:1378
816
  msgid "Value"
817
  msgstr ""
@@ -1333,8 +1307,8 @@ msgid "The text that appears on the button. e.g. Upload"
1333
  msgstr ""
1334
 
1335
  #: includes/admin/core/class-admin-metabox.php:2002
1336
- #: includes/core/class-fields.php:1707 includes/core/class-fields.php:1748
1337
- #: includes/core/class-fields.php:2587 includes/core/class-fields.php:2662
1338
  msgid "Upload"
1339
  msgstr ""
1340
 
@@ -1566,7 +1540,7 @@ msgid ""
1566
  msgstr ""
1567
 
1568
  #: includes/admin/core/class-admin-metabox.php:2270
1569
- #: includes/class-config.php:134 includes/class-config.php:792
1570
  msgid "Members"
1571
  msgstr ""
1572
 
@@ -1660,34 +1634,33 @@ msgstr ""
1660
  msgid "By Role"
1661
  msgstr ""
1662
 
1663
- #: includes/admin/core/class-admin-navmenu.php:74
1664
- #: includes/admin/core/class-admin-navmenu.php:124
1665
- #: includes/admin/core/class-admin-navmenu.php:233
1666
  msgid "Ultimate Member Menu Settings"
1667
  msgstr ""
1668
 
1669
- #: includes/admin/core/class-admin-navmenu.php:78
1670
- #: includes/admin/core/class-admin-navmenu.php:237
1671
  msgid "Who can see this menu link?"
1672
  msgstr ""
1673
 
1674
- #: includes/admin/core/class-admin-navmenu.php:81
1675
- #: includes/admin/core/class-admin-navmenu.php:244
1676
  msgid "Logged Out Users"
1677
  msgstr ""
1678
 
1679
- #: includes/admin/core/class-admin-navmenu.php:82
1680
- #: includes/admin/core/class-admin-navmenu.php:247
1681
  msgid "Logged In Users"
1682
  msgstr ""
1683
 
1684
- #: includes/admin/core/class-admin-navmenu.php:87
1685
- #: includes/admin/core/class-admin-navmenu.php:253
1686
  msgid "Select the member roles that can see this link"
1687
  msgstr ""
1688
 
1689
  #: includes/admin/core/class-admin-notices.php:287
1690
- #, php-format
1691
  msgid ""
1692
  "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions "
1693
  "installed on your site. <br /> Please update %s extensions to latest "
@@ -1695,7 +1668,6 @@ msgid ""
1695
  msgstr ""
1696
 
1697
  #: includes/admin/core/class-admin-notices.php:308
1698
- #, php-format
1699
  msgid ""
1700
  "%s needs to create several pages (User Profiles, Account, Registration, "
1701
  "Login, Password Reset, Logout, Member Directory) to function correctly."
@@ -1719,7 +1691,6 @@ msgid "Ultimate Member Setup Error: Account page can not be a child page."
1719
  msgstr ""
1720
 
1721
  #: includes/admin/core/class-admin-notices.php:362
1722
- #, php-format
1723
  msgid ""
1724
  "Exif is not enabled on your server. Mobile photo uploads will not be rotated "
1725
  "correctly until you enable the exif extension. <a href=\"%s\">Hide this "
@@ -1727,7 +1698,6 @@ msgid ""
1727
  msgstr ""
1728
 
1729
  #: includes/admin/core/class-admin-notices.php:399
1730
- #, php-format
1731
  msgid ""
1732
  "Are you sure you want to delete the selected user(s)? The following users "
1733
  "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
@@ -1782,14 +1752,12 @@ msgid "Other users have been updated."
1782
  msgstr ""
1783
 
1784
  #: includes/admin/core/class-admin-notices.php:479
1785
- #, php-format
1786
  msgid ""
1787
  "You have installed <strong>%s</strong> with wrong folder name. Correct "
1788
  "folder name is <strong>\"ultimate-member\"</strong>."
1789
  msgstr ""
1790
 
1791
  #: includes/admin/core/class-admin-notices.php:504
1792
- #, php-format
1793
  msgid ""
1794
  "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To "
1795
  "fund full-time development and support of the plugin we also sell "
@@ -1799,12 +1767,10 @@ msgid ""
1799
  msgstr ""
1800
 
1801
  #: includes/admin/core/class-admin-notices.php:508
1802
- #, php-format
1803
  msgid "Claim 20% discount code"
1804
  msgstr ""
1805
 
1806
  #: includes/admin/core/class-admin-notices.php:547
1807
- #, php-format
1808
  msgid ""
1809
  "There are %d inactive %s license keys for this site. This site is not "
1810
  "authorized to get plugin updates. You can active this site on <a href=\"%s"
@@ -1812,14 +1778,12 @@ msgid ""
1812
  msgstr ""
1813
 
1814
  #: includes/admin/core/class-admin-notices.php:554
1815
- #, php-format
1816
  msgid ""
1817
  "You have %d invalid or expired license keys for %s. Please go to the <a href="
1818
  "\"%s\">Licenses page</a> to correct this issue."
1819
  msgstr ""
1820
 
1821
  #: includes/admin/core/class-admin-notices.php:568
1822
- #, php-format
1823
  msgid ""
1824
  "<strong>%s version %s</strong> needs to be updated to work correctly.<br /"
1825
  ">It is necessary to update the structure of the database and options that "
@@ -1836,12 +1800,10 @@ msgid "Settings successfully upgraded"
1836
  msgstr ""
1837
 
1838
  #: includes/admin/core/class-admin-notices.php:592
1839
- #, php-format
1840
  msgid "<strong>%s %s</strong> Successfully Upgraded"
1841
  msgstr ""
1842
 
1843
  #: includes/admin/core/class-admin-notices.php:619
1844
- #, php-format
1845
  msgid ""
1846
  "Hey there! It's been one month since you installed %s. How have you found "
1847
  "the plugin so far?"
@@ -1859,42 +1821,16 @@ msgstr ""
1859
  msgid "I don't like the plugin"
1860
  msgstr ""
1861
 
1862
- #: includes/admin/core/class-admin-notices.php:629
1863
- #, php-format
1864
- msgid ""
1865
- "Great! We're happy to hear that you love the plugin. It would be amazing if "
1866
- "you could let others know why you like %s by leaving a review of the plugin. "
1867
- "This will help %s to grow and become more popular and would be massively "
1868
- "appreciated by us!"
1869
- msgstr ""
1870
-
1871
  #: includes/admin/core/class-admin-notices.php:633
1872
  msgid "Leave Review"
1873
  msgstr ""
1874
 
1875
- #: includes/admin/core/class-admin-notices.php:638
1876
- msgid ""
1877
- "We're glad to hear that you like the plugin but we would love to get your "
1878
- "feedback so we can make the plugin better."
1879
- msgstr ""
1880
-
1881
  #: includes/admin/core/class-admin-notices.php:642
1882
  #: includes/admin/core/class-admin-notices.php:651
1883
  msgid "Provide Feedback"
1884
  msgstr ""
1885
 
1886
- #: includes/admin/core/class-admin-notices.php:647
1887
- #, php-format
1888
- msgid ""
1889
- "We're sorry to hear that. If you're having the issue with the plugin you can "
1890
- "create a topic on our <a href=\"%s\" target=\"_blank\">support forum</a> and "
1891
- "we will try and help you out with the issue. Alternatively if you have an "
1892
- "idea on how we can make the plugin better or want to tell us what you don't "
1893
- "like about the plugin you can tell us know by giving us feedback."
1894
- msgstr ""
1895
-
1896
  #: includes/admin/core/class-admin-notices.php:673
1897
- #, php-format
1898
  msgid ""
1899
  "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" "
1900
  "target=\"_blank\">here</a>"
@@ -1914,13 +1850,11 @@ msgid "Wrong data"
1914
  msgstr ""
1915
 
1916
  #: includes/admin/core/class-admin-settings.php:220
1917
- #, php-format
1918
  msgid "Metadata from %s to %s was upgraded successfully..."
1919
  msgstr ""
1920
 
1921
  #: includes/admin/core/class-admin-settings.php:250
1922
  #: includes/admin/core/class-admin-settings.php:259
1923
- #, php-format
1924
  msgid "%s page"
1925
  msgstr ""
1926
 
@@ -1938,12 +1872,10 @@ msgstr ""
1938
 
1939
  #: includes/admin/core/class-admin-settings.php:297
1940
  #: includes/admin/core/class-admin-settings.php:308
1941
- #, php-format
1942
  msgid "%s Tab"
1943
  msgstr ""
1944
 
1945
  #: includes/admin/core/class-admin-settings.php:315
1946
- #, php-format
1947
  msgid "Who can see %s Tab?"
1948
  msgstr ""
1949
 
@@ -2237,6 +2169,13 @@ msgid ""
2237
  "Gravatar has a number of built in options which you can also use as defaults"
2238
  msgstr ""
2239
 
 
 
 
 
 
 
 
2240
  #: includes/admin/core/class-admin-settings.php:610
2241
  msgid "404 ( File Not Found response )"
2242
  msgstr ""
@@ -2286,7 +2225,7 @@ msgid ""
2286
  msgstr ""
2287
 
2288
  #: includes/admin/core/class-admin-settings.php:637
2289
- #: includes/class-config.php:136 includes/class-config.php:794
2290
  #: includes/core/class-account.php:97
2291
  msgid "Account"
2292
  msgstr ""
@@ -2330,872 +2269,878 @@ msgstr ""
2330
  #: includes/admin/core/class-admin-settings.php:667
2331
  msgid ""
2332
  "This is custom text that will be displayed to users before they delete their "
2333
- "accounts from your site"
2334
  msgstr ""
2335
 
2336
  #: includes/admin/core/class-admin-settings.php:675
2337
- msgid "Add a First & Last Name fields"
2338
  msgstr ""
2339
 
2340
  #: includes/admin/core/class-admin-settings.php:676
2341
  msgid ""
 
 
 
 
 
 
 
 
 
 
2342
  "Whether to enable these fields on the user account page by default or hide "
2343
  "them."
2344
  msgstr ""
2345
 
2346
- #: includes/admin/core/class-admin-settings.php:681
2347
  msgid "Disable First & Last Name fields"
2348
  msgstr ""
2349
 
2350
- #: includes/admin/core/class-admin-settings.php:682
2351
  msgid ""
2352
  "Whether to allow users changing their first and last name in account page."
2353
  msgstr ""
2354
 
2355
- #: includes/admin/core/class-admin-settings.php:688
2356
  msgid "Require First & Last Name"
2357
  msgstr ""
2358
 
2359
- #: includes/admin/core/class-admin-settings.php:689
2360
  msgid "Require first and last name?"
2361
  msgstr ""
2362
 
2363
- #: includes/admin/core/class-admin-settings.php:695
2364
  msgid "Allow users to change e-mail"
2365
  msgstr ""
2366
 
2367
- #: includes/admin/core/class-admin-settings.php:696
2368
  msgid "Whether to allow users changing their email in account page."
2369
  msgstr ""
2370
 
2371
- #: includes/admin/core/class-admin-settings.php:701
2372
  msgid "Password is required?"
2373
  msgstr ""
2374
 
2375
- #: includes/admin/core/class-admin-settings.php:702
2376
  msgid "Password is required to save account data."
2377
  msgstr ""
2378
 
2379
- #: includes/admin/core/class-admin-settings.php:707
2380
  msgid "Require a strong password?"
2381
  msgstr ""
2382
 
2383
- #: includes/admin/core/class-admin-settings.php:708
2384
  msgid ""
2385
  "Enable or disable a strong password rules on account page / change password "
2386
  "tab"
2387
  msgstr ""
2388
 
2389
- #: includes/admin/core/class-admin-settings.php:713
2390
  msgid "Allow users to hide their profiles from directory"
2391
  msgstr ""
2392
 
2393
- #: includes/admin/core/class-admin-settings.php:714
2394
  msgid ""
2395
  "Whether to allow users changing their profile visibility from member "
2396
  "directory in account page."
2397
  msgstr ""
2398
 
2399
- #: includes/admin/core/class-admin-settings.php:719
2400
  msgid "Hide profiles from directory by default"
2401
  msgstr ""
2402
 
2403
- #: includes/admin/core/class-admin-settings.php:720
2404
  msgid "Set default value for the \"Hide my profile from directory\" option"
2405
  msgstr ""
2406
 
2407
- #: includes/admin/core/class-admin-settings.php:731
2408
  msgid "Uploads"
2409
  msgstr ""
2410
 
2411
- #: includes/admin/core/class-admin-settings.php:737
2412
  msgid "Profile Photo Maximum File Size (bytes)"
2413
  msgstr ""
2414
 
2415
- #: includes/admin/core/class-admin-settings.php:738
2416
  msgid "Sets a maximum size for the uploaded photo"
2417
  msgstr ""
2418
 
2419
- #: includes/admin/core/class-admin-settings.php:745
2420
  msgid "Cover Photo Maximum File Size (bytes)"
2421
  msgstr ""
2422
 
2423
- #: includes/admin/core/class-admin-settings.php:746
2424
  msgid "Sets a maximum size for the uploaded cover"
2425
  msgstr ""
2426
 
2427
- #: includes/admin/core/class-admin-settings.php:752
2428
  msgid "Profile Photo Thumbnail Sizes (px)"
2429
  msgstr ""
2430
 
2431
- #: includes/admin/core/class-admin-settings.php:753
2432
  msgid ""
2433
  "Here you can define which thumbnail sizes will be created for each profile "
2434
  "photo upload."
2435
  msgstr ""
2436
 
2437
- #: includes/admin/core/class-admin-settings.php:755
2438
- #: includes/admin/core/class-admin-settings.php:765
2439
  msgid "Add New Size"
2440
  msgstr ""
2441
 
2442
- #: includes/admin/core/class-admin-settings.php:762
2443
  msgid "Cover Photo Thumbnail Sizes (px)"
2444
  msgstr ""
2445
 
2446
- #: includes/admin/core/class-admin-settings.php:763
2447
  msgid ""
2448
  "Here you can define which thumbnail sizes will be created for each cover "
2449
  "photo upload."
2450
  msgstr ""
2451
 
2452
- #: includes/admin/core/class-admin-settings.php:773
 
 
 
 
 
 
 
 
2453
  msgid "Image Quality"
2454
  msgstr ""
2455
 
2456
- #: includes/admin/core/class-admin-settings.php:774
2457
  msgid ""
2458
  "Quality is used to determine quality of image uploads, and ranges from 0 "
2459
  "(worst quality, smaller file) to 100 (best quality, biggest file). The "
2460
  "default range is 60."
2461
  msgstr ""
2462
 
2463
- #: includes/admin/core/class-admin-settings.php:781
2464
  msgid "Image Upload Maximum Width (px)"
2465
  msgstr ""
2466
 
2467
- #: includes/admin/core/class-admin-settings.php:782
2468
  msgid ""
2469
  "Any image upload above this width will be resized to this limit "
2470
  "automatically."
2471
  msgstr ""
2472
 
2473
- #: includes/admin/core/class-admin-settings.php:789
2474
  msgid "Cover Photo Minimum Width (px)"
2475
  msgstr ""
2476
 
2477
- #: includes/admin/core/class-admin-settings.php:790
2478
  msgid "This will be the minimum width for cover photo uploads"
2479
  msgstr ""
2480
 
2481
- #: includes/admin/core/class-admin-settings.php:797
2482
  msgid "Access"
2483
  msgstr ""
2484
 
2485
- #: includes/admin/core/class-admin-settings.php:800
2486
  msgid "Restriction Content"
2487
  msgstr ""
2488
 
2489
- #: includes/admin/core/class-admin-settings.php:804
2490
  msgid "Other"
2491
  msgstr ""
2492
 
2493
- #: includes/admin/core/class-admin-settings.php:809
2494
  msgid "Enable the Reset Password Limit?"
2495
  msgstr ""
2496
 
2497
- #: includes/admin/core/class-admin-settings.php:814
2498
  msgid "Reset Password Limit"
2499
  msgstr ""
2500
 
2501
- #: includes/admin/core/class-admin-settings.php:815
2502
  msgid ""
2503
  "Set the maximum reset password limit. If reached the maximum limit, user "
2504
  "will be locked from using this."
2505
  msgstr ""
2506
 
2507
- #: includes/admin/core/class-admin-settings.php:823
2508
  msgid "Blocked Email Addresses"
2509
  msgstr ""
2510
 
2511
- #: includes/admin/core/class-admin-settings.php:824
2512
  msgid ""
2513
  "This will block the specified e-mail addresses from being able to sign up or "
2514
  "sign in to your site. To block an entire domain, use something like *@domain."
2515
  "com"
2516
  msgstr ""
2517
 
2518
- #: includes/admin/core/class-admin-settings.php:829
2519
  msgid "Blacklist Words"
2520
  msgstr ""
2521
 
2522
- #: includes/admin/core/class-admin-settings.php:830
2523
  msgid ""
2524
  "This option lets you specify blacklist of words to prevent anyone from "
2525
  "signing up with such a word as their username"
2526
  msgstr ""
2527
 
2528
- #: includes/admin/core/class-admin-settings.php:837
2529
  #: includes/admin/core/list-tables/emails-list-table.php:309
2530
  msgid "Email"
2531
  msgstr ""
2532
 
2533
- #: includes/admin/core/class-admin-settings.php:842
2534
  msgid "Admin E-mail Address"
2535
  msgstr ""
2536
 
2537
- #: includes/admin/core/class-admin-settings.php:843
2538
- #: includes/admin/core/class-admin-settings.php:855
2539
  msgid "e.g. admin@companyname.com"
2540
  msgstr ""
2541
 
2542
- #: includes/admin/core/class-admin-settings.php:848
2543
  msgid "Mail appears from"
2544
  msgstr ""
2545
 
2546
- #: includes/admin/core/class-admin-settings.php:849
2547
  msgid "e.g. Site Name"
2548
  msgstr ""
2549
 
2550
- #: includes/admin/core/class-admin-settings.php:854
2551
  msgid "Mail appears from address"
2552
  msgstr ""
2553
 
2554
- #: includes/admin/core/class-admin-settings.php:860
2555
  msgid "Use HTML for E-mails?"
2556
  msgstr ""
2557
 
2558
- #: includes/admin/core/class-admin-settings.php:861
2559
  msgid ""
2560
  "If you plan use e-mails with HTML, please make sure that this option is "
2561
  "enabled. Otherwise, HTML will be displayed as plain text."
2562
  msgstr ""
2563
 
2564
- #: includes/admin/core/class-admin-settings.php:866
2565
  msgid "Appearance"
2566
  msgstr ""
2567
 
2568
- #: includes/admin/core/class-admin-settings.php:869
2569
  msgid "Profile"
2570
  msgstr ""
2571
 
2572
- #: includes/admin/core/class-admin-settings.php:874
2573
  msgid "Profile Default Template"
2574
  msgstr ""
2575
 
2576
- #: includes/admin/core/class-admin-settings.php:875
2577
  msgid "This will be the default template to output profile"
2578
  msgstr ""
2579
 
2580
- #: includes/admin/core/class-admin-settings.php:883
2581
  msgid "Profile Maximum Width"
2582
  msgstr ""
2583
 
2584
- #: includes/admin/core/class-admin-settings.php:885
2585
- #: includes/admin/core/class-admin-settings.php:1094
2586
- #: includes/admin/core/class-admin-settings.php:1184
2587
  msgid "The maximum width this shortcode can take from the page width"
2588
  msgstr ""
2589
 
2590
- #: includes/admin/core/class-admin-settings.php:892
2591
  msgid "Profile Area Maximum Width"
2592
  msgstr ""
2593
 
2594
- #: includes/admin/core/class-admin-settings.php:894
2595
  #: includes/admin/templates/form/profile_customize.php:59
2596
  msgid ""
2597
  "The maximum width of the profile area inside profile (below profile header)"
2598
  msgstr ""
2599
 
2600
- #: includes/admin/core/class-admin-settings.php:900
2601
  msgid "Profile Field Icons"
2602
  msgstr ""
2603
 
2604
- #: includes/admin/core/class-admin-settings.php:901
2605
  msgid "This is applicable for edit mode only"
2606
  msgstr ""
2607
 
2608
- #: includes/admin/core/class-admin-settings.php:904
2609
- #: includes/admin/core/class-admin-settings.php:1117
2610
- #: includes/admin/core/class-admin-settings.php:1207
2611
  #: includes/admin/templates/form/login_customize.php:43
2612
  #: includes/admin/templates/form/profile_customize.php:70
2613
  #: includes/admin/templates/form/register_customize.php:58
2614
  msgid "Show inside text field"
2615
  msgstr ""
2616
 
2617
- #: includes/admin/core/class-admin-settings.php:905
2618
- #: includes/admin/core/class-admin-settings.php:1118
2619
- #: includes/admin/core/class-admin-settings.php:1208
2620
  #: includes/admin/templates/form/login_customize.php:44
2621
  #: includes/admin/templates/form/profile_customize.php:71
2622
  #: includes/admin/templates/form/register_customize.php:59
2623
  msgid "Show with label"
2624
  msgstr ""
2625
 
2626
- #: includes/admin/core/class-admin-settings.php:906
2627
- #: includes/admin/core/class-admin-settings.php:1119
2628
- #: includes/admin/core/class-admin-settings.php:1209
2629
  #: includes/admin/templates/form/login_customize.php:45
2630
  #: includes/admin/templates/form/profile_customize.php:72
2631
  #: includes/admin/templates/form/register_customize.php:60
2632
  msgid "Turn off"
2633
  msgstr ""
2634
 
2635
- #: includes/admin/core/class-admin-settings.php:913
2636
  msgid "Profile Primary Button Text"
2637
  msgstr ""
2638
 
2639
- #: includes/admin/core/class-admin-settings.php:915
2640
  msgid "The text that is used for updating profile button"
2641
  msgstr ""
2642
 
2643
- #: includes/admin/core/class-admin-settings.php:921
2644
  msgid "Profile Secondary Button"
2645
  msgstr ""
2646
 
2647
- #: includes/admin/core/class-admin-settings.php:923
2648
- #: includes/admin/core/class-admin-settings.php:1136
2649
- #: includes/admin/core/class-admin-settings.php:1226
2650
  msgid "Switch on/off the secondary button display in the form"
2651
  msgstr ""
2652
 
2653
- #: includes/admin/core/class-admin-settings.php:928
2654
  msgid "Profile Secondary Button Text"
2655
  msgstr ""
2656
 
2657
- #: includes/admin/core/class-admin-settings.php:930
2658
  msgid "The text that is used for cancelling update profile button"
2659
  msgstr ""
2660
 
2661
- #: includes/admin/core/class-admin-settings.php:937
2662
  msgid "Default Profile Photo"
2663
  msgstr ""
2664
 
2665
- #: includes/admin/core/class-admin-settings.php:938
2666
  msgid ""
2667
  "You can change the default profile picture globally here. Please make sure "
2668
  "that the photo is 300x300px."
2669
  msgstr ""
2670
 
2671
- #: includes/admin/core/class-admin-settings.php:939
2672
  msgid "Select Default Profile Photo"
2673
  msgstr ""
2674
 
2675
- #: includes/admin/core/class-admin-settings.php:949
2676
  msgid "Default Cover Photo"
2677
  msgstr ""
2678
 
2679
- #: includes/admin/core/class-admin-settings.php:950
2680
  msgid ""
2681
  "You can change the default cover photo globally here. Please make sure that "
2682
  "the default cover is large enough and respects the ratio you are using for "
2683
  "cover photos."
2684
  msgstr ""
2685
 
2686
- #: includes/admin/core/class-admin-settings.php:951
2687
  msgid "Select Default Cover Photo"
2688
  msgstr ""
2689
 
2690
- #: includes/admin/core/class-admin-settings.php:956
2691
  #: includes/admin/templates/form/profile_customize.php:140
2692
  msgid "Disable Profile Photo Upload"
2693
  msgstr ""
2694
 
2695
- #: includes/admin/core/class-admin-settings.php:957
2696
  #: includes/admin/templates/form/profile_customize.php:141
2697
  msgid "Switch on/off the profile photo uploader"
2698
  msgstr ""
2699
 
2700
- #: includes/admin/core/class-admin-settings.php:963
2701
  #: includes/admin/templates/form/profile_customize.php:152
2702
  msgid "Profile Photo Size"
2703
  msgstr ""
2704
 
2705
- #: includes/admin/core/class-admin-settings.php:966
2706
  msgid ""
2707
  "The global default of profile photo size. This can be overridden by "
2708
  "individual form settings"
2709
  msgstr ""
2710
 
2711
- #: includes/admin/core/class-admin-settings.php:972
2712
  msgid "Profile Cover Photos"
2713
  msgstr ""
2714
 
2715
- #: includes/admin/core/class-admin-settings.php:974
2716
  msgid "Switch on/off the profile cover photos"
2717
  msgstr ""
2718
 
2719
- #: includes/admin/core/class-admin-settings.php:979
2720
  msgid "Profile Cover Size"
2721
  msgstr ""
2722
 
2723
- #: includes/admin/core/class-admin-settings.php:982
2724
  msgid ""
2725
  "The global default width of cover photo size. This can be overridden by "
2726
  "individual form settings"
2727
  msgstr ""
2728
 
2729
- #: includes/admin/core/class-admin-settings.php:989
2730
  msgid "Profile Cover Ratio"
2731
  msgstr ""
2732
 
2733
- #: includes/admin/core/class-admin-settings.php:990
2734
  msgid "Choose global ratio for cover photos of profiles"
2735
  msgstr ""
2736
 
2737
- #: includes/admin/core/class-admin-settings.php:1004
2738
  msgid "Profile Header Meta Text Icon"
2739
  msgstr ""
2740
 
2741
- #: includes/admin/core/class-admin-settings.php:1006
2742
  msgid "Display field icons for related user meta fields in header or not"
2743
  msgstr ""
2744
 
2745
- #: includes/admin/core/class-admin-settings.php:1011
2746
  msgid "Show display name in profile header"
2747
  msgstr ""
2748
 
2749
- #: includes/admin/core/class-admin-settings.php:1013
2750
  msgid "Switch on/off the user name on profile header"
2751
  msgstr ""
2752
 
2753
- #: includes/admin/core/class-admin-settings.php:1018
2754
  msgid "Show social links in profile header"
2755
  msgstr ""
2756
 
2757
- #: includes/admin/core/class-admin-settings.php:1020
2758
  msgid "Switch on/off the social links on profile header"
2759
  msgstr ""
2760
 
2761
- #: includes/admin/core/class-admin-settings.php:1025
2762
  msgid "Show user description in header"
2763
  msgstr ""
2764
 
2765
- #: includes/admin/core/class-admin-settings.php:1027
2766
  msgid "Switch on/off the user description on profile header"
2767
  msgstr ""
2768
 
2769
- #: includes/admin/core/class-admin-settings.php:1032
2770
  msgid "Enable HTML support for user description"
2771
  msgstr ""
2772
 
2773
- #: includes/admin/core/class-admin-settings.php:1033
2774
  msgid ""
2775
  "Switch on/off to enable/disable support for html tags on user description."
2776
  msgstr ""
2777
 
2778
- #: includes/admin/core/class-admin-settings.php:1038
2779
  msgid "User description maximum chars"
2780
  msgstr ""
2781
 
2782
- #: includes/admin/core/class-admin-settings.php:1040
2783
  msgid ""
2784
  "Maximum number of characters to allow in user description field in header."
2785
  msgstr ""
2786
 
2787
- #: includes/admin/core/class-admin-settings.php:1047
2788
  msgid "Profile Header Menu Position"
2789
  msgstr ""
2790
 
2791
- #: includes/admin/core/class-admin-settings.php:1049
2792
  msgid ""
2793
  "For incompatible themes, please make the menu open from left instead of "
2794
  "bottom by default."
2795
  msgstr ""
2796
 
2797
- #: includes/admin/core/class-admin-settings.php:1051
2798
  msgid "Bottom of Icon"
2799
  msgstr ""
2800
 
2801
- #: includes/admin/core/class-admin-settings.php:1052
2802
  msgid "Left of Icon (right for RTL)"
2803
  msgstr ""
2804
 
2805
- #: includes/admin/core/class-admin-settings.php:1059
2806
  msgid "Show a custom message if profile is empty"
2807
  msgstr ""
2808
 
2809
- #: includes/admin/core/class-admin-settings.php:1061
2810
  msgid "Switch on/off the custom message that appears when the profile is empty"
2811
  msgstr ""
2812
 
2813
- #: includes/admin/core/class-admin-settings.php:1066
2814
  msgid "Show the emoticon"
2815
  msgstr ""
2816
 
2817
- #: includes/admin/core/class-admin-settings.php:1068
2818
  msgid "Switch on/off the emoticon (sad face) that appears above the message"
2819
  msgstr ""
2820
 
2821
- #: includes/admin/core/class-admin-settings.php:1074
2822
  msgid "Profile Menu"
2823
  msgstr ""
2824
 
2825
- #: includes/admin/core/class-admin-settings.php:1078
2826
  #: includes/admin/templates/form/mode.php:12
2827
  msgid "Registration Form"
2828
  msgstr ""
2829
 
2830
- #: includes/admin/core/class-admin-settings.php:1083
2831
  msgid "Registration Default Template"
2832
  msgstr ""
2833
 
2834
- #: includes/admin/core/class-admin-settings.php:1084
2835
  msgid "This will be the default template to output registration"
2836
  msgstr ""
2837
 
2838
- #: includes/admin/core/class-admin-settings.php:1092
2839
  msgid "Registration Maximum Width"
2840
  msgstr ""
2841
 
2842
- #: includes/admin/core/class-admin-settings.php:1100
2843
  msgid "Registration Shortcode Alignment"
2844
  msgstr ""
2845
 
2846
- #: includes/admin/core/class-admin-settings.php:1101
2847
- #: includes/admin/core/class-admin-settings.php:1191
2848
  #: includes/admin/templates/form/profile_customize.php:127
2849
  msgid "The shortcode is centered by default unless you specify otherwise here"
2850
  msgstr ""
2851
 
2852
- #: includes/admin/core/class-admin-settings.php:1104
2853
- #: includes/admin/core/class-admin-settings.php:1194
2854
  msgid "Centered"
2855
  msgstr ""
2856
 
2857
- #: includes/admin/core/class-admin-settings.php:1105
2858
- #: includes/admin/core/class-admin-settings.php:1195
2859
  msgid "Left aligned"
2860
  msgstr ""
2861
 
2862
- #: includes/admin/core/class-admin-settings.php:1106
2863
- #: includes/admin/core/class-admin-settings.php:1196
2864
  msgid "Right aligned"
2865
  msgstr ""
2866
 
2867
- #: includes/admin/core/class-admin-settings.php:1113
2868
  msgid "Registration Field Icons"
2869
  msgstr ""
2870
 
2871
- #: includes/admin/core/class-admin-settings.php:1114
2872
  msgid "This controls the display of field icons in the registration form"
2873
  msgstr ""
2874
 
2875
- #: includes/admin/core/class-admin-settings.php:1126
2876
  msgid "Registration Primary Button Text"
2877
  msgstr ""
2878
 
2879
- #: includes/admin/core/class-admin-settings.php:1128
2880
- #: includes/admin/core/class-admin-settings.php:1218
2881
  msgid "The text that is used for primary button text"
2882
  msgstr ""
2883
 
2884
- #: includes/admin/core/class-admin-settings.php:1134
2885
  msgid "Registration Secondary Button"
2886
  msgstr ""
2887
 
2888
- #: includes/admin/core/class-admin-settings.php:1141
2889
  msgid "Registration Secondary Button Text"
2890
  msgstr ""
2891
 
2892
- #: includes/admin/core/class-admin-settings.php:1143
2893
- #: includes/admin/core/class-admin-settings.php:1233
2894
  msgid "The text that is used for the secondary button text"
2895
  msgstr ""
2896
 
2897
- #: includes/admin/core/class-admin-settings.php:1150
2898
  msgid "Registration Secondary Button URL"
2899
  msgstr ""
2900
 
2901
- #: includes/admin/core/class-admin-settings.php:1152
2902
- #: includes/admin/core/class-admin-settings.php:1242
2903
  msgid "You can replace default link for this button by entering custom URL"
2904
  msgstr ""
2905
 
2906
- #: includes/admin/core/class-admin-settings.php:1159
2907
  msgid "Registration Default Role"
2908
  msgstr ""
2909
 
2910
- #: includes/admin/core/class-admin-settings.php:1160
2911
  msgid ""
2912
  "This will be the default role assigned to users registering thru "
2913
  "registration form"
2914
  msgstr ""
2915
 
2916
- #: includes/admin/core/class-admin-settings.php:1168
2917
  #: includes/admin/templates/form/mode.php:16
2918
  msgid "Login Form"
2919
  msgstr ""
2920
 
2921
- #: includes/admin/core/class-admin-settings.php:1173
2922
  msgid "Login Default Template"
2923
  msgstr ""
2924
 
2925
- #: includes/admin/core/class-admin-settings.php:1174
2926
  msgid "This will be the default template to output login"
2927
  msgstr ""
2928
 
2929
- #: includes/admin/core/class-admin-settings.php:1182
2930
  msgid "Login Maximum Width"
2931
  msgstr ""
2932
 
2933
- #: includes/admin/core/class-admin-settings.php:1190
2934
  msgid "Login Shortcode Alignment"
2935
  msgstr ""
2936
 
2937
- #: includes/admin/core/class-admin-settings.php:1203
2938
  msgid "Login Field Icons"
2939
  msgstr ""
2940
 
2941
- #: includes/admin/core/class-admin-settings.php:1204
2942
  msgid "This controls the display of field icons in the login form"
2943
  msgstr ""
2944
 
2945
- #: includes/admin/core/class-admin-settings.php:1216
2946
  msgid "Login Primary Button Text"
2947
  msgstr ""
2948
 
2949
- #: includes/admin/core/class-admin-settings.php:1224
2950
  msgid "Login Secondary Button"
2951
  msgstr ""
2952
 
2953
- #: includes/admin/core/class-admin-settings.php:1231
2954
  msgid "Login Secondary Button Text"
2955
  msgstr ""
2956
 
2957
- #: includes/admin/core/class-admin-settings.php:1240
2958
  msgid "Login Secondary Button URL"
2959
  msgstr ""
2960
 
2961
- #: includes/admin/core/class-admin-settings.php:1249
2962
  msgid "Login Forgot Password Link"
2963
  msgstr ""
2964
 
2965
- #: includes/admin/core/class-admin-settings.php:1251
2966
  msgid "Switch on/off the forgot password link in login form"
2967
  msgstr ""
2968
 
2969
- #: includes/admin/core/class-admin-settings.php:1256
2970
  msgid "Show \"Remember Me\""
2971
  msgstr ""
2972
 
2973
- #: includes/admin/core/class-admin-settings.php:1258
2974
  msgid ""
2975
  "Allow users to choose If they want to stay signed in even after closing the "
2976
  "browser. If you do not show this option, the default will be to not remember "
2977
  "login session."
2978
  msgstr ""
2979
 
2980
- #: includes/admin/core/class-admin-settings.php:1268
2981
  msgid "Licenses"
2982
  msgstr ""
2983
 
2984
- #: includes/admin/core/class-admin-settings.php:1271
2985
  msgid "Misc"
2986
  msgstr ""
2987
 
2988
- #: includes/admin/core/class-admin-settings.php:1276
2989
  msgid "Show an asterisk for required fields"
2990
  msgstr ""
2991
 
2992
- #: includes/admin/core/class-admin-settings.php:1281
2993
  msgid "User Profile Title"
2994
  msgstr ""
2995
 
2996
- #: includes/admin/core/class-admin-settings.php:1282
2997
  msgid "This is the title that is displayed on a specific user profile"
2998
  msgstr ""
2999
 
3000
- #: includes/admin/core/class-admin-settings.php:1288
3001
  msgid "User Profile Dynamic Meta Description"
3002
  msgstr ""
3003
 
3004
- #: includes/admin/core/class-admin-settings.php:1289
3005
  msgid ""
3006
  "This will be used in the meta description that is available for search-"
3007
  "engines."
3008
  msgstr ""
3009
 
3010
- #: includes/admin/core/class-admin-settings.php:1297
3011
  msgid "Disable Cache User Profile"
3012
  msgstr ""
3013
 
3014
- #: includes/admin/core/class-admin-settings.php:1298
3015
  msgid ""
3016
  "Check this box if you would like to disable Ultimate Member user's cache."
3017
  msgstr ""
3018
 
3019
- #: includes/admin/core/class-admin-settings.php:1303
3020
  msgid "Enable Gutenberg Blocks"
3021
  msgstr ""
3022
 
3023
- #: includes/admin/core/class-admin-settings.php:1304
3024
  msgid ""
3025
  "Check this box if you would like to use Ultimate Member blocks in Gutenberg "
3026
  "editor. Important some themes have the conflicts with Gutenberg editor."
3027
  msgstr ""
3028
 
3029
- #: includes/admin/core/class-admin-settings.php:1309
3030
  msgid "REST API version"
3031
  msgstr ""
3032
 
3033
- #: includes/admin/core/class-admin-settings.php:1310
3034
  msgid ""
3035
  "This controls the REST API version, we recommend to use the last version"
3036
  msgstr ""
3037
 
3038
- #: includes/admin/core/class-admin-settings.php:1312
3039
  msgid "1.0 version"
3040
  msgstr ""
3041
 
3042
- #: includes/admin/core/class-admin-settings.php:1313
3043
  msgid "2.0 version"
3044
  msgstr ""
3045
 
3046
- #: includes/admin/core/class-admin-settings.php:1320
3047
  msgid "Remove Data on Uninstall?"
3048
  msgstr ""
3049
 
3050
- #: includes/admin/core/class-admin-settings.php:1321
3051
  msgid ""
3052
  "Check this box if you would like Ultimate Member to completely remove all of "
3053
  "its data when the plugin/extensions are deleted."
3054
  msgstr ""
3055
 
3056
- #: includes/admin/core/class-admin-settings.php:1326
3057
  msgid "Install Info"
3058
  msgstr ""
3059
 
3060
- #: includes/admin/core/class-admin-settings.php:1443
3061
  msgid "Ultimate Member - Settings"
3062
  msgstr ""
3063
 
3064
- #: includes/admin/core/class-admin-settings.php:1573
3065
  msgid "Save Changes"
3066
  msgstr ""
3067
 
3068
- #: includes/admin/core/class-admin-settings.php:2143
3069
  msgid "Subject Line"
3070
  msgstr ""
3071
 
3072
- #: includes/admin/core/class-admin-settings.php:2145
3073
  msgid "This is the subject line of the e-mail"
3074
  msgstr ""
3075
 
3076
- #: includes/admin/core/class-admin-settings.php:2150
3077
  msgid "Message Body"
3078
  msgstr ""
3079
 
3080
- #: includes/admin/core/class-admin-settings.php:2152
3081
  msgid "This is the content of the e-mail"
3082
  msgstr ""
3083
 
3084
- #: includes/admin/core/class-admin-settings.php:2202
3085
- #: includes/admin/core/class-admin-settings.php:2312
3086
- #, php-format
3087
  msgid ""
3088
  "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
3089
  "\">renew your license key</a>."
3090
  msgstr ""
3091
 
3092
- #: includes/admin/core/class-admin-settings.php:2215
3093
- #: includes/admin/core/class-admin-settings.php:2325
3094
- #, php-format
3095
  msgid ""
3096
  "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
3097
  "\">contact support</a> for more information."
3098
  msgstr ""
3099
 
3100
- #: includes/admin/core/class-admin-settings.php:2227
3101
- #: includes/admin/core/class-admin-settings.php:2337
3102
- #, php-format
3103
  msgid ""
3104
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
3105
  "page</a> and verify it."
3106
  msgstr ""
3107
 
3108
- #: includes/admin/core/class-admin-settings.php:2240
3109
- #: includes/admin/core/class-admin-settings.php:2350
3110
- #, php-format
3111
  msgid ""
3112
  "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
3113
  "\">visit your account page</a> to manage your license key URLs."
3114
  msgstr ""
3115
 
3116
- #: includes/admin/core/class-admin-settings.php:2252
3117
- #: includes/admin/core/class-admin-settings.php:2362
3118
- #, php-format
3119
  msgid "This appears to be an invalid license key for %s."
3120
  msgstr ""
3121
 
3122
- #: includes/admin/core/class-admin-settings.php:2261
3123
- #: includes/admin/core/class-admin-settings.php:2371
3124
- #, php-format
3125
  msgid ""
3126
  "Your license key has reached its activation limit. <a href=\"%s\">View "
3127
  "possible upgrades</a> now."
3128
  msgstr ""
3129
 
3130
- #: includes/admin/core/class-admin-settings.php:2270
3131
- #: includes/admin/core/class-admin-settings.php:2380
3132
  msgid ""
3133
  "The key you entered belongs to a bundle, please use the product specific "
3134
  "license key."
3135
  msgstr ""
3136
 
3137
- #: includes/admin/core/class-admin-settings.php:2278
3138
- #: includes/admin/core/class-admin-settings.php:2286
3139
- #: includes/admin/core/class-admin-settings.php:2298
3140
  msgid "unknown_error"
3141
  msgstr ""
3142
 
3143
- #: includes/admin/core/class-admin-settings.php:2279
3144
- #: includes/admin/core/class-admin-settings.php:2287
3145
- #, php-format
3146
  msgid ""
3147
  "There was an error with this license key: %s. Please <a href=\"%s\">contact "
3148
  "our support team</a>."
3149
  msgstr ""
3150
 
3151
- #: includes/admin/core/class-admin-settings.php:2300
3152
- #, php-format
3153
  msgid ""
3154
  "There was an error with this license key: %s%s. Please <a href=\"%s"
3155
  "\">contact our support team</a>."
3156
  msgstr ""
3157
 
3158
- #: includes/admin/core/class-admin-settings.php:2395
3159
  msgid "License key never expires."
3160
  msgstr ""
3161
 
3162
- #: includes/admin/core/class-admin-settings.php:2402
3163
- #, php-format
3164
  msgid ""
3165
  "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
3166
  "\"_blank\">Renew your license key</a>."
3167
  msgstr ""
3168
 
3169
- #: includes/admin/core/class-admin-settings.php:2412
3170
- #, php-format
3171
  msgid "Your license key expires on %s."
3172
  msgstr ""
3173
 
3174
- #: includes/admin/core/class-admin-settings.php:2430
3175
- #, php-format
3176
  msgid "To receive updates, please enter your valid %s license key."
3177
  msgstr ""
3178
 
3179
- #: includes/admin/core/class-admin-settings.php:2452
3180
  msgid "Clear License"
3181
  msgstr ""
3182
 
3183
- #: includes/admin/core/class-admin-settings.php:2454
3184
  msgid "Activate"
3185
  msgstr ""
3186
 
3187
- #: includes/admin/core/class-admin-settings.php:2456
3188
  msgid "Re-Activate"
3189
  msgstr ""
3190
 
3191
- #: includes/admin/core/class-admin-settings.php:2508
3192
  msgid ""
3193
  "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
3194
  "(Mac)."
3195
  msgstr ""
3196
 
3197
  #: includes/admin/core/class-admin-upgrade.php:131
3198
- #, php-format
3199
  msgid ""
3200
  "%s is a major update, and we highly recommend creating a full backup of your "
3201
  "site before updating."
@@ -3210,12 +3155,10 @@ msgid "empty"
3210
  msgstr ""
3211
 
3212
  #: includes/admin/core/class-admin-upgrade.php:248
3213
- #, php-format
3214
  msgid "%s - Upgrade Process"
3215
  msgstr ""
3216
 
3217
  #: includes/admin/core/class-admin-upgrade.php:249
3218
- #, php-format
3219
  msgid ""
3220
  "You have installed <strong>%s</strong> version. Your latest DB version is "
3221
  "<strong>%s</strong>. We recommend creating a backup of your site before "
@@ -3240,7 +3183,7 @@ msgid "UM Action"
3240
  msgstr ""
3241
 
3242
  #: includes/admin/core/class-admin-users.php:124
3243
- #: includes/core/class-fields.php:2643
3244
  msgid "Apply"
3245
  msgstr ""
3246
 
@@ -3283,6 +3226,7 @@ msgstr ""
3283
 
3284
  #: includes/admin/core/class-admin-users.php:308
3285
  #: includes/admin/core/class-admin-users.php:310
 
3286
  msgid "All"
3287
  msgstr ""
3288
 
@@ -3350,7 +3294,6 @@ msgid "Recipient(s)"
3350
  msgstr ""
3351
 
3352
  #: includes/admin/core/list-tables/emails-list-table.php:323
3353
- #, php-format
3354
  msgid ""
3355
  "You may get more details about email notifications customization <a href=\"%s"
3356
  "\">here</a>"
@@ -3404,7 +3347,6 @@ msgid "Priority"
3404
  msgstr ""
3405
 
3406
  #: includes/admin/core/list-tables/roles-list-table.php:485
3407
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:14
3408
  #: includes/admin/templates/role/role-edit.php:156
3409
  #: includes/core/class-common.php:60 includes/core/class-common.php:90
3410
  msgid "Add New"
@@ -3424,7 +3366,6 @@ msgid "User Roles was upgraded successfully"
3424
  msgstr ""
3425
 
3426
  #: includes/admin/core/packages/2.0-beta1/functions.php:89
3427
- #, php-format
3428
  msgid "Users from %s to %s was upgraded successfully..."
3429
  msgstr ""
3430
 
@@ -3453,7 +3394,6 @@ msgid "Forums are ready for upgrade"
3453
  msgstr ""
3454
 
3455
  #: includes/admin/core/packages/2.0-beta1/functions.php:218
3456
- #, php-format
3457
  msgid "Forums from %s to %s was upgraded successfully..."
3458
  msgstr ""
3459
 
@@ -3462,7 +3402,6 @@ msgid "Woocommerce Products are ready for upgrade"
3462
  msgstr ""
3463
 
3464
  #: includes/admin/core/packages/2.0-beta1/functions.php:305
3465
- #, php-format
3466
  msgid "Woocommerce Products from %s to %s was upgraded successfully..."
3467
  msgstr ""
3468
 
@@ -3495,6 +3434,7 @@ msgstr ""
3495
 
3496
  #: includes/admin/core/packages/2.0-beta1/init.php:85
3497
  #: includes/admin/core/packages/2.1.3-beta3/init.php:22
 
3498
  msgid "There are "
3499
  msgstr ""
3500
 
@@ -3546,31 +3486,6 @@ msgstr ""
3546
  msgid "Upgrade Email Templates..."
3547
  msgstr ""
3548
 
3549
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:13
3550
- msgid "User Role"
3551
- msgstr ""
3552
-
3553
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:15
3554
- msgid "Add New User Role"
3555
- msgstr ""
3556
-
3557
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:16
3558
- msgid "Edit User Role"
3559
- msgstr ""
3560
-
3561
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:17
3562
- msgid "You did not create any user roles yet"
3563
- msgstr ""
3564
-
3565
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:18
3566
- #: includes/core/class-common.php:64 includes/core/class-common.php:94
3567
- msgid "Nothing found in Trash"
3568
- msgstr ""
3569
-
3570
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:19
3571
- msgid "Search User Roles"
3572
- msgstr ""
3573
-
3574
  #: includes/admin/core/packages/2.0.10/functions.php:21
3575
  msgid "Users cache was cleared successfully"
3576
  msgstr ""
@@ -3621,7 +3536,6 @@ msgid "Upgrade Member Directories..."
3621
  msgstr ""
3622
 
3623
  #: includes/admin/core/packages/2.1.3-beta3/functions.php:118
3624
- #, php-format
3625
  msgid "Metadata from %s to %s users were upgraded successfully..."
3626
  msgstr ""
3627
 
@@ -3630,6 +3544,7 @@ msgid "Usermeta table was upgraded successfully"
3630
  msgstr ""
3631
 
3632
  #: includes/admin/core/packages/2.1.3-beta3/init.php:23
 
3633
  msgid "Start metadata upgrading..."
3634
  msgstr ""
3635
 
@@ -3637,14 +3552,6 @@ msgstr ""
3637
  msgid "Create additional metadata table..."
3638
  msgstr ""
3639
 
3640
- #: includes/admin/core/packages/2.1.5/functions.php:95
3641
- msgid "Balance fields were updated successfully"
3642
- msgstr ""
3643
-
3644
- #: includes/admin/core/packages/2.1.5/functions.php:97
3645
- msgid "Updated successfully"
3646
- msgstr ""
3647
-
3648
  #: includes/admin/core/packages/2.1.5/init.php:6
3649
  msgid "Upgrade form fields..."
3650
  msgstr ""
@@ -3654,7 +3561,6 @@ msgid "Run this task from time to time to keep your DB clean."
3654
  msgstr ""
3655
 
3656
  #: includes/admin/templates/dashboard/cache.php:15
3657
- #, php-format
3658
  msgid "Clear cache of %s users"
3659
  msgstr ""
3660
 
@@ -3663,7 +3569,6 @@ msgid "Latest From Ultimate Member"
3663
  msgstr ""
3664
 
3665
  #: includes/admin/templates/dashboard/purge.php:7
3666
- #, php-format
3667
  msgid ""
3668
  "You can free up <span class=\"red\">%s MB</span> by purging your temp upload "
3669
  "directory."
@@ -4264,7 +4169,6 @@ msgid "What personal data we collect and why we collect it"
4264
  msgstr ""
4265
 
4266
  #: includes/admin/templates/gdpr.php:10
4267
- #, php-format
4268
  msgid "%s provides you with forms for user registration, login and profiles."
4269
  msgstr ""
4270
 
@@ -4306,7 +4210,6 @@ msgid "Where we send your data"
4306
  msgstr ""
4307
 
4308
  #: includes/admin/templates/gdpr.php:36
4309
- #, php-format
4310
  msgid "%s does not send any user data outside of your site by default."
4311
  msgstr ""
4312
 
@@ -4334,13 +4237,13 @@ msgstr ""
4334
  #: includes/admin/templates/modal/dynamic_new_group.php:18
4335
  #: includes/admin/templates/modal/fonticons.php:14
4336
  #: includes/admin/templates/role/publish.php:24 includes/class-config.php:254
4337
- #: includes/core/class-fields.php:2644 includes/core/class-fields.php:2743
4338
- #: includes/core/um-actions-profile.php:749
4339
- #: includes/core/um-actions-profile.php:761
4340
- #: includes/core/um-actions-profile.php:949
4341
- #: includes/core/um-actions-profile.php:982
4342
- #: includes/core/um-actions-profile.php:1329
4343
- #: includes/core/um-actions-profile.php:1336
4344
  msgid "Cancel"
4345
  msgstr ""
4346
 
@@ -4383,7 +4286,6 @@ msgid "Fields Manager"
4383
  msgstr ""
4384
 
4385
  #: includes/admin/templates/modal/fonticons.php:7
4386
- #, php-format
4387
  msgid "Choose from %s available icons"
4388
  msgstr ""
4389
 
@@ -4617,6 +4519,7 @@ msgstr ""
4617
 
4618
  #: includes/admin/templates/role/register.php:57
4619
  #: includes/admin/templates/role/register.php:91
 
4620
  msgid "Show custom message"
4621
  msgstr ""
4622
 
@@ -4690,28 +4593,30 @@ msgstr ""
4690
  msgid "Check All"
4691
  msgstr ""
4692
 
4693
- #: includes/class-config.php:131 includes/class-config.php:789
4694
  msgid "User"
4695
  msgstr ""
4696
 
4697
  #: includes/class-config.php:132 includes/class-config.php:264
4698
- #: includes/class-config.php:272 includes/class-config.php:790
4699
  msgid "Login"
4700
  msgstr ""
4701
 
4702
  #: includes/class-config.php:133 includes/class-config.php:262
4703
- #: includes/class-config.php:276 includes/class-config.php:791
4704
  msgid "Register"
4705
  msgstr ""
4706
 
4707
- #: includes/class-config.php:135 includes/class-config.php:793
4708
- #: includes/core/class-member-directory.php:2181
4709
- #: includes/core/um-actions-profile.php:1335
4710
  #: includes/core/um-actions-user.php:19
4711
  msgid "Logout"
4712
  msgstr ""
4713
 
4714
- #: includes/class-config.php:137 includes/class-config.php:795
 
 
4715
  msgid "Password Reset"
4716
  msgstr ""
4717
 
@@ -4844,49 +4749,49 @@ msgstr ""
4844
  #: includes/class-config.php:529
4845
  msgid ""
4846
  "Are you sure you want to delete your account? This will erase all of your "
4847
- "account data from the site. To delete your account enter your password below"
4848
  msgstr ""
4849
 
4850
- #: includes/class-dependencies.php:192
4851
- #, php-format
 
 
 
 
 
 
4852
  msgid ""
4853
  "This version of <strong>\"%s\"</strong> requires the core <strong>%s</"
4854
  "strong> plugin to be <strong>%s</strong> or higher."
4855
  msgstr ""
4856
 
4857
- #: includes/class-dependencies.php:194
4858
- #, php-format
4859
  msgid "Please update <strong>%s</strong> to the latest version."
4860
  msgstr ""
4861
 
4862
- #: includes/class-dependencies.php:196
4863
- #, php-format
4864
  msgid ""
4865
  "Sorry, but this version of <strong>%s</strong> does not work with extension "
4866
  "<strong>\"%s\" %s</strong> version."
4867
  msgstr ""
4868
 
4869
- #: includes/class-dependencies.php:198
4870
- #, php-format
4871
  msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4872
  msgstr ""
4873
 
4874
- #: includes/class-dependencies.php:207
4875
- #, php-format
4876
  msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4877
  msgstr ""
4878
 
4879
- #: includes/class-dependencies.php:209
4880
- #, php-format
4881
  msgid "Correct folder name is <strong>\"%s\"</strong>"
4882
  msgstr ""
4883
 
4884
  #: includes/class-extensions.php:101
4885
- #, php-format
4886
  msgid "%s License Key"
4887
  msgstr ""
4888
 
4889
- #: includes/class-init.php:157 includes/class-init.php:166
4890
  msgid "Cheatin&#8217; huh?"
4891
  msgstr ""
4892
 
@@ -4911,7 +4816,7 @@ msgid "Update Notifications"
4911
  msgstr ""
4912
 
4913
  #: includes/core/class-account.php:124 includes/core/class-account.php:125
4914
- #: includes/core/class-builtin.php:1152 includes/core/class-builtin.php:1155
4915
  msgid "Delete Account"
4916
  msgstr ""
4917
 
@@ -4991,6 +4896,8 @@ msgid "You must add a shortcode to the content area"
4991
  msgstr ""
4992
 
4993
  #: includes/core/class-builtin.php:671 includes/core/class-user.php:1711
 
 
4994
  msgid "Only me"
4995
  msgstr ""
4996
 
@@ -5010,7 +4917,7 @@ msgid "Last Name"
5010
  msgstr ""
5011
 
5012
  #: includes/core/class-builtin.php:750 includes/core/class-builtin.php:753
5013
- #: includes/core/class-builtin.php:1361
5014
  msgid "Website URL"
5015
  msgstr ""
5016
 
@@ -5088,7 +4995,7 @@ msgid "Instagram"
5088
  msgstr ""
5089
 
5090
  #: includes/core/class-builtin.php:946 includes/core/class-builtin.php:949
5091
- #: includes/core/class-builtin.php:1353
5092
  msgid "Skype ID"
5093
  msgstr ""
5094
 
@@ -5130,7 +5037,7 @@ msgid "Select languages"
5130
  msgstr ""
5131
 
5132
  #: includes/core/class-builtin.php:1050 includes/core/class-builtin.php:1053
5133
- #: includes/core/class-builtin.php:1352
5134
  #: includes/core/class-member-directory.php:322
5135
  msgid "Phone Number"
5136
  msgstr ""
@@ -5157,7 +5064,7 @@ msgid "Cover Photo"
5157
  msgstr ""
5158
 
5159
  #: includes/core/class-builtin.php:1093
5160
- #: includes/core/um-actions-profile.php:709
5161
  msgid "Change your cover photo"
5162
  msgstr ""
5163
 
@@ -5178,1813 +5085,1821 @@ msgid "Who can see your public profile?"
5178
  msgstr ""
5179
 
5180
  #: includes/core/class-builtin.php:1134 includes/core/class-builtin.php:1137
5181
- msgid "Hide my profile from directory"
5182
  msgstr ""
5183
 
5184
  #: includes/core/class-builtin.php:1138
 
 
 
 
 
 
 
 
5185
  msgid "Here you can hide yourself from appearing in public directory"
5186
  msgstr ""
5187
 
5188
- #: includes/core/class-builtin.php:1156
5189
  msgid ""
5190
  "If you confirm, everything related to your profile will be deleted "
5191
  "permanently from the site"
5192
  msgstr ""
5193
 
5194
- #: includes/core/class-builtin.php:1342
5195
  msgid "Alphabetic value only"
5196
  msgstr ""
5197
 
5198
- #: includes/core/class-builtin.php:1343
5199
  msgid "Alpha-numeric value"
5200
  msgstr ""
5201
 
5202
- #: includes/core/class-builtin.php:1344
5203
  msgid "English letters only"
5204
  msgstr ""
5205
 
5206
- #: includes/core/class-builtin.php:1345
5207
  msgid "Facebook URL"
5208
  msgstr ""
5209
 
5210
- #: includes/core/class-builtin.php:1346
5211
  msgid "Google+ URL"
5212
  msgstr ""
5213
 
5214
- #: includes/core/class-builtin.php:1347
5215
  msgid "Instagram URL"
5216
  msgstr ""
5217
 
5218
- #: includes/core/class-builtin.php:1348
5219
  msgid "LinkedIn URL"
5220
  msgstr ""
5221
 
5222
- #: includes/core/class-builtin.php:1349
5223
  msgid "VKontakte URL"
5224
  msgstr ""
5225
 
5226
- #: includes/core/class-builtin.php:1350
5227
  msgid "Lowercase only"
5228
  msgstr ""
5229
 
5230
- #: includes/core/class-builtin.php:1351
5231
  msgid "Numeric value only"
5232
  msgstr ""
5233
 
5234
- #: includes/core/class-builtin.php:1354
5235
  msgid "SoundCloud Profile"
5236
  msgstr ""
5237
 
5238
- #: includes/core/class-builtin.php:1355
5239
  msgid "Twitter URL"
5240
  msgstr ""
5241
 
5242
- #: includes/core/class-builtin.php:1356
5243
  msgid "E-mail( Not Unique )"
5244
  msgstr ""
5245
 
5246
- #: includes/core/class-builtin.php:1357
5247
  msgid "Unique E-mail"
5248
  msgstr ""
5249
 
5250
- #: includes/core/class-builtin.php:1358
5251
  msgid "Unique Metakey value"
5252
  msgstr ""
5253
 
5254
- #: includes/core/class-builtin.php:1359
5255
  msgid "Unique Username"
5256
  msgstr ""
5257
 
5258
- #: includes/core/class-builtin.php:1360
5259
  msgid "Unique Username/E-mail"
5260
  msgstr ""
5261
 
5262
- #: includes/core/class-builtin.php:1362
5263
  msgid "YouTube Profile"
5264
  msgstr ""
5265
 
5266
- #: includes/core/class-builtin.php:1363
5267
  msgid "Custom Validation"
5268
  msgstr ""
5269
 
5270
- #: includes/core/class-builtin.php:1402
5271
  msgid "Afar"
5272
  msgstr ""
5273
 
5274
- #: includes/core/class-builtin.php:1403
5275
  msgid "Abkhazian"
5276
  msgstr ""
5277
 
5278
- #: includes/core/class-builtin.php:1404
5279
  msgid "Avestan"
5280
  msgstr ""
5281
 
5282
- #: includes/core/class-builtin.php:1405
5283
  msgid "Afrikaans"
5284
  msgstr ""
5285
 
5286
- #: includes/core/class-builtin.php:1406
5287
  msgid "Akan"
5288
  msgstr ""
5289
 
5290
- #: includes/core/class-builtin.php:1407
5291
  msgid "Amharic"
5292
  msgstr ""
5293
 
5294
- #: includes/core/class-builtin.php:1408
5295
  msgid "Aragonese"
5296
  msgstr ""
5297
 
5298
- #: includes/core/class-builtin.php:1409
5299
  msgid "Arabic"
5300
  msgstr ""
5301
 
5302
- #: includes/core/class-builtin.php:1410
5303
  msgid "Assamese"
5304
  msgstr ""
5305
 
5306
- #: includes/core/class-builtin.php:1411
5307
  msgid "Avaric"
5308
  msgstr ""
5309
 
5310
- #: includes/core/class-builtin.php:1412
5311
  msgid "Aymara"
5312
  msgstr ""
5313
 
5314
- #: includes/core/class-builtin.php:1413
5315
  msgid "Azerbaijani"
5316
  msgstr ""
5317
 
5318
- #: includes/core/class-builtin.php:1414
5319
  msgid "Bashkir"
5320
  msgstr ""
5321
 
5322
- #: includes/core/class-builtin.php:1415
5323
  msgid "Belarusian"
5324
  msgstr ""
5325
 
5326
- #: includes/core/class-builtin.php:1416
5327
  msgid "Bulgarian"
5328
  msgstr ""
5329
 
5330
- #: includes/core/class-builtin.php:1417
5331
  msgid "Bihari"
5332
  msgstr ""
5333
 
5334
- #: includes/core/class-builtin.php:1418
5335
  msgid "Bislama"
5336
  msgstr ""
5337
 
5338
- #: includes/core/class-builtin.php:1419
5339
  msgid "Bambara"
5340
  msgstr ""
5341
 
5342
- #: includes/core/class-builtin.php:1420
5343
  msgid "Bengali"
5344
  msgstr ""
5345
 
5346
- #: includes/core/class-builtin.php:1421
5347
  msgid "Tibetan"
5348
  msgstr ""
5349
 
5350
- #: includes/core/class-builtin.php:1422
5351
  msgid "Breton"
5352
  msgstr ""
5353
 
5354
- #: includes/core/class-builtin.php:1423
5355
  msgid "Bosnian"
5356
  msgstr ""
5357
 
5358
- #: includes/core/class-builtin.php:1424
5359
  msgid "Catalan"
5360
  msgstr ""
5361
 
5362
- #: includes/core/class-builtin.php:1425
5363
  msgid "Chechen"
5364
  msgstr ""
5365
 
5366
- #: includes/core/class-builtin.php:1426
5367
  msgid "Chamorro"
5368
  msgstr ""
5369
 
5370
- #: includes/core/class-builtin.php:1427
5371
  msgid "Corsican"
5372
  msgstr ""
5373
 
5374
- #: includes/core/class-builtin.php:1428
5375
  msgid "Cree"
5376
  msgstr ""
5377
 
5378
- #: includes/core/class-builtin.php:1429
5379
  msgid "Czech"
5380
  msgstr ""
5381
 
5382
- #: includes/core/class-builtin.php:1430
5383
  msgid "Church Slavic"
5384
  msgstr ""
5385
 
5386
- #: includes/core/class-builtin.php:1431
5387
  msgid "Chuvash"
5388
  msgstr ""
5389
 
5390
- #: includes/core/class-builtin.php:1432
5391
  msgid "Welsh"
5392
  msgstr ""
5393
 
5394
- #: includes/core/class-builtin.php:1433
5395
  msgid "Danish"
5396
  msgstr ""
5397
 
5398
- #: includes/core/class-builtin.php:1434
5399
  msgid "German"
5400
  msgstr ""
5401
 
5402
- #: includes/core/class-builtin.php:1435
5403
  msgid "Divehi"
5404
  msgstr ""
5405
 
5406
- #: includes/core/class-builtin.php:1436
5407
  msgid "Dzongkha"
5408
  msgstr ""
5409
 
5410
- #: includes/core/class-builtin.php:1437
5411
  msgid "Ewe"
5412
  msgstr ""
5413
 
5414
- #: includes/core/class-builtin.php:1438
5415
  msgid "Greek"
5416
  msgstr ""
5417
 
5418
- #: includes/core/class-builtin.php:1439
5419
  msgid "English"
5420
  msgstr ""
5421
 
5422
- #: includes/core/class-builtin.php:1440
5423
  msgid "Esperanto"
5424
  msgstr ""
5425
 
5426
- #: includes/core/class-builtin.php:1441
5427
  msgid "Spanish"
5428
  msgstr ""
5429
 
5430
- #: includes/core/class-builtin.php:1442
5431
  msgid "Estonian"
5432
  msgstr ""
5433
 
5434
- #: includes/core/class-builtin.php:1443
5435
  msgid "Basque"
5436
  msgstr ""
5437
 
5438
- #: includes/core/class-builtin.php:1444
5439
  msgid "Persian"
5440
  msgstr ""
5441
 
5442
- #: includes/core/class-builtin.php:1445
5443
  msgid "Fulah"
5444
  msgstr ""
5445
 
5446
- #: includes/core/class-builtin.php:1446
5447
  msgid "Finnish"
5448
  msgstr ""
5449
 
5450
- #: includes/core/class-builtin.php:1447
5451
  msgid "Fijian"
5452
  msgstr ""
5453
 
5454
- #: includes/core/class-builtin.php:1448
5455
  msgid "Faroese"
5456
  msgstr ""
5457
 
5458
- #: includes/core/class-builtin.php:1449
5459
  msgid "French"
5460
  msgstr ""
5461
 
5462
- #: includes/core/class-builtin.php:1450
5463
  msgid "Western Frisian"
5464
  msgstr ""
5465
 
5466
- #: includes/core/class-builtin.php:1451
5467
  msgid "Irish"
5468
  msgstr ""
5469
 
5470
- #: includes/core/class-builtin.php:1452
5471
  msgid "Scottish Gaelic"
5472
  msgstr ""
5473
 
5474
- #: includes/core/class-builtin.php:1453
5475
  msgid "Galician"
5476
  msgstr ""
5477
 
5478
- #: includes/core/class-builtin.php:1454
5479
  msgid "Guarani"
5480
  msgstr ""
5481
 
5482
- #: includes/core/class-builtin.php:1455
5483
  msgid "Gujarati"
5484
  msgstr ""
5485
 
5486
- #: includes/core/class-builtin.php:1456
5487
  msgid "Manx"
5488
  msgstr ""
5489
 
5490
- #: includes/core/class-builtin.php:1457
5491
  msgid "Hausa"
5492
  msgstr ""
5493
 
5494
- #: includes/core/class-builtin.php:1458
5495
  msgid "Hebrew"
5496
  msgstr ""
5497
 
5498
- #: includes/core/class-builtin.php:1459
5499
  msgid "Hindi"
5500
  msgstr ""
5501
 
5502
- #: includes/core/class-builtin.php:1460
5503
  msgid "Hiri Motu"
5504
  msgstr ""
5505
 
5506
- #: includes/core/class-builtin.php:1461
5507
  msgid "Croatian"
5508
  msgstr ""
5509
 
5510
- #: includes/core/class-builtin.php:1462
5511
  msgid "Haitian"
5512
  msgstr ""
5513
 
5514
- #: includes/core/class-builtin.php:1463
5515
  msgid "Hungarian"
5516
  msgstr ""
5517
 
5518
- #: includes/core/class-builtin.php:1464
5519
  msgid "Armenian"
5520
  msgstr ""
5521
 
5522
- #: includes/core/class-builtin.php:1465
5523
  msgid "Herero"
5524
  msgstr ""
5525
 
5526
- #: includes/core/class-builtin.php:1466
5527
  msgid "Interlingua (International Auxiliary Language Association)"
5528
  msgstr ""
5529
 
5530
- #: includes/core/class-builtin.php:1467
5531
  msgid "Indonesian"
5532
  msgstr ""
5533
 
5534
- #: includes/core/class-builtin.php:1468
5535
  msgid "Interlingue"
5536
  msgstr ""
5537
 
5538
- #: includes/core/class-builtin.php:1469
5539
  msgid "Igbo"
5540
  msgstr ""
5541
 
5542
- #: includes/core/class-builtin.php:1470
5543
  msgid "Sichuan Yi"
5544
  msgstr ""
5545
 
5546
- #: includes/core/class-builtin.php:1471
5547
  msgid "Inupiaq"
5548
  msgstr ""
5549
 
5550
- #: includes/core/class-builtin.php:1472
5551
  msgid "Ido"
5552
  msgstr ""
5553
 
5554
- #: includes/core/class-builtin.php:1473
5555
  msgid "Icelandic"
5556
  msgstr ""
5557
 
5558
- #: includes/core/class-builtin.php:1474
5559
  msgid "Italian"
5560
  msgstr ""
5561
 
5562
- #: includes/core/class-builtin.php:1475
5563
  msgid "Inuktitut"
5564
  msgstr ""
5565
 
5566
- #: includes/core/class-builtin.php:1476
5567
  msgid "Japanese"
5568
  msgstr ""
5569
 
5570
- #: includes/core/class-builtin.php:1477
5571
  msgid "Javanese"
5572
  msgstr ""
5573
 
5574
- #: includes/core/class-builtin.php:1478
5575
  msgid "Georgian"
5576
  msgstr ""
5577
 
5578
- #: includes/core/class-builtin.php:1479
5579
  msgid "Kongo"
5580
  msgstr ""
5581
 
5582
- #: includes/core/class-builtin.php:1480
5583
  msgid "Kikuyu"
5584
  msgstr ""
5585
 
5586
- #: includes/core/class-builtin.php:1481
5587
  msgid "Kwanyama"
5588
  msgstr ""
5589
 
5590
- #: includes/core/class-builtin.php:1482
5591
  msgid "Kazakh"
5592
  msgstr ""
5593
 
5594
- #: includes/core/class-builtin.php:1483
5595
  msgid "Kalaallisut"
5596
  msgstr ""
5597
 
5598
- #: includes/core/class-builtin.php:1484
5599
  msgid "Khmer"
5600
  msgstr ""
5601
 
5602
- #: includes/core/class-builtin.php:1485
5603
  msgid "Kannada"
5604
  msgstr ""
5605
 
5606
- #: includes/core/class-builtin.php:1486
5607
  msgid "Korean"
5608
  msgstr ""
5609
 
5610
- #: includes/core/class-builtin.php:1487
5611
  msgid "Kanuri"
5612
  msgstr ""
5613
 
5614
- #: includes/core/class-builtin.php:1488
5615
  msgid "Kashmiri"
5616
  msgstr ""
5617
 
5618
- #: includes/core/class-builtin.php:1489
5619
  msgid "Kurdish"
5620
  msgstr ""
5621
 
5622
- #: includes/core/class-builtin.php:1490
5623
  msgid "Komi"
5624
  msgstr ""
5625
 
5626
- #: includes/core/class-builtin.php:1491
5627
  msgid "Cornish"
5628
  msgstr ""
5629
 
5630
- #: includes/core/class-builtin.php:1492
5631
  msgid "Kirghiz"
5632
  msgstr ""
5633
 
5634
- #: includes/core/class-builtin.php:1493
5635
  msgid "Latin"
5636
  msgstr ""
5637
 
5638
- #: includes/core/class-builtin.php:1494
5639
  msgid "Luxembourgish"
5640
  msgstr ""
5641
 
5642
- #: includes/core/class-builtin.php:1495
5643
  msgid "Ganda"
5644
  msgstr ""
5645
 
5646
- #: includes/core/class-builtin.php:1496
5647
  msgid "Limburgish"
5648
  msgstr ""
5649
 
5650
- #: includes/core/class-builtin.php:1497
5651
  msgid "Lingala"
5652
  msgstr ""
5653
 
5654
- #: includes/core/class-builtin.php:1498
5655
  msgid "Lao"
5656
  msgstr ""
5657
 
5658
- #: includes/core/class-builtin.php:1499
5659
  msgid "Lithuanian"
5660
  msgstr ""
5661
 
5662
- #: includes/core/class-builtin.php:1500
5663
  msgid "Luba-Katanga"
5664
  msgstr ""
5665
 
5666
- #: includes/core/class-builtin.php:1501
5667
  msgid "Latvian"
5668
  msgstr ""
5669
 
5670
- #: includes/core/class-builtin.php:1502
5671
  msgid "Malagasy"
5672
  msgstr ""
5673
 
5674
- #: includes/core/class-builtin.php:1503
5675
  msgid "Marshallese"
5676
  msgstr ""
5677
 
5678
- #: includes/core/class-builtin.php:1504
5679
  msgid "Maori"
5680
  msgstr ""
5681
 
5682
- #: includes/core/class-builtin.php:1505
5683
  msgid "Macedonian"
5684
  msgstr ""
5685
 
5686
- #: includes/core/class-builtin.php:1506
5687
  msgid "Malayalam"
5688
  msgstr ""
5689
 
5690
- #: includes/core/class-builtin.php:1507
5691
  msgid "Mongolian"
5692
  msgstr ""
5693
 
5694
- #: includes/core/class-builtin.php:1508
5695
  msgid "Marathi"
5696
  msgstr ""
5697
 
5698
- #: includes/core/class-builtin.php:1509
5699
  msgid "Malay"
5700
  msgstr ""
5701
 
5702
- #: includes/core/class-builtin.php:1510
5703
  msgid "Maltese"
5704
  msgstr ""
5705
 
5706
- #: includes/core/class-builtin.php:1511
5707
  msgid "Burmese"
5708
  msgstr ""
5709
 
5710
- #: includes/core/class-builtin.php:1512 includes/core/class-builtin.php:1743
5711
  msgid "Nauru"
5712
  msgstr ""
5713
 
5714
- #: includes/core/class-builtin.php:1513
5715
  msgid "Norwegian Bokmal"
5716
  msgstr ""
5717
 
5718
- #: includes/core/class-builtin.php:1514
5719
  msgid "North Ndebele"
5720
  msgstr ""
5721
 
5722
- #: includes/core/class-builtin.php:1515
5723
  msgid "Nepali"
5724
  msgstr ""
5725
 
5726
- #: includes/core/class-builtin.php:1516
5727
  msgid "Ndonga"
5728
  msgstr ""
5729
 
5730
- #: includes/core/class-builtin.php:1517
5731
  msgid "Dutch"
5732
  msgstr ""
5733
 
5734
- #: includes/core/class-builtin.php:1518
5735
  msgid "Norwegian Nynorsk"
5736
  msgstr ""
5737
 
5738
- #: includes/core/class-builtin.php:1519
5739
  msgid "Norwegian"
5740
  msgstr ""
5741
 
5742
- #: includes/core/class-builtin.php:1520
5743
  msgid "South Ndebele"
5744
  msgstr ""
5745
 
5746
- #: includes/core/class-builtin.php:1521
5747
  msgid "Navajo"
5748
  msgstr ""
5749
 
5750
- #: includes/core/class-builtin.php:1522
5751
  msgid "Chichewa"
5752
  msgstr ""
5753
 
5754
- #: includes/core/class-builtin.php:1523
5755
  msgid "Occitan"
5756
  msgstr ""
5757
 
5758
- #: includes/core/class-builtin.php:1524
5759
  msgid "Ojibwa"
5760
  msgstr ""
5761
 
5762
- #: includes/core/class-builtin.php:1525
5763
  msgid "Oromo"
5764
  msgstr ""
5765
 
5766
- #: includes/core/class-builtin.php:1526
5767
  msgid "Oriya"
5768
  msgstr ""
5769
 
5770
- #: includes/core/class-builtin.php:1527
5771
  msgid "Ossetian"
5772
  msgstr ""
5773
 
5774
- #: includes/core/class-builtin.php:1528
5775
  msgid "Panjabi"
5776
  msgstr ""
5777
 
5778
- #: includes/core/class-builtin.php:1529
5779
  msgid "Pali"
5780
  msgstr ""
5781
 
5782
- #: includes/core/class-builtin.php:1530
5783
  msgid "Polish"
5784
  msgstr ""
5785
 
5786
- #: includes/core/class-builtin.php:1531
5787
  msgid "Pashto"
5788
  msgstr ""
5789
 
5790
- #: includes/core/class-builtin.php:1532
5791
  msgid "Portuguese"
5792
  msgstr ""
5793
 
5794
- #: includes/core/class-builtin.php:1533
5795
  msgid "Quechua"
5796
  msgstr ""
5797
 
5798
- #: includes/core/class-builtin.php:1534
5799
  msgid "Raeto-Romance"
5800
  msgstr ""
5801
 
5802
- #: includes/core/class-builtin.php:1535
5803
  msgid "Kirundi"
5804
  msgstr ""
5805
 
5806
- #: includes/core/class-builtin.php:1536
5807
  msgid "Romanian"
5808
  msgstr ""
5809
 
5810
- #: includes/core/class-builtin.php:1537
5811
  msgid "Russian"
5812
  msgstr ""
5813
 
5814
- #: includes/core/class-builtin.php:1538
5815
  msgid "Kinyarwanda"
5816
  msgstr ""
5817
 
5818
- #: includes/core/class-builtin.php:1539
5819
  msgid "Sanskrit"
5820
  msgstr ""
5821
 
5822
- #: includes/core/class-builtin.php:1540
5823
  msgid "Sardinian"
5824
  msgstr ""
5825
 
5826
- #: includes/core/class-builtin.php:1541
5827
  msgid "Sindhi"
5828
  msgstr ""
5829
 
5830
- #: includes/core/class-builtin.php:1542
5831
  msgid "Northern Sami"
5832
  msgstr ""
5833
 
5834
- #: includes/core/class-builtin.php:1543
5835
  msgid "Sango"
5836
  msgstr ""
5837
 
5838
- #: includes/core/class-builtin.php:1544
5839
  msgid "Sinhala"
5840
  msgstr ""
5841
 
5842
- #: includes/core/class-builtin.php:1545
5843
  msgid "Slovak"
5844
  msgstr ""
5845
 
5846
- #: includes/core/class-builtin.php:1546
5847
  msgid "Slovenian"
5848
  msgstr ""
5849
 
5850
- #: includes/core/class-builtin.php:1547
5851
  msgid "Samoan"
5852
  msgstr ""
5853
 
5854
- #: includes/core/class-builtin.php:1548
5855
  msgid "Shona"
5856
  msgstr ""
5857
 
5858
- #: includes/core/class-builtin.php:1549
5859
  msgid "Somali"
5860
  msgstr ""
5861
 
5862
- #: includes/core/class-builtin.php:1550
5863
  msgid "Albanian"
5864
  msgstr ""
5865
 
5866
- #: includes/core/class-builtin.php:1551
5867
  msgid "Serbian"
5868
  msgstr ""
5869
 
5870
- #: includes/core/class-builtin.php:1552
5871
  msgid "Swati"
5872
  msgstr ""
5873
 
5874
- #: includes/core/class-builtin.php:1553
5875
  msgid "Southern Sotho"
5876
  msgstr ""
5877
 
5878
- #: includes/core/class-builtin.php:1554
5879
  msgid "Sundanese"
5880
  msgstr ""
5881
 
5882
- #: includes/core/class-builtin.php:1555
5883
  msgid "Swedish"
5884
  msgstr ""
5885
 
5886
- #: includes/core/class-builtin.php:1556
5887
  msgid "Swahili"
5888
  msgstr ""
5889
 
5890
- #: includes/core/class-builtin.php:1557
5891
  msgid "Tamil"
5892
  msgstr ""
5893
 
5894
- #: includes/core/class-builtin.php:1558
5895
  msgid "Telugu"
5896
  msgstr ""
5897
 
5898
- #: includes/core/class-builtin.php:1559
5899
  msgid "Tajik"
5900
  msgstr ""
5901
 
5902
- #: includes/core/class-builtin.php:1560
5903
  msgid "Thai"
5904
  msgstr ""
5905
 
5906
- #: includes/core/class-builtin.php:1561
5907
  msgid "Tigrinya"
5908
  msgstr ""
5909
 
5910
- #: includes/core/class-builtin.php:1562
5911
  msgid "Turkmen"
5912
  msgstr ""
5913
 
5914
- #: includes/core/class-builtin.php:1563
5915
  msgid "Tagalog"
5916
  msgstr ""
5917
 
5918
- #: includes/core/class-builtin.php:1564
5919
  msgid "Tswana"
5920
  msgstr ""
5921
 
5922
- #: includes/core/class-builtin.php:1565 includes/core/class-builtin.php:1813
5923
  msgid "Tonga"
5924
  msgstr ""
5925
 
5926
- #: includes/core/class-builtin.php:1566
5927
  msgid "Turkish"
5928
  msgstr ""
5929
 
5930
- #: includes/core/class-builtin.php:1567
5931
  msgid "Tsonga"
5932
  msgstr ""
5933
 
5934
- #: includes/core/class-builtin.php:1568
5935
  msgid "Tatar"
5936
  msgstr ""
5937
 
5938
- #: includes/core/class-builtin.php:1569
5939
  msgid "Twi"
5940
  msgstr ""
5941
 
5942
- #: includes/core/class-builtin.php:1570
5943
  msgid "Tahitian"
5944
  msgstr ""
5945
 
5946
- #: includes/core/class-builtin.php:1571
5947
  msgid "Uighur"
5948
  msgstr ""
5949
 
5950
- #: includes/core/class-builtin.php:1572
5951
  msgid "Ukrainian"
5952
  msgstr ""
5953
 
5954
- #: includes/core/class-builtin.php:1573
5955
  msgid "Urdu"
5956
  msgstr ""
5957
 
5958
- #: includes/core/class-builtin.php:1574
5959
  msgid "Uzbek"
5960
  msgstr ""
5961
 
5962
- #: includes/core/class-builtin.php:1575
5963
  msgid "Venda"
5964
  msgstr ""
5965
 
5966
- #: includes/core/class-builtin.php:1576
5967
  msgid "Vietnamese"
5968
  msgstr ""
5969
 
5970
- #: includes/core/class-builtin.php:1577
5971
  msgid "Volapuk"
5972
  msgstr ""
5973
 
5974
- #: includes/core/class-builtin.php:1578
5975
  msgid "Walloon"
5976
  msgstr ""
5977
 
5978
- #: includes/core/class-builtin.php:1579
5979
  msgid "Wolof"
5980
  msgstr ""
5981
 
5982
- #: includes/core/class-builtin.php:1580
5983
  msgid "Xhosa"
5984
  msgstr ""
5985
 
5986
- #: includes/core/class-builtin.php:1581
5987
  msgid "Yiddish"
5988
  msgstr ""
5989
 
5990
- #: includes/core/class-builtin.php:1582
5991
  msgid "Yoruba"
5992
  msgstr ""
5993
 
5994
- #: includes/core/class-builtin.php:1583
5995
  msgid "Zhuang"
5996
  msgstr ""
5997
 
5998
- #: includes/core/class-builtin.php:1584
5999
  msgid "Chinese"
6000
  msgstr ""
6001
 
6002
- #: includes/core/class-builtin.php:1585
6003
  msgid "Zulu"
6004
  msgstr ""
6005
 
6006
- #: includes/core/class-builtin.php:1591
6007
  msgid "Afghanistan"
6008
  msgstr ""
6009
 
6010
- #: includes/core/class-builtin.php:1592
6011
  msgid "Åland Islands"
6012
  msgstr ""
6013
 
6014
- #: includes/core/class-builtin.php:1593
6015
  msgid "Albania"
6016
  msgstr ""
6017
 
6018
- #: includes/core/class-builtin.php:1594
6019
  msgid "Algeria"
6020
  msgstr ""
6021
 
6022
- #: includes/core/class-builtin.php:1595
6023
  msgid "American Samoa"
6024
  msgstr ""
6025
 
6026
- #: includes/core/class-builtin.php:1596
6027
  msgid "Andorra"
6028
  msgstr ""
6029
 
6030
- #: includes/core/class-builtin.php:1597
6031
  msgid "Angola"
6032
  msgstr ""
6033
 
6034
- #: includes/core/class-builtin.php:1598
6035
  msgid "Anguilla"
6036
  msgstr ""
6037
 
6038
- #: includes/core/class-builtin.php:1599
6039
  msgid "Antarctica"
6040
  msgstr ""
6041
 
6042
- #: includes/core/class-builtin.php:1600
6043
  msgid "Antigua and Barbuda"
6044
  msgstr ""
6045
 
6046
- #: includes/core/class-builtin.php:1601
6047
  msgid "Argentina"
6048
  msgstr ""
6049
 
6050
- #: includes/core/class-builtin.php:1602
6051
  msgid "Armenia"
6052
  msgstr ""
6053
 
6054
- #: includes/core/class-builtin.php:1603
6055
  msgid "Aruba"
6056
  msgstr ""
6057
 
6058
- #: includes/core/class-builtin.php:1604
6059
  msgid "Australia"
6060
  msgstr ""
6061
 
6062
- #: includes/core/class-builtin.php:1605
6063
  msgid "Austria"
6064
  msgstr ""
6065
 
6066
- #: includes/core/class-builtin.php:1606
6067
  msgid "Azerbaijan"
6068
  msgstr ""
6069
 
6070
- #: includes/core/class-builtin.php:1607
6071
  msgid "Bahamas"
6072
  msgstr ""
6073
 
6074
- #: includes/core/class-builtin.php:1608
6075
  msgid "Bahrain"
6076
  msgstr ""
6077
 
6078
- #: includes/core/class-builtin.php:1609
6079
  msgid "Bangladesh"
6080
  msgstr ""
6081
 
6082
- #: includes/core/class-builtin.php:1610
6083
  msgid "Barbados"
6084
  msgstr ""
6085
 
6086
- #: includes/core/class-builtin.php:1611
6087
  msgid "Belarus"
6088
  msgstr ""
6089
 
6090
- #: includes/core/class-builtin.php:1612
6091
  msgid "Belgium"
6092
  msgstr ""
6093
 
6094
- #: includes/core/class-builtin.php:1613
6095
  msgid "Belize"
6096
  msgstr ""
6097
 
6098
- #: includes/core/class-builtin.php:1614
6099
  msgid "Benin"
6100
  msgstr ""
6101
 
6102
- #: includes/core/class-builtin.php:1615
6103
  msgid "Bermuda"
6104
  msgstr ""
6105
 
6106
- #: includes/core/class-builtin.php:1616
6107
  msgid "Bhutan"
6108
  msgstr ""
6109
 
6110
- #: includes/core/class-builtin.php:1617
6111
  msgid "Bolivia, Plurinational State of"
6112
  msgstr ""
6113
 
6114
- #: includes/core/class-builtin.php:1618
6115
  msgid "Bosnia and Herzegovina"
6116
  msgstr ""
6117
 
6118
- #: includes/core/class-builtin.php:1619
6119
  msgid "Botswana"
6120
  msgstr ""
6121
 
6122
- #: includes/core/class-builtin.php:1620
6123
  msgid "Bouvet Island"
6124
  msgstr ""
6125
 
6126
- #: includes/core/class-builtin.php:1621
6127
  msgid "Brazil"
6128
  msgstr ""
6129
 
6130
- #: includes/core/class-builtin.php:1622
6131
  msgid "British Indian Ocean Territory"
6132
  msgstr ""
6133
 
6134
- #: includes/core/class-builtin.php:1623
6135
  msgid "Brunei Darussalam"
6136
  msgstr ""
6137
 
6138
- #: includes/core/class-builtin.php:1624
6139
  msgid "Bulgaria"
6140
  msgstr ""
6141
 
6142
- #: includes/core/class-builtin.php:1625
6143
  msgid "Burkina Faso"
6144
  msgstr ""
6145
 
6146
- #: includes/core/class-builtin.php:1626
6147
  msgid "Burundi"
6148
  msgstr ""
6149
 
6150
- #: includes/core/class-builtin.php:1627
6151
  msgid "Cambodia"
6152
  msgstr ""
6153
 
6154
- #: includes/core/class-builtin.php:1628
6155
  msgid "Cameroon"
6156
  msgstr ""
6157
 
6158
- #: includes/core/class-builtin.php:1629
6159
  msgid "Canada"
6160
  msgstr ""
6161
 
6162
- #: includes/core/class-builtin.php:1630
6163
  msgid "Cape Verde"
6164
  msgstr ""
6165
 
6166
- #: includes/core/class-builtin.php:1631
6167
  msgid "Cayman Islands"
6168
  msgstr ""
6169
 
6170
- #: includes/core/class-builtin.php:1632
6171
  msgid "Central African Republic"
6172
  msgstr ""
6173
 
6174
- #: includes/core/class-builtin.php:1633
6175
  msgid "Chad"
6176
  msgstr ""
6177
 
6178
- #: includes/core/class-builtin.php:1634
6179
  msgid "Chile"
6180
  msgstr ""
6181
 
6182
- #: includes/core/class-builtin.php:1635
6183
  msgid "China"
6184
  msgstr ""
6185
 
6186
- #: includes/core/class-builtin.php:1636
6187
  msgid "Christmas Island"
6188
  msgstr ""
6189
 
6190
- #: includes/core/class-builtin.php:1637
6191
  msgid "Cocos (Keeling) Islands"
6192
  msgstr ""
6193
 
6194
- #: includes/core/class-builtin.php:1638
6195
  msgid "Colombia"
6196
  msgstr ""
6197
 
6198
- #: includes/core/class-builtin.php:1639
6199
  msgid "Comoros"
6200
  msgstr ""
6201
 
6202
- #: includes/core/class-builtin.php:1640
6203
  msgid "Congo"
6204
  msgstr ""
6205
 
6206
- #: includes/core/class-builtin.php:1641
6207
  msgid "Congo, the Democratic Republic of the"
6208
  msgstr ""
6209
 
6210
- #: includes/core/class-builtin.php:1642
6211
  msgid "Cook Islands"
6212
  msgstr ""
6213
 
6214
- #: includes/core/class-builtin.php:1643
6215
  msgid "Costa Rica"
6216
  msgstr ""
6217
 
6218
- #: includes/core/class-builtin.php:1644
6219
  msgid "Côte d'Ivoire"
6220
  msgstr ""
6221
 
6222
- #: includes/core/class-builtin.php:1645
6223
  msgid "Croatia"
6224
  msgstr ""
6225
 
6226
- #: includes/core/class-builtin.php:1646
6227
  msgid "Cuba"
6228
  msgstr ""
6229
 
6230
- #: includes/core/class-builtin.php:1647
6231
  msgid "Cyprus"
6232
  msgstr ""
6233
 
6234
- #: includes/core/class-builtin.php:1648
6235
  msgid "Czech Republic"
6236
  msgstr ""
6237
 
6238
- #: includes/core/class-builtin.php:1649
6239
  msgid "Denmark"
6240
  msgstr ""
6241
 
6242
- #: includes/core/class-builtin.php:1650
6243
  msgid "Djibouti"
6244
  msgstr ""
6245
 
6246
- #: includes/core/class-builtin.php:1651
6247
  msgid "Dominica"
6248
  msgstr ""
6249
 
6250
- #: includes/core/class-builtin.php:1652
6251
  msgid "Dominican Republic"
6252
  msgstr ""
6253
 
6254
- #: includes/core/class-builtin.php:1653
6255
  msgid "Ecuador"
6256
  msgstr ""
6257
 
6258
- #: includes/core/class-builtin.php:1654
6259
  msgid "Egypt"
6260
  msgstr ""
6261
 
6262
- #: includes/core/class-builtin.php:1655
6263
  msgid "El Salvador"
6264
  msgstr ""
6265
 
6266
- #: includes/core/class-builtin.php:1656
6267
  msgid "Equatorial Guinea"
6268
  msgstr ""
6269
 
6270
- #: includes/core/class-builtin.php:1657
6271
  msgid "Eritrea"
6272
  msgstr ""
6273
 
6274
- #: includes/core/class-builtin.php:1658
6275
  msgid "Estonia"
6276
  msgstr ""
6277
 
6278
- #: includes/core/class-builtin.php:1659
6279
  msgid "Ethiopia"
6280
  msgstr ""
6281
 
6282
- #: includes/core/class-builtin.php:1660
6283
  msgid "Falkland Islands (Malvinas)"
6284
  msgstr ""
6285
 
6286
- #: includes/core/class-builtin.php:1661
6287
  msgid "Faroe Islands"
6288
  msgstr ""
6289
 
6290
- #: includes/core/class-builtin.php:1662
6291
  msgid "Fiji"
6292
  msgstr ""
6293
 
6294
- #: includes/core/class-builtin.php:1663
6295
  msgid "Finland"
6296
  msgstr ""
6297
 
6298
- #: includes/core/class-builtin.php:1664
6299
  msgid "France"
6300
  msgstr ""
6301
 
6302
- #: includes/core/class-builtin.php:1665
6303
  msgid "French Guiana"
6304
  msgstr ""
6305
 
6306
- #: includes/core/class-builtin.php:1666
6307
  msgid "French Polynesia"
6308
  msgstr ""
6309
 
6310
- #: includes/core/class-builtin.php:1667
6311
  msgid "French Southern Territories"
6312
  msgstr ""
6313
 
6314
- #: includes/core/class-builtin.php:1668
6315
  msgid "Gabon"
6316
  msgstr ""
6317
 
6318
- #: includes/core/class-builtin.php:1669
6319
  msgid "Gambia"
6320
  msgstr ""
6321
 
6322
- #: includes/core/class-builtin.php:1670
6323
  msgid "Georgia"
6324
  msgstr ""
6325
 
6326
- #: includes/core/class-builtin.php:1671
6327
  msgid "Germany"
6328
  msgstr ""
6329
 
6330
- #: includes/core/class-builtin.php:1672
6331
  msgid "Ghana"
6332
  msgstr ""
6333
 
6334
- #: includes/core/class-builtin.php:1673
6335
  msgid "Gibraltar"
6336
  msgstr ""
6337
 
6338
- #: includes/core/class-builtin.php:1674
6339
  msgid "Greece"
6340
  msgstr ""
6341
 
6342
- #: includes/core/class-builtin.php:1675
6343
  msgid "Greenland"
6344
  msgstr ""
6345
 
6346
- #: includes/core/class-builtin.php:1676
6347
  msgid "Grenada"
6348
  msgstr ""
6349
 
6350
- #: includes/core/class-builtin.php:1677
6351
  msgid "Guadeloupe"
6352
  msgstr ""
6353
 
6354
- #: includes/core/class-builtin.php:1678
6355
  msgid "Guam"
6356
  msgstr ""
6357
 
6358
- #: includes/core/class-builtin.php:1679
6359
  msgid "Guatemala"
6360
  msgstr ""
6361
 
6362
- #: includes/core/class-builtin.php:1680
6363
  msgid "Guernsey"
6364
  msgstr ""
6365
 
6366
- #: includes/core/class-builtin.php:1681
6367
  msgid "Guinea"
6368
  msgstr ""
6369
 
6370
- #: includes/core/class-builtin.php:1682
6371
  msgid "Guinea-Bissau"
6372
  msgstr ""
6373
 
6374
- #: includes/core/class-builtin.php:1683
6375
  msgid "Guyana"
6376
  msgstr ""
6377
 
6378
- #: includes/core/class-builtin.php:1684
6379
  msgid "Haiti"
6380
  msgstr ""
6381
 
6382
- #: includes/core/class-builtin.php:1685
6383
  msgid "Heard Island and McDonald Islands"
6384
  msgstr ""
6385
 
6386
- #: includes/core/class-builtin.php:1686
6387
  msgid "Holy See (Vatican City State)"
6388
  msgstr ""
6389
 
6390
- #: includes/core/class-builtin.php:1687
6391
  msgid "Honduras"
6392
  msgstr ""
6393
 
6394
- #: includes/core/class-builtin.php:1688
6395
  msgid "Hong Kong"
6396
  msgstr ""
6397
 
6398
- #: includes/core/class-builtin.php:1689
6399
  msgid "Hungary"
6400
  msgstr ""
6401
 
6402
- #: includes/core/class-builtin.php:1690
6403
  msgid "Iceland"
6404
  msgstr ""
6405
 
6406
- #: includes/core/class-builtin.php:1691
6407
  msgid "India"
6408
  msgstr ""
6409
 
6410
- #: includes/core/class-builtin.php:1692
6411
  msgid "Indonesia"
6412
  msgstr ""
6413
 
6414
- #: includes/core/class-builtin.php:1693
6415
  msgid "Iran, Islamic Republic of"
6416
  msgstr ""
6417
 
6418
- #: includes/core/class-builtin.php:1694
6419
  msgid "Iraq"
6420
  msgstr ""
6421
 
6422
- #: includes/core/class-builtin.php:1695
6423
  msgid "Ireland"
6424
  msgstr ""
6425
 
6426
- #: includes/core/class-builtin.php:1696
6427
  msgid "Isle of Man"
6428
  msgstr ""
6429
 
6430
- #: includes/core/class-builtin.php:1697
6431
  msgid "Israel"
6432
  msgstr ""
6433
 
6434
- #: includes/core/class-builtin.php:1698
6435
  msgid "Italy"
6436
  msgstr ""
6437
 
6438
- #: includes/core/class-builtin.php:1699
6439
  msgid "Jamaica"
6440
  msgstr ""
6441
 
6442
- #: includes/core/class-builtin.php:1700
6443
  msgid "Japan"
6444
  msgstr ""
6445
 
6446
- #: includes/core/class-builtin.php:1701
6447
  msgid "Jersey"
6448
  msgstr ""
6449
 
6450
- #: includes/core/class-builtin.php:1702
6451
  msgid "Jordan"
6452
  msgstr ""
6453
 
6454
- #: includes/core/class-builtin.php:1703
6455
  msgid "Kazakhstan"
6456
  msgstr ""
6457
 
6458
- #: includes/core/class-builtin.php:1704
6459
  msgid "Kenya"
6460
  msgstr ""
6461
 
6462
- #: includes/core/class-builtin.php:1705
6463
  msgid "Kiribati"
6464
  msgstr ""
6465
 
6466
- #: includes/core/class-builtin.php:1706
6467
  msgid "Korea, Democratic People's Republic of"
6468
  msgstr ""
6469
 
6470
- #: includes/core/class-builtin.php:1707
6471
  msgid "Korea, Republic of"
6472
  msgstr ""
6473
 
6474
- #: includes/core/class-builtin.php:1708
6475
  msgid "Kuwait"
6476
  msgstr ""
6477
 
6478
- #: includes/core/class-builtin.php:1709
6479
  msgid "Kyrgyzstan"
6480
  msgstr ""
6481
 
6482
- #: includes/core/class-builtin.php:1710
6483
  msgid "Lao People's Democratic Republic"
6484
  msgstr ""
6485
 
6486
- #: includes/core/class-builtin.php:1711
6487
  msgid "Latvia"
6488
  msgstr ""
6489
 
6490
- #: includes/core/class-builtin.php:1712
6491
  msgid "Lebanon"
6492
  msgstr ""
6493
 
6494
- #: includes/core/class-builtin.php:1713
6495
  msgid "Lesotho"
6496
  msgstr ""
6497
 
6498
- #: includes/core/class-builtin.php:1714
6499
  msgid "Liberia"
6500
  msgstr ""
6501
 
6502
- #: includes/core/class-builtin.php:1715
6503
  msgid "Libyan Arab Jamahiriya"
6504
  msgstr ""
6505
 
6506
- #: includes/core/class-builtin.php:1716
6507
  msgid "Liechtenstein"
6508
  msgstr ""
6509
 
6510
- #: includes/core/class-builtin.php:1717
6511
  msgid "Lithuania"
6512
  msgstr ""
6513
 
6514
- #: includes/core/class-builtin.php:1718
6515
  msgid "Luxembourg"
6516
  msgstr ""
6517
 
6518
- #: includes/core/class-builtin.php:1719
6519
  msgid "Macao"
6520
  msgstr ""
6521
 
6522
- #: includes/core/class-builtin.php:1720
6523
  msgid "Macedonia, the former Yugoslav Republic of"
6524
  msgstr ""
6525
 
6526
- #: includes/core/class-builtin.php:1721
6527
  msgid "Madagascar"
6528
  msgstr ""
6529
 
6530
- #: includes/core/class-builtin.php:1722
6531
  msgid "Malawi"
6532
  msgstr ""
6533
 
6534
- #: includes/core/class-builtin.php:1723
6535
  msgid "Malaysia"
6536
  msgstr ""
6537
 
6538
- #: includes/core/class-builtin.php:1724
6539
  msgid "Maldives"
6540
  msgstr ""
6541
 
6542
- #: includes/core/class-builtin.php:1725
6543
  msgid "Mali"
6544
  msgstr ""
6545
 
6546
- #: includes/core/class-builtin.php:1726
6547
  msgid "Malta"
6548
  msgstr ""
6549
 
6550
- #: includes/core/class-builtin.php:1727
6551
  msgid "Marshall Islands"
6552
  msgstr ""
6553
 
6554
- #: includes/core/class-builtin.php:1728
6555
  msgid "Martinique"
6556
  msgstr ""
6557
 
6558
- #: includes/core/class-builtin.php:1729
6559
  msgid "Mauritania"
6560
  msgstr ""
6561
 
6562
- #: includes/core/class-builtin.php:1730
6563
  msgid "Mauritius"
6564
  msgstr ""
6565
 
6566
- #: includes/core/class-builtin.php:1731
6567
  msgid "Mayotte"
6568
  msgstr ""
6569
 
6570
- #: includes/core/class-builtin.php:1732
6571
  msgid "Mexico"
6572
  msgstr ""
6573
 
6574
- #: includes/core/class-builtin.php:1733
6575
  msgid "Micronesia, Federated States of"
6576
  msgstr ""
6577
 
6578
- #: includes/core/class-builtin.php:1734
6579
  msgid "Moldova, Republic of"
6580
  msgstr ""
6581
 
6582
- #: includes/core/class-builtin.php:1735
6583
  msgid "Monaco"
6584
  msgstr ""
6585
 
6586
- #: includes/core/class-builtin.php:1736
6587
  msgid "Mongolia"
6588
  msgstr ""
6589
 
6590
- #: includes/core/class-builtin.php:1737
6591
  msgid "Montenegro"
6592
  msgstr ""
6593
 
6594
- #: includes/core/class-builtin.php:1738
6595
  msgid "Montserrat"
6596
  msgstr ""
6597
 
6598
- #: includes/core/class-builtin.php:1739
6599
  msgid "Morocco"
6600
  msgstr ""
6601
 
6602
- #: includes/core/class-builtin.php:1740
6603
  msgid "Mozambique"
6604
  msgstr ""
6605
 
6606
- #: includes/core/class-builtin.php:1741
6607
  msgid "Myanmar"
6608
  msgstr ""
6609
 
6610
- #: includes/core/class-builtin.php:1742
6611
  msgid "Namibia"
6612
  msgstr ""
6613
 
6614
- #: includes/core/class-builtin.php:1744
6615
  msgid "Nepal"
6616
  msgstr ""
6617
 
6618
- #: includes/core/class-builtin.php:1745
6619
  msgid "Netherlands"
6620
  msgstr ""
6621
 
6622
- #: includes/core/class-builtin.php:1746
6623
  msgid "Netherlands Antilles"
6624
  msgstr ""
6625
 
6626
- #: includes/core/class-builtin.php:1747
6627
  msgid "New Caledonia"
6628
  msgstr ""
6629
 
6630
- #: includes/core/class-builtin.php:1748
6631
  msgid "New Zealand"
6632
  msgstr ""
6633
 
6634
- #: includes/core/class-builtin.php:1749
6635
  msgid "Nicaragua"
6636
  msgstr ""
6637
 
6638
- #: includes/core/class-builtin.php:1750
6639
  msgid "Niger"
6640
  msgstr ""
6641
 
6642
- #: includes/core/class-builtin.php:1751
6643
  msgid "Nigeria"
6644
  msgstr ""
6645
 
6646
- #: includes/core/class-builtin.php:1752
6647
  msgid "Niue"
6648
  msgstr ""
6649
 
6650
- #: includes/core/class-builtin.php:1753
6651
  msgid "Norfolk Island"
6652
  msgstr ""
6653
 
6654
- #: includes/core/class-builtin.php:1754
6655
  msgid "Northern Mariana Islands"
6656
  msgstr ""
6657
 
6658
- #: includes/core/class-builtin.php:1755
6659
  msgid "Norway"
6660
  msgstr ""
6661
 
6662
- #: includes/core/class-builtin.php:1756
6663
  msgid "Oman"
6664
  msgstr ""
6665
 
6666
- #: includes/core/class-builtin.php:1757
6667
  msgid "Pakistan"
6668
  msgstr ""
6669
 
6670
- #: includes/core/class-builtin.php:1758
6671
  msgid "Palau"
6672
  msgstr ""
6673
 
6674
- #: includes/core/class-builtin.php:1759
6675
  msgid "Palestine"
6676
  msgstr ""
6677
 
6678
- #: includes/core/class-builtin.php:1760
6679
  msgid "Panama"
6680
  msgstr ""
6681
 
6682
- #: includes/core/class-builtin.php:1761
6683
  msgid "Papua New Guinea"
6684
  msgstr ""
6685
 
6686
- #: includes/core/class-builtin.php:1762
6687
  msgid "Paraguay"
6688
  msgstr ""
6689
 
6690
- #: includes/core/class-builtin.php:1763
6691
  msgid "Peru"
6692
  msgstr ""
6693
 
6694
- #: includes/core/class-builtin.php:1764
6695
  msgid "Philippines"
6696
  msgstr ""
6697
 
6698
- #: includes/core/class-builtin.php:1765
6699
  msgid "Pitcairn"
6700
  msgstr ""
6701
 
6702
- #: includes/core/class-builtin.php:1766
6703
  msgid "Poland"
6704
  msgstr ""
6705
 
6706
- #: includes/core/class-builtin.php:1767
6707
  msgid "Portugal"
6708
  msgstr ""
6709
 
6710
- #: includes/core/class-builtin.php:1768
6711
  msgid "Puerto Rico"
6712
  msgstr ""
6713
 
6714
- #: includes/core/class-builtin.php:1769
6715
  msgid "Qatar"
6716
  msgstr ""
6717
 
6718
- #: includes/core/class-builtin.php:1770
6719
  msgid "Réunion"
6720
  msgstr ""
6721
 
6722
- #: includes/core/class-builtin.php:1771
6723
  msgid "Romania"
6724
  msgstr ""
6725
 
6726
- #: includes/core/class-builtin.php:1772
6727
  msgid "Russian Federation"
6728
  msgstr ""
6729
 
6730
- #: includes/core/class-builtin.php:1773
6731
  msgid "Rwanda"
6732
  msgstr ""
6733
 
6734
- #: includes/core/class-builtin.php:1774
6735
  msgid "Saint Barthélemy"
6736
  msgstr ""
6737
 
6738
- #: includes/core/class-builtin.php:1775
6739
  msgid "Saint Helena"
6740
  msgstr ""
6741
 
6742
- #: includes/core/class-builtin.php:1776
6743
  msgid "Saint Kitts and Nevis"
6744
  msgstr ""
6745
 
6746
- #: includes/core/class-builtin.php:1777
6747
  msgid "Saint Lucia"
6748
  msgstr ""
6749
 
6750
- #: includes/core/class-builtin.php:1778
6751
  msgid "Saint Martin (French part)"
6752
  msgstr ""
6753
 
6754
- #: includes/core/class-builtin.php:1779
6755
  msgid "Saint Pierre and Miquelon"
6756
  msgstr ""
6757
 
6758
- #: includes/core/class-builtin.php:1780
6759
  msgid "Saint Vincent and the Grenadines"
6760
  msgstr ""
6761
 
6762
- #: includes/core/class-builtin.php:1781
6763
  msgid "Samoa"
6764
  msgstr ""
6765
 
6766
- #: includes/core/class-builtin.php:1782
6767
  msgid "San Marino"
6768
  msgstr ""
6769
 
6770
- #: includes/core/class-builtin.php:1783
6771
  msgid "Sao Tome and Principe"
6772
  msgstr ""
6773
 
6774
- #: includes/core/class-builtin.php:1784
6775
  msgid "Saudi Arabia"
6776
  msgstr ""
6777
 
6778
- #: includes/core/class-builtin.php:1785
6779
  msgid "Senegal"
6780
  msgstr ""
6781
 
6782
- #: includes/core/class-builtin.php:1786
6783
  msgid "Serbia"
6784
  msgstr ""
6785
 
6786
- #: includes/core/class-builtin.php:1787
6787
  msgid "Seychelles"
6788
  msgstr ""
6789
 
6790
- #: includes/core/class-builtin.php:1788
6791
  msgid "Sierra Leone"
6792
  msgstr ""
6793
 
6794
- #: includes/core/class-builtin.php:1789
6795
  msgid "Singapore"
6796
  msgstr ""
6797
 
6798
- #: includes/core/class-builtin.php:1790
6799
  msgid "Slovakia"
6800
  msgstr ""
6801
 
6802
- #: includes/core/class-builtin.php:1791
6803
  msgid "Slovenia"
6804
  msgstr ""
6805
 
6806
- #: includes/core/class-builtin.php:1792
6807
  msgid "Solomon Islands"
6808
  msgstr ""
6809
 
6810
- #: includes/core/class-builtin.php:1793
6811
  msgid "Somalia"
6812
  msgstr ""
6813
 
6814
- #: includes/core/class-builtin.php:1794
6815
  msgid "South Africa"
6816
  msgstr ""
6817
 
6818
- #: includes/core/class-builtin.php:1795
6819
  msgid "South Georgia and the South Sandwich Islands"
6820
  msgstr ""
6821
 
6822
- #: includes/core/class-builtin.php:1796
6823
  msgid "South Sudan"
6824
  msgstr ""
6825
 
6826
- #: includes/core/class-builtin.php:1797
6827
  msgid "Spain"
6828
  msgstr ""
6829
 
6830
- #: includes/core/class-builtin.php:1798
6831
  msgid "Sri Lanka"
6832
  msgstr ""
6833
 
6834
- #: includes/core/class-builtin.php:1799
6835
  msgid "Sudan"
6836
  msgstr ""
6837
 
6838
- #: includes/core/class-builtin.php:1800
6839
  msgid "Suriname"
6840
  msgstr ""
6841
 
6842
- #: includes/core/class-builtin.php:1801
6843
  msgid "Svalbard and Jan Mayen"
6844
  msgstr ""
6845
 
6846
- #: includes/core/class-builtin.php:1802
6847
  msgid "Swaziland"
6848
  msgstr ""
6849
 
6850
- #: includes/core/class-builtin.php:1803
6851
  msgid "Sweden"
6852
  msgstr ""
6853
 
6854
- #: includes/core/class-builtin.php:1804
6855
  msgid "Switzerland"
6856
  msgstr ""
6857
 
6858
- #: includes/core/class-builtin.php:1805
6859
  msgid "Syrian Arab Republic"
6860
  msgstr ""
6861
 
6862
- #: includes/core/class-builtin.php:1806
6863
  msgid "Taiwan, Province of China"
6864
  msgstr ""
6865
 
6866
- #: includes/core/class-builtin.php:1807
6867
  msgid "Tajikistan"
6868
  msgstr ""
6869
 
6870
- #: includes/core/class-builtin.php:1808
6871
  msgid "Tanzania, United Republic of"
6872
  msgstr ""
6873
 
6874
- #: includes/core/class-builtin.php:1809
6875
  msgid "Thailand"
6876
  msgstr ""
6877
 
6878
- #: includes/core/class-builtin.php:1810
6879
  msgid "Timor-Leste"
6880
  msgstr ""
6881
 
6882
- #: includes/core/class-builtin.php:1811
6883
  msgid "Togo"
6884
  msgstr ""
6885
 
6886
- #: includes/core/class-builtin.php:1812
6887
  msgid "Tokelau"
6888
  msgstr ""
6889
 
6890
- #: includes/core/class-builtin.php:1814
6891
  msgid "Trinidad and Tobago"
6892
  msgstr ""
6893
 
6894
- #: includes/core/class-builtin.php:1815
6895
  msgid "Tunisia"
6896
  msgstr ""
6897
 
6898
- #: includes/core/class-builtin.php:1816
6899
  msgid "Turkey"
6900
  msgstr ""
6901
 
6902
- #: includes/core/class-builtin.php:1817
6903
  msgid "Turkmenistan"
6904
  msgstr ""
6905
 
6906
- #: includes/core/class-builtin.php:1818
6907
  msgid "Turks and Caicos Islands"
6908
  msgstr ""
6909
 
6910
- #: includes/core/class-builtin.php:1819
6911
  msgid "Tuvalu"
6912
  msgstr ""
6913
 
6914
- #: includes/core/class-builtin.php:1820
6915
  msgid "Uganda"
6916
  msgstr ""
6917
 
6918
- #: includes/core/class-builtin.php:1821
6919
  msgid "Ukraine"
6920
  msgstr ""
6921
 
6922
- #: includes/core/class-builtin.php:1822
6923
  msgid "United Arab Emirates"
6924
  msgstr ""
6925
 
6926
- #: includes/core/class-builtin.php:1823
6927
  msgid "United Kingdom"
6928
  msgstr ""
6929
 
6930
- #: includes/core/class-builtin.php:1824
6931
  msgid "United States"
6932
  msgstr ""
6933
 
6934
- #: includes/core/class-builtin.php:1825
6935
  msgid "United States Minor Outlying Islands"
6936
  msgstr ""
6937
 
6938
- #: includes/core/class-builtin.php:1826
6939
  msgid "Uruguay"
6940
  msgstr ""
6941
 
6942
- #: includes/core/class-builtin.php:1827
6943
  msgid "Uzbekistan"
6944
  msgstr ""
6945
 
6946
- #: includes/core/class-builtin.php:1828
6947
  msgid "Vanuatu"
6948
  msgstr ""
6949
 
6950
- #: includes/core/class-builtin.php:1829
6951
  msgid "Venezuela, Bolivarian Republic of"
6952
  msgstr ""
6953
 
6954
- #: includes/core/class-builtin.php:1830
6955
  msgid "Viet Nam"
6956
  msgstr ""
6957
 
6958
- #: includes/core/class-builtin.php:1831
6959
  msgid "Virgin Islands, British"
6960
  msgstr ""
6961
 
6962
- #: includes/core/class-builtin.php:1832
6963
  msgid "Virgin Islands, U.S."
6964
  msgstr ""
6965
 
6966
- #: includes/core/class-builtin.php:1833
6967
  msgid "Wallis and Futuna"
6968
  msgstr ""
6969
 
6970
- #: includes/core/class-builtin.php:1834
6971
  msgid "Western Sahara"
6972
  msgstr ""
6973
 
6974
- #: includes/core/class-builtin.php:1835
6975
  msgid "Yemen"
6976
  msgstr ""
6977
 
6978
- #: includes/core/class-builtin.php:1836
6979
  msgid "Zambia"
6980
  msgstr ""
6981
 
6982
- #: includes/core/class-builtin.php:1837
6983
  msgid "Zimbabwe"
6984
  msgstr ""
6985
 
6986
  #: includes/core/class-common.php:59 includes/um-short-functions.php:792
6987
- #: includes/um-short-functions.php:800
6988
  msgid "Form"
6989
  msgstr ""
6990
 
@@ -7000,6 +6915,10 @@ msgstr ""
7000
  msgid "You did not create any forms yet"
7001
  msgstr ""
7002
 
 
 
 
 
7003
  #: includes/core/class-common.php:65
7004
  msgid "Search Forms"
7005
  msgstr ""
@@ -7033,37 +6952,31 @@ msgid "just now"
7033
  msgstr ""
7034
 
7035
  #: includes/core/class-date-time.php:63
7036
- #, php-format
7037
  msgid "%s min"
7038
  msgid_plural "%s mins"
7039
  msgstr[0] ""
7040
  msgstr[1] ""
7041
 
7042
  #: includes/core/class-date-time.php:72
7043
- #, php-format
7044
  msgid "%s hr"
7045
  msgid_plural "%s hrs"
7046
  msgstr[0] ""
7047
  msgstr[1] ""
7048
 
7049
  #: includes/core/class-date-time.php:82
7050
- #, php-format
7051
  msgid "Yesterday at %s"
7052
  msgstr ""
7053
 
7054
  #: includes/core/class-date-time.php:84 includes/core/class-date-time.php:89
7055
  #: includes/core/class-date-time.php:93 includes/core/class-date-time.php:97
7056
- #, php-format
7057
  msgid "%s at %s"
7058
  msgstr ""
7059
 
7060
  #: includes/core/class-date-time.php:146
7061
- #, php-format
7062
  msgid "%s year old"
7063
  msgstr ""
7064
 
7065
  #: includes/core/class-date-time.php:149
7066
- #, php-format
7067
  msgid "%s years old"
7068
  msgstr ""
7069
 
@@ -7071,112 +6984,99 @@ msgstr ""
7071
  msgid "Less than 1 year old"
7072
  msgstr ""
7073
 
7074
- #: includes/core/class-external-integrations.php:501
7075
- #, php-format
7076
- msgid "Edit the %s translation"
7077
- msgstr ""
7078
-
7079
- #: includes/core/class-external-integrations.php:508
7080
- #, php-format
7081
- msgid "Add translation to %s"
7082
- msgstr ""
7083
-
7084
- #: includes/core/class-fields.php:1332 includes/core/um-actions-account.php:418
7085
  #: templates/message.php:6
7086
- #, php-format
7087
  msgid "%s"
7088
  msgstr ""
7089
 
7090
- #: includes/core/class-fields.php:1353
7091
  msgid "Custom Field"
7092
  msgstr ""
7093
 
7094
- #: includes/core/class-fields.php:1696
7095
  msgid "Please upload a valid image!"
7096
  msgstr ""
7097
 
7098
- #: includes/core/class-fields.php:1710
7099
  msgid "Sorry this is not a valid image."
7100
  msgstr ""
7101
 
7102
- #: includes/core/class-fields.php:1713
7103
  msgid "This image is too large!"
7104
  msgstr ""
7105
 
7106
- #: includes/core/class-fields.php:1716
7107
  msgid "This image is too small!"
7108
  msgstr ""
7109
 
7110
- #: includes/core/class-fields.php:1719
7111
  msgid "You can only upload one image"
7112
  msgstr ""
7113
 
7114
- #: includes/core/class-fields.php:1751
7115
  msgid "Sorry this is not a valid file."
7116
  msgstr ""
7117
 
7118
- #: includes/core/class-fields.php:1754
7119
  msgid "This file is too large!"
7120
  msgstr ""
7121
 
7122
- #: includes/core/class-fields.php:1757
7123
  msgid "This file is too small!"
7124
  msgstr ""
7125
 
7126
- #: includes/core/class-fields.php:1760
7127
  msgid "You can only upload one file"
7128
  msgstr ""
7129
 
7130
- #: includes/core/class-fields.php:2288
7131
  msgid "Current Password"
7132
  msgstr ""
7133
 
7134
- #: includes/core/class-fields.php:2319
7135
  msgid "New Password"
7136
  msgstr ""
7137
 
7138
- #: includes/core/class-fields.php:2353
7139
- #, php-format
7140
  msgid "Confirm %s"
7141
  msgstr ""
7142
 
7143
- #: includes/core/class-fields.php:2597
7144
  msgid "Upload Photo"
7145
  msgstr ""
7146
 
7147
- #: includes/core/class-fields.php:2619 includes/core/class-fields.php:2643
7148
- #: includes/core/um-actions-profile.php:980
7149
  msgid "Change photo"
7150
  msgstr ""
7151
 
7152
- #: includes/core/class-fields.php:2643 includes/core/class-fields.php:2742
7153
  msgid "Processing..."
7154
  msgstr ""
7155
 
7156
- #: includes/core/class-fields.php:2667
7157
  msgid "Upload File"
7158
  msgstr ""
7159
 
7160
- #: includes/core/class-fields.php:2709 includes/core/um-filters-fields.php:267
7161
  msgid "This file has been removed."
7162
  msgstr ""
7163
 
7164
- #: includes/core/class-fields.php:2712 includes/core/class-fields.php:2742
7165
  msgid "Change file"
7166
  msgstr ""
7167
 
7168
- #: includes/core/class-fields.php:2742
7169
  msgid "Save"
7170
  msgstr ""
7171
 
7172
- #: includes/core/class-fields.php:4277
7173
- #, php-format
7174
  msgid ""
7175
  "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
7176
  "information!"
7177
  msgstr ""
7178
 
7179
- #: includes/core/class-fields.php:4279
7180
  msgid "This user has not added any information to their profile yet."
7181
  msgstr ""
7182
 
@@ -7217,15 +7117,10 @@ msgstr ""
7217
  msgid "A theme or plugin compatibility issue"
7218
  msgstr ""
7219
 
7220
- #: includes/core/class-files.php:1289
7221
  msgid "Original size"
7222
  msgstr ""
7223
 
7224
- #: includes/core/class-form.php:62 includes/core/class-profile.php:67
7225
- #: includes/core/class-profile.php:86
7226
- msgid "You can not edit this user"
7227
- msgstr ""
7228
-
7229
  #: includes/core/class-login.php:78 includes/core/class-register.php:71
7230
  msgid "Invalid Nonce."
7231
  msgstr ""
@@ -7296,15 +7191,15 @@ msgstr ""
7296
  msgid "<strong>Age:</strong>&nbsp;{min_range} - {max_range} years old"
7297
  msgstr ""
7298
 
7299
- #: includes/core/class-member-directory.php:2126
7300
- #: includes/core/class-member-directory.php:2170
7301
- #: includes/core/um-actions-profile.php:1302
7302
- #: includes/core/um-actions-profile.php:1333
7303
  msgid "Edit Profile"
7304
  msgstr ""
7305
 
7306
- #: includes/core/class-member-directory.php:2176
7307
- #: includes/core/um-actions-profile.php:1334
7308
  msgid "My Account"
7309
  msgstr ""
7310
 
@@ -7326,16 +7221,16 @@ msgstr ""
7326
  msgid "You must enter a new password"
7327
  msgstr ""
7328
 
7329
- #: includes/core/class-password.php:545 includes/core/um-actions-account.php:58
7330
  msgid "Your password must contain at least 8 characters"
7331
  msgstr ""
7332
 
7333
- #: includes/core/class-password.php:549 includes/core/um-actions-account.php:62
7334
  msgid "Your password must contain less than 30 characters"
7335
  msgstr ""
7336
 
7337
- #: includes/core/class-password.php:553 includes/core/um-actions-account.php:66
7338
- #: includes/core/um-actions-form.php:538
7339
  msgid ""
7340
  "Your password must contain at least one lowercase letter, one capital letter "
7341
  "and one number"
@@ -7345,27 +7240,14 @@ msgstr ""
7345
  msgid "You must confirm your new password"
7346
  msgstr ""
7347
 
7348
- #: includes/core/class-password.php:563 includes/core/um-actions-form.php:547
7349
  msgid "Your passwords do not match"
7350
  msgstr ""
7351
 
7352
- #: includes/core/class-permalinks.php:191
7353
  msgid "This activation link is expired or have already been used."
7354
  msgstr ""
7355
 
7356
- #. translators: %s: support forums URL
7357
- #: includes/core/class-plugin-updater.php:319
7358
- #, php-format
7359
- msgid ""
7360
- "An unexpected error occurred. Something may be wrong with %s or this "
7361
- "server&#8217;s configuration. If you continue to have problems, please try "
7362
- "the <a href=\"%s\">support forums</a>."
7363
- msgstr ""
7364
-
7365
- #: includes/core/class-plugin-updater.php:321
7366
- msgid "https://wordpress.org/support/"
7367
- msgstr ""
7368
-
7369
  #: includes/core/class-profile.php:100
7370
  msgid "Anyone"
7371
  msgstr ""
@@ -7412,24 +7294,23 @@ msgstr ""
7412
  msgid "Default Template"
7413
  msgstr ""
7414
 
7415
- #: includes/core/class-uploader.php:663
7416
  msgid "Your image is invalid!"
7417
  msgstr ""
7418
 
7419
- #: includes/core/class-uploader.php:705
7420
  msgid "This media type is not recognized."
7421
  msgstr ""
7422
 
7423
- #: includes/core/class-uploader.php:753
7424
  msgid "Your image is invalid or too large!"
7425
  msgstr ""
7426
 
7427
- #: includes/core/class-uploader.php:759 includes/core/class-uploader.php:761
7428
- #, php-format
7429
  msgid "Your photo is too small. It must be at least %spx wide."
7430
  msgstr ""
7431
 
7432
- #: includes/core/class-uploader.php:814
7433
  msgid "This file type is not recognized."
7434
  msgstr ""
7435
 
@@ -7506,139 +7387,158 @@ msgstr ""
7506
  msgid "Invalid query!"
7507
  msgstr ""
7508
 
7509
- #: includes/core/um-actions-account.php:16
7510
  msgid "Are you hacking? Please try again!"
7511
  msgstr ""
7512
 
7513
  #: includes/core/um-actions-account.php:26
7514
- #: includes/core/um-actions-account.php:114
7515
  msgid "You must enter your password"
7516
  msgstr ""
7517
 
7518
  #: includes/core/um-actions-account.php:29
7519
- #: includes/core/um-actions-account.php:46
7520
- #: includes/core/um-actions-account.php:117
 
7521
  msgid "This is not your password"
7522
  msgstr ""
7523
 
7524
- #: includes/core/um-actions-account.php:51
 
 
 
 
 
 
 
 
7525
  msgid "Your new password does not match"
7526
  msgstr ""
7527
 
7528
- #: includes/core/um-actions-account.php:84
7529
  msgid "Your username is invalid"
7530
  msgstr ""
7531
 
7532
- #: includes/core/um-actions-account.php:89
7533
  msgid "You must provide your first name"
7534
  msgstr ""
7535
 
7536
- #: includes/core/um-actions-account.php:93
7537
  msgid "You must provide your last name"
7538
  msgstr ""
7539
 
7540
- #: includes/core/um-actions-account.php:99
7541
  msgid "You must provide your e-mail"
7542
  msgstr ""
7543
 
7544
- #: includes/core/um-actions-account.php:103
7545
  msgid "Please provide a valid e-mail"
7546
  msgstr ""
7547
 
7548
- #: includes/core/um-actions-account.php:107
7549
  msgid "Email already linked to another account"
7550
  msgstr ""
7551
 
7552
- #: includes/core/um-actions-account.php:434
7553
  msgid "Select what email notifications do you want to receive"
7554
  msgstr ""
7555
 
7556
- #: includes/core/um-actions-account.php:492
7557
  msgid "Download your data"
7558
  msgstr ""
7559
 
7560
- #: includes/core/um-actions-account.php:494
7561
  msgid ""
7562
  "You can request a file with the information that we believe is most relevant "
7563
  "and useful to you."
7564
  msgstr ""
7565
 
7566
- #: includes/core/um-actions-account.php:512
7567
  msgid "You could download your previous data:"
7568
  msgstr ""
7569
 
7570
- #: includes/core/um-actions-account.php:513
7571
  msgid "download personal data"
7572
  msgstr ""
7573
 
7574
- #: includes/core/um-actions-account.php:514
7575
  msgid "You could send a new request for an export of personal your data."
7576
  msgstr ""
7577
 
7578
- #: includes/core/um-actions-account.php:530
7579
- #: includes/core/um-actions-account.php:592
7580
- #: includes/core/um-actions-account.php:639
7581
  msgid ""
7582
  "A confirmation email has been sent to your email. Click the link within the "
7583
  "email to confirm your export request."
7584
  msgstr ""
7585
 
7586
- #: includes/core/um-actions-account.php:532
7587
  msgid ""
7588
  "The administrator has not yet approved downloading the data. Please expect "
7589
  "an email with a link to your data."
7590
  msgstr ""
7591
 
7592
- #: includes/core/um-actions-account.php:535
7593
  msgid ""
7594
  "Enter your current password to confirm a new export of your personal data."
7595
  msgstr ""
7596
 
7597
- #: includes/core/um-actions-account.php:540
7598
- #: includes/core/um-actions-account.php:600
7599
  msgid "You must enter a password"
7600
  msgstr ""
7601
 
7602
- #: includes/core/um-actions-account.php:545
 
 
 
 
7603
  msgid "Request data"
7604
  msgstr ""
7605
 
7606
- #: includes/core/um-actions-account.php:554
7607
  msgid "Erase of your data"
7608
  msgstr ""
7609
 
7610
- #: includes/core/um-actions-account.php:556
7611
  msgid "You can request erasing of the data that we have about you."
7612
  msgstr ""
7613
 
7614
- #: includes/core/um-actions-account.php:575
7615
  msgid "Your personal data has been deleted."
7616
  msgstr ""
7617
 
7618
- #: includes/core/um-actions-account.php:576
7619
  msgid "You could send a new request for deleting your personal data."
7620
  msgstr ""
7621
 
7622
- #: includes/core/um-actions-account.php:594
7623
  msgid ""
7624
  "The administrator has not yet approved deleting your data. Please expect an "
7625
  "email with a link to your data."
7626
  msgstr ""
7627
 
7628
- #: includes/core/um-actions-account.php:597
7629
  msgid ""
7630
  "Enter your current password to confirm the erasure of your personal data."
7631
  msgstr ""
7632
 
7633
- #: includes/core/um-actions-account.php:605
 
 
 
 
7634
  msgid "Request data erase"
7635
  msgstr ""
7636
 
7637
- #: includes/core/um-actions-account.php:632
 
7638
  msgid "Wrong request."
7639
  msgstr ""
7640
 
7641
- #: includes/core/um-actions-account.php:644
 
7642
  msgid "The password you entered is incorrect."
7643
  msgstr ""
7644
 
@@ -7665,13 +7565,11 @@ msgid "Profile Photo is required."
7665
  msgstr ""
7666
 
7667
  #: includes/core/um-actions-form.php:447 includes/core/um-actions-form.php:448
7668
- #, php-format
7669
  msgid "%s - wrong conditions."
7670
  msgstr ""
7671
 
7672
  #: includes/core/um-actions-form.php:456 includes/core/um-actions-form.php:460
7673
  #: includes/core/um-actions-form.php:464
7674
- #, php-format
7675
  msgid "%s is required."
7676
  msgstr ""
7677
 
@@ -7684,134 +7582,119 @@ msgid "This field is required"
7684
  msgstr ""
7685
 
7686
  #: includes/core/um-actions-form.php:501
7687
- #, php-format
7688
  msgid "%s is required"
7689
  msgstr ""
7690
 
7691
  #: includes/core/um-actions-form.php:510
7692
- #, php-format
7693
  msgid "You are only allowed to enter a maximum of %s words"
7694
  msgstr ""
7695
 
7696
  #: includes/core/um-actions-form.php:516
7697
- #, php-format
7698
  msgid "Your %s must contain at least %s characters"
7699
  msgstr ""
7700
 
7701
  #: includes/core/um-actions-form.php:522
7702
- #, php-format
7703
  msgid "Your %s must contain less than %s characters"
7704
  msgstr ""
7705
 
7706
- #: includes/core/um-actions-form.php:531
7707
  msgid "You can not use HTML tags here"
7708
  msgstr ""
7709
 
7710
- #: includes/core/um-actions-form.php:544
7711
  msgid "Please confirm your password"
7712
  msgstr ""
7713
 
7714
- #: includes/core/um-actions-form.php:553
7715
- #, php-format
7716
  msgid "Please select at least %s choices"
7717
  msgstr ""
7718
 
7719
- #: includes/core/um-actions-form.php:559
7720
- #, php-format
7721
  msgid "You can only select up to %s choices"
7722
  msgstr ""
7723
 
7724
- #: includes/core/um-actions-form.php:565
7725
- #, php-format
7726
  msgid "Minimum number limit is %s"
7727
  msgstr ""
7728
 
7729
- #: includes/core/um-actions-form.php:571
7730
- #, php-format
7731
  msgid "Maximum number limit is %s"
7732
  msgstr ""
7733
 
7734
- #: includes/core/um-actions-form.php:607
7735
  msgid "Please enter numbers only in this field"
7736
  msgstr ""
7737
 
7738
- #: includes/core/um-actions-form.php:613
7739
  msgid "Please enter a valid phone number"
7740
  msgstr ""
7741
 
7742
- #: includes/core/um-actions-form.php:619 includes/core/um-actions-form.php:625
7743
- #: includes/core/um-actions-form.php:631 includes/core/um-actions-form.php:637
7744
- #: includes/core/um-actions-form.php:650 includes/core/um-actions-form.php:656
7745
- #: includes/core/um-actions-form.php:662
7746
- #, php-format
7747
  msgid "Please enter a valid %s username or profile URL"
7748
  msgstr ""
7749
 
7750
- #: includes/core/um-actions-form.php:644
7751
- #, php-format
7752
  msgid "Please enter a valid %s profile URL"
7753
  msgstr ""
7754
 
7755
- #: includes/core/um-actions-form.php:668
7756
  msgid "Please enter a valid URL"
7757
  msgstr ""
7758
 
7759
- #: includes/core/um-actions-form.php:675 includes/core/um-actions-form.php:689
7760
  msgid "You must provide a username"
7761
  msgstr ""
7762
 
7763
- #: includes/core/um-actions-form.php:677 includes/core/um-actions-form.php:691
7764
  msgid "Your username is already taken"
7765
  msgstr ""
7766
 
7767
- #: includes/core/um-actions-form.php:679
7768
  msgid "Username cannot be an email"
7769
  msgstr ""
7770
 
7771
- #: includes/core/um-actions-form.php:681 includes/core/um-actions-form.php:695
7772
  msgid "Your username contains invalid characters"
7773
  msgstr ""
7774
 
7775
- #: includes/core/um-actions-form.php:693 includes/core/um-actions-form.php:715
7776
- #: includes/core/um-actions-form.php:717 includes/core/um-actions-form.php:729
7777
- #: includes/core/um-actions-form.php:736
7778
  msgid "This email is already linked to an existing account"
7779
  msgstr ""
7780
 
7781
- #: includes/core/um-actions-form.php:713
7782
  msgid "You must provide your email"
7783
  msgstr ""
7784
 
7785
- #: includes/core/um-actions-form.php:719 includes/core/um-actions-form.php:727
7786
- #: includes/core/um-actions-form.php:751
7787
  msgid "This is not a valid email"
7788
  msgstr ""
7789
 
7790
- #: includes/core/um-actions-form.php:721
7791
  msgid "Your email contains invalid characters"
7792
  msgstr ""
7793
 
7794
- #: includes/core/um-actions-form.php:770
7795
  msgid "You must provide a unique value"
7796
  msgstr ""
7797
 
7798
- #: includes/core/um-actions-form.php:780
7799
  msgid "You must provide alphabetic letters"
7800
  msgstr ""
7801
 
7802
- #: includes/core/um-actions-form.php:792
7803
  msgid "You must provide lowercase letters."
7804
  msgstr ""
7805
 
7806
- #: includes/core/um-actions-form.php:810
7807
- #, php-format
7808
  msgid "Your user description must contain less than %s characters"
7809
  msgstr ""
7810
 
7811
- #: includes/core/um-actions-global.php:30
7812
- msgid "Only fill in if you are not human"
7813
- msgstr ""
7814
-
7815
  #: includes/core/um-actions-login.php:18
7816
  msgid "Please enter your username or email"
7817
  msgstr ""
@@ -7897,39 +7780,37 @@ msgid "You are not allowed to edit this user."
7897
  msgstr ""
7898
 
7899
  #: includes/core/um-actions-profile.php:350
7900
- #, php-format
7901
  msgid "Your choosed %s"
7902
  msgstr ""
7903
 
7904
- #: includes/core/um-actions-profile.php:673
7905
- #: includes/core/um-actions-profile.php:683
7906
  msgid "Profile photo"
7907
  msgstr ""
7908
 
7909
- #: includes/core/um-actions-profile.php:744
7910
- #: includes/core/um-actions-profile.php:760
7911
- #: includes/core/um-actions-profile.php:831
7912
  msgid "Upload a cover photo"
7913
  msgstr ""
7914
 
7915
- #: includes/core/um-actions-profile.php:744
7916
  msgid "Change cover photo"
7917
  msgstr ""
7918
 
7919
- #: includes/core/um-actions-profile.php:948
7920
  msgid "Upload photo"
7921
  msgstr ""
7922
 
7923
- #: includes/core/um-actions-profile.php:981
7924
  msgid "Remove photo"
7925
  msgstr ""
7926
 
7927
- #: includes/core/um-actions-profile.php:1144
7928
  msgid "Tell us a bit about yourself..."
7929
  msgstr ""
7930
 
7931
- #: includes/core/um-actions-profile.php:1159
7932
- #, php-format
7933
  msgid "This user account status is %s"
7934
  msgstr ""
7935
 
@@ -7942,7 +7823,6 @@ msgid "Invalid soundcloud track ID"
7942
  msgstr ""
7943
 
7944
  #: includes/core/um-filters-fields.php:124
7945
- #, php-format
7946
  msgid "Joined %s"
7947
  msgstr ""
7948
 
@@ -7950,8 +7830,8 @@ msgstr ""
7950
  msgid "Untitled photo"
7951
  msgstr ""
7952
 
7953
- #: includes/core/um-filters-profile.php:81
7954
- #: includes/core/um-filters-profile.php:102
7955
  msgid "max"
7956
  msgstr ""
7957
 
@@ -7971,12 +7851,12 @@ msgstr ""
7971
  msgid "Login as this user"
7972
  msgstr ""
7973
 
7974
- #: includes/um-short-functions.php:752 includes/um-short-functions.php:985
7975
  msgid "date submitted"
7976
  msgstr ""
7977
 
7978
- #: includes/um-short-functions.php:758 includes/um-short-functions.php:954
7979
- #: includes/um-short-functions.php:991
7980
  msgid "(empty)"
7981
  msgstr ""
7982
 
@@ -7984,8 +7864,7 @@ msgstr ""
7984
  msgid "Date Submitted"
7985
  msgstr ""
7986
 
7987
- #: includes/um-short-functions.php:943
7988
- #, php-format
7989
  msgid "%s - Form ID#: %s"
7990
  msgstr ""
7991
 
@@ -8038,7 +7917,6 @@ msgid "Search"
8038
  msgstr ""
8039
 
8040
  #: templates/members.php:253
8041
- #, php-format
8042
  msgid "Change to %s"
8043
  msgstr ""
8044
 
@@ -8062,7 +7940,11 @@ msgstr ""
8062
  msgid "Clear all"
8063
  msgstr ""
8064
 
8065
- #: templates/password-change.php:45
 
 
 
 
8066
  msgid "Change my password"
8067
  msgstr ""
8068
 
@@ -8092,7 +7974,6 @@ msgid "Reset my password"
8092
  msgstr ""
8093
 
8094
  #: templates/profile/comments-single.php:14
8095
- #, php-format
8096
  msgid "On <a href=\"%1$s\">%2$s</a>"
8097
  msgstr ""
8098
 
@@ -8109,7 +7990,6 @@ msgid "This user has not made any comments."
8109
  msgstr ""
8110
 
8111
  #: templates/profile/posts-single.php:23
8112
- #, php-format
8113
  msgid "%s ago"
8114
  msgstr ""
8115
 
@@ -8122,7 +8002,6 @@ msgid "no comments"
8122
  msgstr ""
8123
 
8124
  #: templates/profile/posts-single.php:34
8125
- #, php-format
8126
  msgid "%s comments"
8127
  msgstr ""
8128
 
@@ -8142,23 +8021,145 @@ msgstr ""
8142
  msgid "This user has not created any posts."
8143
  msgstr ""
8144
 
8145
- #: templates/searchform.php:8 templates/searchform.php:9
8146
- msgctxt "label"
8147
- msgid "Search for:"
8148
  msgstr ""
8149
 
8150
- #: templates/searchform.php:9
8151
- msgctxt "placeholder"
8152
- msgid "Search &hellip;"
8153
  msgstr ""
8154
 
8155
- #. Plugin URI of the plugin/theme
8156
- #. Author URI of the plugin/theme
8157
- msgid "http://ultimatemember.com/"
8158
  msgstr ""
8159
 
8160
- #. Description of the plugin/theme
8161
- msgid ""
8162
- "The easiest way to create powerful online communities and beautiful user "
8163
- "profiles with WordPress"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8164
  msgstr ""
1
+ # Copyright (C) 2020 Ultimate Member
2
+ # This file is distributed under the same license as the Ultimate Member plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ultimate Member 2.1.7\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-member\n"
 
 
7
  "Language-Team: \n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "POT-Creation-Date: 2020-08-12T16:16:16+03:00\n"
12
+ "PO-Revision-Date: 2020-08-12 16:23+0300\n"
13
  "X-Generator: Poedit 2.0.6\n"
14
+ "X-Domain: ultimate-member\n"
15
+ "Last-Translator: \n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Language: en_US\n"
18
+
19
+ #. Plugin Name of the plugin
20
+ #. Author of the plugin
21
+ #: includes/admin/core/class-admin-menu.php:147
22
+ #: includes/core/class-user.php:712
23
+ msgid "Ultimate Member"
24
+ msgstr ""
25
+
26
+ #. Plugin URI of the plugin
27
+ #. Author URI of the plugin
28
+ msgid "http://ultimatemember.com/"
29
+ msgstr ""
30
+
31
+ #. Description of the plugin
32
+ msgid ""
33
+ "The easiest way to create powerful online communities and beautiful user "
34
+ "profiles with WordPress"
35
+ msgstr ""
36
 
37
  #: includes/admin/class-admin-functions.php:35 includes/class-functions.php:55
38
  msgid "Wrong Nonce"
39
  msgstr ""
40
 
41
  #: includes/admin/class-admin.php:197
 
42
  msgid "Duplicate of %s"
43
  msgstr ""
44
 
47
  msgstr ""
48
 
49
  #: includes/admin/class-admin.php:318
50
+ #: includes/admin/core/class-admin-settings.php:1424
51
  msgid "Settings"
52
  msgstr ""
53
 
87
  msgid "Form draft updated."
88
  msgstr ""
89
 
 
 
 
 
90
  #: includes/admin/core/class-admin-builder.php:213
91
  #: includes/admin/core/class-admin-builder.php:215
92
  msgid ""
94
  "specific fields value or conditions"
95
  msgstr ""
96
 
 
 
 
 
97
  #: includes/admin/core/class-admin-builder.php:230
98
  msgid "Add new rule"
99
  msgstr ""
107
  #: includes/admin/core/class-admin-builder.php:763
108
  #: includes/admin/core/class-admin-dragdrop.php:33
109
  #: includes/admin/core/class-admin-menu.php:106
110
+ #: includes/core/class-fields.php:4565
111
  msgid "Please login as administrator"
112
  msgstr ""
113
 
168
  msgstr ""
169
 
170
  #: includes/admin/core/class-admin-builder.php:878
171
+ #: includes/core/class-builtin.php:1363
172
  msgid "None"
173
  msgstr ""
174
 
195
  msgid "Status"
196
  msgstr ""
197
 
 
198
  #: includes/admin/core/class-admin-columns.php:151
199
  #: includes/admin/core/class-admin-metabox.php:2158
200
  #: includes/admin/templates/role/role-edit.php:193
202
  msgid "Title"
203
  msgstr ""
204
 
 
205
  #: includes/admin/core/class-admin-columns.php:152
206
  msgid "ID"
207
  msgstr ""
208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  #: includes/admin/core/class-admin-columns.php:154
210
  #: includes/admin/core/class-admin-metabox.php:812
211
  #: includes/admin/core/class-admin-metabox.php:974
212
  msgid "Shortcode"
213
  msgstr ""
214
 
 
215
  #: includes/admin/core/class-admin-columns.php:155
216
  msgid "Date"
217
  msgstr ""
218
 
219
  #: includes/admin/core/class-admin-columns.php:186
220
  #: includes/admin/core/class-admin-columns.php:219
221
+ #: includes/admin/core/class-admin-settings.php:731
222
  #: includes/admin/core/list-tables/roles-list-table.php:371
223
  #: includes/admin/core/list-tables/roles-list-table.php:379
224
  #: includes/admin/templates/form/login_customize.php:16
236
  #: includes/admin/templates/form/register_customize.php:23
237
  #: includes/admin/templates/form/register_customize.php:79
238
  #: includes/admin/templates/form/register_gdpr.php:26
239
+ #: includes/core/class-builtin.php:1144 includes/core/class-builtin.php:1163
240
+ #: includes/core/class-builtin.php:1179 includes/core/class-builtin.php:1182
241
+ #: includes/core/um-actions-account.php:289
242
  msgid "No"
243
  msgstr ""
244
 
245
  #: includes/admin/core/class-admin-columns.php:186
246
  #: includes/admin/core/class-admin-columns.php:219
247
+ #: includes/admin/core/class-admin-settings.php:732
248
  #: includes/admin/core/list-tables/roles-list-table.php:371
249
  #: includes/admin/core/list-tables/roles-list-table.php:379
250
  #: includes/admin/core/packages/2.1.3-beta3/functions.php:75
264
  #: includes/admin/templates/form/register_customize.php:24
265
  #: includes/admin/templates/form/register_customize.php:80
266
  #: includes/admin/templates/form/register_gdpr.php:27
267
+ #: includes/core/class-builtin.php:1145 includes/core/class-builtin.php:1164
268
+ #: includes/core/class-builtin.php:1181 includes/core/class-user.php:212
269
+ #: includes/core/class-user.php:213 includes/core/um-actions-account.php:284
270
  msgid "Yes"
271
  msgstr ""
272
 
280
 
281
  #: includes/admin/core/class-admin-enqueue.php:485
282
  #: includes/core/class-builtin.php:706 includes/core/class-builtin.php:709
283
+ #: includes/core/class-builtin.php:1188 includes/core/class-builtin.php:1191
284
+ #: includes/core/um-actions-account.php:558
285
+ #: includes/core/um-actions-account.php:630
286
  msgid "Password"
287
  msgstr ""
288
 
315
  #: includes/admin/core/class-admin-forms.php:532
316
  #: includes/admin/core/class-admin-metabox.php:1450
317
  #: includes/admin/core/class-admin-metabox.php:1478
318
+ #: includes/admin/assets/js/um-admin-modal.js:415
319
+ #: includes/admin/assets/js/um-admin-modal.js:419
320
  msgid "No Icon"
321
  msgstr ""
322
 
334
  #: includes/admin/core/class-admin-forms.php:1537
335
  #: includes/admin/core/class-admin-forms.php:1559
336
  #: includes/admin/core/class-admin-notices.php:400
337
+ #: includes/core/um-actions-profile.php:765
338
+ #: includes/admin/assets/js/um-admin-forms.js:201
339
+ #: includes/admin/assets/js/um-admin-forms.js:266
340
+ #: includes/admin/assets/js/um-admin-forms.js:539
341
+ #: includes/admin/assets/js/um-admin-forms.js:573
342
  msgid "Remove"
343
  msgstr ""
344
 
347
  msgstr ""
348
 
349
  #: includes/admin/core/class-admin-forms.php:1257
350
+ #: includes/admin/assets/js/um-admin-forms.js:621
351
  msgid "Select"
352
  msgstr ""
353
 
358
  #: includes/admin/core/class-admin-forms.php:1538
359
  #: includes/admin/core/class-admin-forms.php:1560
360
  #: includes/admin/templates/directory/sorting.php:23
361
+ #: includes/admin/assets/js/um-admin-forms.js:203
362
  msgid "Meta key"
363
  msgstr ""
364
 
365
  #: includes/admin/core/class-admin-forms.php:1539
366
  #: includes/admin/core/class-admin-forms.php:1561
367
  #: includes/admin/core/class-admin-metabox.php:2250
368
+ #: includes/admin/assets/js/um-admin-forms.js:204
369
  msgid "Label"
370
  msgstr ""
371
 
446
  msgstr ""
447
 
448
  #: includes/admin/core/class-admin-gdpr.php:298
 
449
  msgid "Your %s was unable to be removed at this time."
450
  msgstr ""
451
 
454
  msgstr ""
455
 
456
  #: includes/admin/core/class-admin-menu.php:72
 
457
  msgid ""
458
  "If you like Ultimate Member please consider leaving a %s review. It will "
459
  "help us to grow the plugin and make it more popular. Thank you."
460
  msgstr ""
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  #: includes/admin/core/class-admin-menu.php:151
463
  msgid "Dashboard"
464
  msgstr ""
470
 
471
  #: includes/admin/core/class-admin-menu.php:161
472
  #: includes/admin/core/list-tables/roles-list-table.php:483
 
473
  msgid "User Roles"
474
  msgstr ""
475
 
479
  msgstr ""
480
 
481
  #: includes/admin/core/class-admin-menu.php:206
482
+ #: includes/admin/core/class-admin-settings.php:1280
483
  msgid "Extensions"
484
  msgstr ""
485
 
528
  #: includes/admin/core/class-admin-metabox.php:392
529
  #: includes/admin/core/class-admin-metabox.php:544
530
  #: includes/admin/templates/access/restrict_content.php:60
531
+ #: includes/admin/assets/js/um-admin-blocks.js:91
532
  msgid "Who can access this content?"
533
  msgstr ""
534
 
535
  #: includes/admin/core/class-admin-metabox.php:396
536
  #: includes/admin/core/class-admin-metabox.php:548
537
  #: includes/admin/core/class-admin-metabox.php:2269
538
+ #: includes/admin/core/class-admin-navmenu.php:81
539
+ #: includes/admin/core/class-admin-navmenu.php:242
540
  #: includes/admin/templates/access/restrict_content.php:64
541
  #: includes/core/class-builtin.php:670
542
+ #: includes/admin/assets/js/um-admin-blocks.js:95
543
  msgid "Everyone"
544
  msgstr ""
545
 
546
  #: includes/admin/core/class-admin-metabox.php:397
547
  #: includes/admin/core/class-admin-metabox.php:549
548
  #: includes/admin/templates/access/restrict_content.php:65
549
+ #: includes/admin/assets/js/um-admin-blocks.js:103
550
  msgid "Logged out users"
551
  msgstr ""
552
 
553
  #: includes/admin/core/class-admin-metabox.php:398
554
  #: includes/admin/core/class-admin-metabox.php:550
555
  #: includes/admin/templates/access/restrict_content.php:66
556
+ #: includes/admin/assets/js/um-admin-blocks.js:99
557
  msgid "Logged in users"
558
  msgstr ""
559
 
756
  msgstr ""
757
 
758
  #: includes/admin/core/class-admin-metabox.php:1072
 
759
  msgid "Directory #%s"
760
  msgstr ""
761
 
762
  #: includes/admin/core/class-admin-metabox.php:1165
 
763
  msgid "Form #%s"
764
  msgstr ""
765
 
786
  msgid "View mode only"
787
  msgstr ""
788
 
 
 
 
 
789
  #: includes/admin/core/class-admin-metabox.php:1378
790
  msgid "Value"
791
  msgstr ""
1307
  msgstr ""
1308
 
1309
  #: includes/admin/core/class-admin-metabox.php:2002
1310
+ #: includes/core/class-fields.php:1717 includes/core/class-fields.php:1758
1311
+ #: includes/core/class-fields.php:2608 includes/core/class-fields.php:2683
1312
  msgid "Upload"
1313
  msgstr ""
1314
 
1540
  msgstr ""
1541
 
1542
  #: includes/admin/core/class-admin-metabox.php:2270
1543
+ #: includes/class-config.php:134 includes/class-config.php:794
1544
  msgid "Members"
1545
  msgstr ""
1546
 
1634
  msgid "By Role"
1635
  msgstr ""
1636
 
1637
+ #: includes/admin/core/class-admin-navmenu.php:75
1638
+ #: includes/admin/core/class-admin-navmenu.php:125
1639
+ #: includes/admin/core/class-admin-navmenu.php:234
1640
  msgid "Ultimate Member Menu Settings"
1641
  msgstr ""
1642
 
1643
+ #: includes/admin/core/class-admin-navmenu.php:79
1644
+ #: includes/admin/core/class-admin-navmenu.php:238
1645
  msgid "Who can see this menu link?"
1646
  msgstr ""
1647
 
1648
+ #: includes/admin/core/class-admin-navmenu.php:82
1649
+ #: includes/admin/core/class-admin-navmenu.php:245
1650
  msgid "Logged Out Users"
1651
  msgstr ""
1652
 
1653
+ #: includes/admin/core/class-admin-navmenu.php:83
1654
+ #: includes/admin/core/class-admin-navmenu.php:248
1655
  msgid "Logged In Users"
1656
  msgstr ""
1657
 
1658
+ #: includes/admin/core/class-admin-navmenu.php:88
1659
+ #: includes/admin/core/class-admin-navmenu.php:254
1660
  msgid "Select the member roles that can see this link"
1661
  msgstr ""
1662
 
1663
  #: includes/admin/core/class-admin-notices.php:287
 
1664
  msgid ""
1665
  "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions "
1666
  "installed on your site. <br /> Please update %s extensions to latest "
1668
  msgstr ""
1669
 
1670
  #: includes/admin/core/class-admin-notices.php:308
 
1671
  msgid ""
1672
  "%s needs to create several pages (User Profiles, Account, Registration, "
1673
  "Login, Password Reset, Logout, Member Directory) to function correctly."
1691
  msgstr ""
1692
 
1693
  #: includes/admin/core/class-admin-notices.php:362
 
1694
  msgid ""
1695
  "Exif is not enabled on your server. Mobile photo uploads will not be rotated "
1696
  "correctly until you enable the exif extension. <a href=\"%s\">Hide this "
1698
  msgstr ""
1699
 
1700
  #: includes/admin/core/class-admin-notices.php:399
 
1701
  msgid ""
1702
  "Are you sure you want to delete the selected user(s)? The following users "
1703
  "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
1752
  msgstr ""
1753
 
1754
  #: includes/admin/core/class-admin-notices.php:479
 
1755
  msgid ""
1756
  "You have installed <strong>%s</strong> with wrong folder name. Correct "
1757
  "folder name is <strong>\"ultimate-member\"</strong>."
1758
  msgstr ""
1759
 
1760
  #: includes/admin/core/class-admin-notices.php:504
 
1761
  msgid ""
1762
  "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To "
1763
  "fund full-time development and support of the plugin we also sell "
1767
  msgstr ""
1768
 
1769
  #: includes/admin/core/class-admin-notices.php:508
 
1770
  msgid "Claim 20% discount code"
1771
  msgstr ""
1772
 
1773
  #: includes/admin/core/class-admin-notices.php:547
 
1774
  msgid ""
1775
  "There are %d inactive %s license keys for this site. This site is not "
1776
  "authorized to get plugin updates. You can active this site on <a href=\"%s"
1778
  msgstr ""
1779
 
1780
  #: includes/admin/core/class-admin-notices.php:554
 
1781
  msgid ""
1782
  "You have %d invalid or expired license keys for %s. Please go to the <a href="
1783
  "\"%s\">Licenses page</a> to correct this issue."
1784
  msgstr ""
1785
 
1786
  #: includes/admin/core/class-admin-notices.php:568
 
1787
  msgid ""
1788
  "<strong>%s version %s</strong> needs to be updated to work correctly.<br /"
1789
  ">It is necessary to update the structure of the database and options that "
1800
  msgstr ""
1801
 
1802
  #: includes/admin/core/class-admin-notices.php:592
 
1803
  msgid "<strong>%s %s</strong> Successfully Upgraded"
1804
  msgstr ""
1805
 
1806
  #: includes/admin/core/class-admin-notices.php:619
 
1807
  msgid ""
1808
  "Hey there! It's been one month since you installed %s. How have you found "
1809
  "the plugin so far?"
1821
  msgid "I don't like the plugin"
1822
  msgstr ""
1823
 
 
 
 
 
 
 
 
 
 
1824
  #: includes/admin/core/class-admin-notices.php:633
1825
  msgid "Leave Review"
1826
  msgstr ""
1827
 
 
 
 
 
 
 
1828
  #: includes/admin/core/class-admin-notices.php:642
1829
  #: includes/admin/core/class-admin-notices.php:651
1830
  msgid "Provide Feedback"
1831
  msgstr ""
1832
 
 
 
 
 
 
 
 
 
 
 
1833
  #: includes/admin/core/class-admin-notices.php:673
 
1834
  msgid ""
1835
  "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" "
1836
  "target=\"_blank\">here</a>"
1850
  msgstr ""
1851
 
1852
  #: includes/admin/core/class-admin-settings.php:220
 
1853
  msgid "Metadata from %s to %s was upgraded successfully..."
1854
  msgstr ""
1855
 
1856
  #: includes/admin/core/class-admin-settings.php:250
1857
  #: includes/admin/core/class-admin-settings.php:259
 
1858
  msgid "%s page"
1859
  msgstr ""
1860
 
1872
 
1873
  #: includes/admin/core/class-admin-settings.php:297
1874
  #: includes/admin/core/class-admin-settings.php:308
 
1875
  msgid "%s Tab"
1876
  msgstr ""
1877
 
1878
  #: includes/admin/core/class-admin-settings.php:315
 
1879
  msgid "Who can see %s Tab?"
1880
  msgstr ""
1881
 
2169
  "Gravatar has a number of built in options which you can also use as defaults"
2170
  msgstr ""
2171
 
2172
+ #: includes/admin/core/class-admin-settings.php:609
2173
+ #: includes/admin/templates/form/login_settings.php:16
2174
+ #: includes/admin/templates/form/register_customize.php:6
2175
+ #: includes/admin/templates/form/register_customize.php:32
2176
+ msgid "Default"
2177
+ msgstr ""
2178
+
2179
  #: includes/admin/core/class-admin-settings.php:610
2180
  msgid "404 ( File Not Found response )"
2181
  msgstr ""
2225
  msgstr ""
2226
 
2227
  #: includes/admin/core/class-admin-settings.php:637
2228
+ #: includes/class-config.php:136 includes/class-config.php:796
2229
  #: includes/core/class-account.php:97
2230
  msgid "Account"
2231
  msgstr ""
2269
  #: includes/admin/core/class-admin-settings.php:667
2270
  msgid ""
2271
  "This is custom text that will be displayed to users before they delete their "
2272
+ "accounts from your site when password is required."
2273
  msgstr ""
2274
 
2275
  #: includes/admin/core/class-admin-settings.php:675
2276
+ msgid "Account Deletion without password Custom Text"
2277
  msgstr ""
2278
 
2279
  #: includes/admin/core/class-admin-settings.php:676
2280
  msgid ""
2281
+ "This is custom text that will be displayed to users before they delete their "
2282
+ "accounts from your site when password isn't required."
2283
+ msgstr ""
2284
+
2285
+ #: includes/admin/core/class-admin-settings.php:684
2286
+ msgid "Add a First & Last Name fields"
2287
+ msgstr ""
2288
+
2289
+ #: includes/admin/core/class-admin-settings.php:685
2290
+ msgid ""
2291
  "Whether to enable these fields on the user account page by default or hide "
2292
  "them."
2293
  msgstr ""
2294
 
2295
+ #: includes/admin/core/class-admin-settings.php:690
2296
  msgid "Disable First & Last Name fields"
2297
  msgstr ""
2298
 
2299
+ #: includes/admin/core/class-admin-settings.php:691
2300
  msgid ""
2301
  "Whether to allow users changing their first and last name in account page."
2302
  msgstr ""
2303
 
2304
+ #: includes/admin/core/class-admin-settings.php:697
2305
  msgid "Require First & Last Name"
2306
  msgstr ""
2307
 
2308
+ #: includes/admin/core/class-admin-settings.php:698
2309
  msgid "Require first and last name?"
2310
  msgstr ""
2311
 
2312
+ #: includes/admin/core/class-admin-settings.php:704
2313
  msgid "Allow users to change e-mail"
2314
  msgstr ""
2315
 
2316
+ #: includes/admin/core/class-admin-settings.php:705
2317
  msgid "Whether to allow users changing their email in account page."
2318
  msgstr ""
2319
 
2320
+ #: includes/admin/core/class-admin-settings.php:710
2321
  msgid "Password is required?"
2322
  msgstr ""
2323
 
2324
+ #: includes/admin/core/class-admin-settings.php:711
2325
  msgid "Password is required to save account data."
2326
  msgstr ""
2327
 
2328
+ #: includes/admin/core/class-admin-settings.php:716
2329
  msgid "Require a strong password?"
2330
  msgstr ""
2331
 
2332
+ #: includes/admin/core/class-admin-settings.php:717
2333
  msgid ""
2334
  "Enable or disable a strong password rules on account page / change password "
2335
  "tab"
2336
  msgstr ""
2337
 
2338
+ #: includes/admin/core/class-admin-settings.php:722
2339
  msgid "Allow users to hide their profiles from directory"
2340
  msgstr ""
2341
 
2342
+ #: includes/admin/core/class-admin-settings.php:723
2343
  msgid ""
2344
  "Whether to allow users changing their profile visibility from member "
2345
  "directory in account page."
2346
  msgstr ""
2347
 
2348
+ #: includes/admin/core/class-admin-settings.php:728
2349
  msgid "Hide profiles from directory by default"
2350
  msgstr ""
2351
 
2352
+ #: includes/admin/core/class-admin-settings.php:729
2353
  msgid "Set default value for the \"Hide my profile from directory\" option"
2354
  msgstr ""
2355
 
2356
+ #: includes/admin/core/class-admin-settings.php:740
2357
  msgid "Uploads"
2358
  msgstr ""
2359
 
2360
+ #: includes/admin/core/class-admin-settings.php:746
2361
  msgid "Profile Photo Maximum File Size (bytes)"
2362
  msgstr ""
2363
 
2364
+ #: includes/admin/core/class-admin-settings.php:747
2365
  msgid "Sets a maximum size for the uploaded photo"
2366
  msgstr ""
2367
 
2368
+ #: includes/admin/core/class-admin-settings.php:754
2369
  msgid "Cover Photo Maximum File Size (bytes)"
2370
  msgstr ""
2371
 
2372
+ #: includes/admin/core/class-admin-settings.php:755
2373
  msgid "Sets a maximum size for the uploaded cover"
2374
  msgstr ""
2375
 
2376
+ #: includes/admin/core/class-admin-settings.php:761
2377
  msgid "Profile Photo Thumbnail Sizes (px)"
2378
  msgstr ""
2379
 
2380
+ #: includes/admin/core/class-admin-settings.php:762
2381
  msgid ""
2382
  "Here you can define which thumbnail sizes will be created for each profile "
2383
  "photo upload."
2384
  msgstr ""
2385
 
2386
+ #: includes/admin/core/class-admin-settings.php:764
2387
+ #: includes/admin/core/class-admin-settings.php:774
2388
  msgid "Add New Size"
2389
  msgstr ""
2390
 
2391
+ #: includes/admin/core/class-admin-settings.php:771
2392
  msgid "Cover Photo Thumbnail Sizes (px)"
2393
  msgstr ""
2394
 
2395
+ #: includes/admin/core/class-admin-settings.php:772
2396
  msgid ""
2397
  "Here you can define which thumbnail sizes will be created for each cover "
2398
  "photo upload."
2399
  msgstr ""
2400
 
2401
+ #: includes/admin/core/class-admin-settings.php:781
2402
+ msgid "Change image orientation"
2403
+ msgstr ""
2404
+
2405
+ #: includes/admin/core/class-admin-settings.php:782
2406
+ msgid "Rotate image to and use orientation by the camera EXIF data."
2407
+ msgstr ""
2408
+
2409
+ #: includes/admin/core/class-admin-settings.php:788
2410
  msgid "Image Quality"
2411
  msgstr ""
2412
 
2413
+ #: includes/admin/core/class-admin-settings.php:789
2414
  msgid ""
2415
  "Quality is used to determine quality of image uploads, and ranges from 0 "
2416
  "(worst quality, smaller file) to 100 (best quality, biggest file). The "
2417
  "default range is 60."
2418
  msgstr ""
2419
 
2420
+ #: includes/admin/core/class-admin-settings.php:796
2421
  msgid "Image Upload Maximum Width (px)"
2422
  msgstr ""
2423
 
2424
+ #: includes/admin/core/class-admin-settings.php:797
2425
  msgid ""
2426
  "Any image upload above this width will be resized to this limit "
2427
  "automatically."
2428
  msgstr ""
2429
 
2430
+ #: includes/admin/core/class-admin-settings.php:804
2431
  msgid "Cover Photo Minimum Width (px)"
2432
  msgstr ""
2433
 
2434
+ #: includes/admin/core/class-admin-settings.php:805
2435
  msgid "This will be the minimum width for cover photo uploads"
2436
  msgstr ""
2437
 
2438
+ #: includes/admin/core/class-admin-settings.php:812
2439
  msgid "Access"
2440
  msgstr ""
2441
 
2442
+ #: includes/admin/core/class-admin-settings.php:815
2443
  msgid "Restriction Content"
2444
  msgstr ""
2445
 
2446
+ #: includes/admin/core/class-admin-settings.php:819
2447
  msgid "Other"
2448
  msgstr ""
2449
 
2450
+ #: includes/admin/core/class-admin-settings.php:824
2451
  msgid "Enable the Reset Password Limit?"
2452
  msgstr ""
2453
 
2454
+ #: includes/admin/core/class-admin-settings.php:829
2455
  msgid "Reset Password Limit"
2456
  msgstr ""
2457
 
2458
+ #: includes/admin/core/class-admin-settings.php:830
2459
  msgid ""
2460
  "Set the maximum reset password limit. If reached the maximum limit, user "
2461
  "will be locked from using this."
2462
  msgstr ""
2463
 
2464
+ #: includes/admin/core/class-admin-settings.php:838
2465
  msgid "Blocked Email Addresses"
2466
  msgstr ""
2467
 
2468
+ #: includes/admin/core/class-admin-settings.php:839
2469
  msgid ""
2470
  "This will block the specified e-mail addresses from being able to sign up or "
2471
  "sign in to your site. To block an entire domain, use something like *@domain."
2472
  "com"
2473
  msgstr ""
2474
 
2475
+ #: includes/admin/core/class-admin-settings.php:844
2476
  msgid "Blacklist Words"
2477
  msgstr ""
2478
 
2479
+ #: includes/admin/core/class-admin-settings.php:845
2480
  msgid ""
2481
  "This option lets you specify blacklist of words to prevent anyone from "
2482
  "signing up with such a word as their username"
2483
  msgstr ""
2484
 
2485
+ #: includes/admin/core/class-admin-settings.php:852
2486
  #: includes/admin/core/list-tables/emails-list-table.php:309
2487
  msgid "Email"
2488
  msgstr ""
2489
 
2490
+ #: includes/admin/core/class-admin-settings.php:857
2491
  msgid "Admin E-mail Address"
2492
  msgstr ""
2493
 
2494
+ #: includes/admin/core/class-admin-settings.php:858
2495
+ #: includes/admin/core/class-admin-settings.php:870
2496
  msgid "e.g. admin@companyname.com"
2497
  msgstr ""
2498
 
2499
+ #: includes/admin/core/class-admin-settings.php:863
2500
  msgid "Mail appears from"
2501
  msgstr ""
2502
 
2503
+ #: includes/admin/core/class-admin-settings.php:864
2504
  msgid "e.g. Site Name"
2505
  msgstr ""
2506
 
2507
+ #: includes/admin/core/class-admin-settings.php:869
2508
  msgid "Mail appears from address"
2509
  msgstr ""
2510
 
2511
+ #: includes/admin/core/class-admin-settings.php:875
2512
  msgid "Use HTML for E-mails?"
2513
  msgstr ""
2514
 
2515
+ #: includes/admin/core/class-admin-settings.php:876
2516
  msgid ""
2517
  "If you plan use e-mails with HTML, please make sure that this option is "
2518
  "enabled. Otherwise, HTML will be displayed as plain text."
2519
  msgstr ""
2520
 
2521
+ #: includes/admin/core/class-admin-settings.php:881
2522
  msgid "Appearance"
2523
  msgstr ""
2524
 
2525
+ #: includes/admin/core/class-admin-settings.php:884
2526
  msgid "Profile"
2527
  msgstr ""
2528
 
2529
+ #: includes/admin/core/class-admin-settings.php:889
2530
  msgid "Profile Default Template"
2531
  msgstr ""
2532
 
2533
+ #: includes/admin/core/class-admin-settings.php:890
2534
  msgid "This will be the default template to output profile"
2535
  msgstr ""
2536
 
2537
+ #: includes/admin/core/class-admin-settings.php:898
2538
  msgid "Profile Maximum Width"
2539
  msgstr ""
2540
 
2541
+ #: includes/admin/core/class-admin-settings.php:900
2542
+ #: includes/admin/core/class-admin-settings.php:1109
2543
+ #: includes/admin/core/class-admin-settings.php:1199
2544
  msgid "The maximum width this shortcode can take from the page width"
2545
  msgstr ""
2546
 
2547
+ #: includes/admin/core/class-admin-settings.php:907
2548
  msgid "Profile Area Maximum Width"
2549
  msgstr ""
2550
 
2551
+ #: includes/admin/core/class-admin-settings.php:909
2552
  #: includes/admin/templates/form/profile_customize.php:59
2553
  msgid ""
2554
  "The maximum width of the profile area inside profile (below profile header)"
2555
  msgstr ""
2556
 
2557
+ #: includes/admin/core/class-admin-settings.php:915
2558
  msgid "Profile Field Icons"
2559
  msgstr ""
2560
 
2561
+ #: includes/admin/core/class-admin-settings.php:916
2562
  msgid "This is applicable for edit mode only"
2563
  msgstr ""
2564
 
2565
+ #: includes/admin/core/class-admin-settings.php:919
2566
+ #: includes/admin/core/class-admin-settings.php:1132
2567
+ #: includes/admin/core/class-admin-settings.php:1222
2568
  #: includes/admin/templates/form/login_customize.php:43
2569
  #: includes/admin/templates/form/profile_customize.php:70
2570
  #: includes/admin/templates/form/register_customize.php:58
2571
  msgid "Show inside text field"
2572
  msgstr ""
2573
 
2574
+ #: includes/admin/core/class-admin-settings.php:920
2575
+ #: includes/admin/core/class-admin-settings.php:1133
2576
+ #: includes/admin/core/class-admin-settings.php:1223
2577
  #: includes/admin/templates/form/login_customize.php:44
2578
  #: includes/admin/templates/form/profile_customize.php:71
2579
  #: includes/admin/templates/form/register_customize.php:59
2580
  msgid "Show with label"
2581
  msgstr ""
2582
 
2583
+ #: includes/admin/core/class-admin-settings.php:921
2584
+ #: includes/admin/core/class-admin-settings.php:1134
2585
+ #: includes/admin/core/class-admin-settings.php:1224
2586
  #: includes/admin/templates/form/login_customize.php:45
2587
  #: includes/admin/templates/form/profile_customize.php:72
2588
  #: includes/admin/templates/form/register_customize.php:60
2589
  msgid "Turn off"
2590
  msgstr ""
2591
 
2592
+ #: includes/admin/core/class-admin-settings.php:928
2593
  msgid "Profile Primary Button Text"
2594
  msgstr ""
2595
 
2596
+ #: includes/admin/core/class-admin-settings.php:930
2597
  msgid "The text that is used for updating profile button"
2598
  msgstr ""
2599
 
2600
+ #: includes/admin/core/class-admin-settings.php:936
2601
  msgid "Profile Secondary Button"
2602
  msgstr ""
2603
 
2604
+ #: includes/admin/core/class-admin-settings.php:938
2605
+ #: includes/admin/core/class-admin-settings.php:1151
2606
+ #: includes/admin/core/class-admin-settings.php:1241
2607
  msgid "Switch on/off the secondary button display in the form"
2608
  msgstr ""
2609
 
2610
+ #: includes/admin/core/class-admin-settings.php:943
2611
  msgid "Profile Secondary Button Text"
2612
  msgstr ""
2613
 
2614
+ #: includes/admin/core/class-admin-settings.php:945
2615
  msgid "The text that is used for cancelling update profile button"
2616
  msgstr ""
2617
 
2618
+ #: includes/admin/core/class-admin-settings.php:952
2619
  msgid "Default Profile Photo"
2620
  msgstr ""
2621
 
2622
+ #: includes/admin/core/class-admin-settings.php:953
2623
  msgid ""
2624
  "You can change the default profile picture globally here. Please make sure "
2625
  "that the photo is 300x300px."
2626
  msgstr ""
2627
 
2628
+ #: includes/admin/core/class-admin-settings.php:954
2629
  msgid "Select Default Profile Photo"
2630
  msgstr ""
2631
 
2632
+ #: includes/admin/core/class-admin-settings.php:964
2633
  msgid "Default Cover Photo"
2634
  msgstr ""
2635
 
2636
+ #: includes/admin/core/class-admin-settings.php:965
2637
  msgid ""
2638
  "You can change the default cover photo globally here. Please make sure that "
2639
  "the default cover is large enough and respects the ratio you are using for "
2640
  "cover photos."
2641
  msgstr ""
2642
 
2643
+ #: includes/admin/core/class-admin-settings.php:966
2644
  msgid "Select Default Cover Photo"
2645
  msgstr ""
2646
 
2647
+ #: includes/admin/core/class-admin-settings.php:971
2648
  #: includes/admin/templates/form/profile_customize.php:140
2649
  msgid "Disable Profile Photo Upload"
2650
  msgstr ""
2651
 
2652
+ #: includes/admin/core/class-admin-settings.php:972
2653
  #: includes/admin/templates/form/profile_customize.php:141
2654
  msgid "Switch on/off the profile photo uploader"
2655
  msgstr ""
2656
 
2657
+ #: includes/admin/core/class-admin-settings.php:978
2658
  #: includes/admin/templates/form/profile_customize.php:152
2659
  msgid "Profile Photo Size"
2660
  msgstr ""
2661
 
2662
+ #: includes/admin/core/class-admin-settings.php:981
2663
  msgid ""
2664
  "The global default of profile photo size. This can be overridden by "
2665
  "individual form settings"
2666
  msgstr ""
2667
 
2668
+ #: includes/admin/core/class-admin-settings.php:987
2669
  msgid "Profile Cover Photos"
2670
  msgstr ""
2671
 
2672
+ #: includes/admin/core/class-admin-settings.php:989
2673
  msgid "Switch on/off the profile cover photos"
2674
  msgstr ""
2675
 
2676
+ #: includes/admin/core/class-admin-settings.php:994
2677
  msgid "Profile Cover Size"
2678
  msgstr ""
2679
 
2680
+ #: includes/admin/core/class-admin-settings.php:997
2681
  msgid ""
2682
  "The global default width of cover photo size. This can be overridden by "
2683
  "individual form settings"
2684
  msgstr ""
2685
 
2686
+ #: includes/admin/core/class-admin-settings.php:1004
2687
  msgid "Profile Cover Ratio"
2688
  msgstr ""
2689
 
2690
+ #: includes/admin/core/class-admin-settings.php:1005
2691
  msgid "Choose global ratio for cover photos of profiles"
2692
  msgstr ""
2693
 
2694
+ #: includes/admin/core/class-admin-settings.php:1019
2695
  msgid "Profile Header Meta Text Icon"
2696
  msgstr ""
2697
 
2698
+ #: includes/admin/core/class-admin-settings.php:1021
2699
  msgid "Display field icons for related user meta fields in header or not"
2700
  msgstr ""
2701
 
2702
+ #: includes/admin/core/class-admin-settings.php:1026
2703
  msgid "Show display name in profile header"
2704
  msgstr ""
2705
 
2706
+ #: includes/admin/core/class-admin-settings.php:1028
2707
  msgid "Switch on/off the user name on profile header"
2708
  msgstr ""
2709
 
2710
+ #: includes/admin/core/class-admin-settings.php:1033
2711
  msgid "Show social links in profile header"
2712
  msgstr ""
2713
 
2714
+ #: includes/admin/core/class-admin-settings.php:1035
2715
  msgid "Switch on/off the social links on profile header"
2716
  msgstr ""
2717
 
2718
+ #: includes/admin/core/class-admin-settings.php:1040
2719
  msgid "Show user description in header"
2720
  msgstr ""
2721
 
2722
+ #: includes/admin/core/class-admin-settings.php:1042
2723
  msgid "Switch on/off the user description on profile header"
2724
  msgstr ""
2725
 
2726
+ #: includes/admin/core/class-admin-settings.php:1047
2727
  msgid "Enable HTML support for user description"
2728
  msgstr ""
2729
 
2730
+ #: includes/admin/core/class-admin-settings.php:1048
2731
  msgid ""
2732
  "Switch on/off to enable/disable support for html tags on user description."
2733
  msgstr ""
2734
 
2735
+ #: includes/admin/core/class-admin-settings.php:1053
2736
  msgid "User description maximum chars"
2737
  msgstr ""
2738
 
2739
+ #: includes/admin/core/class-admin-settings.php:1055
2740
  msgid ""
2741
  "Maximum number of characters to allow in user description field in header."
2742
  msgstr ""
2743
 
2744
+ #: includes/admin/core/class-admin-settings.php:1062
2745
  msgid "Profile Header Menu Position"
2746
  msgstr ""
2747
 
2748
+ #: includes/admin/core/class-admin-settings.php:1064
2749
  msgid ""
2750
  "For incompatible themes, please make the menu open from left instead of "
2751
  "bottom by default."
2752
  msgstr ""
2753
 
2754
+ #: includes/admin/core/class-admin-settings.php:1066
2755
  msgid "Bottom of Icon"
2756
  msgstr ""
2757
 
2758
+ #: includes/admin/core/class-admin-settings.php:1067
2759
  msgid "Left of Icon (right for RTL)"
2760
  msgstr ""
2761
 
2762
+ #: includes/admin/core/class-admin-settings.php:1074
2763
  msgid "Show a custom message if profile is empty"
2764
  msgstr ""
2765
 
2766
+ #: includes/admin/core/class-admin-settings.php:1076
2767
  msgid "Switch on/off the custom message that appears when the profile is empty"
2768
  msgstr ""
2769
 
2770
+ #: includes/admin/core/class-admin-settings.php:1081
2771
  msgid "Show the emoticon"
2772
  msgstr ""
2773
 
2774
+ #: includes/admin/core/class-admin-settings.php:1083
2775
  msgid "Switch on/off the emoticon (sad face) that appears above the message"
2776
  msgstr ""
2777
 
2778
+ #: includes/admin/core/class-admin-settings.php:1089
2779
  msgid "Profile Menu"
2780
  msgstr ""
2781
 
2782
+ #: includes/admin/core/class-admin-settings.php:1093
2783
  #: includes/admin/templates/form/mode.php:12
2784
  msgid "Registration Form"
2785
  msgstr ""
2786
 
2787
+ #: includes/admin/core/class-admin-settings.php:1098
2788
  msgid "Registration Default Template"
2789
  msgstr ""
2790
 
2791
+ #: includes/admin/core/class-admin-settings.php:1099
2792
  msgid "This will be the default template to output registration"
2793
  msgstr ""
2794
 
2795
+ #: includes/admin/core/class-admin-settings.php:1107
2796
  msgid "Registration Maximum Width"
2797
  msgstr ""
2798
 
2799
+ #: includes/admin/core/class-admin-settings.php:1115
2800
  msgid "Registration Shortcode Alignment"
2801
  msgstr ""
2802
 
2803
+ #: includes/admin/core/class-admin-settings.php:1116
2804
+ #: includes/admin/core/class-admin-settings.php:1206
2805
  #: includes/admin/templates/form/profile_customize.php:127
2806
  msgid "The shortcode is centered by default unless you specify otherwise here"
2807
  msgstr ""
2808
 
2809
+ #: includes/admin/core/class-admin-settings.php:1119
2810
+ #: includes/admin/core/class-admin-settings.php:1209
2811
  msgid "Centered"
2812
  msgstr ""
2813
 
2814
+ #: includes/admin/core/class-admin-settings.php:1120
2815
+ #: includes/admin/core/class-admin-settings.php:1210
2816
  msgid "Left aligned"
2817
  msgstr ""
2818
 
2819
+ #: includes/admin/core/class-admin-settings.php:1121
2820
+ #: includes/admin/core/class-admin-settings.php:1211
2821
  msgid "Right aligned"
2822
  msgstr ""
2823
 
2824
+ #: includes/admin/core/class-admin-settings.php:1128
2825
  msgid "Registration Field Icons"
2826
  msgstr ""
2827
 
2828
+ #: includes/admin/core/class-admin-settings.php:1129
2829
  msgid "This controls the display of field icons in the registration form"
2830
  msgstr ""
2831
 
2832
+ #: includes/admin/core/class-admin-settings.php:1141
2833
  msgid "Registration Primary Button Text"
2834
  msgstr ""
2835
 
2836
+ #: includes/admin/core/class-admin-settings.php:1143
2837
+ #: includes/admin/core/class-admin-settings.php:1233
2838
  msgid "The text that is used for primary button text"
2839
  msgstr ""
2840
 
2841
+ #: includes/admin/core/class-admin-settings.php:1149
2842
  msgid "Registration Secondary Button"
2843
  msgstr ""
2844
 
2845
+ #: includes/admin/core/class-admin-settings.php:1156
2846
  msgid "Registration Secondary Button Text"
2847
  msgstr ""
2848
 
2849
+ #: includes/admin/core/class-admin-settings.php:1158
2850
+ #: includes/admin/core/class-admin-settings.php:1248
2851
  msgid "The text that is used for the secondary button text"
2852
  msgstr ""
2853
 
2854
+ #: includes/admin/core/class-admin-settings.php:1165
2855
  msgid "Registration Secondary Button URL"
2856
  msgstr ""
2857
 
2858
+ #: includes/admin/core/class-admin-settings.php:1167
2859
+ #: includes/admin/core/class-admin-settings.php:1257
2860
  msgid "You can replace default link for this button by entering custom URL"
2861
  msgstr ""
2862
 
2863
+ #: includes/admin/core/class-admin-settings.php:1174
2864
  msgid "Registration Default Role"
2865
  msgstr ""
2866
 
2867
+ #: includes/admin/core/class-admin-settings.php:1175
2868
  msgid ""
2869
  "This will be the default role assigned to users registering thru "
2870
  "registration form"
2871
  msgstr ""
2872
 
2873
+ #: includes/admin/core/class-admin-settings.php:1183
2874
  #: includes/admin/templates/form/mode.php:16
2875
  msgid "Login Form"
2876
  msgstr ""
2877
 
2878
+ #: includes/admin/core/class-admin-settings.php:1188
2879
  msgid "Login Default Template"
2880
  msgstr ""
2881
 
2882
+ #: includes/admin/core/class-admin-settings.php:1189
2883
  msgid "This will be the default template to output login"
2884
  msgstr ""
2885
 
2886
+ #: includes/admin/core/class-admin-settings.php:1197
2887
  msgid "Login Maximum Width"
2888
  msgstr ""
2889
 
2890
+ #: includes/admin/core/class-admin-settings.php:1205
2891
  msgid "Login Shortcode Alignment"
2892
  msgstr ""
2893
 
2894
+ #: includes/admin/core/class-admin-settings.php:1218
2895
  msgid "Login Field Icons"
2896
  msgstr ""
2897
 
2898
+ #: includes/admin/core/class-admin-settings.php:1219
2899
  msgid "This controls the display of field icons in the login form"
2900
  msgstr ""
2901
 
2902
+ #: includes/admin/core/class-admin-settings.php:1231
2903
  msgid "Login Primary Button Text"
2904
  msgstr ""
2905
 
2906
+ #: includes/admin/core/class-admin-settings.php:1239
2907
  msgid "Login Secondary Button"
2908
  msgstr ""
2909
 
2910
+ #: includes/admin/core/class-admin-settings.php:1246
2911
  msgid "Login Secondary Button Text"
2912
  msgstr ""
2913
 
2914
+ #: includes/admin/core/class-admin-settings.php:1255
2915
  msgid "Login Secondary Button URL"
2916
  msgstr ""
2917
 
2918
+ #: includes/admin/core/class-admin-settings.php:1264
2919
  msgid "Login Forgot Password Link"
2920
  msgstr ""
2921
 
2922
+ #: includes/admin/core/class-admin-settings.php:1266
2923
  msgid "Switch on/off the forgot password link in login form"
2924
  msgstr ""
2925
 
2926
+ #: includes/admin/core/class-admin-settings.php:1271
2927
  msgid "Show \"Remember Me\""
2928
  msgstr ""
2929
 
2930
+ #: includes/admin/core/class-admin-settings.php:1273
2931
  msgid ""
2932
  "Allow users to choose If they want to stay signed in even after closing the "
2933
  "browser. If you do not show this option, the default will be to not remember "
2934
  "login session."
2935
  msgstr ""
2936
 
2937
+ #: includes/admin/core/class-admin-settings.php:1283
2938
  msgid "Licenses"
2939
  msgstr ""
2940
 
2941
+ #: includes/admin/core/class-admin-settings.php:1286
2942
  msgid "Misc"
2943
  msgstr ""
2944
 
2945
+ #: includes/admin/core/class-admin-settings.php:1291
2946
  msgid "Show an asterisk for required fields"
2947
  msgstr ""
2948
 
2949
+ #: includes/admin/core/class-admin-settings.php:1296
2950
  msgid "User Profile Title"
2951
  msgstr ""
2952
 
2953
+ #: includes/admin/core/class-admin-settings.php:1297
2954
  msgid "This is the title that is displayed on a specific user profile"
2955
  msgstr ""
2956
 
2957
+ #: includes/admin/core/class-admin-settings.php:1303
2958
  msgid "User Profile Dynamic Meta Description"
2959
  msgstr ""
2960
 
2961
+ #: includes/admin/core/class-admin-settings.php:1304
2962
  msgid ""
2963
  "This will be used in the meta description that is available for search-"
2964
  "engines."
2965
  msgstr ""
2966
 
2967
+ #: includes/admin/core/class-admin-settings.php:1312
2968
  msgid "Disable Cache User Profile"
2969
  msgstr ""
2970
 
2971
+ #: includes/admin/core/class-admin-settings.php:1313
2972
  msgid ""
2973
  "Check this box if you would like to disable Ultimate Member user's cache."
2974
  msgstr ""
2975
 
2976
+ #: includes/admin/core/class-admin-settings.php:1318
2977
  msgid "Enable Gutenberg Blocks"
2978
  msgstr ""
2979
 
2980
+ #: includes/admin/core/class-admin-settings.php:1319
2981
  msgid ""
2982
  "Check this box if you would like to use Ultimate Member blocks in Gutenberg "
2983
  "editor. Important some themes have the conflicts with Gutenberg editor."
2984
  msgstr ""
2985
 
2986
+ #: includes/admin/core/class-admin-settings.php:1324
2987
  msgid "REST API version"
2988
  msgstr ""
2989
 
2990
+ #: includes/admin/core/class-admin-settings.php:1325
2991
  msgid ""
2992
  "This controls the REST API version, we recommend to use the last version"
2993
  msgstr ""
2994
 
2995
+ #: includes/admin/core/class-admin-settings.php:1327
2996
  msgid "1.0 version"
2997
  msgstr ""
2998
 
2999
+ #: includes/admin/core/class-admin-settings.php:1328
3000
  msgid "2.0 version"
3001
  msgstr ""
3002
 
3003
+ #: includes/admin/core/class-admin-settings.php:1335
3004
  msgid "Remove Data on Uninstall?"
3005
  msgstr ""
3006
 
3007
+ #: includes/admin/core/class-admin-settings.php:1336
3008
  msgid ""
3009
  "Check this box if you would like Ultimate Member to completely remove all of "
3010
  "its data when the plugin/extensions are deleted."
3011
  msgstr ""
3012
 
3013
+ #: includes/admin/core/class-admin-settings.php:1341
3014
  msgid "Install Info"
3015
  msgstr ""
3016
 
3017
+ #: includes/admin/core/class-admin-settings.php:1458
3018
  msgid "Ultimate Member - Settings"
3019
  msgstr ""
3020
 
3021
+ #: includes/admin/core/class-admin-settings.php:1588
3022
  msgid "Save Changes"
3023
  msgstr ""
3024
 
3025
+ #: includes/admin/core/class-admin-settings.php:2158
3026
  msgid "Subject Line"
3027
  msgstr ""
3028
 
3029
+ #: includes/admin/core/class-admin-settings.php:2160
3030
  msgid "This is the subject line of the e-mail"
3031
  msgstr ""
3032
 
3033
+ #: includes/admin/core/class-admin-settings.php:2165
3034
  msgid "Message Body"
3035
  msgstr ""
3036
 
3037
+ #: includes/admin/core/class-admin-settings.php:2167
3038
  msgid "This is the content of the e-mail"
3039
  msgstr ""
3040
 
3041
+ #: includes/admin/core/class-admin-settings.php:2217
3042
+ #: includes/admin/core/class-admin-settings.php:2327
 
3043
  msgid ""
3044
  "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
3045
  "\">renew your license key</a>."
3046
  msgstr ""
3047
 
3048
+ #: includes/admin/core/class-admin-settings.php:2230
3049
+ #: includes/admin/core/class-admin-settings.php:2340
 
3050
  msgid ""
3051
  "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
3052
  "\">contact support</a> for more information."
3053
  msgstr ""
3054
 
3055
+ #: includes/admin/core/class-admin-settings.php:2242
3056
+ #: includes/admin/core/class-admin-settings.php:2352
 
3057
  msgid ""
3058
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
3059
  "page</a> and verify it."
3060
  msgstr ""
3061
 
3062
+ #: includes/admin/core/class-admin-settings.php:2255
3063
+ #: includes/admin/core/class-admin-settings.php:2365
 
3064
  msgid ""
3065
  "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
3066
  "\">visit your account page</a> to manage your license key URLs."
3067
  msgstr ""
3068
 
3069
+ #: includes/admin/core/class-admin-settings.php:2267
3070
+ #: includes/admin/core/class-admin-settings.php:2377
 
3071
  msgid "This appears to be an invalid license key for %s."
3072
  msgstr ""
3073
 
3074
+ #: includes/admin/core/class-admin-settings.php:2276
3075
+ #: includes/admin/core/class-admin-settings.php:2386
 
3076
  msgid ""
3077
  "Your license key has reached its activation limit. <a href=\"%s\">View "
3078
  "possible upgrades</a> now."
3079
  msgstr ""
3080
 
3081
+ #: includes/admin/core/class-admin-settings.php:2285
3082
+ #: includes/admin/core/class-admin-settings.php:2395
3083
  msgid ""
3084
  "The key you entered belongs to a bundle, please use the product specific "
3085
  "license key."
3086
  msgstr ""
3087
 
3088
+ #: includes/admin/core/class-admin-settings.php:2293
3089
+ #: includes/admin/core/class-admin-settings.php:2301
3090
+ #: includes/admin/core/class-admin-settings.php:2313
3091
  msgid "unknown_error"
3092
  msgstr ""
3093
 
3094
+ #: includes/admin/core/class-admin-settings.php:2294
3095
+ #: includes/admin/core/class-admin-settings.php:2302
 
3096
  msgid ""
3097
  "There was an error with this license key: %s. Please <a href=\"%s\">contact "
3098
  "our support team</a>."
3099
  msgstr ""
3100
 
3101
+ #: includes/admin/core/class-admin-settings.php:2315
 
3102
  msgid ""
3103
  "There was an error with this license key: %s%s. Please <a href=\"%s"
3104
  "\">contact our support team</a>."
3105
  msgstr ""
3106
 
3107
+ #: includes/admin/core/class-admin-settings.php:2410
3108
  msgid "License key never expires."
3109
  msgstr ""
3110
 
3111
+ #: includes/admin/core/class-admin-settings.php:2417
 
3112
  msgid ""
3113
  "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
3114
  "\"_blank\">Renew your license key</a>."
3115
  msgstr ""
3116
 
3117
+ #: includes/admin/core/class-admin-settings.php:2427
 
3118
  msgid "Your license key expires on %s."
3119
  msgstr ""
3120
 
3121
+ #: includes/admin/core/class-admin-settings.php:2445
 
3122
  msgid "To receive updates, please enter your valid %s license key."
3123
  msgstr ""
3124
 
3125
+ #: includes/admin/core/class-admin-settings.php:2467
3126
  msgid "Clear License"
3127
  msgstr ""
3128
 
3129
+ #: includes/admin/core/class-admin-settings.php:2469
3130
  msgid "Activate"
3131
  msgstr ""
3132
 
3133
+ #: includes/admin/core/class-admin-settings.php:2471
3134
  msgid "Re-Activate"
3135
  msgstr ""
3136
 
3137
+ #: includes/admin/core/class-admin-settings.php:2523
3138
  msgid ""
3139
  "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
3140
  "(Mac)."
3141
  msgstr ""
3142
 
3143
  #: includes/admin/core/class-admin-upgrade.php:131
 
3144
  msgid ""
3145
  "%s is a major update, and we highly recommend creating a full backup of your "
3146
  "site before updating."
3155
  msgstr ""
3156
 
3157
  #: includes/admin/core/class-admin-upgrade.php:248
 
3158
  msgid "%s - Upgrade Process"
3159
  msgstr ""
3160
 
3161
  #: includes/admin/core/class-admin-upgrade.php:249
 
3162
  msgid ""
3163
  "You have installed <strong>%s</strong> version. Your latest DB version is "
3164
  "<strong>%s</strong>. We recommend creating a backup of your site before "
3183
  msgstr ""
3184
 
3185
  #: includes/admin/core/class-admin-users.php:124
3186
+ #: includes/core/class-fields.php:2664
3187
  msgid "Apply"
3188
  msgstr ""
3189
 
3226
 
3227
  #: includes/admin/core/class-admin-users.php:308
3228
  #: includes/admin/core/class-admin-users.php:310
3229
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:340
3230
  msgid "All"
3231
  msgstr ""
3232
 
3294
  msgstr ""
3295
 
3296
  #: includes/admin/core/list-tables/emails-list-table.php:323
 
3297
  msgid ""
3298
  "You may get more details about email notifications customization <a href=\"%s"
3299
  "\">here</a>"
3347
  msgstr ""
3348
 
3349
  #: includes/admin/core/list-tables/roles-list-table.php:485
 
3350
  #: includes/admin/templates/role/role-edit.php:156
3351
  #: includes/core/class-common.php:60 includes/core/class-common.php:90
3352
  msgid "Add New"
3366
  msgstr ""
3367
 
3368
  #: includes/admin/core/packages/2.0-beta1/functions.php:89
 
3369
  msgid "Users from %s to %s was upgraded successfully..."
3370
  msgstr ""
3371
 
3394
  msgstr ""
3395
 
3396
  #: includes/admin/core/packages/2.0-beta1/functions.php:218
 
3397
  msgid "Forums from %s to %s was upgraded successfully..."
3398
  msgstr ""
3399
 
3402
  msgstr ""
3403
 
3404
  #: includes/admin/core/packages/2.0-beta1/functions.php:305
 
3405
  msgid "Woocommerce Products from %s to %s was upgraded successfully..."
3406
  msgstr ""
3407
 
3434
 
3435
  #: includes/admin/core/packages/2.0-beta1/init.php:85
3436
  #: includes/admin/core/packages/2.1.3-beta3/init.php:22
3437
+ #: includes/admin/assets/js/um-admin-forms.js:66
3438
  msgid "There are "
3439
  msgstr ""
3440
 
3486
  msgid "Upgrade Email Templates..."
3487
  msgstr ""
3488
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3489
  #: includes/admin/core/packages/2.0.10/functions.php:21
3490
  msgid "Users cache was cleared successfully"
3491
  msgstr ""
3536
  msgstr ""
3537
 
3538
  #: includes/admin/core/packages/2.1.3-beta3/functions.php:118
 
3539
  msgid "Metadata from %s to %s users were upgraded successfully..."
3540
  msgstr ""
3541
 
3544
  msgstr ""
3545
 
3546
  #: includes/admin/core/packages/2.1.3-beta3/init.php:23
3547
+ #: includes/admin/assets/js/um-admin-forms.js:67
3548
  msgid "Start metadata upgrading..."
3549
  msgstr ""
3550
 
3552
  msgid "Create additional metadata table..."
3553
  msgstr ""
3554
 
 
 
 
 
 
 
 
 
3555
  #: includes/admin/core/packages/2.1.5/init.php:6
3556
  msgid "Upgrade form fields..."
3557
  msgstr ""
3561
  msgstr ""
3562
 
3563
  #: includes/admin/templates/dashboard/cache.php:15
 
3564
  msgid "Clear cache of %s users"
3565
  msgstr ""
3566
 
3569
  msgstr ""
3570
 
3571
  #: includes/admin/templates/dashboard/purge.php:7
 
3572
  msgid ""
3573
  "You can free up <span class=\"red\">%s MB</span> by purging your temp upload "
3574
  "directory."
4169
  msgstr ""
4170
 
4171
  #: includes/admin/templates/gdpr.php:10
 
4172
  msgid "%s provides you with forms for user registration, login and profiles."
4173
  msgstr ""
4174
 
4210
  msgstr ""
4211
 
4212
  #: includes/admin/templates/gdpr.php:36
 
4213
  msgid "%s does not send any user data outside of your site by default."
4214
  msgstr ""
4215
 
4237
  #: includes/admin/templates/modal/dynamic_new_group.php:18
4238
  #: includes/admin/templates/modal/fonticons.php:14
4239
  #: includes/admin/templates/role/publish.php:24 includes/class-config.php:254
4240
+ #: includes/core/class-fields.php:2665 includes/core/class-fields.php:2764
4241
+ #: includes/core/um-actions-profile.php:766
4242
+ #: includes/core/um-actions-profile.php:778
4243
+ #: includes/core/um-actions-profile.php:966
4244
+ #: includes/core/um-actions-profile.php:999
4245
+ #: includes/core/um-actions-profile.php:1346
4246
+ #: includes/core/um-actions-profile.php:1353
4247
  msgid "Cancel"
4248
  msgstr ""
4249
 
4286
  msgstr ""
4287
 
4288
  #: includes/admin/templates/modal/fonticons.php:7
 
4289
  msgid "Choose from %s available icons"
4290
  msgstr ""
4291
 
4519
 
4520
  #: includes/admin/templates/role/register.php:57
4521
  #: includes/admin/templates/role/register.php:91
4522
+ #: includes/admin/assets/js/um-admin-blocks.js:153
4523
  msgid "Show custom message"
4524
  msgstr ""
4525
 
4593
  msgid "Check All"
4594
  msgstr ""
4595
 
4596
+ #: includes/class-config.php:131 includes/class-config.php:791
4597
  msgid "User"
4598
  msgstr ""
4599
 
4600
  #: includes/class-config.php:132 includes/class-config.php:264
4601
+ #: includes/class-config.php:272 includes/class-config.php:792
4602
  msgid "Login"
4603
  msgstr ""
4604
 
4605
  #: includes/class-config.php:133 includes/class-config.php:262
4606
+ #: includes/class-config.php:276 includes/class-config.php:793
4607
  msgid "Register"
4608
  msgstr ""
4609
 
4610
+ #: includes/class-config.php:135 includes/class-config.php:795
4611
+ #: includes/core/class-member-directory.php:2185
4612
+ #: includes/core/um-actions-profile.php:1352
4613
  #: includes/core/um-actions-user.php:19
4614
  msgid "Logout"
4615
  msgstr ""
4616
 
4617
+ #: includes/class-config.php:137 includes/class-config.php:797
4618
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:276
4619
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:296
4620
  msgid "Password Reset"
4621
  msgstr ""
4622
 
4749
  #: includes/class-config.php:529
4750
  msgid ""
4751
  "Are you sure you want to delete your account? This will erase all of your "
4752
+ "account data from the site. To delete your account enter your password below."
4753
  msgstr ""
4754
 
4755
+ #: includes/class-config.php:530
4756
+ msgid ""
4757
+ "Are you sure you want to delete your account? This will erase all of your "
4758
+ "account data from the site. To delete your account, click on the button "
4759
+ "below."
4760
+ msgstr ""
4761
+
4762
+ #: includes/class-dependencies.php:207
4763
  msgid ""
4764
  "This version of <strong>\"%s\"</strong> requires the core <strong>%s</"
4765
  "strong> plugin to be <strong>%s</strong> or higher."
4766
  msgstr ""
4767
 
4768
+ #: includes/class-dependencies.php:209
 
4769
  msgid "Please update <strong>%s</strong> to the latest version."
4770
  msgstr ""
4771
 
4772
+ #: includes/class-dependencies.php:211
 
4773
  msgid ""
4774
  "Sorry, but this version of <strong>%s</strong> does not work with extension "
4775
  "<strong>\"%s\" %s</strong> version."
4776
  msgstr ""
4777
 
4778
+ #: includes/class-dependencies.php:213
 
4779
  msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4780
  msgstr ""
4781
 
4782
+ #: includes/class-dependencies.php:222
 
4783
  msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4784
  msgstr ""
4785
 
4786
+ #: includes/class-dependencies.php:224
 
4787
  msgid "Correct folder name is <strong>\"%s\"</strong>"
4788
  msgstr ""
4789
 
4790
  #: includes/class-extensions.php:101
 
4791
  msgid "%s License Key"
4792
  msgstr ""
4793
 
4794
+ #: includes/class-init.php:158 includes/class-init.php:167
4795
  msgid "Cheatin&#8217; huh?"
4796
  msgstr ""
4797
 
4816
  msgstr ""
4817
 
4818
  #: includes/core/class-account.php:124 includes/core/class-account.php:125
4819
+ #: includes/core/class-builtin.php:1171 includes/core/class-builtin.php:1174
4820
  msgid "Delete Account"
4821
  msgstr ""
4822
 
4896
  msgstr ""
4897
 
4898
  #: includes/core/class-builtin.php:671 includes/core/class-user.php:1711
4899
+ #: includes/core/um-actions-profile.php:638
4900
+ #: includes/core/um-filters-profile.php:22
4901
  msgid "Only me"
4902
  msgstr ""
4903
 
4917
  msgstr ""
4918
 
4919
  #: includes/core/class-builtin.php:750 includes/core/class-builtin.php:753
4920
+ #: includes/core/class-builtin.php:1383
4921
  msgid "Website URL"
4922
  msgstr ""
4923
 
4995
  msgstr ""
4996
 
4997
  #: includes/core/class-builtin.php:946 includes/core/class-builtin.php:949
4998
+ #: includes/core/class-builtin.php:1375
4999
  msgid "Skype ID"
5000
  msgstr ""
5001
 
5037
  msgstr ""
5038
 
5039
  #: includes/core/class-builtin.php:1050 includes/core/class-builtin.php:1053
5040
+ #: includes/core/class-builtin.php:1374
5041
  #: includes/core/class-member-directory.php:322
5042
  msgid "Phone Number"
5043
  msgstr ""
5064
  msgstr ""
5065
 
5066
  #: includes/core/class-builtin.php:1093
5067
+ #: includes/core/um-actions-profile.php:726
5068
  msgid "Change your cover photo"
5069
  msgstr ""
5070
 
5085
  msgstr ""
5086
 
5087
  #: includes/core/class-builtin.php:1134 includes/core/class-builtin.php:1137
5088
+ msgid "Avoid indexing my profile by search engines"
5089
  msgstr ""
5090
 
5091
  #: includes/core/class-builtin.php:1138
5092
+ msgid "Hide my profile for robots?"
5093
+ msgstr ""
5094
+
5095
+ #: includes/core/class-builtin.php:1153 includes/core/class-builtin.php:1156
5096
+ msgid "Hide my profile from directory"
5097
+ msgstr ""
5098
+
5099
+ #: includes/core/class-builtin.php:1157
5100
  msgid "Here you can hide yourself from appearing in public directory"
5101
  msgstr ""
5102
 
5103
+ #: includes/core/class-builtin.php:1175
5104
  msgid ""
5105
  "If you confirm, everything related to your profile will be deleted "
5106
  "permanently from the site"
5107
  msgstr ""
5108
 
5109
+ #: includes/core/class-builtin.php:1364
5110
  msgid "Alphabetic value only"
5111
  msgstr ""
5112
 
5113
+ #: includes/core/class-builtin.php:1365
5114
  msgid "Alpha-numeric value"
5115
  msgstr ""
5116
 
5117
+ #: includes/core/class-builtin.php:1366
5118
  msgid "English letters only"
5119
  msgstr ""
5120
 
5121
+ #: includes/core/class-builtin.php:1367
5122
  msgid "Facebook URL"
5123
  msgstr ""
5124
 
5125
+ #: includes/core/class-builtin.php:1368
5126
  msgid "Google+ URL"
5127
  msgstr ""
5128
 
5129
+ #: includes/core/class-builtin.php:1369
5130
  msgid "Instagram URL"
5131
  msgstr ""
5132
 
5133
+ #: includes/core/class-builtin.php:1370
5134
  msgid "LinkedIn URL"
5135
  msgstr ""
5136
 
5137
+ #: includes/core/class-builtin.php:1371
5138
  msgid "VKontakte URL"
5139
  msgstr ""
5140
 
5141
+ #: includes/core/class-builtin.php:1372
5142
  msgid "Lowercase only"
5143
  msgstr ""
5144
 
5145
+ #: includes/core/class-builtin.php:1373
5146
  msgid "Numeric value only"
5147
  msgstr ""
5148
 
5149
+ #: includes/core/class-builtin.php:1376
5150
  msgid "SoundCloud Profile"
5151
  msgstr ""
5152
 
5153
+ #: includes/core/class-builtin.php:1377
5154
  msgid "Twitter URL"
5155
  msgstr ""
5156
 
5157
+ #: includes/core/class-builtin.php:1378
5158
  msgid "E-mail( Not Unique )"
5159
  msgstr ""
5160
 
5161
+ #: includes/core/class-builtin.php:1379
5162
  msgid "Unique E-mail"
5163
  msgstr ""
5164
 
5165
+ #: includes/core/class-builtin.php:1380
5166
  msgid "Unique Metakey value"
5167
  msgstr ""
5168
 
5169
+ #: includes/core/class-builtin.php:1381
5170
  msgid "Unique Username"
5171
  msgstr ""
5172
 
5173
+ #: includes/core/class-builtin.php:1382
5174
  msgid "Unique Username/E-mail"
5175
  msgstr ""
5176
 
5177
+ #: includes/core/class-builtin.php:1384
5178
  msgid "YouTube Profile"
5179
  msgstr ""
5180
 
5181
+ #: includes/core/class-builtin.php:1385
5182
  msgid "Custom Validation"
5183
  msgstr ""
5184
 
5185
+ #: includes/core/class-builtin.php:1424
5186
  msgid "Afar"
5187
  msgstr ""
5188
 
5189
+ #: includes/core/class-builtin.php:1425
5190
  msgid "Abkhazian"
5191
  msgstr ""
5192
 
5193
+ #: includes/core/class-builtin.php:1426
5194
  msgid "Avestan"
5195
  msgstr ""
5196
 
5197
+ #: includes/core/class-builtin.php:1427
5198
  msgid "Afrikaans"
5199
  msgstr ""
5200
 
5201
+ #: includes/core/class-builtin.php:1428
5202
  msgid "Akan"
5203
  msgstr ""
5204
 
5205
+ #: includes/core/class-builtin.php:1429
5206
  msgid "Amharic"
5207
  msgstr ""
5208
 
5209
+ #: includes/core/class-builtin.php:1430
5210
  msgid "Aragonese"
5211
  msgstr ""
5212
 
5213
+ #: includes/core/class-builtin.php:1431
5214
  msgid "Arabic"
5215
  msgstr ""
5216
 
5217
+ #: includes/core/class-builtin.php:1432
5218
  msgid "Assamese"
5219
  msgstr ""
5220
 
5221
+ #: includes/core/class-builtin.php:1433
5222
  msgid "Avaric"
5223
  msgstr ""
5224
 
5225
+ #: includes/core/class-builtin.php:1434
5226
  msgid "Aymara"
5227
  msgstr ""
5228
 
5229
+ #: includes/core/class-builtin.php:1435
5230
  msgid "Azerbaijani"
5231
  msgstr ""
5232
 
5233
+ #: includes/core/class-builtin.php:1436
5234
  msgid "Bashkir"
5235
  msgstr ""
5236
 
5237
+ #: includes/core/class-builtin.php:1437
5238
  msgid "Belarusian"
5239
  msgstr ""
5240
 
5241
+ #: includes/core/class-builtin.php:1438
5242
  msgid "Bulgarian"
5243
  msgstr ""
5244
 
5245
+ #: includes/core/class-builtin.php:1439
5246
  msgid "Bihari"
5247
  msgstr ""
5248
 
5249
+ #: includes/core/class-builtin.php:1440
5250
  msgid "Bislama"
5251
  msgstr ""
5252
 
5253
+ #: includes/core/class-builtin.php:1441
5254
  msgid "Bambara"
5255
  msgstr ""
5256
 
5257
+ #: includes/core/class-builtin.php:1442
5258
  msgid "Bengali"
5259
  msgstr ""
5260
 
5261
+ #: includes/core/class-builtin.php:1443
5262
  msgid "Tibetan"
5263
  msgstr ""
5264
 
5265
+ #: includes/core/class-builtin.php:1444
5266
  msgid "Breton"
5267
  msgstr ""
5268
 
5269
+ #: includes/core/class-builtin.php:1445
5270
  msgid "Bosnian"
5271
  msgstr ""
5272
 
5273
+ #: includes/core/class-builtin.php:1446
5274
  msgid "Catalan"
5275
  msgstr ""
5276
 
5277
+ #: includes/core/class-builtin.php:1447
5278
  msgid "Chechen"
5279
  msgstr ""
5280
 
5281
+ #: includes/core/class-builtin.php:1448
5282
  msgid "Chamorro"
5283
  msgstr ""
5284
 
5285
+ #: includes/core/class-builtin.php:1449
5286
  msgid "Corsican"
5287
  msgstr ""
5288
 
5289
+ #: includes/core/class-builtin.php:1450
5290
  msgid "Cree"
5291
  msgstr ""
5292
 
5293
+ #: includes/core/class-builtin.php:1451
5294
  msgid "Czech"
5295
  msgstr ""
5296
 
5297
+ #: includes/core/class-builtin.php:1452
5298
  msgid "Church Slavic"
5299
  msgstr ""
5300
 
5301
+ #: includes/core/class-builtin.php:1453
5302
  msgid "Chuvash"
5303
  msgstr ""
5304
 
5305
+ #: includes/core/class-builtin.php:1454
5306
  msgid "Welsh"
5307
  msgstr ""
5308
 
5309
+ #: includes/core/class-builtin.php:1455
5310
  msgid "Danish"
5311
  msgstr ""
5312
 
5313
+ #: includes/core/class-builtin.php:1456
5314
  msgid "German"
5315
  msgstr ""
5316
 
5317
+ #: includes/core/class-builtin.php:1457
5318
  msgid "Divehi"
5319
  msgstr ""
5320
 
5321
+ #: includes/core/class-builtin.php:1458
5322
  msgid "Dzongkha"
5323
  msgstr ""
5324
 
5325
+ #: includes/core/class-builtin.php:1459
5326
  msgid "Ewe"
5327
  msgstr ""
5328
 
5329
+ #: includes/core/class-builtin.php:1460
5330
  msgid "Greek"
5331
  msgstr ""
5332
 
5333
+ #: includes/core/class-builtin.php:1461
5334
  msgid "English"
5335
  msgstr ""
5336
 
5337
+ #: includes/core/class-builtin.php:1462
5338
  msgid "Esperanto"
5339
  msgstr ""
5340
 
5341
+ #: includes/core/class-builtin.php:1463
5342
  msgid "Spanish"
5343
  msgstr ""
5344
 
5345
+ #: includes/core/class-builtin.php:1464
5346
  msgid "Estonian"
5347
  msgstr ""
5348
 
5349
+ #: includes/core/class-builtin.php:1465
5350
  msgid "Basque"
5351
  msgstr ""
5352
 
5353
+ #: includes/core/class-builtin.php:1466
5354
  msgid "Persian"
5355
  msgstr ""
5356
 
5357
+ #: includes/core/class-builtin.php:1467
5358
  msgid "Fulah"
5359
  msgstr ""
5360
 
5361
+ #: includes/core/class-builtin.php:1468
5362
  msgid "Finnish"
5363
  msgstr ""
5364
 
5365
+ #: includes/core/class-builtin.php:1469
5366
  msgid "Fijian"
5367
  msgstr ""
5368
 
5369
+ #: includes/core/class-builtin.php:1470
5370
  msgid "Faroese"
5371
  msgstr ""
5372
 
5373
+ #: includes/core/class-builtin.php:1471
5374
  msgid "French"
5375
  msgstr ""
5376
 
5377
+ #: includes/core/class-builtin.php:1472
5378
  msgid "Western Frisian"
5379
  msgstr ""
5380
 
5381
+ #: includes/core/class-builtin.php:1473
5382
  msgid "Irish"
5383
  msgstr ""
5384
 
5385
+ #: includes/core/class-builtin.php:1474
5386
  msgid "Scottish Gaelic"
5387
  msgstr ""
5388
 
5389
+ #: includes/core/class-builtin.php:1475
5390
  msgid "Galician"
5391
  msgstr ""
5392
 
5393
+ #: includes/core/class-builtin.php:1476
5394
  msgid "Guarani"
5395
  msgstr ""
5396
 
5397
+ #: includes/core/class-builtin.php:1477
5398
  msgid "Gujarati"
5399
  msgstr ""
5400
 
5401
+ #: includes/core/class-builtin.php:1478
5402
  msgid "Manx"
5403
  msgstr ""
5404
 
5405
+ #: includes/core/class-builtin.php:1479
5406
  msgid "Hausa"
5407
  msgstr ""
5408
 
5409
+ #: includes/core/class-builtin.php:1480
5410
  msgid "Hebrew"
5411
  msgstr ""
5412
 
5413
+ #: includes/core/class-builtin.php:1481
5414
  msgid "Hindi"
5415
  msgstr ""
5416
 
5417
+ #: includes/core/class-builtin.php:1482
5418
  msgid "Hiri Motu"
5419
  msgstr ""
5420
 
5421
+ #: includes/core/class-builtin.php:1483
5422
  msgid "Croatian"
5423
  msgstr ""
5424
 
5425
+ #: includes/core/class-builtin.php:1484
5426
  msgid "Haitian"
5427
  msgstr ""
5428
 
5429
+ #: includes/core/class-builtin.php:1485
5430
  msgid "Hungarian"
5431
  msgstr ""
5432
 
5433
+ #: includes/core/class-builtin.php:1486
5434
  msgid "Armenian"
5435
  msgstr ""
5436
 
5437
+ #: includes/core/class-builtin.php:1487
5438
  msgid "Herero"
5439
  msgstr ""
5440
 
5441
+ #: includes/core/class-builtin.php:1488
5442
  msgid "Interlingua (International Auxiliary Language Association)"
5443
  msgstr ""
5444
 
5445
+ #: includes/core/class-builtin.php:1489
5446
  msgid "Indonesian"
5447
  msgstr ""
5448
 
5449
+ #: includes/core/class-builtin.php:1490
5450
  msgid "Interlingue"
5451
  msgstr ""
5452
 
5453
+ #: includes/core/class-builtin.php:1491
5454
  msgid "Igbo"
5455
  msgstr ""
5456
 
5457
+ #: includes/core/class-builtin.php:1492
5458
  msgid "Sichuan Yi"
5459
  msgstr ""
5460
 
5461
+ #: includes/core/class-builtin.php:1493
5462
  msgid "Inupiaq"
5463
  msgstr ""
5464
 
5465
+ #: includes/core/class-builtin.php:1494
5466
  msgid "Ido"
5467
  msgstr ""
5468
 
5469
+ #: includes/core/class-builtin.php:1495
5470
  msgid "Icelandic"
5471
  msgstr ""
5472
 
5473
+ #: includes/core/class-builtin.php:1496
5474
  msgid "Italian"
5475
  msgstr ""
5476
 
5477
+ #: includes/core/class-builtin.php:1497
5478
  msgid "Inuktitut"
5479
  msgstr ""
5480
 
5481
+ #: includes/core/class-builtin.php:1498
5482
  msgid "Japanese"
5483
  msgstr ""
5484
 
5485
+ #: includes/core/class-builtin.php:1499
5486
  msgid "Javanese"
5487
  msgstr ""
5488
 
5489
+ #: includes/core/class-builtin.php:1500
5490
  msgid "Georgian"
5491
  msgstr ""
5492
 
5493
+ #: includes/core/class-builtin.php:1501
5494
  msgid "Kongo"
5495
  msgstr ""
5496
 
5497
+ #: includes/core/class-builtin.php:1502
5498
  msgid "Kikuyu"
5499
  msgstr ""
5500
 
5501
+ #: includes/core/class-builtin.php:1503
5502
  msgid "Kwanyama"
5503
  msgstr ""
5504
 
5505
+ #: includes/core/class-builtin.php:1504
5506
  msgid "Kazakh"
5507
  msgstr ""
5508
 
5509
+ #: includes/core/class-builtin.php:1505
5510
  msgid "Kalaallisut"
5511
  msgstr ""
5512
 
5513
+ #: includes/core/class-builtin.php:1506
5514
  msgid "Khmer"
5515
  msgstr ""
5516
 
5517
+ #: includes/core/class-builtin.php:1507
5518
  msgid "Kannada"
5519
  msgstr ""
5520
 
5521
+ #: includes/core/class-builtin.php:1508
5522
  msgid "Korean"
5523
  msgstr ""
5524
 
5525
+ #: includes/core/class-builtin.php:1509
5526
  msgid "Kanuri"
5527
  msgstr ""
5528
 
5529
+ #: includes/core/class-builtin.php:1510
5530
  msgid "Kashmiri"
5531
  msgstr ""
5532
 
5533
+ #: includes/core/class-builtin.php:1511
5534
  msgid "Kurdish"
5535
  msgstr ""
5536
 
5537
+ #: includes/core/class-builtin.php:1512
5538
  msgid "Komi"
5539
  msgstr ""
5540
 
5541
+ #: includes/core/class-builtin.php:1513
5542
  msgid "Cornish"
5543
  msgstr ""
5544
 
5545
+ #: includes/core/class-builtin.php:1514
5546
  msgid "Kirghiz"
5547
  msgstr ""
5548
 
5549
+ #: includes/core/class-builtin.php:1515
5550
  msgid "Latin"
5551
  msgstr ""
5552
 
5553
+ #: includes/core/class-builtin.php:1516
5554
  msgid "Luxembourgish"
5555
  msgstr ""
5556
 
5557
+ #: includes/core/class-builtin.php:1517
5558
  msgid "Ganda"
5559
  msgstr ""
5560
 
5561
+ #: includes/core/class-builtin.php:1518
5562
  msgid "Limburgish"
5563
  msgstr ""
5564
 
5565
+ #: includes/core/class-builtin.php:1519
5566
  msgid "Lingala"
5567
  msgstr ""
5568
 
5569
+ #: includes/core/class-builtin.php:1520
5570
  msgid "Lao"
5571
  msgstr ""
5572
 
5573
+ #: includes/core/class-builtin.php:1521
5574
  msgid "Lithuanian"
5575
  msgstr ""
5576
 
5577
+ #: includes/core/class-builtin.php:1522
5578
  msgid "Luba-Katanga"
5579
  msgstr ""
5580
 
5581
+ #: includes/core/class-builtin.php:1523
5582
  msgid "Latvian"
5583
  msgstr ""
5584
 
5585
+ #: includes/core/class-builtin.php:1524
5586
  msgid "Malagasy"
5587
  msgstr ""
5588
 
5589
+ #: includes/core/class-builtin.php:1525
5590
  msgid "Marshallese"
5591
  msgstr ""
5592
 
5593
+ #: includes/core/class-builtin.php:1526
5594
  msgid "Maori"
5595
  msgstr ""
5596
 
5597
+ #: includes/core/class-builtin.php:1527
5598
  msgid "Macedonian"
5599
  msgstr ""
5600
 
5601
+ #: includes/core/class-builtin.php:1528
5602
  msgid "Malayalam"
5603
  msgstr ""
5604
 
5605
+ #: includes/core/class-builtin.php:1529
5606
  msgid "Mongolian"
5607
  msgstr ""
5608
 
5609
+ #: includes/core/class-builtin.php:1530
5610
  msgid "Marathi"
5611
  msgstr ""
5612
 
5613
+ #: includes/core/class-builtin.php:1531
5614
  msgid "Malay"
5615
  msgstr ""
5616
 
5617
+ #: includes/core/class-builtin.php:1532
5618
  msgid "Maltese"
5619
  msgstr ""
5620
 
5621
+ #: includes/core/class-builtin.php:1533
5622
  msgid "Burmese"
5623
  msgstr ""
5624
 
5625
+ #: includes/core/class-builtin.php:1534 includes/core/class-builtin.php:1765
5626
  msgid "Nauru"
5627
  msgstr ""
5628
 
5629
+ #: includes/core/class-builtin.php:1535
5630
  msgid "Norwegian Bokmal"
5631
  msgstr ""
5632
 
5633
+ #: includes/core/class-builtin.php:1536
5634
  msgid "North Ndebele"
5635
  msgstr ""
5636
 
5637
+ #: includes/core/class-builtin.php:1537
5638
  msgid "Nepali"
5639
  msgstr ""
5640
 
5641
+ #: includes/core/class-builtin.php:1538
5642
  msgid "Ndonga"
5643
  msgstr ""
5644
 
5645
+ #: includes/core/class-builtin.php:1539
5646
  msgid "Dutch"
5647
  msgstr ""
5648
 
5649
+ #: includes/core/class-builtin.php:1540
5650
  msgid "Norwegian Nynorsk"
5651
  msgstr ""
5652
 
5653
+ #: includes/core/class-builtin.php:1541
5654
  msgid "Norwegian"
5655
  msgstr ""
5656
 
5657
+ #: includes/core/class-builtin.php:1542
5658
  msgid "South Ndebele"
5659
  msgstr ""
5660
 
5661
+ #: includes/core/class-builtin.php:1543
5662
  msgid "Navajo"
5663
  msgstr ""
5664
 
5665
+ #: includes/core/class-builtin.php:1544
5666
  msgid "Chichewa"
5667
  msgstr ""
5668
 
5669
+ #: includes/core/class-builtin.php:1545
5670
  msgid "Occitan"
5671
  msgstr ""
5672
 
5673
+ #: includes/core/class-builtin.php:1546
5674
  msgid "Ojibwa"
5675
  msgstr ""
5676
 
5677
+ #: includes/core/class-builtin.php:1547
5678
  msgid "Oromo"
5679
  msgstr ""
5680
 
5681
+ #: includes/core/class-builtin.php:1548
5682
  msgid "Oriya"
5683
  msgstr ""
5684
 
5685
+ #: includes/core/class-builtin.php:1549
5686
  msgid "Ossetian"
5687
  msgstr ""
5688
 
5689
+ #: includes/core/class-builtin.php:1550
5690
  msgid "Panjabi"
5691
  msgstr ""
5692
 
5693
+ #: includes/core/class-builtin.php:1551
5694
  msgid "Pali"
5695
  msgstr ""
5696
 
5697
+ #: includes/core/class-builtin.php:1552
5698
  msgid "Polish"
5699
  msgstr ""
5700
 
5701
+ #: includes/core/class-builtin.php:1553
5702
  msgid "Pashto"
5703
  msgstr ""
5704
 
5705
+ #: includes/core/class-builtin.php:1554
5706
  msgid "Portuguese"
5707
  msgstr ""
5708
 
5709
+ #: includes/core/class-builtin.php:1555
5710
  msgid "Quechua"
5711
  msgstr ""
5712
 
5713
+ #: includes/core/class-builtin.php:1556
5714
  msgid "Raeto-Romance"
5715
  msgstr ""
5716
 
5717
+ #: includes/core/class-builtin.php:1557
5718
  msgid "Kirundi"
5719
  msgstr ""
5720
 
5721
+ #: includes/core/class-builtin.php:1558
5722
  msgid "Romanian"
5723
  msgstr ""
5724
 
5725
+ #: includes/core/class-builtin.php:1559
5726
  msgid "Russian"
5727
  msgstr ""
5728
 
5729
+ #: includes/core/class-builtin.php:1560
5730
  msgid "Kinyarwanda"
5731
  msgstr ""
5732
 
5733
+ #: includes/core/class-builtin.php:1561
5734
  msgid "Sanskrit"
5735
  msgstr ""
5736
 
5737
+ #: includes/core/class-builtin.php:1562
5738
  msgid "Sardinian"
5739
  msgstr ""
5740
 
5741
+ #: includes/core/class-builtin.php:1563
5742
  msgid "Sindhi"
5743
  msgstr ""
5744
 
5745
+ #: includes/core/class-builtin.php:1564
5746
  msgid "Northern Sami"
5747
  msgstr ""
5748
 
5749
+ #: includes/core/class-builtin.php:1565
5750
  msgid "Sango"
5751
  msgstr ""
5752
 
5753
+ #: includes/core/class-builtin.php:1566
5754
  msgid "Sinhala"
5755
  msgstr ""
5756
 
5757
+ #: includes/core/class-builtin.php:1567
5758
  msgid "Slovak"
5759
  msgstr ""
5760
 
5761
+ #: includes/core/class-builtin.php:1568
5762
  msgid "Slovenian"
5763
  msgstr ""
5764
 
5765
+ #: includes/core/class-builtin.php:1569
5766
  msgid "Samoan"
5767
  msgstr ""
5768
 
5769
+ #: includes/core/class-builtin.php:1570
5770
  msgid "Shona"
5771
  msgstr ""
5772
 
5773
+ #: includes/core/class-builtin.php:1571
5774
  msgid "Somali"
5775
  msgstr ""
5776
 
5777
+ #: includes/core/class-builtin.php:1572
5778
  msgid "Albanian"
5779
  msgstr ""
5780
 
5781
+ #: includes/core/class-builtin.php:1573
5782
  msgid "Serbian"
5783
  msgstr ""
5784
 
5785
+ #: includes/core/class-builtin.php:1574
5786
  msgid "Swati"
5787
  msgstr ""
5788
 
5789
+ #: includes/core/class-builtin.php:1575
5790
  msgid "Southern Sotho"
5791
  msgstr ""
5792
 
5793
+ #: includes/core/class-builtin.php:1576
5794
  msgid "Sundanese"
5795
  msgstr ""
5796
 
5797
+ #: includes/core/class-builtin.php:1577
5798
  msgid "Swedish"
5799
  msgstr ""
5800
 
5801
+ #: includes/core/class-builtin.php:1578
5802
  msgid "Swahili"
5803
  msgstr ""
5804
 
5805
+ #: includes/core/class-builtin.php:1579
5806
  msgid "Tamil"
5807
  msgstr ""
5808
 
5809
+ #: includes/core/class-builtin.php:1580
5810
  msgid "Telugu"
5811
  msgstr ""
5812
 
5813
+ #: includes/core/class-builtin.php:1581
5814
  msgid "Tajik"
5815
  msgstr ""
5816
 
5817
+ #: includes/core/class-builtin.php:1582
5818
  msgid "Thai"
5819
  msgstr ""
5820
 
5821
+ #: includes/core/class-builtin.php:1583
5822
  msgid "Tigrinya"
5823
  msgstr ""
5824
 
5825
+ #: includes/core/class-builtin.php:1584
5826
  msgid "Turkmen"
5827
  msgstr ""
5828
 
5829
+ #: includes/core/class-builtin.php:1585
5830
  msgid "Tagalog"
5831
  msgstr ""
5832
 
5833
+ #: includes/core/class-builtin.php:1586
5834
  msgid "Tswana"
5835
  msgstr ""
5836
 
5837
+ #: includes/core/class-builtin.php:1587 includes/core/class-builtin.php:1835
5838
  msgid "Tonga"
5839
  msgstr ""
5840
 
5841
+ #: includes/core/class-builtin.php:1588
5842
  msgid "Turkish"
5843
  msgstr ""
5844
 
5845
+ #: includes/core/class-builtin.php:1589
5846
  msgid "Tsonga"
5847
  msgstr ""
5848
 
5849
+ #: includes/core/class-builtin.php:1590
5850
  msgid "Tatar"
5851
  msgstr ""
5852
 
5853
+ #: includes/core/class-builtin.php:1591
5854
  msgid "Twi"
5855
  msgstr ""
5856
 
5857
+ #: includes/core/class-builtin.php:1592
5858
  msgid "Tahitian"
5859
  msgstr ""
5860
 
5861
+ #: includes/core/class-builtin.php:1593
5862
  msgid "Uighur"
5863
  msgstr ""
5864
 
5865
+ #: includes/core/class-builtin.php:1594
5866
  msgid "Ukrainian"
5867
  msgstr ""
5868
 
5869
+ #: includes/core/class-builtin.php:1595
5870
  msgid "Urdu"
5871
  msgstr ""
5872
 
5873
+ #: includes/core/class-builtin.php:1596
5874
  msgid "Uzbek"
5875
  msgstr ""
5876
 
5877
+ #: includes/core/class-builtin.php:1597
5878
  msgid "Venda"
5879
  msgstr ""
5880
 
5881
+ #: includes/core/class-builtin.php:1598
5882
  msgid "Vietnamese"
5883
  msgstr ""
5884
 
5885
+ #: includes/core/class-builtin.php:1599
5886
  msgid "Volapuk"
5887
  msgstr ""
5888
 
5889
+ #: includes/core/class-builtin.php:1600
5890
  msgid "Walloon"
5891
  msgstr ""
5892
 
5893
+ #: includes/core/class-builtin.php:1601
5894
  msgid "Wolof"
5895
  msgstr ""
5896
 
5897
+ #: includes/core/class-builtin.php:1602
5898
  msgid "Xhosa"
5899
  msgstr ""
5900
 
5901
+ #: includes/core/class-builtin.php:1603
5902
  msgid "Yiddish"
5903
  msgstr ""
5904
 
5905
+ #: includes/core/class-builtin.php:1604
5906
  msgid "Yoruba"
5907
  msgstr ""
5908
 
5909
+ #: includes/core/class-builtin.php:1605
5910
  msgid "Zhuang"
5911
  msgstr ""
5912
 
5913
+ #: includes/core/class-builtin.php:1606
5914
  msgid "Chinese"
5915
  msgstr ""
5916
 
5917
+ #: includes/core/class-builtin.php:1607
5918
  msgid "Zulu"
5919
  msgstr ""
5920
 
5921
+ #: includes/core/class-builtin.php:1613
5922
  msgid "Afghanistan"
5923
  msgstr ""
5924
 
5925
+ #: includes/core/class-builtin.php:1614
5926
  msgid "Åland Islands"
5927
  msgstr ""
5928
 
5929
+ #: includes/core/class-builtin.php:1615
5930
  msgid "Albania"
5931
  msgstr ""
5932
 
5933
+ #: includes/core/class-builtin.php:1616
5934
  msgid "Algeria"
5935
  msgstr ""
5936
 
5937
+ #: includes/core/class-builtin.php:1617
5938
  msgid "American Samoa"
5939
  msgstr ""
5940
 
5941
+ #: includes/core/class-builtin.php:1618
5942
  msgid "Andorra"
5943
  msgstr ""
5944
 
5945
+ #: includes/core/class-builtin.php:1619
5946
  msgid "Angola"
5947
  msgstr ""
5948
 
5949
+ #: includes/core/class-builtin.php:1620
5950
  msgid "Anguilla"
5951
  msgstr ""
5952
 
5953
+ #: includes/core/class-builtin.php:1621
5954
  msgid "Antarctica"
5955
  msgstr ""
5956
 
5957
+ #: includes/core/class-builtin.php:1622
5958
  msgid "Antigua and Barbuda"
5959
  msgstr ""
5960
 
5961
+ #: includes/core/class-builtin.php:1623
5962
  msgid "Argentina"
5963
  msgstr ""
5964
 
5965
+ #: includes/core/class-builtin.php:1624
5966
  msgid "Armenia"
5967
  msgstr ""
5968
 
5969
+ #: includes/core/class-builtin.php:1625
5970
  msgid "Aruba"
5971
  msgstr ""
5972
 
5973
+ #: includes/core/class-builtin.php:1626
5974
  msgid "Australia"
5975
  msgstr ""
5976
 
5977
+ #: includes/core/class-builtin.php:1627
5978
  msgid "Austria"
5979
  msgstr ""
5980
 
5981
+ #: includes/core/class-builtin.php:1628
5982
  msgid "Azerbaijan"
5983
  msgstr ""
5984
 
5985
+ #: includes/core/class-builtin.php:1629
5986
  msgid "Bahamas"
5987
  msgstr ""
5988
 
5989
+ #: includes/core/class-builtin.php:1630
5990
  msgid "Bahrain"
5991
  msgstr ""
5992
 
5993
+ #: includes/core/class-builtin.php:1631
5994
  msgid "Bangladesh"
5995
  msgstr ""
5996
 
5997
+ #: includes/core/class-builtin.php:1632
5998
  msgid "Barbados"
5999
  msgstr ""
6000
 
6001
+ #: includes/core/class-builtin.php:1633
6002
  msgid "Belarus"
6003
  msgstr ""
6004
 
6005
+ #: includes/core/class-builtin.php:1634
6006
  msgid "Belgium"
6007
  msgstr ""
6008
 
6009
+ #: includes/core/class-builtin.php:1635
6010
  msgid "Belize"
6011
  msgstr ""
6012
 
6013
+ #: includes/core/class-builtin.php:1636
6014
  msgid "Benin"
6015
  msgstr ""
6016
 
6017
+ #: includes/core/class-builtin.php:1637
6018
  msgid "Bermuda"
6019
  msgstr ""
6020
 
6021
+ #: includes/core/class-builtin.php:1638
6022
  msgid "Bhutan"
6023
  msgstr ""
6024
 
6025
+ #: includes/core/class-builtin.php:1639
6026
  msgid "Bolivia, Plurinational State of"
6027
  msgstr ""
6028
 
6029
+ #: includes/core/class-builtin.php:1640
6030
  msgid "Bosnia and Herzegovina"
6031
  msgstr ""
6032
 
6033
+ #: includes/core/class-builtin.php:1641
6034
  msgid "Botswana"
6035
  msgstr ""
6036
 
6037
+ #: includes/core/class-builtin.php:1642
6038
  msgid "Bouvet Island"
6039
  msgstr ""
6040
 
6041
+ #: includes/core/class-builtin.php:1643
6042
  msgid "Brazil"
6043
  msgstr ""
6044
 
6045
+ #: includes/core/class-builtin.php:1644
6046
  msgid "British Indian Ocean Territory"
6047
  msgstr ""
6048
 
6049
+ #: includes/core/class-builtin.php:1645
6050
  msgid "Brunei Darussalam"
6051
  msgstr ""
6052
 
6053
+ #: includes/core/class-builtin.php:1646
6054
  msgid "Bulgaria"
6055
  msgstr ""
6056
 
6057
+ #: includes/core/class-builtin.php:1647
6058
  msgid "Burkina Faso"
6059
  msgstr ""
6060
 
6061
+ #: includes/core/class-builtin.php:1648
6062
  msgid "Burundi"
6063
  msgstr ""
6064
 
6065
+ #: includes/core/class-builtin.php:1649
6066
  msgid "Cambodia"
6067
  msgstr ""
6068
 
6069
+ #: includes/core/class-builtin.php:1650
6070
  msgid "Cameroon"
6071
  msgstr ""
6072
 
6073
+ #: includes/core/class-builtin.php:1651
6074
  msgid "Canada"
6075
  msgstr ""
6076
 
6077
+ #: includes/core/class-builtin.php:1652
6078
  msgid "Cape Verde"
6079
  msgstr ""
6080
 
6081
+ #: includes/core/class-builtin.php:1653
6082
  msgid "Cayman Islands"
6083
  msgstr ""
6084
 
6085
+ #: includes/core/class-builtin.php:1654
6086
  msgid "Central African Republic"
6087
  msgstr ""
6088
 
6089
+ #: includes/core/class-builtin.php:1655
6090
  msgid "Chad"
6091
  msgstr ""
6092
 
6093
+ #: includes/core/class-builtin.php:1656
6094
  msgid "Chile"
6095
  msgstr ""
6096
 
6097
+ #: includes/core/class-builtin.php:1657
6098
  msgid "China"
6099
  msgstr ""
6100
 
6101
+ #: includes/core/class-builtin.php:1658
6102
  msgid "Christmas Island"
6103
  msgstr ""
6104
 
6105
+ #: includes/core/class-builtin.php:1659
6106
  msgid "Cocos (Keeling) Islands"
6107
  msgstr ""
6108
 
6109
+ #: includes/core/class-builtin.php:1660
6110
  msgid "Colombia"
6111
  msgstr ""
6112
 
6113
+ #: includes/core/class-builtin.php:1661
6114
  msgid "Comoros"
6115
  msgstr ""
6116
 
6117
+ #: includes/core/class-builtin.php:1662
6118
  msgid "Congo"
6119
  msgstr ""
6120
 
6121
+ #: includes/core/class-builtin.php:1663
6122
  msgid "Congo, the Democratic Republic of the"
6123
  msgstr ""
6124
 
6125
+ #: includes/core/class-builtin.php:1664
6126
  msgid "Cook Islands"
6127
  msgstr ""
6128
 
6129
+ #: includes/core/class-builtin.php:1665
6130
  msgid "Costa Rica"
6131
  msgstr ""
6132
 
6133
+ #: includes/core/class-builtin.php:1666
6134
  msgid "Côte d'Ivoire"
6135
  msgstr ""
6136
 
6137
+ #: includes/core/class-builtin.php:1667
6138
  msgid "Croatia"
6139
  msgstr ""
6140
 
6141
+ #: includes/core/class-builtin.php:1668
6142
  msgid "Cuba"
6143
  msgstr ""
6144
 
6145
+ #: includes/core/class-builtin.php:1669
6146
  msgid "Cyprus"
6147
  msgstr ""
6148
 
6149
+ #: includes/core/class-builtin.php:1670
6150
  msgid "Czech Republic"
6151
  msgstr ""
6152
 
6153
+ #: includes/core/class-builtin.php:1671
6154
  msgid "Denmark"
6155
  msgstr ""
6156
 
6157
+ #: includes/core/class-builtin.php:1672
6158
  msgid "Djibouti"
6159
  msgstr ""
6160
 
6161
+ #: includes/core/class-builtin.php:1673
6162
  msgid "Dominica"
6163
  msgstr ""
6164
 
6165
+ #: includes/core/class-builtin.php:1674
6166
  msgid "Dominican Republic"
6167
  msgstr ""
6168
 
6169
+ #: includes/core/class-builtin.php:1675
6170
  msgid "Ecuador"
6171
  msgstr ""
6172
 
6173
+ #: includes/core/class-builtin.php:1676
6174
  msgid "Egypt"
6175
  msgstr ""
6176
 
6177
+ #: includes/core/class-builtin.php:1677
6178
  msgid "El Salvador"
6179
  msgstr ""
6180
 
6181
+ #: includes/core/class-builtin.php:1678
6182
  msgid "Equatorial Guinea"
6183
  msgstr ""
6184
 
6185
+ #: includes/core/class-builtin.php:1679
6186
  msgid "Eritrea"
6187
  msgstr ""
6188
 
6189
+ #: includes/core/class-builtin.php:1680
6190
  msgid "Estonia"
6191
  msgstr ""
6192
 
6193
+ #: includes/core/class-builtin.php:1681
6194
  msgid "Ethiopia"
6195
  msgstr ""
6196
 
6197
+ #: includes/core/class-builtin.php:1682
6198
  msgid "Falkland Islands (Malvinas)"
6199
  msgstr ""
6200
 
6201
+ #: includes/core/class-builtin.php:1683
6202
  msgid "Faroe Islands"
6203
  msgstr ""
6204
 
6205
+ #: includes/core/class-builtin.php:1684
6206
  msgid "Fiji"
6207
  msgstr ""
6208
 
6209
+ #: includes/core/class-builtin.php:1685
6210
  msgid "Finland"
6211
  msgstr ""
6212
 
6213
+ #: includes/core/class-builtin.php:1686
6214
  msgid "France"
6215
  msgstr ""
6216
 
6217
+ #: includes/core/class-builtin.php:1687
6218
  msgid "French Guiana"
6219
  msgstr ""
6220
 
6221
+ #: includes/core/class-builtin.php:1688
6222
  msgid "French Polynesia"
6223
  msgstr ""
6224
 
6225
+ #: includes/core/class-builtin.php:1689
6226
  msgid "French Southern Territories"
6227
  msgstr ""
6228
 
6229
+ #: includes/core/class-builtin.php:1690
6230
  msgid "Gabon"
6231
  msgstr ""
6232
 
6233
+ #: includes/core/class-builtin.php:1691
6234
  msgid "Gambia"
6235
  msgstr ""
6236
 
6237
+ #: includes/core/class-builtin.php:1692
6238
  msgid "Georgia"
6239
  msgstr ""
6240
 
6241
+ #: includes/core/class-builtin.php:1693
6242
  msgid "Germany"
6243
  msgstr ""
6244
 
6245
+ #: includes/core/class-builtin.php:1694
6246
  msgid "Ghana"
6247
  msgstr ""
6248
 
6249
+ #: includes/core/class-builtin.php:1695
6250
  msgid "Gibraltar"
6251
  msgstr ""
6252
 
6253
+ #: includes/core/class-builtin.php:1696
6254
  msgid "Greece"
6255
  msgstr ""
6256
 
6257
+ #: includes/core/class-builtin.php:1697
6258
  msgid "Greenland"
6259
  msgstr ""
6260
 
6261
+ #: includes/core/class-builtin.php:1698
6262
  msgid "Grenada"
6263
  msgstr ""
6264
 
6265
+ #: includes/core/class-builtin.php:1699
6266
  msgid "Guadeloupe"
6267
  msgstr ""
6268
 
6269
+ #: includes/core/class-builtin.php:1700
6270
  msgid "Guam"
6271
  msgstr ""
6272
 
6273
+ #: includes/core/class-builtin.php:1701
6274
  msgid "Guatemala"
6275
  msgstr ""
6276
 
6277
+ #: includes/core/class-builtin.php:1702
6278
  msgid "Guernsey"
6279
  msgstr ""
6280
 
6281
+ #: includes/core/class-builtin.php:1703
6282
  msgid "Guinea"
6283
  msgstr ""
6284
 
6285
+ #: includes/core/class-builtin.php:1704
6286
  msgid "Guinea-Bissau"
6287
  msgstr ""
6288
 
6289
+ #: includes/core/class-builtin.php:1705
6290
  msgid "Guyana"
6291
  msgstr ""
6292
 
6293
+ #: includes/core/class-builtin.php:1706
6294
  msgid "Haiti"
6295
  msgstr ""
6296
 
6297
+ #: includes/core/class-builtin.php:1707
6298
  msgid "Heard Island and McDonald Islands"
6299
  msgstr ""
6300
 
6301
+ #: includes/core/class-builtin.php:1708
6302
  msgid "Holy See (Vatican City State)"
6303
  msgstr ""
6304
 
6305
+ #: includes/core/class-builtin.php:1709
6306
  msgid "Honduras"
6307
  msgstr ""
6308
 
6309
+ #: includes/core/class-builtin.php:1710
6310
  msgid "Hong Kong"
6311
  msgstr ""
6312
 
6313
+ #: includes/core/class-builtin.php:1711
6314
  msgid "Hungary"
6315
  msgstr ""
6316
 
6317
+ #: includes/core/class-builtin.php:1712
6318
  msgid "Iceland"
6319
  msgstr ""
6320
 
6321
+ #: includes/core/class-builtin.php:1713
6322
  msgid "India"
6323
  msgstr ""
6324
 
6325
+ #: includes/core/class-builtin.php:1714
6326
  msgid "Indonesia"
6327
  msgstr ""
6328
 
6329
+ #: includes/core/class-builtin.php:1715
6330
  msgid "Iran, Islamic Republic of"
6331
  msgstr ""
6332
 
6333
+ #: includes/core/class-builtin.php:1716
6334
  msgid "Iraq"
6335
  msgstr ""
6336
 
6337
+ #: includes/core/class-builtin.php:1717
6338
  msgid "Ireland"
6339
  msgstr ""
6340
 
6341
+ #: includes/core/class-builtin.php:1718
6342
  msgid "Isle of Man"
6343
  msgstr ""
6344
 
6345
+ #: includes/core/class-builtin.php:1719
6346
  msgid "Israel"
6347
  msgstr ""
6348
 
6349
+ #: includes/core/class-builtin.php:1720
6350
  msgid "Italy"
6351
  msgstr ""
6352
 
6353
+ #: includes/core/class-builtin.php:1721
6354
  msgid "Jamaica"
6355
  msgstr ""
6356
 
6357
+ #: includes/core/class-builtin.php:1722
6358
  msgid "Japan"
6359
  msgstr ""
6360
 
6361
+ #: includes/core/class-builtin.php:1723
6362
  msgid "Jersey"
6363
  msgstr ""
6364
 
6365
+ #: includes/core/class-builtin.php:1724
6366
  msgid "Jordan"
6367
  msgstr ""
6368
 
6369
+ #: includes/core/class-builtin.php:1725
6370
  msgid "Kazakhstan"
6371
  msgstr ""
6372
 
6373
+ #: includes/core/class-builtin.php:1726
6374
  msgid "Kenya"
6375
  msgstr ""
6376
 
6377
+ #: includes/core/class-builtin.php:1727
6378
  msgid "Kiribati"
6379
  msgstr ""
6380
 
6381
+ #: includes/core/class-builtin.php:1728
6382
  msgid "Korea, Democratic People's Republic of"
6383
  msgstr ""
6384
 
6385
+ #: includes/core/class-builtin.php:1729
6386
  msgid "Korea, Republic of"
6387
  msgstr ""
6388
 
6389
+ #: includes/core/class-builtin.php:1730
6390
  msgid "Kuwait"
6391
  msgstr ""
6392
 
6393
+ #: includes/core/class-builtin.php:1731
6394
  msgid "Kyrgyzstan"
6395
  msgstr ""
6396
 
6397
+ #: includes/core/class-builtin.php:1732
6398
  msgid "Lao People's Democratic Republic"
6399
  msgstr ""
6400
 
6401
+ #: includes/core/class-builtin.php:1733
6402
  msgid "Latvia"
6403
  msgstr ""
6404
 
6405
+ #: includes/core/class-builtin.php:1734
6406
  msgid "Lebanon"
6407
  msgstr ""
6408
 
6409
+ #: includes/core/class-builtin.php:1735
6410
  msgid "Lesotho"
6411
  msgstr ""
6412
 
6413
+ #: includes/core/class-builtin.php:1736
6414
  msgid "Liberia"
6415
  msgstr ""
6416
 
6417
+ #: includes/core/class-builtin.php:1737
6418
  msgid "Libyan Arab Jamahiriya"
6419
  msgstr ""
6420
 
6421
+ #: includes/core/class-builtin.php:1738
6422
  msgid "Liechtenstein"
6423
  msgstr ""
6424
 
6425
+ #: includes/core/class-builtin.php:1739
6426
  msgid "Lithuania"
6427
  msgstr ""
6428
 
6429
+ #: includes/core/class-builtin.php:1740
6430
  msgid "Luxembourg"
6431
  msgstr ""
6432
 
6433
+ #: includes/core/class-builtin.php:1741
6434
  msgid "Macao"
6435
  msgstr ""
6436
 
6437
+ #: includes/core/class-builtin.php:1742
6438
  msgid "Macedonia, the former Yugoslav Republic of"
6439
  msgstr ""
6440
 
6441
+ #: includes/core/class-builtin.php:1743
6442
  msgid "Madagascar"
6443
  msgstr ""
6444
 
6445
+ #: includes/core/class-builtin.php:1744
6446
  msgid "Malawi"
6447
  msgstr ""
6448
 
6449
+ #: includes/core/class-builtin.php:1745
6450
  msgid "Malaysia"
6451
  msgstr ""
6452
 
6453
+ #: includes/core/class-builtin.php:1746
6454
  msgid "Maldives"
6455
  msgstr ""
6456
 
6457
+ #: includes/core/class-builtin.php:1747
6458
  msgid "Mali"
6459
  msgstr ""
6460
 
6461
+ #: includes/core/class-builtin.php:1748
6462
  msgid "Malta"
6463
  msgstr ""
6464
 
6465
+ #: includes/core/class-builtin.php:1749
6466
  msgid "Marshall Islands"
6467
  msgstr ""
6468
 
6469
+ #: includes/core/class-builtin.php:1750
6470
  msgid "Martinique"
6471
  msgstr ""
6472
 
6473
+ #: includes/core/class-builtin.php:1751
6474
  msgid "Mauritania"
6475
  msgstr ""
6476
 
6477
+ #: includes/core/class-builtin.php:1752
6478
  msgid "Mauritius"
6479
  msgstr ""
6480
 
6481
+ #: includes/core/class-builtin.php:1753
6482
  msgid "Mayotte"
6483
  msgstr ""
6484
 
6485
+ #: includes/core/class-builtin.php:1754
6486
  msgid "Mexico"
6487
  msgstr ""
6488
 
6489
+ #: includes/core/class-builtin.php:1755
6490
  msgid "Micronesia, Federated States of"
6491
  msgstr ""
6492
 
6493
+ #: includes/core/class-builtin.php:1756
6494
  msgid "Moldova, Republic of"
6495
  msgstr ""
6496
 
6497
+ #: includes/core/class-builtin.php:1757
6498
  msgid "Monaco"
6499
  msgstr ""
6500
 
6501
+ #: includes/core/class-builtin.php:1758
6502
  msgid "Mongolia"
6503
  msgstr ""
6504
 
6505
+ #: includes/core/class-builtin.php:1759
6506
  msgid "Montenegro"
6507
  msgstr ""
6508
 
6509
+ #: includes/core/class-builtin.php:1760
6510
  msgid "Montserrat"
6511
  msgstr ""
6512
 
6513
+ #: includes/core/class-builtin.php:1761
6514
  msgid "Morocco"
6515
  msgstr ""
6516
 
6517
+ #: includes/core/class-builtin.php:1762
6518
  msgid "Mozambique"
6519
  msgstr ""
6520
 
6521
+ #: includes/core/class-builtin.php:1763
6522
  msgid "Myanmar"
6523
  msgstr ""
6524
 
6525
+ #: includes/core/class-builtin.php:1764
6526
  msgid "Namibia"
6527
  msgstr ""
6528
 
6529
+ #: includes/core/class-builtin.php:1766
6530
  msgid "Nepal"
6531
  msgstr ""
6532
 
6533
+ #: includes/core/class-builtin.php:1767
6534
  msgid "Netherlands"
6535
  msgstr ""
6536
 
6537
+ #: includes/core/class-builtin.php:1768
6538
  msgid "Netherlands Antilles"
6539
  msgstr ""
6540
 
6541
+ #: includes/core/class-builtin.php:1769
6542
  msgid "New Caledonia"
6543
  msgstr ""
6544
 
6545
+ #: includes/core/class-builtin.php:1770
6546
  msgid "New Zealand"
6547
  msgstr ""
6548
 
6549
+ #: includes/core/class-builtin.php:1771
6550
  msgid "Nicaragua"
6551
  msgstr ""
6552
 
6553
+ #: includes/core/class-builtin.php:1772
6554
  msgid "Niger"
6555
  msgstr ""
6556
 
6557
+ #: includes/core/class-builtin.php:1773
6558
  msgid "Nigeria"
6559
  msgstr ""
6560
 
6561
+ #: includes/core/class-builtin.php:1774
6562
  msgid "Niue"
6563
  msgstr ""
6564
 
6565
+ #: includes/core/class-builtin.php:1775
6566
  msgid "Norfolk Island"
6567
  msgstr ""
6568
 
6569
+ #: includes/core/class-builtin.php:1776
6570
  msgid "Northern Mariana Islands"
6571
  msgstr ""
6572
 
6573
+ #: includes/core/class-builtin.php:1777
6574
  msgid "Norway"
6575
  msgstr ""
6576
 
6577
+ #: includes/core/class-builtin.php:1778
6578
  msgid "Oman"
6579
  msgstr ""
6580
 
6581
+ #: includes/core/class-builtin.php:1779
6582
  msgid "Pakistan"
6583
  msgstr ""
6584
 
6585
+ #: includes/core/class-builtin.php:1780
6586
  msgid "Palau"
6587
  msgstr ""
6588
 
6589
+ #: includes/core/class-builtin.php:1781
6590
  msgid "Palestine"
6591
  msgstr ""
6592
 
6593
+ #: includes/core/class-builtin.php:1782
6594
  msgid "Panama"
6595
  msgstr ""
6596
 
6597
+ #: includes/core/class-builtin.php:1783
6598
  msgid "Papua New Guinea"
6599
  msgstr ""
6600
 
6601
+ #: includes/core/class-builtin.php:1784
6602
  msgid "Paraguay"
6603
  msgstr ""
6604
 
6605
+ #: includes/core/class-builtin.php:1785
6606
  msgid "Peru"
6607
  msgstr ""
6608
 
6609
+ #: includes/core/class-builtin.php:1786
6610
  msgid "Philippines"
6611
  msgstr ""
6612
 
6613
+ #: includes/core/class-builtin.php:1787
6614
  msgid "Pitcairn"
6615
  msgstr ""
6616
 
6617
+ #: includes/core/class-builtin.php:1788
6618
  msgid "Poland"
6619
  msgstr ""
6620
 
6621
+ #: includes/core/class-builtin.php:1789
6622
  msgid "Portugal"
6623
  msgstr ""
6624
 
6625
+ #: includes/core/class-builtin.php:1790
6626
  msgid "Puerto Rico"
6627
  msgstr ""
6628
 
6629
+ #: includes/core/class-builtin.php:1791
6630
  msgid "Qatar"
6631
  msgstr ""
6632
 
6633
+ #: includes/core/class-builtin.php:1792
6634
  msgid "Réunion"
6635
  msgstr ""
6636
 
6637
+ #: includes/core/class-builtin.php:1793
6638
  msgid "Romania"
6639
  msgstr ""
6640
 
6641
+ #: includes/core/class-builtin.php:1794
6642
  msgid "Russian Federation"
6643
  msgstr ""
6644
 
6645
+ #: includes/core/class-builtin.php:1795
6646
  msgid "Rwanda"
6647
  msgstr ""
6648
 
6649
+ #: includes/core/class-builtin.php:1796
6650
  msgid "Saint Barthélemy"
6651
  msgstr ""
6652
 
6653
+ #: includes/core/class-builtin.php:1797
6654
  msgid "Saint Helena"
6655
  msgstr ""
6656
 
6657
+ #: includes/core/class-builtin.php:1798
6658
  msgid "Saint Kitts and Nevis"
6659
  msgstr ""
6660
 
6661
+ #: includes/core/class-builtin.php:1799
6662
  msgid "Saint Lucia"
6663
  msgstr ""
6664
 
6665
+ #: includes/core/class-builtin.php:1800
6666
  msgid "Saint Martin (French part)"
6667
  msgstr ""
6668
 
6669
+ #: includes/core/class-builtin.php:1801
6670
  msgid "Saint Pierre and Miquelon"
6671
  msgstr ""
6672
 
6673
+ #: includes/core/class-builtin.php:1802
6674
  msgid "Saint Vincent and the Grenadines"
6675
  msgstr ""
6676
 
6677
+ #: includes/core/class-builtin.php:1803
6678
  msgid "Samoa"
6679
  msgstr ""
6680
 
6681
+ #: includes/core/class-builtin.php:1804
6682
  msgid "San Marino"
6683
  msgstr ""
6684
 
6685
+ #: includes/core/class-builtin.php:1805
6686
  msgid "Sao Tome and Principe"
6687
  msgstr ""
6688
 
6689
+ #: includes/core/class-builtin.php:1806
6690
  msgid "Saudi Arabia"
6691
  msgstr ""
6692
 
6693
+ #: includes/core/class-builtin.php:1807
6694
  msgid "Senegal"
6695
  msgstr ""
6696
 
6697
+ #: includes/core/class-builtin.php:1808
6698
  msgid "Serbia"
6699
  msgstr ""
6700
 
6701
+ #: includes/core/class-builtin.php:1809
6702
  msgid "Seychelles"
6703
  msgstr ""
6704
 
6705
+ #: includes/core/class-builtin.php:1810
6706
  msgid "Sierra Leone"
6707
  msgstr ""
6708
 
6709
+ #: includes/core/class-builtin.php:1811
6710
  msgid "Singapore"
6711
  msgstr ""
6712
 
6713
+ #: includes/core/class-builtin.php:1812
6714
  msgid "Slovakia"
6715
  msgstr ""
6716
 
6717
+ #: includes/core/class-builtin.php:1813
6718
  msgid "Slovenia"
6719
  msgstr ""
6720
 
6721
+ #: includes/core/class-builtin.php:1814
6722
  msgid "Solomon Islands"
6723
  msgstr ""
6724
 
6725
+ #: includes/core/class-builtin.php:1815
6726
  msgid "Somalia"
6727
  msgstr ""
6728
 
6729
+ #: includes/core/class-builtin.php:1816
6730
  msgid "South Africa"
6731
  msgstr ""
6732
 
6733
+ #: includes/core/class-builtin.php:1817
6734
  msgid "South Georgia and the South Sandwich Islands"
6735
  msgstr ""
6736
 
6737
+ #: includes/core/class-builtin.php:1818
6738
  msgid "South Sudan"
6739
  msgstr ""
6740
 
6741
+ #: includes/core/class-builtin.php:1819
6742
  msgid "Spain"
6743
  msgstr ""
6744
 
6745
+ #: includes/core/class-builtin.php:1820
6746
  msgid "Sri Lanka"
6747
  msgstr ""
6748
 
6749
+ #: includes/core/class-builtin.php:1821
6750
  msgid "Sudan"
6751
  msgstr ""
6752
 
6753
+ #: includes/core/class-builtin.php:1822
6754
  msgid "Suriname"
6755
  msgstr ""
6756
 
6757
+ #: includes/core/class-builtin.php:1823
6758
  msgid "Svalbard and Jan Mayen"
6759
  msgstr ""
6760
 
6761
+ #: includes/core/class-builtin.php:1824
6762
  msgid "Swaziland"
6763
  msgstr ""
6764
 
6765
+ #: includes/core/class-builtin.php:1825
6766
  msgid "Sweden"
6767
  msgstr ""
6768
 
6769
+ #: includes/core/class-builtin.php:1826
6770
  msgid "Switzerland"
6771
  msgstr ""
6772
 
6773
+ #: includes/core/class-builtin.php:1827
6774
  msgid "Syrian Arab Republic"
6775
  msgstr ""
6776
 
6777
+ #: includes/core/class-builtin.php:1828
6778
  msgid "Taiwan, Province of China"
6779
  msgstr ""
6780
 
6781
+ #: includes/core/class-builtin.php:1829
6782
  msgid "Tajikistan"
6783
  msgstr ""
6784
 
6785
+ #: includes/core/class-builtin.php:1830
6786
  msgid "Tanzania, United Republic of"
6787
  msgstr ""
6788
 
6789
+ #: includes/core/class-builtin.php:1831
6790
  msgid "Thailand"
6791
  msgstr ""
6792
 
6793
+ #: includes/core/class-builtin.php:1832
6794
  msgid "Timor-Leste"
6795
  msgstr ""
6796
 
6797
+ #: includes/core/class-builtin.php:1833
6798
  msgid "Togo"
6799
  msgstr ""
6800
 
6801
+ #: includes/core/class-builtin.php:1834
6802
  msgid "Tokelau"
6803
  msgstr ""
6804
 
6805
+ #: includes/core/class-builtin.php:1836
6806
  msgid "Trinidad and Tobago"
6807
  msgstr ""
6808
 
6809
+ #: includes/core/class-builtin.php:1837
6810
  msgid "Tunisia"
6811
  msgstr ""
6812
 
6813
+ #: includes/core/class-builtin.php:1838
6814
  msgid "Turkey"
6815
  msgstr ""
6816
 
6817
+ #: includes/core/class-builtin.php:1839
6818
  msgid "Turkmenistan"
6819
  msgstr ""
6820
 
6821
+ #: includes/core/class-builtin.php:1840
6822
  msgid "Turks and Caicos Islands"
6823
  msgstr ""
6824
 
6825
+ #: includes/core/class-builtin.php:1841
6826
  msgid "Tuvalu"
6827
  msgstr ""
6828
 
6829
+ #: includes/core/class-builtin.php:1842
6830
  msgid "Uganda"
6831
  msgstr ""
6832
 
6833
+ #: includes/core/class-builtin.php:1843
6834
  msgid "Ukraine"
6835
  msgstr ""
6836
 
6837
+ #: includes/core/class-builtin.php:1844
6838
  msgid "United Arab Emirates"
6839
  msgstr ""
6840
 
6841
+ #: includes/core/class-builtin.php:1845
6842
  msgid "United Kingdom"
6843
  msgstr ""
6844
 
6845
+ #: includes/core/class-builtin.php:1846
6846
  msgid "United States"
6847
  msgstr ""
6848
 
6849
+ #: includes/core/class-builtin.php:1847
6850
  msgid "United States Minor Outlying Islands"
6851
  msgstr ""
6852
 
6853
+ #: includes/core/class-builtin.php:1848
6854
  msgid "Uruguay"
6855
  msgstr ""
6856
 
6857
+ #: includes/core/class-builtin.php:1849
6858
  msgid "Uzbekistan"
6859
  msgstr ""
6860
 
6861
+ #: includes/core/class-builtin.php:1850
6862
  msgid "Vanuatu"
6863
  msgstr ""
6864
 
6865
+ #: includes/core/class-builtin.php:1851
6866
  msgid "Venezuela, Bolivarian Republic of"
6867
  msgstr ""
6868
 
6869
+ #: includes/core/class-builtin.php:1852
6870
  msgid "Viet Nam"
6871
  msgstr ""
6872
 
6873
+ #: includes/core/class-builtin.php:1853
6874
  msgid "Virgin Islands, British"
6875
  msgstr ""
6876
 
6877
+ #: includes/core/class-builtin.php:1854
6878
  msgid "Virgin Islands, U.S."
6879
  msgstr ""
6880
 
6881
+ #: includes/core/class-builtin.php:1855
6882
  msgid "Wallis and Futuna"
6883
  msgstr ""
6884
 
6885
+ #: includes/core/class-builtin.php:1856
6886
  msgid "Western Sahara"
6887
  msgstr ""
6888
 
6889
+ #: includes/core/class-builtin.php:1857
6890
  msgid "Yemen"
6891
  msgstr ""
6892
 
6893
+ #: includes/core/class-builtin.php:1858
6894
  msgid "Zambia"
6895
  msgstr ""
6896
 
6897
+ #: includes/core/class-builtin.php:1859
6898
  msgid "Zimbabwe"
6899
  msgstr ""
6900
 
6901
  #: includes/core/class-common.php:59 includes/um-short-functions.php:792
6902
+ #: includes/um-short-functions.php:802
6903
  msgid "Form"
6904
  msgstr ""
6905
 
6915
  msgid "You did not create any forms yet"
6916
  msgstr ""
6917
 
6918
+ #: includes/core/class-common.php:64 includes/core/class-common.php:94
6919
+ msgid "Nothing found in Trash"
6920
+ msgstr ""
6921
+
6922
  #: includes/core/class-common.php:65
6923
  msgid "Search Forms"
6924
  msgstr ""
6952
  msgstr ""
6953
 
6954
  #: includes/core/class-date-time.php:63
 
6955
  msgid "%s min"
6956
  msgid_plural "%s mins"
6957
  msgstr[0] ""
6958
  msgstr[1] ""
6959
 
6960
  #: includes/core/class-date-time.php:72
 
6961
  msgid "%s hr"
6962
  msgid_plural "%s hrs"
6963
  msgstr[0] ""
6964
  msgstr[1] ""
6965
 
6966
  #: includes/core/class-date-time.php:82
 
6967
  msgid "Yesterday at %s"
6968
  msgstr ""
6969
 
6970
  #: includes/core/class-date-time.php:84 includes/core/class-date-time.php:89
6971
  #: includes/core/class-date-time.php:93 includes/core/class-date-time.php:97
 
6972
  msgid "%s at %s"
6973
  msgstr ""
6974
 
6975
  #: includes/core/class-date-time.php:146
 
6976
  msgid "%s year old"
6977
  msgstr ""
6978
 
6979
  #: includes/core/class-date-time.php:149
 
6980
  msgid "%s years old"
6981
  msgstr ""
6982
 
6984
  msgid "Less than 1 year old"
6985
  msgstr ""
6986
 
6987
+ #: includes/core/class-fields.php:1342 includes/core/um-actions-account.php:436
 
 
 
 
 
 
 
 
 
 
6988
  #: templates/message.php:6
 
6989
  msgid "%s"
6990
  msgstr ""
6991
 
6992
+ #: includes/core/class-fields.php:1363
6993
  msgid "Custom Field"
6994
  msgstr ""
6995
 
6996
+ #: includes/core/class-fields.php:1706
6997
  msgid "Please upload a valid image!"
6998
  msgstr ""
6999
 
7000
+ #: includes/core/class-fields.php:1720
7001
  msgid "Sorry this is not a valid image."
7002
  msgstr ""
7003
 
7004
+ #: includes/core/class-fields.php:1723
7005
  msgid "This image is too large!"
7006
  msgstr ""
7007
 
7008
+ #: includes/core/class-fields.php:1726
7009
  msgid "This image is too small!"
7010
  msgstr ""
7011
 
7012
+ #: includes/core/class-fields.php:1729
7013
  msgid "You can only upload one image"
7014
  msgstr ""
7015
 
7016
+ #: includes/core/class-fields.php:1761
7017
  msgid "Sorry this is not a valid file."
7018
  msgstr ""
7019
 
7020
+ #: includes/core/class-fields.php:1764
7021
  msgid "This file is too large!"
7022
  msgstr ""
7023
 
7024
+ #: includes/core/class-fields.php:1767
7025
  msgid "This file is too small!"
7026
  msgstr ""
7027
 
7028
+ #: includes/core/class-fields.php:1770
7029
  msgid "You can only upload one file"
7030
  msgstr ""
7031
 
7032
+ #: includes/core/class-fields.php:2299
7033
  msgid "Current Password"
7034
  msgstr ""
7035
 
7036
+ #: includes/core/class-fields.php:2330
7037
  msgid "New Password"
7038
  msgstr ""
7039
 
7040
+ #: includes/core/class-fields.php:2369
 
7041
  msgid "Confirm %s"
7042
  msgstr ""
7043
 
7044
+ #: includes/core/class-fields.php:2618
7045
  msgid "Upload Photo"
7046
  msgstr ""
7047
 
7048
+ #: includes/core/class-fields.php:2640 includes/core/class-fields.php:2664
7049
+ #: includes/core/um-actions-profile.php:997
7050
  msgid "Change photo"
7051
  msgstr ""
7052
 
7053
+ #: includes/core/class-fields.php:2664 includes/core/class-fields.php:2763
7054
  msgid "Processing..."
7055
  msgstr ""
7056
 
7057
+ #: includes/core/class-fields.php:2688
7058
  msgid "Upload File"
7059
  msgstr ""
7060
 
7061
+ #: includes/core/class-fields.php:2730 includes/core/um-filters-fields.php:267
7062
  msgid "This file has been removed."
7063
  msgstr ""
7064
 
7065
+ #: includes/core/class-fields.php:2733
7066
  msgid "Change file"
7067
  msgstr ""
7068
 
7069
+ #: includes/core/class-fields.php:2763
7070
  msgid "Save"
7071
  msgstr ""
7072
 
7073
+ #: includes/core/class-fields.php:4298
 
7074
  msgid ""
7075
  "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
7076
  "information!"
7077
  msgstr ""
7078
 
7079
+ #: includes/core/class-fields.php:4300
7080
  msgid "This user has not added any information to their profile yet."
7081
  msgstr ""
7082
 
7117
  msgid "A theme or plugin compatibility issue"
7118
  msgstr ""
7119
 
7120
+ #: includes/core/class-files.php:1291
7121
  msgid "Original size"
7122
  msgstr ""
7123
 
 
 
 
 
 
7124
  #: includes/core/class-login.php:78 includes/core/class-register.php:71
7125
  msgid "Invalid Nonce."
7126
  msgstr ""
7191
  msgid "<strong>Age:</strong>&nbsp;{min_range} - {max_range} years old"
7192
  msgstr ""
7193
 
7194
+ #: includes/core/class-member-directory.php:2130
7195
+ #: includes/core/class-member-directory.php:2174
7196
+ #: includes/core/um-actions-profile.php:1319
7197
+ #: includes/core/um-actions-profile.php:1350
7198
  msgid "Edit Profile"
7199
  msgstr ""
7200
 
7201
+ #: includes/core/class-member-directory.php:2180
7202
+ #: includes/core/um-actions-profile.php:1351
7203
  msgid "My Account"
7204
  msgstr ""
7205
 
7221
  msgid "You must enter a new password"
7222
  msgstr ""
7223
 
7224
+ #: includes/core/class-password.php:545 includes/core/um-actions-account.php:75
7225
  msgid "Your password must contain at least 8 characters"
7226
  msgstr ""
7227
 
7228
+ #: includes/core/class-password.php:549 includes/core/um-actions-account.php:79
7229
  msgid "Your password must contain less than 30 characters"
7230
  msgstr ""
7231
 
7232
+ #: includes/core/class-password.php:553 includes/core/um-actions-account.php:83
7233
+ #: includes/core/um-actions-form.php:536
7234
  msgid ""
7235
  "Your password must contain at least one lowercase letter, one capital letter "
7236
  "and one number"
7240
  msgid "You must confirm your new password"
7241
  msgstr ""
7242
 
7243
+ #: includes/core/class-password.php:563 includes/core/um-actions-form.php:545
7244
  msgid "Your passwords do not match"
7245
  msgstr ""
7246
 
7247
+ #: includes/core/class-permalinks.php:188
7248
  msgid "This activation link is expired or have already been used."
7249
  msgstr ""
7250
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7251
  #: includes/core/class-profile.php:100
7252
  msgid "Anyone"
7253
  msgstr ""
7294
  msgid "Default Template"
7295
  msgstr ""
7296
 
7297
+ #: includes/core/class-uploader.php:691
7298
  msgid "Your image is invalid!"
7299
  msgstr ""
7300
 
7301
+ #: includes/core/class-uploader.php:733
7302
  msgid "This media type is not recognized."
7303
  msgstr ""
7304
 
7305
+ #: includes/core/class-uploader.php:781
7306
  msgid "Your image is invalid or too large!"
7307
  msgstr ""
7308
 
7309
+ #: includes/core/class-uploader.php:787 includes/core/class-uploader.php:789
 
7310
  msgid "Your photo is too small. It must be at least %spx wide."
7311
  msgstr ""
7312
 
7313
+ #: includes/core/class-uploader.php:842
7314
  msgid "This file type is not recognized."
7315
  msgstr ""
7316
 
7387
  msgid "Invalid query!"
7388
  msgstr ""
7389
 
7390
+ #: includes/core/um-actions-account.php:15
7391
  msgid "Are you hacking? Please try again!"
7392
  msgstr ""
7393
 
7394
  #: includes/core/um-actions-account.php:26
7395
+ #: includes/core/um-actions-account.php:129
7396
  msgid "You must enter your password"
7397
  msgstr ""
7398
 
7399
  #: includes/core/um-actions-account.php:29
7400
+ #: includes/core/um-actions-account.php:58
7401
+ #: includes/core/um-actions-account.php:62
7402
+ #: includes/core/um-actions-account.php:132
7403
  msgid "This is not your password"
7404
  msgstr ""
7405
 
7406
+ #: includes/core/um-actions-account.php:45
7407
+ msgid "Password is required"
7408
+ msgstr ""
7409
+
7410
+ #: includes/core/um-actions-account.php:50
7411
+ msgid "Password confirmation is required"
7412
+ msgstr ""
7413
+
7414
+ #: includes/core/um-actions-account.php:69
7415
  msgid "Your new password does not match"
7416
  msgstr ""
7417
 
7418
+ #: includes/core/um-actions-account.php:99
7419
  msgid "Your username is invalid"
7420
  msgstr ""
7421
 
7422
+ #: includes/core/um-actions-account.php:104
7423
  msgid "You must provide your first name"
7424
  msgstr ""
7425
 
7426
+ #: includes/core/um-actions-account.php:108
7427
  msgid "You must provide your last name"
7428
  msgstr ""
7429
 
7430
+ #: includes/core/um-actions-account.php:114
7431
  msgid "You must provide your e-mail"
7432
  msgstr ""
7433
 
7434
+ #: includes/core/um-actions-account.php:118
7435
  msgid "Please provide a valid e-mail"
7436
  msgstr ""
7437
 
7438
+ #: includes/core/um-actions-account.php:122
7439
  msgid "Email already linked to another account"
7440
  msgstr ""
7441
 
7442
+ #: includes/core/um-actions-account.php:452
7443
  msgid "Select what email notifications do you want to receive"
7444
  msgstr ""
7445
 
7446
+ #: includes/core/um-actions-account.php:510
7447
  msgid "Download your data"
7448
  msgstr ""
7449
 
7450
+ #: includes/core/um-actions-account.php:512
7451
  msgid ""
7452
  "You can request a file with the information that we believe is most relevant "
7453
  "and useful to you."
7454
  msgstr ""
7455
 
7456
+ #: includes/core/um-actions-account.php:530
7457
  msgid "You could download your previous data:"
7458
  msgstr ""
7459
 
7460
+ #: includes/core/um-actions-account.php:531
7461
  msgid "download personal data"
7462
  msgstr ""
7463
 
7464
+ #: includes/core/um-actions-account.php:532
7465
  msgid "You could send a new request for an export of personal your data."
7466
  msgstr ""
7467
 
7468
+ #: includes/core/um-actions-account.php:548
7469
+ #: includes/core/um-actions-account.php:622
7470
+ #: includes/core/um-actions-account.php:699
7471
  msgid ""
7472
  "A confirmation email has been sent to your email. Click the link within the "
7473
  "email to confirm your export request."
7474
  msgstr ""
7475
 
7476
+ #: includes/core/um-actions-account.php:550
7477
  msgid ""
7478
  "The administrator has not yet approved downloading the data. Please expect "
7479
  "an email with a link to your data."
7480
  msgstr ""
7481
 
7482
+ #: includes/core/um-actions-account.php:555
7483
  msgid ""
7484
  "Enter your current password to confirm a new export of your personal data."
7485
  msgstr ""
7486
 
7487
+ #: includes/core/um-actions-account.php:560
7488
+ #: includes/core/um-actions-account.php:632
7489
  msgid "You must enter a password"
7490
  msgstr ""
7491
 
7492
+ #: includes/core/um-actions-account.php:568
7493
+ msgid "To export of your personal data, click the button below."
7494
+ msgstr ""
7495
+
7496
+ #: includes/core/um-actions-account.php:575
7497
  msgid "Request data"
7498
  msgstr ""
7499
 
7500
+ #: includes/core/um-actions-account.php:584
7501
  msgid "Erase of your data"
7502
  msgstr ""
7503
 
7504
+ #: includes/core/um-actions-account.php:586
7505
  msgid "You can request erasing of the data that we have about you."
7506
  msgstr ""
7507
 
7508
+ #: includes/core/um-actions-account.php:605
7509
  msgid "Your personal data has been deleted."
7510
  msgstr ""
7511
 
7512
+ #: includes/core/um-actions-account.php:606
7513
  msgid "You could send a new request for deleting your personal data."
7514
  msgstr ""
7515
 
7516
+ #: includes/core/um-actions-account.php:624
7517
  msgid ""
7518
  "The administrator has not yet approved deleting your data. Please expect an "
7519
  "email with a link to your data."
7520
  msgstr ""
7521
 
7522
+ #: includes/core/um-actions-account.php:629
7523
  msgid ""
7524
  "Enter your current password to confirm the erasure of your personal data."
7525
  msgstr ""
7526
 
7527
+ #: includes/core/um-actions-account.php:640
7528
+ msgid "Require erasure of your personal data, click on the button below."
7529
+ msgstr ""
7530
+
7531
+ #: includes/core/um-actions-account.php:647
7532
  msgid "Request data erase"
7533
  msgstr ""
7534
 
7535
+ #: includes/core/um-actions-account.php:661
7536
+ #: includes/core/um-actions-account.php:692
7537
  msgid "Wrong request."
7538
  msgstr ""
7539
 
7540
+ #: includes/core/um-actions-account.php:672
7541
+ #: includes/core/um-actions-account.php:679
7542
  msgid "The password you entered is incorrect."
7543
  msgstr ""
7544
 
7565
  msgstr ""
7566
 
7567
  #: includes/core/um-actions-form.php:447 includes/core/um-actions-form.php:448
 
7568
  msgid "%s - wrong conditions."
7569
  msgstr ""
7570
 
7571
  #: includes/core/um-actions-form.php:456 includes/core/um-actions-form.php:460
7572
  #: includes/core/um-actions-form.php:464
 
7573
  msgid "%s is required."
7574
  msgstr ""
7575
 
7582
  msgstr ""
7583
 
7584
  #: includes/core/um-actions-form.php:501
 
7585
  msgid "%s is required"
7586
  msgstr ""
7587
 
7588
  #: includes/core/um-actions-form.php:510
 
7589
  msgid "You are only allowed to enter a maximum of %s words"
7590
  msgstr ""
7591
 
7592
  #: includes/core/um-actions-form.php:516
 
7593
  msgid "Your %s must contain at least %s characters"
7594
  msgstr ""
7595
 
7596
  #: includes/core/um-actions-form.php:522
 
7597
  msgid "Your %s must contain less than %s characters"
7598
  msgstr ""
7599
 
7600
+ #: includes/core/um-actions-form.php:529
7601
  msgid "You can not use HTML tags here"
7602
  msgstr ""
7603
 
7604
+ #: includes/core/um-actions-form.php:542
7605
  msgid "Please confirm your password"
7606
  msgstr ""
7607
 
7608
+ #: includes/core/um-actions-form.php:551
 
7609
  msgid "Please select at least %s choices"
7610
  msgstr ""
7611
 
7612
+ #: includes/core/um-actions-form.php:557
 
7613
  msgid "You can only select up to %s choices"
7614
  msgstr ""
7615
 
7616
+ #: includes/core/um-actions-form.php:563
 
7617
  msgid "Minimum number limit is %s"
7618
  msgstr ""
7619
 
7620
+ #: includes/core/um-actions-form.php:569
 
7621
  msgid "Maximum number limit is %s"
7622
  msgstr ""
7623
 
7624
+ #: includes/core/um-actions-form.php:605
7625
  msgid "Please enter numbers only in this field"
7626
  msgstr ""
7627
 
7628
+ #: includes/core/um-actions-form.php:611
7629
  msgid "Please enter a valid phone number"
7630
  msgstr ""
7631
 
7632
+ #: includes/core/um-actions-form.php:617 includes/core/um-actions-form.php:623
7633
+ #: includes/core/um-actions-form.php:629 includes/core/um-actions-form.php:635
7634
+ #: includes/core/um-actions-form.php:648 includes/core/um-actions-form.php:654
7635
+ #: includes/core/um-actions-form.php:660
 
7636
  msgid "Please enter a valid %s username or profile URL"
7637
  msgstr ""
7638
 
7639
+ #: includes/core/um-actions-form.php:642
 
7640
  msgid "Please enter a valid %s profile URL"
7641
  msgstr ""
7642
 
7643
+ #: includes/core/um-actions-form.php:666
7644
  msgid "Please enter a valid URL"
7645
  msgstr ""
7646
 
7647
+ #: includes/core/um-actions-form.php:673 includes/core/um-actions-form.php:687
7648
  msgid "You must provide a username"
7649
  msgstr ""
7650
 
7651
+ #: includes/core/um-actions-form.php:675 includes/core/um-actions-form.php:689
7652
  msgid "Your username is already taken"
7653
  msgstr ""
7654
 
7655
+ #: includes/core/um-actions-form.php:677
7656
  msgid "Username cannot be an email"
7657
  msgstr ""
7658
 
7659
+ #: includes/core/um-actions-form.php:679 includes/core/um-actions-form.php:693
7660
  msgid "Your username contains invalid characters"
7661
  msgstr ""
7662
 
7663
+ #: includes/core/um-actions-form.php:691 includes/core/um-actions-form.php:713
7664
+ #: includes/core/um-actions-form.php:715 includes/core/um-actions-form.php:727
7665
+ #: includes/core/um-actions-form.php:734
7666
  msgid "This email is already linked to an existing account"
7667
  msgstr ""
7668
 
7669
+ #: includes/core/um-actions-form.php:711
7670
  msgid "You must provide your email"
7671
  msgstr ""
7672
 
7673
+ #: includes/core/um-actions-form.php:717 includes/core/um-actions-form.php:725
7674
+ #: includes/core/um-actions-form.php:749
7675
  msgid "This is not a valid email"
7676
  msgstr ""
7677
 
7678
+ #: includes/core/um-actions-form.php:719
7679
  msgid "Your email contains invalid characters"
7680
  msgstr ""
7681
 
7682
+ #: includes/core/um-actions-form.php:768
7683
  msgid "You must provide a unique value"
7684
  msgstr ""
7685
 
7686
+ #: includes/core/um-actions-form.php:778
7687
  msgid "You must provide alphabetic letters"
7688
  msgstr ""
7689
 
7690
+ #: includes/core/um-actions-form.php:790
7691
  msgid "You must provide lowercase letters."
7692
  msgstr ""
7693
 
7694
+ #: includes/core/um-actions-form.php:808
 
7695
  msgid "Your user description must contain less than %s characters"
7696
  msgstr ""
7697
 
 
 
 
 
7698
  #: includes/core/um-actions-login.php:18
7699
  msgid "Please enter your username or email"
7700
  msgstr ""
7780
  msgstr ""
7781
 
7782
  #: includes/core/um-actions-profile.php:350
 
7783
  msgid "Your choosed %s"
7784
  msgstr ""
7785
 
7786
+ #: includes/core/um-actions-profile.php:690
7787
+ #: includes/core/um-actions-profile.php:700
7788
  msgid "Profile photo"
7789
  msgstr ""
7790
 
7791
+ #: includes/core/um-actions-profile.php:761
7792
+ #: includes/core/um-actions-profile.php:777
7793
+ #: includes/core/um-actions-profile.php:848
7794
  msgid "Upload a cover photo"
7795
  msgstr ""
7796
 
7797
+ #: includes/core/um-actions-profile.php:761
7798
  msgid "Change cover photo"
7799
  msgstr ""
7800
 
7801
+ #: includes/core/um-actions-profile.php:965
7802
  msgid "Upload photo"
7803
  msgstr ""
7804
 
7805
+ #: includes/core/um-actions-profile.php:998
7806
  msgid "Remove photo"
7807
  msgstr ""
7808
 
7809
+ #: includes/core/um-actions-profile.php:1161
7810
  msgid "Tell us a bit about yourself..."
7811
  msgstr ""
7812
 
7813
+ #: includes/core/um-actions-profile.php:1176
 
7814
  msgid "This user account status is %s"
7815
  msgstr ""
7816
 
7823
  msgstr ""
7824
 
7825
  #: includes/core/um-filters-fields.php:124
 
7826
  msgid "Joined %s"
7827
  msgstr ""
7828
 
7830
  msgid "Untitled photo"
7831
  msgstr ""
7832
 
7833
+ #: includes/core/um-filters-profile.php:141
7834
+ #: includes/core/um-filters-profile.php:162
7835
  msgid "max"
7836
  msgstr ""
7837
 
7851
  msgid "Login as this user"
7852
  msgstr ""
7853
 
7854
+ #: includes/um-short-functions.php:752 includes/um-short-functions.php:987
7855
  msgid "date submitted"
7856
  msgstr ""
7857
 
7858
+ #: includes/um-short-functions.php:758 includes/um-short-functions.php:956
7859
+ #: includes/um-short-functions.php:993
7860
  msgid "(empty)"
7861
  msgstr ""
7862
 
7864
  msgid "Date Submitted"
7865
  msgstr ""
7866
 
7867
+ #: includes/um-short-functions.php:945
 
7868
  msgid "%s - Form ID#: %s"
7869
  msgstr ""
7870
 
7917
  msgstr ""
7918
 
7919
  #: templates/members.php:253
 
7920
  msgid "Change to %s"
7921
  msgstr ""
7922
 
7940
  msgid "Clear all"
7941
  msgstr ""
7942
 
7943
+ #: templates/modal/um_view_photo.php:6
7944
+ msgid "Close view photo modal"
7945
+ msgstr ""
7946
+
7947
+ #: templates/password-change.php:47
7948
  msgid "Change my password"
7949
  msgstr ""
7950
 
7974
  msgstr ""
7975
 
7976
  #: templates/profile/comments-single.php:14
 
7977
  msgid "On <a href=\"%1$s\">%2$s</a>"
7978
  msgstr ""
7979
 
7990
  msgstr ""
7991
 
7992
  #: templates/profile/posts-single.php:23
 
7993
  msgid "%s ago"
7994
  msgstr ""
7995
 
8002
  msgstr ""
8003
 
8004
  #: templates/profile/posts-single.php:34
 
8005
  msgid "%s comments"
8006
  msgstr ""
8007
 
8021
  msgid "This user has not created any posts."
8022
  msgstr ""
8023
 
8024
+ #: assets/js/um-profile.js:128
8025
+ msgid "Are you sure that you want to delete this user?"
 
8026
  msgstr ""
8027
 
8028
+ #: assets/js/um-raty.js:612
8029
+ msgid "Cancel this rating!"
 
8030
  msgstr ""
8031
 
8032
+ #: assets/js/um-raty.js:623
8033
+ msgid "Not rated yet!"
 
8034
  msgstr ""
8035
 
8036
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:20
8037
+ msgid "UM Form"
8038
+ msgstr ""
8039
+
8040
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:21
8041
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:150
8042
+ msgid "Choose display form"
8043
+ msgstr ""
8044
+
8045
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:86
8046
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:213
8047
+ msgid "Loading Forms"
8048
+ msgstr ""
8049
+
8050
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:94
8051
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:221
8052
+ msgid "No Posts"
8053
+ msgstr ""
8054
+
8055
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:114
8056
+ msgid "Select Forms"
8057
+ msgstr ""
8058
+
8059
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:149
8060
+ msgid "UM Member Directories"
8061
+ msgstr ""
8062
+
8063
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:241
8064
+ msgid "Select Directories"
8065
+ msgstr ""
8066
+
8067
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:275
8068
+ msgid "UM Password Reset"
8069
+ msgstr ""
8070
+
8071
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:318
8072
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:319
8073
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:379
8074
+ msgid "UM Account"
8075
+ msgstr ""
8076
+
8077
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:387
8078
+ msgid "Account Tab"
8079
+ msgstr ""
8080
+
8081
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:392
8082
+ msgid "Select Tab"
8083
+ msgstr ""
8084
+
8085
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:454
8086
+ msgid "User Profile Wall"
8087
+ msgstr ""
8088
+
8089
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:455
8090
+ msgid "Used on the user profile page"
8091
+ msgstr ""
8092
+
8093
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:525
8094
+ msgid "Select User"
8095
+ msgstr ""
8096
+
8097
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:541
8098
+ msgid "Hashtag"
8099
+ msgstr ""
8100
+
8101
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:558
8102
+ msgid "Shortcode Attribute"
8103
+ msgstr ""
8104
+
8105
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:563
8106
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:577
8107
+ msgid "Show the form on the wall?"
8108
+ msgstr ""
8109
+
8110
+ #: includes/admin/assets/js/um-admin-blocks.js:66
8111
+ msgid "UM access Controls"
8112
+ msgstr ""
8113
+
8114
+ #: includes/admin/assets/js/um-admin-blocks.js:71
8115
+ msgid "Restrict access?"
8116
+ msgstr ""
8117
+
8118
+ #: includes/admin/assets/js/um-admin-blocks.js:128
8119
+ msgid "What roles can access this content?"
8120
+ msgstr ""
8121
+
8122
+ #: includes/admin/assets/js/um-admin-blocks.js:141
8123
+ msgid "Restriction Action"
8124
+ msgstr ""
8125
+
8126
+ #: includes/admin/assets/js/um-admin-blocks.js:145
8127
+ msgid "Hide block"
8128
+ msgstr ""
8129
+
8130
+ #: includes/admin/assets/js/um-admin-blocks.js:149
8131
+ msgid "Show global default message"
8132
+ msgstr ""
8133
+
8134
+ #: includes/admin/assets/js/um-admin-blocks.js:172
8135
+ msgid "Restriction Message Content"
8136
+ msgstr ""
8137
+
8138
+ #: includes/admin/assets/js/um-admin-forms.js:22
8139
+ msgid "Upgrade Process Started..."
8140
+ msgstr ""
8141
+
8142
+ #: includes/admin/assets/js/um-admin-forms.js:54
8143
+ msgid "Getting metadata"
8144
+ msgstr ""
8145
+
8146
+ #: includes/admin/assets/js/um-admin-forms.js:66
8147
+ msgid " metadata rows..."
8148
+ msgstr ""
8149
+
8150
+ #: includes/admin/assets/js/um-admin-forms.js:132
8151
+ msgid "Wrong AJAX response..."
8152
+ msgstr ""
8153
+
8154
+ #: includes/admin/assets/js/um-admin-forms.js:133
8155
+ #: includes/admin/assets/js/um-admin-forms.js:139
8156
+ msgid "Your upgrade was crashed, please contact with support"
8157
+ msgstr ""
8158
+
8159
+ #: includes/admin/assets/js/um-admin-forms.js:138
8160
+ msgid "Something went wrong with AJAX request..."
8161
+ msgstr ""
8162
+
8163
+ #: includes/admin/assets/js/um-admin-settings.js:24
8164
+ msgid "Are sure, maybe some settings not saved"
8165
  msgstr ""
languages/ultimate-member.pot ADDED
@@ -0,0 +1,7944 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2020 Ultimate Member
2
+ # This file is distributed under the same license as the Ultimate Member plugin.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Ultimate Member 2.1.7\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-member\n"
7
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-08-12T16:16:16+03:00\n"
13
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.4.0\n"
15
+ "X-Domain: ultimate-member\n"
16
+
17
+ #. Plugin Name of the plugin
18
+ #. Author of the plugin
19
+ #: includes/admin/core/class-admin-menu.php:147
20
+ #: includes/core/class-user.php:712
21
+ msgid "Ultimate Member"
22
+ msgstr ""
23
+
24
+ #. Plugin URI of the plugin
25
+ #. Author URI of the plugin
26
+ msgid "http://ultimatemember.com/"
27
+ msgstr ""
28
+
29
+ #. Description of the plugin
30
+ msgid "The easiest way to create powerful online communities and beautiful user profiles with WordPress"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-admin-functions.php:35
34
+ #: includes/class-functions.php:55
35
+ msgid "Wrong Nonce"
36
+ msgstr ""
37
+
38
+ #: includes/admin/class-admin.php:197
39
+ msgid "Duplicate of %s"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-admin.php:317
43
+ msgid "Docs"
44
+ msgstr ""
45
+
46
+ #: includes/admin/class-admin.php:318
47
+ #: includes/admin/core/class-admin-settings.php:1424
48
+ msgid "Settings"
49
+ msgstr ""
50
+
51
+ #: includes/admin/class-admin.php:391
52
+ #: includes/admin/class-admin.php:394
53
+ msgid "Form updated."
54
+ msgstr ""
55
+
56
+ #: includes/admin/class-admin.php:392
57
+ msgid "Custom field updated."
58
+ msgstr ""
59
+
60
+ #: includes/admin/class-admin.php:393
61
+ msgid "Custom field deleted."
62
+ msgstr ""
63
+
64
+ #: includes/admin/class-admin.php:395
65
+ msgid "Form restored to revision."
66
+ msgstr ""
67
+
68
+ #: includes/admin/class-admin.php:396
69
+ msgid "Form created."
70
+ msgstr ""
71
+
72
+ #: includes/admin/class-admin.php:397
73
+ msgid "Form saved."
74
+ msgstr ""
75
+
76
+ #: includes/admin/class-admin.php:398
77
+ msgid "Form submitted."
78
+ msgstr ""
79
+
80
+ #: includes/admin/class-admin.php:399
81
+ msgid "Form scheduled."
82
+ msgstr ""
83
+
84
+ #: includes/admin/class-admin.php:400
85
+ msgid "Form draft updated."
86
+ msgstr ""
87
+
88
+ #: includes/admin/core/class-admin-builder.php:213
89
+ #: includes/admin/core/class-admin-builder.php:215
90
+ msgid "Here you can setup conditional logic to show/hide this field based on specific fields value or conditions"
91
+ msgstr ""
92
+
93
+ #: includes/admin/core/class-admin-builder.php:230
94
+ msgid "Add new rule"
95
+ msgstr ""
96
+
97
+ #: includes/admin/core/class-admin-builder.php:231
98
+ msgid "Reset all rules"
99
+ msgstr ""
100
+
101
+ #: includes/admin/core/class-admin-builder.php:284
102
+ #: includes/admin/core/class-admin-builder.php:604
103
+ #: includes/admin/core/class-admin-builder.php:763
104
+ #: includes/admin/core/class-admin-dragdrop.php:33
105
+ #: includes/admin/core/class-admin-menu.php:106
106
+ #: includes/core/class-fields.php:4565
107
+ msgid "Please login as administrator"
108
+ msgstr ""
109
+
110
+ #: includes/admin/core/class-admin-builder.php:391
111
+ #: includes/admin/core/class-admin-builder.php:461
112
+ #: includes/admin/core/class-admin-dragdrop.php:165
113
+ msgid "Add Row"
114
+ msgstr ""
115
+
116
+ #: includes/admin/core/class-admin-builder.php:392
117
+ #: includes/admin/core/class-admin-builder.php:462
118
+ #: includes/admin/core/class-admin-dragdrop.php:166
119
+ msgid "Edit Row"
120
+ msgstr ""
121
+
122
+ #: includes/admin/core/class-admin-builder.php:465
123
+ #: includes/admin/core/class-admin-dragdrop.php:168
124
+ #: includes/admin/core/class-admin-dragdrop.php:183
125
+ #: includes/admin/core/class-admin-dragdrop.php:208
126
+ msgid "Delete Row"
127
+ msgstr ""
128
+
129
+ #: includes/admin/core/class-admin-builder.php:538
130
+ msgid "(no title)"
131
+ msgstr ""
132
+
133
+ #: includes/admin/core/class-admin-builder.php:543
134
+ #: includes/admin/core/list-tables/roles-list-table.php:339
135
+ msgid "Edit"
136
+ msgstr ""
137
+
138
+ #: includes/admin/core/class-admin-builder.php:545
139
+ #: includes/admin/core/class-admin-columns.php:102
140
+ msgid "Duplicate"
141
+ msgstr ""
142
+
143
+ #: includes/admin/core/class-admin-builder.php:549
144
+ msgid "Delete Group"
145
+ msgstr ""
146
+
147
+ #: includes/admin/core/class-admin-builder.php:552
148
+ #: includes/admin/core/class-admin-enqueue.php:497
149
+ #: includes/admin/core/list-tables/roles-list-table.php:342
150
+ #: includes/admin/core/list-tables/roles-list-table.php:410
151
+ msgid "Delete"
152
+ msgstr ""
153
+
154
+ #: includes/admin/core/class-admin-builder.php:829
155
+ msgid "Search Icons..."
156
+ msgstr ""
157
+
158
+ #: includes/admin/core/class-admin-builder.php:849
159
+ msgid "Setup New Field"
160
+ msgstr ""
161
+
162
+ #: includes/admin/core/class-admin-builder.php:866
163
+ msgid "Predefined Fields"
164
+ msgstr ""
165
+
166
+ #: includes/admin/core/class-admin-builder.php:878
167
+ #: includes/core/class-builtin.php:1363
168
+ msgid "None"
169
+ msgstr ""
170
+
171
+ #: includes/admin/core/class-admin-builder.php:883
172
+ msgid "Custom Fields"
173
+ msgstr ""
174
+
175
+ #: includes/admin/core/class-admin-builder.php:897
176
+ msgid "You did not create any custom fields"
177
+ msgstr ""
178
+
179
+ #: includes/admin/core/class-admin-builder.php:929
180
+ #: includes/admin/core/class-admin-builder.php:1003
181
+ msgid "This field type is not setup correcty."
182
+ msgstr ""
183
+
184
+ #: includes/admin/core/class-admin-builder.php:1174
185
+ #: includes/core/class-form.php:176
186
+ #: includes/core/class-form.php:396
187
+ #: includes/core/class-password.php:535
188
+ msgid "This is not possible for security reasons."
189
+ msgstr ""
190
+
191
+ #: includes/admin/core/class-admin-columns.php:50
192
+ msgid "Status"
193
+ msgstr ""
194
+
195
+ #: includes/admin/core/class-admin-columns.php:151
196
+ #: includes/admin/core/class-admin-metabox.php:2158
197
+ #: includes/admin/templates/role/role-edit.php:193
198
+ #: includes/widgets/class-um-search-widget.php:86
199
+ msgid "Title"
200
+ msgstr ""
201
+
202
+ #: includes/admin/core/class-admin-columns.php:152
203
+ msgid "ID"
204
+ msgstr ""
205
+
206
+ #: includes/admin/core/class-admin-columns.php:154
207
+ #: includes/admin/core/class-admin-metabox.php:812
208
+ #: includes/admin/core/class-admin-metabox.php:974
209
+ msgid "Shortcode"
210
+ msgstr ""
211
+
212
+ #: includes/admin/core/class-admin-columns.php:155
213
+ msgid "Date"
214
+ msgstr ""
215
+
216
+ #: includes/admin/core/class-admin-columns.php:186
217
+ #: includes/admin/core/class-admin-columns.php:219
218
+ #: includes/admin/core/class-admin-settings.php:731
219
+ #: includes/admin/core/list-tables/roles-list-table.php:371
220
+ #: includes/admin/core/list-tables/roles-list-table.php:379
221
+ #: includes/admin/templates/form/login_customize.php:16
222
+ #: includes/admin/templates/form/login_customize.php:64
223
+ #: includes/admin/templates/form/login_customize.php:83
224
+ #: includes/admin/templates/form/login_customize.php:94
225
+ #: includes/admin/templates/form/profile_customize.php:25
226
+ #: includes/admin/templates/form/profile_customize.php:91
227
+ #: includes/admin/templates/form/profile_customize.php:110
228
+ #: includes/admin/templates/form/profile_customize.php:145
229
+ #: includes/admin/templates/form/profile_customize.php:166
230
+ #: includes/admin/templates/form/profile_customize.php:177
231
+ #: includes/admin/templates/form/profile_customize.php:188
232
+ #: includes/admin/templates/form/profile_customize.php:199
233
+ #: includes/admin/templates/form/register_customize.php:23
234
+ #: includes/admin/templates/form/register_customize.php:79
235
+ #: includes/admin/templates/form/register_gdpr.php:26
236
+ #: includes/core/class-builtin.php:1144
237
+ #: includes/core/class-builtin.php:1163
238
+ #: includes/core/class-builtin.php:1179
239
+ #: includes/core/class-builtin.php:1182
240
+ #: includes/core/um-actions-account.php:289
241
+ msgid "No"
242
+ msgstr ""
243
+
244
+ #: includes/admin/core/class-admin-columns.php:186
245
+ #: includes/admin/core/class-admin-columns.php:219
246
+ #: includes/admin/core/class-admin-settings.php:732
247
+ #: includes/admin/core/list-tables/roles-list-table.php:371
248
+ #: includes/admin/core/list-tables/roles-list-table.php:379
249
+ #: includes/admin/core/packages/2.1.3-beta3/functions.php:75
250
+ #: includes/admin/core/packages/2.1.3-beta3/functions.php:76
251
+ #: includes/admin/templates/form/login_customize.php:17
252
+ #: includes/admin/templates/form/login_customize.php:65
253
+ #: includes/admin/templates/form/login_customize.php:84
254
+ #: includes/admin/templates/form/login_customize.php:95
255
+ #: includes/admin/templates/form/profile_customize.php:26
256
+ #: includes/admin/templates/form/profile_customize.php:92
257
+ #: includes/admin/templates/form/profile_customize.php:111
258
+ #: includes/admin/templates/form/profile_customize.php:146
259
+ #: includes/admin/templates/form/profile_customize.php:167
260
+ #: includes/admin/templates/form/profile_customize.php:178
261
+ #: includes/admin/templates/form/profile_customize.php:189
262
+ #: includes/admin/templates/form/profile_customize.php:200
263
+ #: includes/admin/templates/form/register_customize.php:24
264
+ #: includes/admin/templates/form/register_customize.php:80
265
+ #: includes/admin/templates/form/register_gdpr.php:27
266
+ #: includes/core/class-builtin.php:1145
267
+ #: includes/core/class-builtin.php:1164
268
+ #: includes/core/class-builtin.php:1181
269
+ #: includes/core/class-user.php:212
270
+ #: includes/core/class-user.php:213
271
+ #: includes/core/um-actions-account.php:284
272
+ msgid "Yes"
273
+ msgstr ""
274
+
275
+ #: includes/admin/core/class-admin-enqueue.php:192
276
+ msgid "e.g. Member Directory"
277
+ msgstr ""
278
+
279
+ #: includes/admin/core/class-admin-enqueue.php:194
280
+ msgid "e.g. New Registration Form"
281
+ msgstr ""
282
+
283
+ #: includes/admin/core/class-admin-enqueue.php:485
284
+ #: includes/core/class-builtin.php:706
285
+ #: includes/core/class-builtin.php:709
286
+ #: includes/core/class-builtin.php:1188
287
+ #: includes/core/class-builtin.php:1191
288
+ #: includes/core/um-actions-account.php:558
289
+ #: includes/core/um-actions-account.php:630
290
+ msgid "Password"
291
+ msgstr ""
292
+
293
+ #: includes/admin/core/class-admin-enqueue.php:489
294
+ #: includes/admin/core/class-admin-metabox.php:2279
295
+ #: includes/core/class-account.php:109
296
+ msgid "Privacy"
297
+ msgstr ""
298
+
299
+ #: includes/admin/core/class-admin-enqueue.php:493
300
+ #: includes/core/class-account.php:115
301
+ msgid "Notifications"
302
+ msgstr ""
303
+
304
+ #: includes/admin/core/class-admin-enqueue.php:547
305
+ msgid "Ultimate Member Blocks"
306
+ msgstr ""
307
+
308
+ #: includes/admin/core/class-admin-forms.php:318
309
+ #: includes/core/um-filters-fields.php:15
310
+ msgid "Required"
311
+ msgstr ""
312
+
313
+ #: includes/admin/core/class-admin-forms.php:526
314
+ #: includes/admin/core/class-admin-metabox.php:1448
315
+ #: includes/admin/core/class-admin-metabox.php:1476
316
+ msgid "Choose Icon"
317
+ msgstr ""
318
+
319
+ #: includes/admin/core/class-admin-forms.php:532
320
+ #: includes/admin/core/class-admin-metabox.php:1450
321
+ #: includes/admin/core/class-admin-metabox.php:1478
322
+ #: includes/admin/assets/js/um-admin-modal.js:415
323
+ #: includes/admin/assets/js/um-admin-modal.js:419
324
+ msgid "No Icon"
325
+ msgstr ""
326
+
327
+ #: includes/admin/core/class-admin-forms.php:893
328
+ #: includes/admin/core/class-admin-upgrade.php:255
329
+ msgid "Run"
330
+ msgstr ""
331
+
332
+ #: includes/admin/core/class-admin-forms.php:1033
333
+ #: includes/admin/core/class-admin-forms.php:1052
334
+ #: includes/admin/core/class-admin-forms.php:1178
335
+ #: includes/admin/core/class-admin-forms.php:1187
336
+ #: includes/admin/core/class-admin-forms.php:1427
337
+ #: includes/admin/core/class-admin-forms.php:1441
338
+ #: includes/admin/core/class-admin-forms.php:1537
339
+ #: includes/admin/core/class-admin-forms.php:1559
340
+ #: includes/admin/core/class-admin-notices.php:400
341
+ #: includes/core/um-actions-profile.php:765
342
+ #: includes/admin/assets/js/um-admin-forms.js:201
343
+ #: includes/admin/assets/js/um-admin-forms.js:266
344
+ #: includes/admin/assets/js/um-admin-forms.js:539
345
+ #: includes/admin/assets/js/um-admin-forms.js:573
346
+ msgid "Remove"
347
+ msgstr ""
348
+
349
+ #: includes/admin/core/class-admin-forms.php:1234
350
+ msgid "Select media"
351
+ msgstr ""
352
+
353
+ #: includes/admin/core/class-admin-forms.php:1257
354
+ #: includes/admin/assets/js/um-admin-forms.js:621
355
+ msgid "Select"
356
+ msgstr ""
357
+
358
+ #: includes/admin/core/class-admin-forms.php:1258
359
+ msgid "Clear"
360
+ msgstr ""
361
+
362
+ #: includes/admin/core/class-admin-forms.php:1538
363
+ #: includes/admin/core/class-admin-forms.php:1560
364
+ #: includes/admin/templates/directory/sorting.php:23
365
+ #: includes/admin/assets/js/um-admin-forms.js:203
366
+ msgid "Meta key"
367
+ msgstr ""
368
+
369
+ #: includes/admin/core/class-admin-forms.php:1539
370
+ #: includes/admin/core/class-admin-forms.php:1561
371
+ #: includes/admin/core/class-admin-metabox.php:2250
372
+ #: includes/admin/assets/js/um-admin-forms.js:204
373
+ msgid "Label"
374
+ msgstr ""
375
+
376
+ #: includes/admin/core/class-admin-gdpr.php:42
377
+ msgid "Privacy Policy"
378
+ msgstr ""
379
+
380
+ #: includes/admin/core/class-admin-gdpr.php:57
381
+ msgid "Account Status"
382
+ msgstr ""
383
+
384
+ #: includes/admin/core/class-admin-gdpr.php:58
385
+ msgid "Submitted data on Registration"
386
+ msgstr ""
387
+
388
+ #: includes/admin/core/class-admin-gdpr.php:59
389
+ msgid "Registration Form ID"
390
+ msgstr ""
391
+
392
+ #: includes/admin/core/class-admin-gdpr.php:60
393
+ msgid "Registration Timestamp"
394
+ msgstr ""
395
+
396
+ #: includes/admin/core/class-admin-gdpr.php:61
397
+ msgid "Registration Request"
398
+ msgstr ""
399
+
400
+ #: includes/admin/core/class-admin-gdpr.php:62
401
+ msgid "Registration Nonce"
402
+ msgstr ""
403
+
404
+ #: includes/admin/core/class-admin-gdpr.php:63
405
+ msgid "Registration HTTP referer"
406
+ msgstr ""
407
+
408
+ #: includes/admin/core/class-admin-gdpr.php:64
409
+ msgid "Community Role"
410
+ msgstr ""
411
+
412
+ #: includes/admin/core/class-admin-gdpr.php:65
413
+ msgid "Profile Slug \"Username\""
414
+ msgstr ""
415
+
416
+ #: includes/admin/core/class-admin-gdpr.php:66
417
+ msgid "Profile Slug \"First and Last Name with '.'\""
418
+ msgstr ""
419
+
420
+ #: includes/admin/core/class-admin-gdpr.php:67
421
+ msgid "Profile Slug \"First and Last Name with '-'\""
422
+ msgstr ""
423
+
424
+ #: includes/admin/core/class-admin-gdpr.php:68
425
+ msgid "Profile Slug \"First and Last Name with '+'\""
426
+ msgstr ""
427
+
428
+ #: includes/admin/core/class-admin-gdpr.php:69
429
+ msgid "Profile Slug \"User ID\""
430
+ msgstr ""
431
+
432
+ #: includes/admin/core/class-admin-gdpr.php:70
433
+ msgid "Last Login Timestamp"
434
+ msgstr ""
435
+
436
+ #: includes/admin/core/class-admin-gdpr.php:73
437
+ msgid "Private Content Post ID"
438
+ msgstr ""
439
+
440
+ #: includes/admin/core/class-admin-gdpr.php:76
441
+ msgid "Verified Account"
442
+ msgstr ""
443
+
444
+ #: includes/admin/core/class-admin-gdpr.php:79
445
+ msgid "Terms&Conditions Agreement"
446
+ msgstr ""
447
+
448
+ #: includes/admin/core/class-admin-gdpr.php:82
449
+ msgid "Privacy Policy Agreement"
450
+ msgstr ""
451
+
452
+ #: includes/admin/core/class-admin-gdpr.php:298
453
+ msgid "Your %s was unable to be removed at this time."
454
+ msgstr ""
455
+
456
+ #: includes/admin/core/class-admin-menu.php:65
457
+ msgid "Thanks :)"
458
+ msgstr ""
459
+
460
+ #: includes/admin/core/class-admin-menu.php:72
461
+ msgid "If you like Ultimate Member please consider leaving a %s review. It will help us to grow the plugin and make it more popular. Thank you."
462
+ msgstr ""
463
+
464
+ #: includes/admin/core/class-admin-menu.php:151
465
+ msgid "Dashboard"
466
+ msgstr ""
467
+
468
+ #: includes/admin/core/class-admin-menu.php:159
469
+ #: includes/admin/templates/gdpr.php:7
470
+ #: includes/core/class-common.php:58
471
+ msgid "Forms"
472
+ msgstr ""
473
+
474
+ #: includes/admin/core/class-admin-menu.php:161
475
+ #: includes/admin/core/list-tables/roles-list-table.php:483
476
+ msgid "User Roles"
477
+ msgstr ""
478
+
479
+ #: includes/admin/core/class-admin-menu.php:164
480
+ #: includes/core/class-common.php:88
481
+ msgid "Member Directories"
482
+ msgstr ""
483
+
484
+ #: includes/admin/core/class-admin-menu.php:206
485
+ #: includes/admin/core/class-admin-settings.php:1280
486
+ msgid "Extensions"
487
+ msgstr ""
488
+
489
+ #: includes/admin/core/class-admin-menu.php:219
490
+ msgid "Users Overview"
491
+ msgstr ""
492
+
493
+ #: includes/admin/core/class-admin-menu.php:221
494
+ msgid "Latest from our blog"
495
+ msgstr ""
496
+
497
+ #: includes/admin/core/class-admin-menu.php:223
498
+ msgid "Purge Temp Files"
499
+ msgstr ""
500
+
501
+ #: includes/admin/core/class-admin-menu.php:225
502
+ msgid "User Cache"
503
+ msgstr ""
504
+
505
+ #: includes/admin/core/class-admin-menu.php:230
506
+ msgid "Upgrade's Manual Request"
507
+ msgstr ""
508
+
509
+ #: includes/admin/core/class-admin-metabox.php:233
510
+ msgid "UM Content Restriction"
511
+ msgstr ""
512
+
513
+ #: includes/admin/core/class-admin-metabox.php:385
514
+ #: includes/admin/core/class-admin-metabox.php:536
515
+ #: includes/admin/templates/access/restrict_content.php:53
516
+ msgid "Restrict access to this content?"
517
+ msgstr ""
518
+
519
+ #: includes/admin/core/class-admin-metabox.php:386
520
+ #: includes/admin/core/class-admin-metabox.php:393
521
+ #: includes/admin/core/class-admin-metabox.php:406
522
+ #: includes/admin/core/class-admin-metabox.php:537
523
+ #: includes/admin/core/class-admin-metabox.php:545
524
+ #: includes/admin/core/class-admin-metabox.php:559
525
+ #: includes/admin/templates/access/restrict_content.php:54
526
+ #: includes/admin/templates/access/restrict_content.php:61
527
+ #: includes/admin/templates/access/restrict_content.php:74
528
+ msgid "Activate content restriction for this post"
529
+ msgstr ""
530
+
531
+ #: includes/admin/core/class-admin-metabox.php:392
532
+ #: includes/admin/core/class-admin-metabox.php:544
533
+ #: includes/admin/templates/access/restrict_content.php:60
534
+ #: includes/admin/assets/js/um-admin-blocks.js:91
535
+ msgid "Who can access this content?"
536
+ msgstr ""
537
+
538
+ #: includes/admin/core/class-admin-metabox.php:396
539
+ #: includes/admin/core/class-admin-metabox.php:548
540
+ #: includes/admin/core/class-admin-metabox.php:2269
541
+ #: includes/admin/core/class-admin-navmenu.php:81
542
+ #: includes/admin/core/class-admin-navmenu.php:242
543
+ #: includes/admin/templates/access/restrict_content.php:64
544
+ #: includes/core/class-builtin.php:670
545
+ #: includes/admin/assets/js/um-admin-blocks.js:95
546
+ msgid "Everyone"
547
+ msgstr ""
548
+
549
+ #: includes/admin/core/class-admin-metabox.php:397
550
+ #: includes/admin/core/class-admin-metabox.php:549
551
+ #: includes/admin/templates/access/restrict_content.php:65
552
+ #: includes/admin/assets/js/um-admin-blocks.js:103
553
+ msgid "Logged out users"
554
+ msgstr ""
555
+
556
+ #: includes/admin/core/class-admin-metabox.php:398
557
+ #: includes/admin/core/class-admin-metabox.php:550
558
+ #: includes/admin/templates/access/restrict_content.php:66
559
+ #: includes/admin/assets/js/um-admin-blocks.js:99
560
+ msgid "Logged in users"
561
+ msgstr ""
562
+
563
+ #: includes/admin/core/class-admin-metabox.php:405
564
+ #: includes/admin/core/class-admin-metabox.php:558
565
+ #: includes/admin/templates/access/restrict_content.php:73
566
+ msgid "Select which roles can access this content"
567
+ msgstr ""
568
+
569
+ #: includes/admin/core/class-admin-metabox.php:414
570
+ #: includes/admin/core/class-admin-metabox.php:569
571
+ #: includes/admin/templates/access/restrict_content.php:83
572
+ msgid "What happens when users without access tries to view the content?"
573
+ msgstr ""
574
+
575
+ #: includes/admin/core/class-admin-metabox.php:415
576
+ #: includes/admin/core/class-admin-metabox.php:427
577
+ #: includes/admin/core/class-admin-metabox.php:570
578
+ #: includes/admin/core/class-admin-metabox.php:583
579
+ #: includes/admin/templates/access/restrict_content.php:84
580
+ #: includes/admin/templates/access/restrict_content.php:96
581
+ msgid "Action when users without access tries to view the content"
582
+ msgstr ""
583
+
584
+ #: includes/admin/core/class-admin-metabox.php:418
585
+ #: includes/admin/core/class-admin-metabox.php:573
586
+ #: includes/admin/templates/access/restrict_content.php:87
587
+ msgid "Show access restricted message"
588
+ msgstr ""
589
+
590
+ #: includes/admin/core/class-admin-metabox.php:419
591
+ #: includes/admin/core/class-admin-metabox.php:574
592
+ #: includes/admin/templates/access/restrict_content.php:88
593
+ msgid "Redirect user"
594
+ msgstr ""
595
+
596
+ #: includes/admin/core/class-admin-metabox.php:426
597
+ #: includes/admin/core/class-admin-metabox.php:582
598
+ #: includes/admin/templates/access/restrict_content.php:95
599
+ msgid "Would you like to use the global default message or apply a custom message to this content?"
600
+ msgstr ""
601
+
602
+ #: includes/admin/core/class-admin-metabox.php:430
603
+ #: includes/admin/core/class-admin-metabox.php:586
604
+ #: includes/admin/templates/access/restrict_content.php:99
605
+ msgid "Global default message (default)"
606
+ msgstr ""
607
+
608
+ #: includes/admin/core/class-admin-metabox.php:431
609
+ #: includes/admin/core/class-admin-metabox.php:587
610
+ #: includes/admin/templates/access/restrict_content.php:100
611
+ msgid "Custom message"
612
+ msgstr ""
613
+
614
+ #: includes/admin/core/class-admin-metabox.php:438
615
+ #: includes/admin/core/class-admin-metabox.php:595
616
+ #: includes/admin/templates/access/restrict_content.php:107
617
+ msgid "Custom Restrict Content message"
618
+ msgstr ""
619
+
620
+ #: includes/admin/core/class-admin-metabox.php:439
621
+ #: includes/admin/core/class-admin-metabox.php:459
622
+ #: includes/admin/core/class-admin-metabox.php:596
623
+ #: includes/admin/core/class-admin-metabox.php:618
624
+ #: includes/admin/templates/access/restrict_content.php:108
625
+ #: includes/admin/templates/access/restrict_content.php:128
626
+ msgid "Changed global restrict message"
627
+ msgstr ""
628
+
629
+ #: includes/admin/core/class-admin-metabox.php:446
630
+ #: includes/admin/core/class-admin-metabox.php:604
631
+ #: includes/admin/templates/access/restrict_content.php:115
632
+ msgid "Where should users be redirected to?"
633
+ msgstr ""
634
+
635
+ #: includes/admin/core/class-admin-metabox.php:447
636
+ #: includes/admin/core/class-admin-metabox.php:605
637
+ #: includes/admin/templates/access/restrict_content.php:116
638
+ msgid "Select redirect to page when user hasn't access to content"
639
+ msgstr ""
640
+
641
+ #: includes/admin/core/class-admin-metabox.php:451
642
+ #: includes/admin/core/class-admin-metabox.php:609
643
+ #: includes/admin/templates/access/restrict_content.php:120
644
+ msgid "Login page"
645
+ msgstr ""
646
+
647
+ #: includes/admin/core/class-admin-metabox.php:452
648
+ #: includes/admin/core/class-admin-metabox.php:610
649
+ #: includes/admin/templates/access/restrict_content.php:121
650
+ msgid "Custom URL"
651
+ msgstr ""
652
+
653
+ #: includes/admin/core/class-admin-metabox.php:458
654
+ #: includes/admin/core/class-admin-metabox.php:617
655
+ #: includes/admin/templates/access/restrict_content.php:127
656
+ msgid "Redirect URL"
657
+ msgstr ""
658
+
659
+ #: includes/admin/core/class-admin-metabox.php:466
660
+ #: includes/admin/core/class-admin-metabox.php:626
661
+ #: includes/admin/templates/access/restrict_content.php:135
662
+ msgid "Hide from queries"
663
+ msgstr ""
664
+
665
+ #: includes/admin/core/class-admin-metabox.php:467
666
+ #: includes/admin/core/class-admin-metabox.php:627
667
+ #: includes/admin/templates/access/restrict_content.php:136
668
+ msgid "Hide this content from archives, RSS feeds etc for users who do not have permission to view this content"
669
+ msgstr ""
670
+
671
+ #: includes/admin/core/class-admin-metabox.php:807
672
+ msgid "General Options"
673
+ msgstr ""
674
+
675
+ #: includes/admin/core/class-admin-metabox.php:808
676
+ msgid "Sorting"
677
+ msgstr ""
678
+
679
+ #: includes/admin/core/class-admin-metabox.php:809
680
+ msgid "Profile Card"
681
+ msgstr ""
682
+
683
+ #: includes/admin/core/class-admin-metabox.php:810
684
+ msgid "Search Options"
685
+ msgstr ""
686
+
687
+ #: includes/admin/core/class-admin-metabox.php:811
688
+ msgid "Results &amp; Pagination"
689
+ msgstr ""
690
+
691
+ #: includes/admin/core/class-admin-metabox.php:813
692
+ msgid "Styling: General"
693
+ msgstr ""
694
+
695
+ #: includes/admin/core/class-admin-metabox.php:826
696
+ msgid "Administrative Permissions"
697
+ msgstr ""
698
+
699
+ #: includes/admin/core/class-admin-metabox.php:834
700
+ msgid "General Permissions"
701
+ msgstr ""
702
+
703
+ #: includes/admin/core/class-admin-metabox.php:842
704
+ msgid "Profile Access"
705
+ msgstr ""
706
+
707
+ #: includes/admin/core/class-admin-metabox.php:853
708
+ msgid "Homepage Options"
709
+ msgstr ""
710
+
711
+ #: includes/admin/core/class-admin-metabox.php:864
712
+ msgid "Registration Options"
713
+ msgstr ""
714
+
715
+ #: includes/admin/core/class-admin-metabox.php:872
716
+ msgid "Login Options"
717
+ msgstr ""
718
+
719
+ #: includes/admin/core/class-admin-metabox.php:880
720
+ msgid "Logout Options"
721
+ msgstr ""
722
+
723
+ #: includes/admin/core/class-admin-metabox.php:888
724
+ msgid "Delete Options"
725
+ msgstr ""
726
+
727
+ #: includes/admin/core/class-admin-metabox.php:896
728
+ msgid "Publish"
729
+ msgstr ""
730
+
731
+ #: includes/admin/core/class-admin-metabox.php:945
732
+ msgid "WP Capabilities"
733
+ msgstr ""
734
+
735
+ #: includes/admin/core/class-admin-metabox.php:972
736
+ msgid "Select Form Type"
737
+ msgstr ""
738
+
739
+ #: includes/admin/core/class-admin-metabox.php:973
740
+ msgid "Form Builder"
741
+ msgstr ""
742
+
743
+ #: includes/admin/core/class-admin-metabox.php:976
744
+ #: includes/admin/core/class-admin-metabox.php:997
745
+ #: includes/admin/core/class-admin-metabox.php:1019
746
+ msgid "Customize this form"
747
+ msgstr ""
748
+
749
+ #: includes/admin/core/class-admin-metabox.php:998
750
+ msgid "User Meta"
751
+ msgstr ""
752
+
753
+ #: includes/admin/core/class-admin-metabox.php:1020
754
+ msgid "Options"
755
+ msgstr ""
756
+
757
+ #: includes/admin/core/class-admin-metabox.php:1072
758
+ msgid "Directory #%s"
759
+ msgstr ""
760
+
761
+ #: includes/admin/core/class-admin-metabox.php:1165
762
+ msgid "Form #%s"
763
+ msgstr ""
764
+
765
+ #: includes/admin/core/class-admin-metabox.php:1269
766
+ msgid "Visibility"
767
+ msgstr ""
768
+
769
+ #: includes/admin/core/class-admin-metabox.php:1269
770
+ msgid "Select where this field should appear. This option should only be changed on the profile form and allows you to show a field in one mode only (edit or view) or in both modes."
771
+ msgstr ""
772
+
773
+ #: includes/admin/core/class-admin-metabox.php:1271
774
+ msgid "View everywhere"
775
+ msgstr ""
776
+
777
+ #: includes/admin/core/class-admin-metabox.php:1272
778
+ msgid "Edit mode only"
779
+ msgstr ""
780
+
781
+ #: includes/admin/core/class-admin-metabox.php:1273
782
+ msgid "View mode only"
783
+ msgstr ""
784
+
785
+ #: includes/admin/core/class-admin-metabox.php:1378
786
+ msgid "Value"
787
+ msgstr ""
788
+
789
+ #: includes/admin/core/class-admin-metabox.php:1387
790
+ msgid "Validate"
791
+ msgstr ""
792
+
793
+ #: includes/admin/core/class-admin-metabox.php:1387
794
+ msgid "Does this field require a special validation"
795
+ msgstr ""
796
+
797
+ #: includes/admin/core/class-admin-metabox.php:1388
798
+ msgid "Select a validation type..."
799
+ msgstr ""
800
+
801
+ #: includes/admin/core/class-admin-metabox.php:1432
802
+ msgid "Custom Action"
803
+ msgstr ""
804
+
805
+ #: includes/admin/core/class-admin-metabox.php:1432
806
+ msgid "If you want to apply your custom validation, you can use action hooks to add custom validation. Please refer to documentation for further details."
807
+ msgstr ""
808
+
809
+ #: includes/admin/core/class-admin-metabox.php:1446
810
+ #: includes/admin/core/class-admin-metabox.php:1474
811
+ msgid "Icon"
812
+ msgstr ""
813
+
814
+ #: includes/admin/core/class-admin-metabox.php:1446
815
+ #: includes/admin/core/class-admin-metabox.php:1474
816
+ msgid "Select an icon to appear in the field. Leave blank if you do not want an icon to show in the field."
817
+ msgstr ""
818
+
819
+ #: includes/admin/core/class-admin-metabox.php:1501
820
+ msgid "CSS Class"
821
+ msgstr ""
822
+
823
+ #: includes/admin/core/class-admin-metabox.php:1501
824
+ msgid "Specify a custom CSS class to be applied to this element"
825
+ msgstr ""
826
+
827
+ #: includes/admin/core/class-admin-metabox.php:1511
828
+ msgid "Thickness (in pixels)"
829
+ msgstr ""
830
+
831
+ #: includes/admin/core/class-admin-metabox.php:1511
832
+ msgid "This is the width in pixels, e.g. 4 or 2, etc"
833
+ msgstr ""
834
+
835
+ #: includes/admin/core/class-admin-metabox.php:1521
836
+ msgid "Optional Text"
837
+ msgstr ""
838
+
839
+ #: includes/admin/core/class-admin-metabox.php:1521
840
+ msgid "Optional text to include with the divider"
841
+ msgstr ""
842
+
843
+ #: includes/admin/core/class-admin-metabox.php:1531
844
+ msgid "Padding"
845
+ msgstr ""
846
+
847
+ #: includes/admin/core/class-admin-metabox.php:1531
848
+ msgid "Set padding for this section"
849
+ msgstr ""
850
+
851
+ #: includes/admin/core/class-admin-metabox.php:1541
852
+ msgid "Margin"
853
+ msgstr ""
854
+
855
+ #: includes/admin/core/class-admin-metabox.php:1541
856
+ msgid "Set margin for this section"
857
+ msgstr ""
858
+
859
+ #: includes/admin/core/class-admin-metabox.php:1551
860
+ msgid "Border"
861
+ msgstr ""
862
+
863
+ #: includes/admin/core/class-admin-metabox.php:1551
864
+ msgid "Set border for this section"
865
+ msgstr ""
866
+
867
+ #: includes/admin/core/class-admin-metabox.php:1561
868
+ #: includes/admin/core/class-admin-metabox.php:1732
869
+ msgid "Style"
870
+ msgstr ""
871
+
872
+ #: includes/admin/core/class-admin-metabox.php:1561
873
+ msgid "Choose the border style"
874
+ msgstr ""
875
+
876
+ #: includes/admin/core/class-admin-metabox.php:1563
877
+ #: includes/admin/core/class-admin-metabox.php:1734
878
+ msgid "Solid"
879
+ msgstr ""
880
+
881
+ #: includes/admin/core/class-admin-metabox.php:1564
882
+ #: includes/admin/core/class-admin-metabox.php:1735
883
+ msgid "Dotted"
884
+ msgstr ""
885
+
886
+ #: includes/admin/core/class-admin-metabox.php:1565
887
+ #: includes/admin/core/class-admin-metabox.php:1736
888
+ msgid "Dashed"
889
+ msgstr ""
890
+
891
+ #: includes/admin/core/class-admin-metabox.php:1566
892
+ #: includes/admin/core/class-admin-metabox.php:1737
893
+ msgid "Double"
894
+ msgstr ""
895
+
896
+ #: includes/admin/core/class-admin-metabox.php:1576
897
+ msgid "Border Radius"
898
+ msgstr ""
899
+
900
+ #: includes/admin/core/class-admin-metabox.php:1576
901
+ msgid "Rounded corners can be applied by setting a pixels value here. e.g. 5px"
902
+ msgstr ""
903
+
904
+ #: includes/admin/core/class-admin-metabox.php:1586
905
+ msgid "Border Color"
906
+ msgstr ""
907
+
908
+ #: includes/admin/core/class-admin-metabox.php:1586
909
+ msgid "Give a color to this border"
910
+ msgstr ""
911
+
912
+ #: includes/admin/core/class-admin-metabox.php:1596
913
+ msgid "Enable Row Heading"
914
+ msgstr ""
915
+
916
+ #: includes/admin/core/class-admin-metabox.php:1596
917
+ msgid "Whether to enable a heading for this row"
918
+ msgstr ""
919
+
920
+ #: includes/admin/core/class-admin-metabox.php:1606
921
+ msgid "Heading Text"
922
+ msgstr ""
923
+
924
+ #: includes/admin/core/class-admin-metabox.php:1606
925
+ msgid "Enter the row heading text here"
926
+ msgstr ""
927
+
928
+ #: includes/admin/core/class-admin-metabox.php:1616
929
+ msgid "Background Color"
930
+ msgstr ""
931
+
932
+ #: includes/admin/core/class-admin-metabox.php:1616
933
+ msgid "This will be the background of entire section"
934
+ msgstr ""
935
+
936
+ #: includes/admin/core/class-admin-metabox.php:1626
937
+ msgid "Heading Background Color"
938
+ msgstr ""
939
+
940
+ #: includes/admin/core/class-admin-metabox.php:1626
941
+ msgid "This will be the background of the heading section"
942
+ msgstr ""
943
+
944
+ #: includes/admin/core/class-admin-metabox.php:1636
945
+ msgid "Heading Text Color"
946
+ msgstr ""
947
+
948
+ #: includes/admin/core/class-admin-metabox.php:1636
949
+ msgid "This will be the text color of heading part only"
950
+ msgstr ""
951
+
952
+ #: includes/admin/core/class-admin-metabox.php:1646
953
+ msgid "Text Color"
954
+ msgstr ""
955
+
956
+ #: includes/admin/core/class-admin-metabox.php:1646
957
+ msgid "This will be the text color of entire section"
958
+ msgstr ""
959
+
960
+ #: includes/admin/core/class-admin-metabox.php:1656
961
+ msgid "Icon Color"
962
+ msgstr ""
963
+
964
+ #: includes/admin/core/class-admin-metabox.php:1656
965
+ msgid "This will be the color of selected icon. By default It will be the same color as heading text color"
966
+ msgstr ""
967
+
968
+ #: includes/admin/core/class-admin-metabox.php:1666
969
+ msgid "Color"
970
+ msgstr ""
971
+
972
+ #: includes/admin/core/class-admin-metabox.php:1666
973
+ msgid "Select a color for this divider"
974
+ msgstr ""
975
+
976
+ #: includes/admin/core/class-admin-metabox.php:1676
977
+ msgid "URL Alt Text"
978
+ msgstr ""
979
+
980
+ #: includes/admin/core/class-admin-metabox.php:1676
981
+ msgid "Entering custom text here will replace the url with a text link"
982
+ msgstr ""
983
+
984
+ #: includes/admin/core/class-admin-metabox.php:1686
985
+ msgid "Link Target"
986
+ msgstr ""
987
+
988
+ #: includes/admin/core/class-admin-metabox.php:1686
989
+ msgid "Choose whether to open this link in same window or in a new window"
990
+ msgstr ""
991
+
992
+ #: includes/admin/core/class-admin-metabox.php:1688
993
+ msgid "Open in new window"
994
+ msgstr ""
995
+
996
+ #: includes/admin/core/class-admin-metabox.php:1689
997
+ msgid "Same window"
998
+ msgstr ""
999
+
1000
+ #: includes/admin/core/class-admin-metabox.php:1699
1001
+ msgid "SEO Follow"
1002
+ msgstr ""
1003
+
1004
+ #: includes/admin/core/class-admin-metabox.php:1699
1005
+ msgid "Whether to follow or nofollow this link by search engines"
1006
+ msgstr ""
1007
+
1008
+ #: includes/admin/core/class-admin-metabox.php:1701
1009
+ msgid "Follow"
1010
+ msgstr ""
1011
+
1012
+ #: includes/admin/core/class-admin-metabox.php:1702
1013
+ msgid "No-Follow"
1014
+ msgstr ""
1015
+
1016
+ #: includes/admin/core/class-admin-metabox.php:1712
1017
+ msgid "Force strong password?"
1018
+ msgstr ""
1019
+
1020
+ #: includes/admin/core/class-admin-metabox.php:1712
1021
+ msgid "Turn on to force users to create a strong password (A combination of one lowercase letter, one uppercase letter, and one number). If turned on this option is only applied to register forms and not to login forms."
1022
+ msgstr ""
1023
+
1024
+ #: includes/admin/core/class-admin-metabox.php:1722
1025
+ msgid "Automatically add a confirm password field?"
1026
+ msgstr ""
1027
+
1028
+ #: includes/admin/core/class-admin-metabox.php:1722
1029
+ msgid "Turn on to add a confirm password field. If turned on the confirm password field will only show on register forms and not on login forms."
1030
+ msgstr ""
1031
+
1032
+ #: includes/admin/core/class-admin-metabox.php:1732
1033
+ msgid "This is the line-style of divider"
1034
+ msgstr ""
1035
+
1036
+ #: includes/admin/core/class-admin-metabox.php:1748
1037
+ msgid "Time Intervals (in minutes)"
1038
+ msgstr ""
1039
+
1040
+ #: includes/admin/core/class-admin-metabox.php:1748
1041
+ msgid "Choose the minutes interval between each time in the time picker."
1042
+ msgstr ""
1043
+
1044
+ #: includes/admin/core/class-admin-metabox.php:1749
1045
+ msgid "e.g. 30, 60, 120"
1046
+ msgstr ""
1047
+
1048
+ #: includes/admin/core/class-admin-metabox.php:1761
1049
+ msgid "Date User-Friendly Format"
1050
+ msgstr ""
1051
+
1052
+ #: includes/admin/core/class-admin-metabox.php:1761
1053
+ msgid "The display format of the date which is visible to user."
1054
+ msgstr ""
1055
+
1056
+ #: includes/admin/core/class-admin-metabox.php:1772
1057
+ msgid "Time Format"
1058
+ msgstr ""
1059
+
1060
+ #: includes/admin/core/class-admin-metabox.php:1772
1061
+ msgid "Choose the displayed time-format for this field"
1062
+ msgstr ""
1063
+
1064
+ #: includes/admin/core/class-admin-metabox.php:1774
1065
+ #: includes/admin/core/class-admin-metabox.php:1775
1066
+ msgid "( 12-hr format )"
1067
+ msgstr ""
1068
+
1069
+ #: includes/admin/core/class-admin-metabox.php:1776
1070
+ msgid "( 24-hr format )"
1071
+ msgstr ""
1072
+
1073
+ #: includes/admin/core/class-admin-metabox.php:1787
1074
+ msgid "Use custom Date format"
1075
+ msgstr ""
1076
+
1077
+ #: includes/admin/core/class-admin-metabox.php:1787
1078
+ msgid "This option overrides \"Date User-Friendly Format\" option. See https://www.php.net/manual/en/function.date.php"
1079
+ msgstr ""
1080
+
1081
+ #: includes/admin/core/class-admin-metabox.php:1797
1082
+ msgid "Displayed Date Format"
1083
+ msgstr ""
1084
+
1085
+ #: includes/admin/core/class-admin-metabox.php:1797
1086
+ msgid "Whether you wish to show the date in full or only show the years e.g. 25 Years"
1087
+ msgstr ""
1088
+
1089
+ #: includes/admin/core/class-admin-metabox.php:1799
1090
+ msgid "Show full date"
1091
+ msgstr ""
1092
+
1093
+ #: includes/admin/core/class-admin-metabox.php:1800
1094
+ msgid "Show years only"
1095
+ msgstr ""
1096
+
1097
+ #: includes/admin/core/class-admin-metabox.php:1816
1098
+ msgid "Disable specific weekdays"
1099
+ msgstr ""
1100
+
1101
+ #: includes/admin/core/class-admin-metabox.php:1816
1102
+ msgid "Disable specific week days from being available for selection in this date picker"
1103
+ msgstr ""
1104
+
1105
+ #: includes/admin/core/class-admin-metabox.php:1818
1106
+ msgid "Sunday"
1107
+ msgstr ""
1108
+
1109
+ #: includes/admin/core/class-admin-metabox.php:1819
1110
+ msgid "Monday"
1111
+ msgstr ""
1112
+
1113
+ #: includes/admin/core/class-admin-metabox.php:1820
1114
+ msgid "Tuesday"
1115
+ msgstr ""
1116
+
1117
+ #: includes/admin/core/class-admin-metabox.php:1821
1118
+ msgid "Wednesday"
1119
+ msgstr ""
1120
+
1121
+ #: includes/admin/core/class-admin-metabox.php:1822
1122
+ msgid "Thursday"
1123
+ msgstr ""
1124
+
1125
+ #: includes/admin/core/class-admin-metabox.php:1823
1126
+ msgid "Friday"
1127
+ msgstr ""
1128
+
1129
+ #: includes/admin/core/class-admin-metabox.php:1824
1130
+ msgid "Saturday"
1131
+ msgstr ""
1132
+
1133
+ #: includes/admin/core/class-admin-metabox.php:1834
1134
+ msgid "Number of Years to pick from"
1135
+ msgstr ""
1136
+
1137
+ #: includes/admin/core/class-admin-metabox.php:1834
1138
+ msgid "Number of years available for the date selection. Default to last 50 years"
1139
+ msgstr ""
1140
+
1141
+ #: includes/admin/core/class-admin-metabox.php:1844
1142
+ msgid "Years Selection"
1143
+ msgstr ""
1144
+
1145
+ #: includes/admin/core/class-admin-metabox.php:1844
1146
+ msgid "This decides which years should be shown relative to today date"
1147
+ msgstr ""
1148
+
1149
+ #: includes/admin/core/class-admin-metabox.php:1846
1150
+ msgid "Equal years before / after today"
1151
+ msgstr ""
1152
+
1153
+ #: includes/admin/core/class-admin-metabox.php:1847
1154
+ msgid "Past years only"
1155
+ msgstr ""
1156
+
1157
+ #: includes/admin/core/class-admin-metabox.php:1848
1158
+ msgid "Future years only"
1159
+ msgstr ""
1160
+
1161
+ #: includes/admin/core/class-admin-metabox.php:1858
1162
+ msgid "Date Range Start"
1163
+ msgstr ""
1164
+
1165
+ #: includes/admin/core/class-admin-metabox.php:1858
1166
+ msgid "Set the minimum date/day in range in the format YYYY/MM/DD"
1167
+ msgstr ""
1168
+
1169
+ #: includes/admin/core/class-admin-metabox.php:1859
1170
+ #: includes/admin/core/class-admin-metabox.php:1869
1171
+ msgid "YYYY/MM/DD"
1172
+ msgstr ""
1173
+
1174
+ #: includes/admin/core/class-admin-metabox.php:1868
1175
+ msgid "Date Range End"
1176
+ msgstr ""
1177
+
1178
+ #: includes/admin/core/class-admin-metabox.php:1868
1179
+ msgid "Set the maximum date/day in range in the format YYYY/MM/DD"
1180
+ msgstr ""
1181
+
1182
+ #: includes/admin/core/class-admin-metabox.php:1878
1183
+ msgid "Set Date Range"
1184
+ msgstr ""
1185
+
1186
+ #: includes/admin/core/class-admin-metabox.php:1878
1187
+ msgid "Whether to show a specific number of years or specify a date range to be available for the date picker."
1188
+ msgstr ""
1189
+
1190
+ #: includes/admin/core/class-admin-metabox.php:1880
1191
+ msgid "Fixed Number of Years"
1192
+ msgstr ""
1193
+
1194
+ #: includes/admin/core/class-admin-metabox.php:1881
1195
+ msgid "Specific Date Range"
1196
+ msgstr ""
1197
+
1198
+ #: includes/admin/core/class-admin-metabox.php:1894
1199
+ msgid "Enter Shortcode"
1200
+ msgstr ""
1201
+
1202
+ #: includes/admin/core/class-admin-metabox.php:1894
1203
+ msgid "Enter the shortcode in the following textarea and it will be displayed on the fields"
1204
+ msgstr ""
1205
+
1206
+ #: includes/admin/core/class-admin-metabox.php:1895
1207
+ msgid "e.g. [my_custom_shortcode]"
1208
+ msgstr ""
1209
+
1210
+ #: includes/admin/core/class-admin-metabox.php:1904
1211
+ msgid "Content Editor"
1212
+ msgstr ""
1213
+
1214
+ #: includes/admin/core/class-admin-metabox.php:1904
1215
+ msgid "Edit the content of this field here"
1216
+ msgstr ""
1217
+
1218
+ #: includes/admin/core/class-admin-metabox.php:1917
1219
+ msgid "Crop Feature"
1220
+ msgstr ""
1221
+
1222
+ #: includes/admin/core/class-admin-metabox.php:1917
1223
+ msgid "Enable/disable crop feature for this image upload and define ratio"
1224
+ msgstr ""
1225
+
1226
+ #: includes/admin/core/class-admin-metabox.php:1919
1227
+ msgid "Turn Off (Default)"
1228
+ msgstr ""
1229
+
1230
+ #: includes/admin/core/class-admin-metabox.php:1920
1231
+ msgid "Crop and force 1:1 ratio"
1232
+ msgstr ""
1233
+
1234
+ #: includes/admin/core/class-admin-metabox.php:1921
1235
+ msgid "Crop and force user-defined ratio"
1236
+ msgstr ""
1237
+
1238
+ #: includes/admin/core/class-admin-metabox.php:1938
1239
+ msgid "Allowed Image Types"
1240
+ msgstr ""
1241
+
1242
+ #: includes/admin/core/class-admin-metabox.php:1938
1243
+ #: includes/admin/core/class-admin-metabox.php:1956
1244
+ msgid "Select the image types that you want to allow to be uploaded via this field."
1245
+ msgstr ""
1246
+
1247
+ #: includes/admin/core/class-admin-metabox.php:1956
1248
+ msgid "Allowed File Types"
1249
+ msgstr ""
1250
+
1251
+ #: includes/admin/core/class-admin-metabox.php:1973
1252
+ msgid "Drag &amp; Drop Photo"
1253
+ msgstr ""
1254
+
1255
+ #: includes/admin/core/class-admin-metabox.php:1976
1256
+ msgid "Drag &amp; Drop File"
1257
+ msgstr ""
1258
+
1259
+ #: includes/admin/core/class-admin-metabox.php:1981
1260
+ #: includes/admin/core/class-admin-metabox.php:2001
1261
+ msgid "Upload Box Text"
1262
+ msgstr ""
1263
+
1264
+ #: includes/admin/core/class-admin-metabox.php:1981
1265
+ msgid "This is the headline that appears in the upload box for this field"
1266
+ msgstr ""
1267
+
1268
+ #: includes/admin/core/class-admin-metabox.php:1991
1269
+ msgid "Additional Instructions Text"
1270
+ msgstr ""
1271
+
1272
+ #: includes/admin/core/class-admin-metabox.php:1991
1273
+ msgid "If you need to add information or secondary line below the headline of upload box, enter it here"
1274
+ msgstr ""
1275
+
1276
+ #: includes/admin/core/class-admin-metabox.php:2001
1277
+ msgid "The text that appears on the button. e.g. Upload"
1278
+ msgstr ""
1279
+
1280
+ #: includes/admin/core/class-admin-metabox.php:2002
1281
+ #: includes/core/class-fields.php:1717
1282
+ #: includes/core/class-fields.php:1758
1283
+ #: includes/core/class-fields.php:2608
1284
+ #: includes/core/class-fields.php:2683
1285
+ msgid "Upload"
1286
+ msgstr ""
1287
+
1288
+ #: includes/admin/core/class-admin-metabox.php:2011
1289
+ msgid "Maximum Size in bytes"
1290
+ msgstr ""
1291
+
1292
+ #: includes/admin/core/class-admin-metabox.php:2011
1293
+ msgid "The maximum size for image that can be uploaded through this field. Leave empty for unlimited size."
1294
+ msgstr ""
1295
+
1296
+ #: includes/admin/core/class-admin-metabox.php:2021
1297
+ msgid "Textarea Height"
1298
+ msgstr ""
1299
+
1300
+ #: includes/admin/core/class-admin-metabox.php:2021
1301
+ msgid "The height of textarea in pixels. Default is 100 pixels"
1302
+ msgstr ""
1303
+
1304
+ #: includes/admin/core/class-admin-metabox.php:2031
1305
+ msgid "Spacing"
1306
+ msgstr ""
1307
+
1308
+ #: includes/admin/core/class-admin-metabox.php:2031
1309
+ msgid "This is the required spacing in pixels. e.g. 20px"
1310
+ msgstr ""
1311
+
1312
+ #: includes/admin/core/class-admin-metabox.php:2041
1313
+ msgid "Allow multiple selections"
1314
+ msgstr ""
1315
+
1316
+ #: includes/admin/core/class-admin-metabox.php:2041
1317
+ msgid "Enable/disable multiple selections for this field"
1318
+ msgstr ""
1319
+
1320
+ #: includes/admin/core/class-admin-metabox.php:2051
1321
+ msgid "Maximum number of selections"
1322
+ msgstr ""
1323
+
1324
+ #: includes/admin/core/class-admin-metabox.php:2051
1325
+ msgid "Enter a number here to force a maximum number of selections by user for this field"
1326
+ msgstr ""
1327
+
1328
+ #: includes/admin/core/class-admin-metabox.php:2061
1329
+ msgid "Minimum number of selections"
1330
+ msgstr ""
1331
+
1332
+ #: includes/admin/core/class-admin-metabox.php:2061
1333
+ msgid "Enter a number here to force a minimum number of selections by user for this field"
1334
+ msgstr ""
1335
+
1336
+ #: includes/admin/core/class-admin-metabox.php:2071
1337
+ msgid "Maximum number of entries"
1338
+ msgstr ""
1339
+
1340
+ #: includes/admin/core/class-admin-metabox.php:2071
1341
+ msgid "This is the max number of entries the user can add via field group."
1342
+ msgstr ""
1343
+
1344
+ #: includes/admin/core/class-admin-metabox.php:2081
1345
+ msgid "Maximum allowed words"
1346
+ msgstr ""
1347
+
1348
+ #: includes/admin/core/class-admin-metabox.php:2081
1349
+ msgid "If you want to enable a maximum number of words to be input in this textarea. Leave empty to disable this setting"
1350
+ msgstr ""
1351
+
1352
+ #: includes/admin/core/class-admin-metabox.php:2091
1353
+ msgid "Minimum Number"
1354
+ msgstr ""
1355
+
1356
+ #: includes/admin/core/class-admin-metabox.php:2091
1357
+ msgid "Minimum number that can be entered in this field"
1358
+ msgstr ""
1359
+
1360
+ #: includes/admin/core/class-admin-metabox.php:2101
1361
+ msgid "Maximum Number"
1362
+ msgstr ""
1363
+
1364
+ #: includes/admin/core/class-admin-metabox.php:2101
1365
+ msgid "Maximum number that can be entered in this field"
1366
+ msgstr ""
1367
+
1368
+ #: includes/admin/core/class-admin-metabox.php:2111
1369
+ msgid "Minimum length"
1370
+ msgstr ""
1371
+
1372
+ #: includes/admin/core/class-admin-metabox.php:2111
1373
+ msgid "If you want to enable a minimum number of characters to be input in this field. Leave empty to disable this setting"
1374
+ msgstr ""
1375
+
1376
+ #: includes/admin/core/class-admin-metabox.php:2121
1377
+ msgid "Maximum length"
1378
+ msgstr ""
1379
+
1380
+ #: includes/admin/core/class-admin-metabox.php:2121
1381
+ msgid "If you want to enable a maximum number of characters to be input in this field. Leave empty to disable this setting"
1382
+ msgstr ""
1383
+
1384
+ #: includes/admin/core/class-admin-metabox.php:2131
1385
+ msgid "Does this textarea accept HTML?"
1386
+ msgstr ""
1387
+
1388
+ #: includes/admin/core/class-admin-metabox.php:2131
1389
+ msgid "Turn on/off HTML tags for this textarea"
1390
+ msgstr ""
1391
+
1392
+ #: includes/admin/core/class-admin-metabox.php:2148
1393
+ msgid "Edit Choices"
1394
+ msgstr ""
1395
+
1396
+ #: includes/admin/core/class-admin-metabox.php:2148
1397
+ msgid "Enter one choice per line. This will represent the available choices or selections available for user."
1398
+ msgstr ""
1399
+
1400
+ #: includes/admin/core/class-admin-metabox.php:2158
1401
+ msgid "This is the title of the field for your reference in the backend. The title will not appear on the front-end of your website."
1402
+ msgstr ""
1403
+
1404
+ #: includes/admin/core/class-admin-metabox.php:2169
1405
+ msgid "Unique ID"
1406
+ msgstr ""
1407
+
1408
+ #: includes/admin/core/class-admin-metabox.php:2183
1409
+ #: includes/admin/core/class-admin-metabox.php:2189
1410
+ msgid "Meta Key"
1411
+ msgstr ""
1412
+
1413
+ #: includes/admin/core/class-admin-metabox.php:2183
1414
+ msgid "The meta key cannot be changed for duplicated fields or when editing an existing field. If you require a different meta key please create a new field."
1415
+ msgstr ""
1416
+
1417
+ #: includes/admin/core/class-admin-metabox.php:2189
1418
+ msgid "A meta key is required to store the entered info in this field in the database. The meta key should be unique to this field and be written in lowercase with an underscore ( _ ) separating words e.g country_list or job_title"
1419
+ msgstr ""
1420
+
1421
+ #: includes/admin/core/class-admin-metabox.php:2202
1422
+ msgid "Help Text"
1423
+ msgstr ""
1424
+
1425
+ #: includes/admin/core/class-admin-metabox.php:2202
1426
+ msgid "This is the text that appears in a tooltip when a user hovers over the info icon. Help text is useful for providing users with more information about what they should enter in the field. Leave blank if no help text is needed for field."
1427
+ msgstr ""
1428
+
1429
+ #: includes/admin/core/class-admin-metabox.php:2214
1430
+ msgid "Default Text"
1431
+ msgstr ""
1432
+
1433
+ #: includes/admin/core/class-admin-metabox.php:2214
1434
+ msgid "Text to display by default in this field"
1435
+ msgstr ""
1436
+
1437
+ #: includes/admin/core/class-admin-metabox.php:2220
1438
+ msgid "Default Date"
1439
+ msgstr ""
1440
+
1441
+ #: includes/admin/core/class-admin-metabox.php:2220
1442
+ #: includes/admin/core/class-admin-metabox.php:2226
1443
+ msgid "You may use all PHP compatible date formats such as: 2020-02-02, 02/02/2020, yesterday, today, tomorrow, next monday, first day of next month, +3 day"
1444
+ msgstr ""
1445
+
1446
+ #: includes/admin/core/class-admin-metabox.php:2226
1447
+ msgid "Default Time"
1448
+ msgstr ""
1449
+
1450
+ #: includes/admin/core/class-admin-metabox.php:2232
1451
+ msgid "Default Rating"
1452
+ msgstr ""
1453
+
1454
+ #: includes/admin/core/class-admin-metabox.php:2232
1455
+ msgid "If you wish the rating field to be prefilled with a number of stars, enter it here."
1456
+ msgstr ""
1457
+
1458
+ #: includes/admin/core/class-admin-metabox.php:2238
1459
+ msgid "Default Value"
1460
+ msgstr ""
1461
+
1462
+ #: includes/admin/core/class-admin-metabox.php:2238
1463
+ msgid "This option allows you to pre-fill the field with a default value prior to the user entering a value in the field. Leave blank to have no default value"
1464
+ msgstr ""
1465
+
1466
+ #: includes/admin/core/class-admin-metabox.php:2250
1467
+ msgid "The field label is the text that appears above the field on your front-end form. Leave blank to not show a label above field."
1468
+ msgstr ""
1469
+
1470
+ #: includes/admin/core/class-admin-metabox.php:2260
1471
+ msgid "Placeholder"
1472
+ msgstr ""
1473
+
1474
+ #: includes/admin/core/class-admin-metabox.php:2260
1475
+ msgid "This is the text that appears within the field e.g please enter your email address. Leave blank to not show any placeholder text."
1476
+ msgstr ""
1477
+
1478
+ #: includes/admin/core/class-admin-metabox.php:2270
1479
+ #: includes/class-config.php:134
1480
+ #: includes/class-config.php:794
1481
+ msgid "Members"
1482
+ msgstr ""
1483
+
1484
+ #: includes/admin/core/class-admin-metabox.php:2271
1485
+ msgid "Only visible to profile owner and admins"
1486
+ msgstr ""
1487
+
1488
+ #: includes/admin/core/class-admin-metabox.php:2272
1489
+ msgid "Only visible to profile owner and specific roles"
1490
+ msgstr ""
1491
+
1492
+ #: includes/admin/core/class-admin-metabox.php:2273
1493
+ msgid "Only specific member roles"
1494
+ msgstr ""
1495
+
1496
+ #: includes/admin/core/class-admin-metabox.php:2279
1497
+ msgid "Field privacy allows you to select who can view this field on the front-end. The site admin can view all fields regardless of the option set here."
1498
+ msgstr ""
1499
+
1500
+ #: includes/admin/core/class-admin-metabox.php:2302
1501
+ msgid "Select member roles"
1502
+ msgstr ""
1503
+
1504
+ #: includes/admin/core/class-admin-metabox.php:2302
1505
+ msgid "Select the member roles that can view this field on the front-end."
1506
+ msgstr ""
1507
+
1508
+ #: includes/admin/core/class-admin-metabox.php:2328
1509
+ msgid "Is this field required?"
1510
+ msgstr ""
1511
+
1512
+ #: includes/admin/core/class-admin-metabox.php:2328
1513
+ msgid "This option allows you to set whether the field must be filled in before the form can be processed."
1514
+ msgstr ""
1515
+
1516
+ #: includes/admin/core/class-admin-metabox.php:2342
1517
+ msgid "Can user edit this field?"
1518
+ msgstr ""
1519
+
1520
+ #: includes/admin/core/class-admin-metabox.php:2342
1521
+ msgid "This option allows you to set whether or not the user can edit the information in this field."
1522
+ msgstr ""
1523
+
1524
+ #: includes/admin/core/class-admin-metabox.php:2355
1525
+ msgid "Rating System"
1526
+ msgstr ""
1527
+
1528
+ #: includes/admin/core/class-admin-metabox.php:2355
1529
+ msgid "Choose whether you want a 5-stars or 10-stars ratings based here."
1530
+ msgstr ""
1531
+
1532
+ #: includes/admin/core/class-admin-metabox.php:2357
1533
+ msgid "5 stars rating system"
1534
+ msgstr ""
1535
+
1536
+ #: includes/admin/core/class-admin-metabox.php:2358
1537
+ msgid "10 stars rating system"
1538
+ msgstr ""
1539
+
1540
+ #: includes/admin/core/class-admin-metabox.php:2368
1541
+ msgid "Choices Callback"
1542
+ msgstr ""
1543
+
1544
+ #: includes/admin/core/class-admin-metabox.php:2368
1545
+ msgid "Add a callback source to retrieve choices."
1546
+ msgstr ""
1547
+
1548
+ #: includes/admin/core/class-admin-metabox.php:2379
1549
+ msgid "Parent Option"
1550
+ msgstr ""
1551
+
1552
+ #: includes/admin/core/class-admin-metabox.php:2379
1553
+ msgid "Dynamically populates the option based from selected parent option."
1554
+ msgstr ""
1555
+
1556
+ #: includes/admin/core/class-admin-metabox.php:2381
1557
+ msgid "No Selected"
1558
+ msgstr ""
1559
+
1560
+ #: includes/admin/core/class-admin-navmenu.php:28
1561
+ msgid "Display Mode"
1562
+ msgstr ""
1563
+
1564
+ #: includes/admin/core/class-admin-navmenu.php:29
1565
+ msgid "By Role"
1566
+ msgstr ""
1567
+
1568
+ #: includes/admin/core/class-admin-navmenu.php:75
1569
+ #: includes/admin/core/class-admin-navmenu.php:125
1570
+ #: includes/admin/core/class-admin-navmenu.php:234
1571
+ msgid "Ultimate Member Menu Settings"
1572
+ msgstr ""
1573
+
1574
+ #: includes/admin/core/class-admin-navmenu.php:79
1575
+ #: includes/admin/core/class-admin-navmenu.php:238
1576
+ msgid "Who can see this menu link?"
1577
+ msgstr ""
1578
+
1579
+ #: includes/admin/core/class-admin-navmenu.php:82
1580
+ #: includes/admin/core/class-admin-navmenu.php:245
1581
+ msgid "Logged Out Users"
1582
+ msgstr ""
1583
+
1584
+ #: includes/admin/core/class-admin-navmenu.php:83
1585
+ #: includes/admin/core/class-admin-navmenu.php:248
1586
+ msgid "Logged In Users"
1587
+ msgstr ""
1588
+
1589
+ #: includes/admin/core/class-admin-navmenu.php:88
1590
+ #: includes/admin/core/class-admin-navmenu.php:254
1591
+ msgid "Select the member roles that can see this link"
1592
+ msgstr ""
1593
+
1594
+ #: includes/admin/core/class-admin-notices.php:287
1595
+ msgid "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions installed on your site. <br /> Please update %s extensions to latest versions. For more info see this <a href=\"%s\" target=\"_blank\">doc</a>."
1596
+ msgstr ""
1597
+
1598
+ #: includes/admin/core/class-admin-notices.php:308
1599
+ msgid "%s needs to create several pages (User Profiles, Account, Registration, Login, Password Reset, Logout, Member Directory) to function correctly."
1600
+ msgstr ""
1601
+
1602
+ #: includes/admin/core/class-admin-notices.php:312
1603
+ msgid "Create Pages"
1604
+ msgstr ""
1605
+
1606
+ #: includes/admin/core/class-admin-notices.php:314
1607
+ #: includes/admin/core/class-admin-notices.php:510
1608
+ msgid "No thanks"
1609
+ msgstr ""
1610
+
1611
+ #: includes/admin/core/class-admin-notices.php:334
1612
+ msgid "Ultimate Member Setup Error: User page can not be a child page."
1613
+ msgstr ""
1614
+
1615
+ #: includes/admin/core/class-admin-notices.php:344
1616
+ msgid "Ultimate Member Setup Error: Account page can not be a child page."
1617
+ msgstr ""
1618
+
1619
+ #: includes/admin/core/class-admin-notices.php:362
1620
+ msgid "Exif is not enabled on your server. Mobile photo uploads will not be rotated correctly until you enable the exif extension. <a href=\"%s\">Hide this notice</a>"
1621
+ msgstr ""
1622
+
1623
+ #: includes/admin/core/class-admin-notices.php:399
1624
+ msgid "Are you sure you want to delete the selected user(s)? The following users will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
1625
+ msgstr ""
1626
+
1627
+ #: includes/admin/core/class-admin-notices.php:400
1628
+ msgid "Undo"
1629
+ msgstr ""
1630
+
1631
+ #: includes/admin/core/class-admin-notices.php:405
1632
+ msgid "Your translation files have been updated successfully."
1633
+ msgstr ""
1634
+
1635
+ #: includes/admin/core/class-admin-notices.php:409
1636
+ msgid "Your temp uploads directory is now clean."
1637
+ msgstr ""
1638
+
1639
+ #: includes/admin/core/class-admin-notices.php:413
1640
+ msgid "Your user cache is now removed."
1641
+ msgstr ""
1642
+
1643
+ #: includes/admin/core/class-admin-notices.php:417
1644
+ msgid "You have the latest updates."
1645
+ msgstr ""
1646
+
1647
+ #: includes/admin/core/class-admin-notices.php:421
1648
+ msgid "Try again later. You can run this action once daily."
1649
+ msgstr ""
1650
+
1651
+ #: includes/admin/core/class-admin-notices.php:425
1652
+ msgid "The form has been duplicated successfully."
1653
+ msgstr ""
1654
+
1655
+ #: includes/admin/core/class-admin-notices.php:429
1656
+ msgid "User has been updated."
1657
+ msgstr ""
1658
+
1659
+ #: includes/admin/core/class-admin-notices.php:433
1660
+ msgid "Users have been updated."
1661
+ msgstr ""
1662
+
1663
+ #: includes/admin/core/class-admin-notices.php:437
1664
+ msgid "Changed roles."
1665
+ msgstr ""
1666
+
1667
+ #: includes/admin/core/class-admin-notices.php:441
1668
+ msgid "Super administrators cannot be modified."
1669
+ msgstr ""
1670
+
1671
+ #: includes/admin/core/class-admin-notices.php:442
1672
+ msgid "Other users have been updated."
1673
+ msgstr ""
1674
+
1675
+ #: includes/admin/core/class-admin-notices.php:479
1676
+ msgid "You have installed <strong>%s</strong> with wrong folder name. Correct folder name is <strong>\"ultimate-member\"</strong>."
1677
+ msgstr ""
1678
+
1679
+ #: includes/admin/core/class-admin-notices.php:504
1680
+ msgid "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To fund full-time development and support of the plugin we also sell extensions. If you subscribe to our mailing list we will send you a 20%% discount code for one of our <a href=\"%s\" target=\"_blank\">access passes</a>."
1681
+ msgstr ""
1682
+
1683
+ #: includes/admin/core/class-admin-notices.php:508
1684
+ msgid "Claim 20% discount code"
1685
+ msgstr ""
1686
+
1687
+ #: includes/admin/core/class-admin-notices.php:547
1688
+ msgid "There are %d inactive %s license keys for this site. This site is not authorized to get plugin updates. You can active this site on <a href=\"%s\">www.ultimatemember.com</a>."
1689
+ msgstr ""
1690
+
1691
+ #: includes/admin/core/class-admin-notices.php:554
1692
+ msgid "You have %d invalid or expired license keys for %s. Please go to the <a href=\"%s\">Licenses page</a> to correct this issue."
1693
+ msgstr ""
1694
+
1695
+ #: includes/admin/core/class-admin-notices.php:568
1696
+ msgid "<strong>%s version %s</strong> needs to be updated to work correctly.<br />It is necessary to update the structure of the database and options that are associated with <strong>%s %s</strong>.<br />Please visit <a href=\"%s\">\"Upgrade\"</a> page and run the upgrade process."
1697
+ msgstr ""
1698
+
1699
+ #: includes/admin/core/class-admin-notices.php:572
1700
+ msgid "Upgrade Now"
1701
+ msgstr ""
1702
+
1703
+ #: includes/admin/core/class-admin-notices.php:587
1704
+ msgid "Settings successfully upgraded"
1705
+ msgstr ""
1706
+
1707
+ #: includes/admin/core/class-admin-notices.php:592
1708
+ msgid "<strong>%s %s</strong> Successfully Upgraded"
1709
+ msgstr ""
1710
+
1711
+ #: includes/admin/core/class-admin-notices.php:619
1712
+ msgid "Hey there! It's been one month since you installed %s. How have you found the plugin so far?"
1713
+ msgstr ""
1714
+
1715
+ #: includes/admin/core/class-admin-notices.php:622
1716
+ msgid "I love it!"
1717
+ msgstr ""
1718
+
1719
+ #: includes/admin/core/class-admin-notices.php:623
1720
+ msgid "It's good but could be better"
1721
+ msgstr ""
1722
+
1723
+ #: includes/admin/core/class-admin-notices.php:624
1724
+ msgid "I don't like the plugin"
1725
+ msgstr ""
1726
+
1727
+ #: includes/admin/core/class-admin-notices.php:633
1728
+ msgid "Leave Review"
1729
+ msgstr ""
1730
+
1731
+ #: includes/admin/core/class-admin-notices.php:642
1732
+ #: includes/admin/core/class-admin-notices.php:651
1733
+ msgid "Provide Feedback"
1734
+ msgstr ""
1735
+
1736
+ #: includes/admin/core/class-admin-notices.php:673
1737
+ msgid "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" target=\"_blank\">here</a>"
1738
+ msgstr ""
1739
+
1740
+ #: includes/admin/core/class-admin-notices.php:689
1741
+ msgid "Wrong Data"
1742
+ msgstr ""
1743
+
1744
+ #: includes/admin/core/class-admin-settings.php:91
1745
+ msgid "Wrong callback"
1746
+ msgstr ""
1747
+
1748
+ #: includes/admin/core/class-admin-settings.php:189
1749
+ #: includes/admin/core/packages/2.1.3-beta3/functions.php:24
1750
+ msgid "Wrong data"
1751
+ msgstr ""
1752
+
1753
+ #: includes/admin/core/class-admin-settings.php:220
1754
+ msgid "Metadata from %s to %s was upgraded successfully..."
1755
+ msgstr ""
1756
+
1757
+ #: includes/admin/core/class-admin-settings.php:250
1758
+ #: includes/admin/core/class-admin-settings.php:259
1759
+ msgid "%s page"
1760
+ msgstr ""
1761
+
1762
+ #: includes/admin/core/class-admin-settings.php:251
1763
+ msgid "Add page ID"
1764
+ msgstr ""
1765
+
1766
+ #: includes/admin/core/class-admin-settings.php:261
1767
+ msgid "Choose a page..."
1768
+ msgstr ""
1769
+
1770
+ #: includes/admin/core/class-admin-settings.php:273
1771
+ msgid "Enable profile menu"
1772
+ msgstr ""
1773
+
1774
+ #: includes/admin/core/class-admin-settings.php:297
1775
+ #: includes/admin/core/class-admin-settings.php:308
1776
+ msgid "%s Tab"
1777
+ msgstr ""
1778
+
1779
+ #: includes/admin/core/class-admin-settings.php:315
1780
+ msgid "Who can see %s Tab?"
1781
+ msgstr ""
1782
+
1783
+ #: includes/admin/core/class-admin-settings.php:316
1784
+ msgid "Select which users can view this tab."
1785
+ msgstr ""
1786
+
1787
+ #: includes/admin/core/class-admin-settings.php:325
1788
+ msgid "Allowed roles"
1789
+ msgstr ""
1790
+
1791
+ #: includes/admin/core/class-admin-settings.php:326
1792
+ msgid "Select the the user roles allowed to view this tab."
1793
+ msgstr ""
1794
+
1795
+ #: includes/admin/core/class-admin-settings.php:328
1796
+ msgid "Choose user roles..."
1797
+ msgstr ""
1798
+
1799
+ #: includes/admin/core/class-admin-settings.php:341
1800
+ msgid "Profile menu default tab"
1801
+ msgstr ""
1802
+
1803
+ #: includes/admin/core/class-admin-settings.php:342
1804
+ msgid "This will be the default tab on user profile page"
1805
+ msgstr ""
1806
+
1807
+ #: includes/admin/core/class-admin-settings.php:352
1808
+ msgid "Enable menu icons in desktop view"
1809
+ msgstr ""
1810
+
1811
+ #: includes/admin/core/class-admin-settings.php:405
1812
+ msgid "Global Site Access"
1813
+ msgstr ""
1814
+
1815
+ #: includes/admin/core/class-admin-settings.php:406
1816
+ msgid "Globally control the access of your site, you can have seperate restrict options per post/page by editing the desired item."
1817
+ msgstr ""
1818
+
1819
+ #: includes/admin/core/class-admin-settings.php:408
1820
+ msgid "Site accessible to Everyone"
1821
+ msgstr ""
1822
+
1823
+ #: includes/admin/core/class-admin-settings.php:409
1824
+ msgid "Site accessible to Logged In Users"
1825
+ msgstr ""
1826
+
1827
+ #: includes/admin/core/class-admin-settings.php:416
1828
+ msgid "Custom Redirect URL"
1829
+ msgstr ""
1830
+
1831
+ #: includes/admin/core/class-admin-settings.php:417
1832
+ msgid "A logged out user will be redirected to this url If he is not permitted to access the site"
1833
+ msgstr ""
1834
+
1835
+ #: includes/admin/core/class-admin-settings.php:423
1836
+ msgid "Exclude the following URLs"
1837
+ msgstr ""
1838
+
1839
+ #: includes/admin/core/class-admin-settings.php:424
1840
+ msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
1841
+ msgstr ""
1842
+
1843
+ #: includes/admin/core/class-admin-settings.php:425
1844
+ msgid "Add New URL"
1845
+ msgstr ""
1846
+
1847
+ #: includes/admin/core/class-admin-settings.php:432
1848
+ msgid "Allow Homepage to be accessible"
1849
+ msgstr ""
1850
+
1851
+ #: includes/admin/core/class-admin-settings.php:438
1852
+ msgid "Allow Category pages to be accessible"
1853
+ msgstr ""
1854
+
1855
+ #: includes/admin/core/class-admin-settings.php:444
1856
+ msgid "Restricted Access Message"
1857
+ msgstr ""
1858
+
1859
+ #: includes/admin/core/class-admin-settings.php:445
1860
+ msgid "This is the message shown to users that do not have permission to view the content"
1861
+ msgstr ""
1862
+
1863
+ #: includes/admin/core/class-admin-settings.php:454
1864
+ msgid "Allow Gutenberg Blocks restriction options"
1865
+ msgstr ""
1866
+
1867
+ #: includes/admin/core/class-admin-settings.php:459
1868
+ msgid "Restricted Block Message"
1869
+ msgstr ""
1870
+
1871
+ #: includes/admin/core/class-admin-settings.php:460
1872
+ msgid "This is the message shown to users that do not have permission to view the block's content"
1873
+ msgstr ""
1874
+
1875
+ #: includes/admin/core/class-admin-settings.php:478
1876
+ msgid "Restricted Access to Posts"
1877
+ msgstr ""
1878
+
1879
+ #: includes/admin/core/class-admin-settings.php:479
1880
+ msgid "Restriction content of the current Posts"
1881
+ msgstr ""
1882
+
1883
+ #: includes/admin/core/class-admin-settings.php:488
1884
+ msgid "Restricted Access to Taxonomies"
1885
+ msgstr ""
1886
+
1887
+ #: includes/admin/core/class-admin-settings.php:489
1888
+ msgid "Restriction content of the current Taxonomies"
1889
+ msgstr ""
1890
+
1891
+ #: includes/admin/core/class-admin-settings.php:502
1892
+ msgid "Enable custom table for usermeta"
1893
+ msgstr ""
1894
+
1895
+ #: includes/admin/core/class-admin-settings.php:503
1896
+ msgid "Check this box if you would like to enable the use of a custom table for user metadata. Improved performance for member directory searches."
1897
+ msgstr ""
1898
+
1899
+ #: includes/admin/core/class-admin-settings.php:508
1900
+ msgid "We recommend creating a backup of your site before running the update process. Do not exit the page before the update process has complete."
1901
+ msgstr ""
1902
+
1903
+ #: includes/admin/core/class-admin-settings.php:509
1904
+ msgid "After clicking the <strong>\"Run\"</strong> button, the update process will start. All information will be displayed in the field below."
1905
+ msgstr ""
1906
+
1907
+ #: includes/admin/core/class-admin-settings.php:510
1908
+ #: includes/admin/core/class-admin-upgrade.php:251
1909
+ msgid "If the update was successful, you will see a corresponding message. Otherwise, contact technical support if the update failed."
1910
+ msgstr ""
1911
+
1912
+ #: includes/admin/core/class-admin-settings.php:535
1913
+ msgid "General"
1914
+ msgstr ""
1915
+
1916
+ #: includes/admin/core/class-admin-settings.php:538
1917
+ msgid "Pages"
1918
+ msgstr ""
1919
+
1920
+ #: includes/admin/core/class-admin-settings.php:542
1921
+ #: includes/admin/templates/dashboard/users.php:15
1922
+ msgid "Users"
1923
+ msgstr ""
1924
+
1925
+ #: includes/admin/core/class-admin-settings.php:548
1926
+ msgid "Profile Permalink Base"
1927
+ msgstr ""
1928
+
1929
+ #: includes/admin/core/class-admin-settings.php:549
1930
+ msgid "Here you can control the permalink structure of the user profile URL globally e.g. "
1931
+ msgstr ""
1932
+
1933
+ #: includes/admin/core/class-admin-settings.php:551
1934
+ #: includes/admin/core/class-admin-settings.php:568
1935
+ #: includes/core/class-builtin.php:682
1936
+ #: includes/core/class-builtin.php:685
1937
+ #: includes/core/class-member-directory.php:289
1938
+ msgid "Username"
1939
+ msgstr ""
1940
+
1941
+ #: includes/admin/core/class-admin-settings.php:552
1942
+ msgid "First and Last Name with '.'"
1943
+ msgstr ""
1944
+
1945
+ #: includes/admin/core/class-admin-settings.php:553
1946
+ msgid "First and Last Name with '-'"
1947
+ msgstr ""
1948
+
1949
+ #: includes/admin/core/class-admin-settings.php:554
1950
+ msgid "First and Last Name with '+'"
1951
+ msgstr ""
1952
+
1953
+ #: includes/admin/core/class-admin-settings.php:555
1954
+ msgid "User ID"
1955
+ msgstr ""
1956
+
1957
+ #: includes/admin/core/class-admin-settings.php:557
1958
+ #: includes/admin/core/class-admin-settings.php:576
1959
+ msgid "Select..."
1960
+ msgstr ""
1961
+
1962
+ #: includes/admin/core/class-admin-settings.php:563
1963
+ msgid "User Display Name"
1964
+ msgstr ""
1965
+
1966
+ #: includes/admin/core/class-admin-settings.php:564
1967
+ msgid "This is the name that will be displayed for users on the front end of your site. Default setting uses first/last name as display name if it exists"
1968
+ msgstr ""
1969
+
1970
+ #: includes/admin/core/class-admin-settings.php:566
1971
+ msgid "Default WP Display Name"
1972
+ msgstr ""
1973
+
1974
+ #: includes/admin/core/class-admin-settings.php:567
1975
+ #: includes/core/class-builtin.php:740
1976
+ #: includes/core/class-builtin.php:743
1977
+ #: includes/core/class-member-directory.php:290
1978
+ #: includes/core/class-member-directory.php:319
1979
+ msgid "Nickname"
1980
+ msgstr ""
1981
+
1982
+ #: includes/admin/core/class-admin-settings.php:569
1983
+ msgid "First name & last name"
1984
+ msgstr ""
1985
+
1986
+ #: includes/admin/core/class-admin-settings.php:570
1987
+ msgid "Last name & first name"
1988
+ msgstr ""
1989
+
1990
+ #: includes/admin/core/class-admin-settings.php:571
1991
+ msgid "First name & first initial of last name"
1992
+ msgstr ""
1993
+
1994
+ #: includes/admin/core/class-admin-settings.php:572
1995
+ msgid "First initial of first name & last name"
1996
+ msgstr ""
1997
+
1998
+ #: includes/admin/core/class-admin-settings.php:573
1999
+ msgid "First name only"
2000
+ msgstr ""
2001
+
2002
+ #: includes/admin/core/class-admin-settings.php:574
2003
+ msgid "Custom field(s)"
2004
+ msgstr ""
2005
+
2006
+ #: includes/admin/core/class-admin-settings.php:581
2007
+ msgid "Display Name Custom Field(s)"
2008
+ msgstr ""
2009
+
2010
+ #: includes/admin/core/class-admin-settings.php:582
2011
+ msgid "Specify the custom field meta key or custom fields seperated by comma that you want to use to display users name on the frontend of your site"
2012
+ msgstr ""
2013
+
2014
+ #: includes/admin/core/class-admin-settings.php:588
2015
+ msgid "Automatically redirect author page to their profile?"
2016
+ msgstr ""
2017
+
2018
+ #: includes/admin/core/class-admin-settings.php:589
2019
+ msgid "If enabled, author pages will automatically redirect to the user's profile page"
2020
+ msgstr ""
2021
+
2022
+ #: includes/admin/core/class-admin-settings.php:594
2023
+ msgid "Enable Members Directory"
2024
+ msgstr ""
2025
+
2026
+ #: includes/admin/core/class-admin-settings.php:595
2027
+ msgid "Control whether to enable or disable member directories on this site"
2028
+ msgstr ""
2029
+
2030
+ #: includes/admin/core/class-admin-settings.php:600
2031
+ msgid "Use Gravatars?"
2032
+ msgstr ""
2033
+
2034
+ #: includes/admin/core/class-admin-settings.php:601
2035
+ msgid "Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a custom profile photo / avatar)"
2036
+ msgstr ""
2037
+
2038
+ #: includes/admin/core/class-admin-settings.php:606
2039
+ msgid "Use Gravatar builtin image"
2040
+ msgstr ""
2041
+
2042
+ #: includes/admin/core/class-admin-settings.php:607
2043
+ msgid "Gravatar has a number of built in options which you can also use as defaults"
2044
+ msgstr ""
2045
+
2046
+ #: includes/admin/core/class-admin-settings.php:609
2047
+ #: includes/admin/templates/form/login_settings.php:16
2048
+ #: includes/admin/templates/form/register_customize.php:6
2049
+ #: includes/admin/templates/form/register_customize.php:32
2050
+ msgid "Default"
2051
+ msgstr ""
2052
+
2053
+ #: includes/admin/core/class-admin-settings.php:610
2054
+ msgid "404 ( File Not Found response )"
2055
+ msgstr ""
2056
+
2057
+ #: includes/admin/core/class-admin-settings.php:611
2058
+ msgid "Mystery Man"
2059
+ msgstr ""
2060
+
2061
+ #: includes/admin/core/class-admin-settings.php:612
2062
+ msgid "Identicon"
2063
+ msgstr ""
2064
+
2065
+ #: includes/admin/core/class-admin-settings.php:613
2066
+ msgid "Monsterid"
2067
+ msgstr ""
2068
+
2069
+ #: includes/admin/core/class-admin-settings.php:614
2070
+ msgid "Wavatar"
2071
+ msgstr ""
2072
+
2073
+ #: includes/admin/core/class-admin-settings.php:615
2074
+ msgid "Retro"
2075
+ msgstr ""
2076
+
2077
+ #: includes/admin/core/class-admin-settings.php:616
2078
+ msgid "Blank ( a transparent PNG image )"
2079
+ msgstr ""
2080
+
2081
+ #: includes/admin/core/class-admin-settings.php:624
2082
+ msgid "Use Default plugin avatar as Gravatar's Default avatar"
2083
+ msgstr ""
2084
+
2085
+ #: includes/admin/core/class-admin-settings.php:625
2086
+ msgid "Do you want to use the plugin default avatar instead of the gravatar default photo (If the user did not upload a custom profile photo / avatar)"
2087
+ msgstr ""
2088
+
2089
+ #: includes/admin/core/class-admin-settings.php:631
2090
+ msgid "Require a strong password? (when user resets password only)"
2091
+ msgstr ""
2092
+
2093
+ #: includes/admin/core/class-admin-settings.php:632
2094
+ msgid "Enable or disable a strong password rules on password reset and change procedure"
2095
+ msgstr ""
2096
+
2097
+ #: includes/admin/core/class-admin-settings.php:637
2098
+ #: includes/class-config.php:136
2099
+ #: includes/class-config.php:796
2100
+ #: includes/core/class-account.php:97
2101
+ msgid "Account"
2102
+ msgstr ""
2103
+
2104
+ #: includes/admin/core/class-admin-settings.php:642
2105
+ msgid "Password Account Tab"
2106
+ msgstr ""
2107
+
2108
+ #: includes/admin/core/class-admin-settings.php:643
2109
+ msgid "Enable/disable the Password account tab in account page"
2110
+ msgstr ""
2111
+
2112
+ #: includes/admin/core/class-admin-settings.php:648
2113
+ msgid "Privacy Account Tab"
2114
+ msgstr ""
2115
+
2116
+ #: includes/admin/core/class-admin-settings.php:649
2117
+ msgid "Enable/disable the Privacy account tab in account page"
2118
+ msgstr ""
2119
+
2120
+ #: includes/admin/core/class-admin-settings.php:654
2121
+ msgid "Notifications Account Tab"
2122
+ msgstr ""
2123
+
2124
+ #: includes/admin/core/class-admin-settings.php:655
2125
+ msgid "Enable/disable the Notifications account tab in account page"
2126
+ msgstr ""
2127
+
2128
+ #: includes/admin/core/class-admin-settings.php:660
2129
+ msgid "Delete Account Tab"
2130
+ msgstr ""
2131
+
2132
+ #: includes/admin/core/class-admin-settings.php:661
2133
+ msgid "Enable/disable the Delete account tab in account page"
2134
+ msgstr ""
2135
+
2136
+ #: includes/admin/core/class-admin-settings.php:666
2137
+ msgid "Account Deletion Custom Text"
2138
+ msgstr ""
2139
+
2140
+ #: includes/admin/core/class-admin-settings.php:667
2141
+ msgid "This is custom text that will be displayed to users before they delete their accounts from your site when password is required."
2142
+ msgstr ""
2143
+
2144
+ #: includes/admin/core/class-admin-settings.php:675
2145
+ msgid "Account Deletion without password Custom Text"
2146
+ msgstr ""
2147
+
2148
+ #: includes/admin/core/class-admin-settings.php:676
2149
+ msgid "This is custom text that will be displayed to users before they delete their accounts from your site when password isn't required."
2150
+ msgstr ""
2151
+
2152
+ #: includes/admin/core/class-admin-settings.php:684
2153
+ msgid "Add a First & Last Name fields"
2154
+ msgstr ""
2155
+
2156
+ #: includes/admin/core/class-admin-settings.php:685
2157
+ msgid "Whether to enable these fields on the user account page by default or hide them."
2158
+ msgstr ""
2159
+
2160
+ #: includes/admin/core/class-admin-settings.php:690
2161
+ msgid "Disable First & Last Name fields"
2162
+ msgstr ""
2163
+
2164
+ #: includes/admin/core/class-admin-settings.php:691
2165
+ msgid "Whether to allow users changing their first and last name in account page."
2166
+ msgstr ""
2167
+
2168
+ #: includes/admin/core/class-admin-settings.php:697
2169
+ msgid "Require First & Last Name"
2170
+ msgstr ""
2171
+
2172
+ #: includes/admin/core/class-admin-settings.php:698
2173
+ msgid "Require first and last name?"
2174
+ msgstr ""
2175
+
2176
+ #: includes/admin/core/class-admin-settings.php:704
2177
+ msgid "Allow users to change e-mail"
2178
+ msgstr ""
2179
+
2180
+ #: includes/admin/core/class-admin-settings.php:705
2181
+ msgid "Whether to allow users changing their email in account page."
2182
+ msgstr ""
2183
+
2184
+ #: includes/admin/core/class-admin-settings.php:710
2185
+ msgid "Password is required?"
2186
+ msgstr ""
2187
+
2188
+ #: includes/admin/core/class-admin-settings.php:711
2189
+ msgid "Password is required to save account data."
2190
+ msgstr ""
2191
+
2192
+ #: includes/admin/core/class-admin-settings.php:716
2193
+ msgid "Require a strong password?"
2194
+ msgstr ""
2195
+
2196
+ #: includes/admin/core/class-admin-settings.php:717
2197
+ msgid "Enable or disable a strong password rules on account page / change password tab"
2198
+ msgstr ""
2199
+
2200
+ #: includes/admin/core/class-admin-settings.php:722
2201
+ msgid "Allow users to hide their profiles from directory"
2202
+ msgstr ""
2203
+
2204
+ #: includes/admin/core/class-admin-settings.php:723
2205
+ msgid "Whether to allow users changing their profile visibility from member directory in account page."
2206
+ msgstr ""
2207
+
2208
+ #: includes/admin/core/class-admin-settings.php:728
2209
+ msgid "Hide profiles from directory by default"
2210
+ msgstr ""
2211
+
2212
+ #: includes/admin/core/class-admin-settings.php:729
2213
+ msgid "Set default value for the \"Hide my profile from directory\" option"
2214
+ msgstr ""
2215
+
2216
+ #: includes/admin/core/class-admin-settings.php:740
2217
+ msgid "Uploads"
2218
+ msgstr ""
2219
+
2220
+ #: includes/admin/core/class-admin-settings.php:746
2221
+ msgid "Profile Photo Maximum File Size (bytes)"
2222
+ msgstr ""
2223
+
2224
+ #: includes/admin/core/class-admin-settings.php:747
2225
+ msgid "Sets a maximum size for the uploaded photo"
2226
+ msgstr ""
2227
+
2228
+ #: includes/admin/core/class-admin-settings.php:754
2229
+ msgid "Cover Photo Maximum File Size (bytes)"
2230
+ msgstr ""
2231
+
2232
+ #: includes/admin/core/class-admin-settings.php:755
2233
+ msgid "Sets a maximum size for the uploaded cover"
2234
+ msgstr ""
2235
+
2236
+ #: includes/admin/core/class-admin-settings.php:761
2237
+ msgid "Profile Photo Thumbnail Sizes (px)"
2238
+ msgstr ""
2239
+
2240
+ #: includes/admin/core/class-admin-settings.php:762
2241
+ msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
2242
+ msgstr ""
2243
+
2244
+ #: includes/admin/core/class-admin-settings.php:764
2245
+ #: includes/admin/core/class-admin-settings.php:774
2246
+ msgid "Add New Size"
2247
+ msgstr ""
2248
+
2249
+ #: includes/admin/core/class-admin-settings.php:771
2250
+ msgid "Cover Photo Thumbnail Sizes (px)"
2251
+ msgstr ""
2252
+
2253
+ #: includes/admin/core/class-admin-settings.php:772
2254
+ msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
2255
+ msgstr ""
2256
+
2257
+ #: includes/admin/core/class-admin-settings.php:781
2258
+ msgid "Change image orientation"
2259
+ msgstr ""
2260
+
2261
+ #: includes/admin/core/class-admin-settings.php:782
2262
+ msgid "Rotate image to and use orientation by the camera EXIF data."
2263
+ msgstr ""
2264
+
2265
+ #: includes/admin/core/class-admin-settings.php:788
2266
+ msgid "Image Quality"
2267
+ msgstr ""
2268
+
2269
+ #: includes/admin/core/class-admin-settings.php:789
2270
+ msgid "Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to 100 (best quality, biggest file). The default range is 60."
2271
+ msgstr ""
2272
+
2273
+ #: includes/admin/core/class-admin-settings.php:796
2274
+ msgid "Image Upload Maximum Width (px)"
2275
+ msgstr ""
2276
+
2277
+ #: includes/admin/core/class-admin-settings.php:797
2278
+ msgid "Any image upload above this width will be resized to this limit automatically."
2279
+ msgstr ""
2280
+
2281
+ #: includes/admin/core/class-admin-settings.php:804
2282
+ msgid "Cover Photo Minimum Width (px)"
2283
+ msgstr ""
2284
+
2285
+ #: includes/admin/core/class-admin-settings.php:805
2286
+ msgid "This will be the minimum width for cover photo uploads"
2287
+ msgstr ""
2288
+
2289
+ #: includes/admin/core/class-admin-settings.php:812
2290
+ msgid "Access"
2291
+ msgstr ""
2292
+
2293
+ #: includes/admin/core/class-admin-settings.php:815
2294
+ msgid "Restriction Content"
2295
+ msgstr ""
2296
+
2297
+ #: includes/admin/core/class-admin-settings.php:819
2298
+ msgid "Other"
2299
+ msgstr ""
2300
+
2301
+ #: includes/admin/core/class-admin-settings.php:824
2302
+ msgid "Enable the Reset Password Limit?"
2303
+ msgstr ""
2304
+
2305
+ #: includes/admin/core/class-admin-settings.php:829
2306
+ msgid "Reset Password Limit"
2307
+ msgstr ""
2308
+
2309
+ #: includes/admin/core/class-admin-settings.php:830
2310
+ msgid "Set the maximum reset password limit. If reached the maximum limit, user will be locked from using this."
2311
+ msgstr ""
2312
+
2313
+ #: includes/admin/core/class-admin-settings.php:838
2314
+ msgid "Blocked Email Addresses"
2315
+ msgstr ""
2316
+
2317
+ #: includes/admin/core/class-admin-settings.php:839
2318
+ msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site. To block an entire domain, use something like *@domain.com"
2319
+ msgstr ""
2320
+
2321
+ #: includes/admin/core/class-admin-settings.php:844
2322
+ msgid "Blacklist Words"
2323
+ msgstr ""
2324
+
2325
+ #: includes/admin/core/class-admin-settings.php:845
2326
+ msgid "This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their username"
2327
+ msgstr ""
2328
+
2329
+ #: includes/admin/core/class-admin-settings.php:852
2330
+ #: includes/admin/core/list-tables/emails-list-table.php:309
2331
+ msgid "Email"
2332
+ msgstr ""
2333
+
2334
+ #: includes/admin/core/class-admin-settings.php:857
2335
+ msgid "Admin E-mail Address"
2336
+ msgstr ""
2337
+
2338
+ #: includes/admin/core/class-admin-settings.php:858
2339
+ #: includes/admin/core/class-admin-settings.php:870
2340
+ msgid "e.g. admin@companyname.com"
2341
+ msgstr ""
2342
+
2343
+ #: includes/admin/core/class-admin-settings.php:863
2344
+ msgid "Mail appears from"
2345
+ msgstr ""
2346
+
2347
+ #: includes/admin/core/class-admin-settings.php:864
2348
+ msgid "e.g. Site Name"
2349
+ msgstr ""
2350
+
2351
+ #: includes/admin/core/class-admin-settings.php:869
2352
+ msgid "Mail appears from address"
2353
+ msgstr ""
2354
+
2355
+ #: includes/admin/core/class-admin-settings.php:875
2356
+ msgid "Use HTML for E-mails?"
2357
+ msgstr ""
2358
+
2359
+ #: includes/admin/core/class-admin-settings.php:876
2360
+ msgid "If you plan use e-mails with HTML, please make sure that this option is enabled. Otherwise, HTML will be displayed as plain text."
2361
+ msgstr ""
2362
+
2363
+ #: includes/admin/core/class-admin-settings.php:881
2364
+ msgid "Appearance"
2365
+ msgstr ""
2366
+
2367
+ #: includes/admin/core/class-admin-settings.php:884
2368
+ msgid "Profile"
2369
+ msgstr ""
2370
+
2371
+ #: includes/admin/core/class-admin-settings.php:889
2372
+ msgid "Profile Default Template"
2373
+ msgstr ""
2374
+
2375
+ #: includes/admin/core/class-admin-settings.php:890
2376
+ msgid "This will be the default template to output profile"
2377
+ msgstr ""
2378
+
2379
+ #: includes/admin/core/class-admin-settings.php:898
2380
+ msgid "Profile Maximum Width"
2381
+ msgstr ""
2382
+
2383
+ #: includes/admin/core/class-admin-settings.php:900
2384
+ #: includes/admin/core/class-admin-settings.php:1109
2385
+ #: includes/admin/core/class-admin-settings.php:1199
2386
+ msgid "The maximum width this shortcode can take from the page width"
2387
+ msgstr ""
2388
+
2389
+ #: includes/admin/core/class-admin-settings.php:907
2390
+ msgid "Profile Area Maximum Width"
2391
+ msgstr ""
2392
+
2393
+ #: includes/admin/core/class-admin-settings.php:909
2394
+ #: includes/admin/templates/form/profile_customize.php:59
2395
+ msgid "The maximum width of the profile area inside profile (below profile header)"
2396
+ msgstr ""
2397
+
2398
+ #: includes/admin/core/class-admin-settings.php:915
2399
+ msgid "Profile Field Icons"
2400
+ msgstr ""
2401
+
2402
+ #: includes/admin/core/class-admin-settings.php:916
2403
+ msgid "This is applicable for edit mode only"
2404
+ msgstr ""
2405
+
2406
+ #: includes/admin/core/class-admin-settings.php:919
2407
+ #: includes/admin/core/class-admin-settings.php:1132
2408
+ #: includes/admin/core/class-admin-settings.php:1222
2409
+ #: includes/admin/templates/form/login_customize.php:43
2410
+ #: includes/admin/templates/form/profile_customize.php:70
2411
+ #: includes/admin/templates/form/register_customize.php:58
2412
+ msgid "Show inside text field"
2413
+ msgstr ""
2414
+
2415
+ #: includes/admin/core/class-admin-settings.php:920
2416
+ #: includes/admin/core/class-admin-settings.php:1133
2417
+ #: includes/admin/core/class-admin-settings.php:1223
2418
+ #: includes/admin/templates/form/login_customize.php:44
2419
+ #: includes/admin/templates/form/profile_customize.php:71
2420
+ #: includes/admin/templates/form/register_customize.php:59
2421
+ msgid "Show with label"
2422
+ msgstr ""
2423
+
2424
+ #: includes/admin/core/class-admin-settings.php:921
2425
+ #: includes/admin/core/class-admin-settings.php:1134
2426
+ #: includes/admin/core/class-admin-settings.php:1224
2427
+ #: includes/admin/templates/form/login_customize.php:45
2428
+ #: includes/admin/templates/form/profile_customize.php:72
2429
+ #: includes/admin/templates/form/register_customize.php:60
2430
+ msgid "Turn off"
2431
+ msgstr ""
2432
+
2433
+ #: includes/admin/core/class-admin-settings.php:928
2434
+ msgid "Profile Primary Button Text"
2435
+ msgstr ""
2436
+
2437
+ #: includes/admin/core/class-admin-settings.php:930
2438
+ msgid "The text that is used for updating profile button"
2439
+ msgstr ""
2440
+
2441
+ #: includes/admin/core/class-admin-settings.php:936
2442
+ msgid "Profile Secondary Button"
2443
+ msgstr ""
2444
+
2445
+ #: includes/admin/core/class-admin-settings.php:938
2446
+ #: includes/admin/core/class-admin-settings.php:1151
2447
+ #: includes/admin/core/class-admin-settings.php:1241
2448
+ msgid "Switch on/off the secondary button display in the form"
2449
+ msgstr ""
2450
+
2451
+ #: includes/admin/core/class-admin-settings.php:943
2452
+ msgid "Profile Secondary Button Text"
2453
+ msgstr ""
2454
+
2455
+ #: includes/admin/core/class-admin-settings.php:945
2456
+ msgid "The text that is used for cancelling update profile button"
2457
+ msgstr ""
2458
+
2459
+ #: includes/admin/core/class-admin-settings.php:952
2460
+ msgid "Default Profile Photo"
2461
+ msgstr ""
2462
+
2463
+ #: includes/admin/core/class-admin-settings.php:953
2464
+ msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
2465
+ msgstr ""
2466
+
2467
+ #: includes/admin/core/class-admin-settings.php:954
2468
+ msgid "Select Default Profile Photo"
2469
+ msgstr ""
2470
+
2471
+ #: includes/admin/core/class-admin-settings.php:964
2472
+ msgid "Default Cover Photo"
2473
+ msgstr ""
2474
+
2475
+ #: includes/admin/core/class-admin-settings.php:965
2476
+ msgid "You can change the default cover photo globally here. Please make sure that the default cover is large enough and respects the ratio you are using for cover photos."
2477
+ msgstr ""
2478
+
2479
+ #: includes/admin/core/class-admin-settings.php:966
2480
+ msgid "Select Default Cover Photo"
2481
+ msgstr ""
2482
+
2483
+ #: includes/admin/core/class-admin-settings.php:971
2484
+ #: includes/admin/templates/form/profile_customize.php:140
2485
+ msgid "Disable Profile Photo Upload"
2486
+ msgstr ""
2487
+
2488
+ #: includes/admin/core/class-admin-settings.php:972
2489
+ #: includes/admin/templates/form/profile_customize.php:141
2490
+ msgid "Switch on/off the profile photo uploader"
2491
+ msgstr ""
2492
+
2493
+ #: includes/admin/core/class-admin-settings.php:978
2494
+ #: includes/admin/templates/form/profile_customize.php:152
2495
+ msgid "Profile Photo Size"
2496
+ msgstr ""
2497
+
2498
+ #: includes/admin/core/class-admin-settings.php:981
2499
+ msgid "The global default of profile photo size. This can be overridden by individual form settings"
2500
+ msgstr ""
2501
+
2502
+ #: includes/admin/core/class-admin-settings.php:987
2503
+ msgid "Profile Cover Photos"
2504
+ msgstr ""
2505
+
2506
+ #: includes/admin/core/class-admin-settings.php:989
2507
+ msgid "Switch on/off the profile cover photos"
2508
+ msgstr ""
2509
+
2510
+ #: includes/admin/core/class-admin-settings.php:994
2511
+ msgid "Profile Cover Size"
2512
+ msgstr ""
2513
+
2514
+ #: includes/admin/core/class-admin-settings.php:997
2515
+ msgid "The global default width of cover photo size. This can be overridden by individual form settings"
2516
+ msgstr ""
2517
+
2518
+ #: includes/admin/core/class-admin-settings.php:1004
2519
+ msgid "Profile Cover Ratio"
2520
+ msgstr ""
2521
+
2522
+ #: includes/admin/core/class-admin-settings.php:1005
2523
+ msgid "Choose global ratio for cover photos of profiles"
2524
+ msgstr ""
2525
+
2526
+ #: includes/admin/core/class-admin-settings.php:1019
2527
+ msgid "Profile Header Meta Text Icon"
2528
+ msgstr ""
2529
+
2530
+ #: includes/admin/core/class-admin-settings.php:1021
2531
+ msgid "Display field icons for related user meta fields in header or not"
2532
+ msgstr ""
2533
+
2534
+ #: includes/admin/core/class-admin-settings.php:1026
2535
+ msgid "Show display name in profile header"
2536
+ msgstr ""
2537
+
2538
+ #: includes/admin/core/class-admin-settings.php:1028
2539
+ msgid "Switch on/off the user name on profile header"
2540
+ msgstr ""
2541
+
2542
+ #: includes/admin/core/class-admin-settings.php:1033
2543
+ msgid "Show social links in profile header"
2544
+ msgstr ""
2545
+
2546
+ #: includes/admin/core/class-admin-settings.php:1035
2547
+ msgid "Switch on/off the social links on profile header"
2548
+ msgstr ""
2549
+
2550
+ #: includes/admin/core/class-admin-settings.php:1040
2551
+ msgid "Show user description in header"
2552
+ msgstr ""
2553
+
2554
+ #: includes/admin/core/class-admin-settings.php:1042
2555
+ msgid "Switch on/off the user description on profile header"
2556
+ msgstr ""
2557
+
2558
+ #: includes/admin/core/class-admin-settings.php:1047
2559
+ msgid "Enable HTML support for user description"
2560
+ msgstr ""
2561
+
2562
+ #: includes/admin/core/class-admin-settings.php:1048
2563
+ msgid "Switch on/off to enable/disable support for html tags on user description."
2564
+ msgstr ""
2565
+
2566
+ #: includes/admin/core/class-admin-settings.php:1053
2567
+ msgid "User description maximum chars"
2568
+ msgstr ""
2569
+
2570
+ #: includes/admin/core/class-admin-settings.php:1055
2571
+ msgid "Maximum number of characters to allow in user description field in header."
2572
+ msgstr ""
2573
+
2574
+ #: includes/admin/core/class-admin-settings.php:1062
2575
+ msgid "Profile Header Menu Position"
2576
+ msgstr ""
2577
+
2578
+ #: includes/admin/core/class-admin-settings.php:1064
2579
+ msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
2580
+ msgstr ""
2581
+
2582
+ #: includes/admin/core/class-admin-settings.php:1066
2583
+ msgid "Bottom of Icon"
2584
+ msgstr ""
2585
+
2586
+ #: includes/admin/core/class-admin-settings.php:1067
2587
+ msgid "Left of Icon (right for RTL)"
2588
+ msgstr ""
2589
+
2590
+ #: includes/admin/core/class-admin-settings.php:1074
2591
+ msgid "Show a custom message if profile is empty"
2592
+ msgstr ""
2593
+
2594
+ #: includes/admin/core/class-admin-settings.php:1076
2595
+ msgid "Switch on/off the custom message that appears when the profile is empty"
2596
+ msgstr ""
2597
+
2598
+ #: includes/admin/core/class-admin-settings.php:1081
2599
+ msgid "Show the emoticon"
2600
+ msgstr ""
2601
+
2602
+ #: includes/admin/core/class-admin-settings.php:1083
2603
+ msgid "Switch on/off the emoticon (sad face) that appears above the message"
2604
+ msgstr ""
2605
+
2606
+ #: includes/admin/core/class-admin-settings.php:1089
2607
+ msgid "Profile Menu"
2608
+ msgstr ""
2609
+
2610
+ #: includes/admin/core/class-admin-settings.php:1093
2611
+ #: includes/admin/templates/form/mode.php:12
2612
+ msgid "Registration Form"
2613
+ msgstr ""
2614
+
2615
+ #: includes/admin/core/class-admin-settings.php:1098
2616
+ msgid "Registration Default Template"
2617
+ msgstr ""
2618
+
2619
+ #: includes/admin/core/class-admin-settings.php:1099
2620
+ msgid "This will be the default template to output registration"
2621
+ msgstr ""
2622
+
2623
+ #: includes/admin/core/class-admin-settings.php:1107
2624
+ msgid "Registration Maximum Width"
2625
+ msgstr ""
2626
+
2627
+ #: includes/admin/core/class-admin-settings.php:1115
2628
+ msgid "Registration Shortcode Alignment"
2629
+ msgstr ""
2630
+
2631
+ #: includes/admin/core/class-admin-settings.php:1116
2632
+ #: includes/admin/core/class-admin-settings.php:1206
2633
+ #: includes/admin/templates/form/profile_customize.php:127
2634
+ msgid "The shortcode is centered by default unless you specify otherwise here"
2635
+ msgstr ""
2636
+
2637
+ #: includes/admin/core/class-admin-settings.php:1119
2638
+ #: includes/admin/core/class-admin-settings.php:1209
2639
+ msgid "Centered"
2640
+ msgstr ""
2641
+
2642
+ #: includes/admin/core/class-admin-settings.php:1120
2643
+ #: includes/admin/core/class-admin-settings.php:1210
2644
+ msgid "Left aligned"
2645
+ msgstr ""
2646
+
2647
+ #: includes/admin/core/class-admin-settings.php:1121
2648
+ #: includes/admin/core/class-admin-settings.php:1211
2649
+ msgid "Right aligned"
2650
+ msgstr ""
2651
+
2652
+ #: includes/admin/core/class-admin-settings.php:1128
2653
+ msgid "Registration Field Icons"
2654
+ msgstr ""
2655
+
2656
+ #: includes/admin/core/class-admin-settings.php:1129
2657
+ msgid "This controls the display of field icons in the registration form"
2658
+ msgstr ""
2659
+
2660
+ #: includes/admin/core/class-admin-settings.php:1141
2661
+ msgid "Registration Primary Button Text"
2662
+ msgstr ""
2663
+
2664
+ #: includes/admin/core/class-admin-settings.php:1143
2665
+ #: includes/admin/core/class-admin-settings.php:1233
2666
+ msgid "The text that is used for primary button text"
2667
+ msgstr ""
2668
+
2669
+ #: includes/admin/core/class-admin-settings.php:1149
2670
+ msgid "Registration Secondary Button"
2671
+ msgstr ""
2672
+
2673
+ #: includes/admin/core/class-admin-settings.php:1156
2674
+ msgid "Registration Secondary Button Text"
2675
+ msgstr ""
2676
+
2677
+ #: includes/admin/core/class-admin-settings.php:1158
2678
+ #: includes/admin/core/class-admin-settings.php:1248
2679
+ msgid "The text that is used for the secondary button text"
2680
+ msgstr ""
2681
+
2682
+ #: includes/admin/core/class-admin-settings.php:1165
2683
+ msgid "Registration Secondary Button URL"
2684
+ msgstr ""
2685
+
2686
+ #: includes/admin/core/class-admin-settings.php:1167
2687
+ #: includes/admin/core/class-admin-settings.php:1257
2688
+ msgid "You can replace default link for this button by entering custom URL"
2689
+ msgstr ""
2690
+
2691
+ #: includes/admin/core/class-admin-settings.php:1174
2692
+ msgid "Registration Default Role"
2693
+ msgstr ""
2694
+
2695
+ #: includes/admin/core/class-admin-settings.php:1175
2696
+ msgid "This will be the default role assigned to users registering thru registration form"
2697
+ msgstr ""
2698
+
2699
+ #: includes/admin/core/class-admin-settings.php:1183
2700
+ #: includes/admin/templates/form/mode.php:16
2701
+ msgid "Login Form"
2702
+ msgstr ""
2703
+
2704
+ #: includes/admin/core/class-admin-settings.php:1188
2705
+ msgid "Login Default Template"
2706
+ msgstr ""
2707
+
2708
+ #: includes/admin/core/class-admin-settings.php:1189
2709
+ msgid "This will be the default template to output login"
2710
+ msgstr ""
2711
+
2712
+ #: includes/admin/core/class-admin-settings.php:1197
2713
+ msgid "Login Maximum Width"
2714
+ msgstr ""
2715
+
2716
+ #: includes/admin/core/class-admin-settings.php:1205
2717
+ msgid "Login Shortcode Alignment"
2718
+ msgstr ""
2719
+
2720
+ #: includes/admin/core/class-admin-settings.php:1218
2721
+ msgid "Login Field Icons"
2722
+ msgstr ""
2723
+
2724
+ #: includes/admin/core/class-admin-settings.php:1219
2725
+ msgid "This controls the display of field icons in the login form"
2726
+ msgstr ""
2727
+
2728
+ #: includes/admin/core/class-admin-settings.php:1231
2729
+ msgid "Login Primary Button Text"
2730
+ msgstr ""
2731
+
2732
+ #: includes/admin/core/class-admin-settings.php:1239
2733
+ msgid "Login Secondary Button"
2734
+ msgstr ""
2735
+
2736
+ #: includes/admin/core/class-admin-settings.php:1246
2737
+ msgid "Login Secondary Button Text"
2738
+ msgstr ""
2739
+
2740
+ #: includes/admin/core/class-admin-settings.php:1255
2741
+ msgid "Login Secondary Button URL"
2742
+ msgstr ""
2743
+
2744
+ #: includes/admin/core/class-admin-settings.php:1264
2745
+ msgid "Login Forgot Password Link"
2746
+ msgstr ""
2747
+
2748
+ #: includes/admin/core/class-admin-settings.php:1266
2749
+ msgid "Switch on/off the forgot password link in login form"
2750
+ msgstr ""
2751
+
2752
+ #: includes/admin/core/class-admin-settings.php:1271
2753
+ msgid "Show \"Remember Me\""
2754
+ msgstr ""
2755
+
2756
+ #: includes/admin/core/class-admin-settings.php:1273
2757
+ msgid "Allow users to choose If they want to stay signed in even after closing the browser. If you do not show this option, the default will be to not remember login session."
2758
+ msgstr ""
2759
+
2760
+ #: includes/admin/core/class-admin-settings.php:1283
2761
+ msgid "Licenses"
2762
+ msgstr ""
2763
+
2764
+ #: includes/admin/core/class-admin-settings.php:1286
2765
+ msgid "Misc"
2766
+ msgstr ""
2767
+
2768
+ #: includes/admin/core/class-admin-settings.php:1291
2769
+ msgid "Show an asterisk for required fields"
2770
+ msgstr ""
2771
+
2772
+ #: includes/admin/core/class-admin-settings.php:1296
2773
+ msgid "User Profile Title"
2774
+ msgstr ""
2775
+
2776
+ #: includes/admin/core/class-admin-settings.php:1297
2777
+ msgid "This is the title that is displayed on a specific user profile"
2778
+ msgstr ""
2779
+
2780
+ #: includes/admin/core/class-admin-settings.php:1303
2781
+ msgid "User Profile Dynamic Meta Description"
2782
+ msgstr ""
2783
+
2784
+ #: includes/admin/core/class-admin-settings.php:1304
2785
+ msgid "This will be used in the meta description that is available for search-engines."
2786
+ msgstr ""
2787
+
2788
+ #: includes/admin/core/class-admin-settings.php:1312
2789
+ msgid "Disable Cache User Profile"
2790
+ msgstr ""
2791
+
2792
+ #: includes/admin/core/class-admin-settings.php:1313
2793
+ msgid "Check this box if you would like to disable Ultimate Member user's cache."
2794
+ msgstr ""
2795
+
2796
+ #: includes/admin/core/class-admin-settings.php:1318
2797
+ msgid "Enable Gutenberg Blocks"
2798
+ msgstr ""
2799
+
2800
+ #: includes/admin/core/class-admin-settings.php:1319
2801
+ msgid "Check this box if you would like to use Ultimate Member blocks in Gutenberg editor. Important some themes have the conflicts with Gutenberg editor."
2802
+ msgstr ""
2803
+
2804
+ #: includes/admin/core/class-admin-settings.php:1324
2805
+ msgid "REST API version"
2806
+ msgstr ""
2807
+
2808
+ #: includes/admin/core/class-admin-settings.php:1325
2809
+ msgid "This controls the REST API version, we recommend to use the last version"
2810
+ msgstr ""
2811
+
2812
+ #: includes/admin/core/class-admin-settings.php:1327
2813
+ msgid "1.0 version"
2814
+ msgstr ""
2815
+
2816
+ #: includes/admin/core/class-admin-settings.php:1328
2817
+ msgid "2.0 version"
2818
+ msgstr ""
2819
+
2820
+ #: includes/admin/core/class-admin-settings.php:1335
2821
+ msgid "Remove Data on Uninstall?"
2822
+ msgstr ""
2823
+
2824
+ #: includes/admin/core/class-admin-settings.php:1336
2825
+ msgid "Check this box if you would like Ultimate Member to completely remove all of its data when the plugin/extensions are deleted."
2826
+ msgstr ""
2827
+
2828
+ #: includes/admin/core/class-admin-settings.php:1341
2829
+ msgid "Install Info"
2830
+ msgstr ""
2831
+
2832
+ #: includes/admin/core/class-admin-settings.php:1458
2833
+ msgid "Ultimate Member - Settings"
2834
+ msgstr ""
2835
+
2836
+ #: includes/admin/core/class-admin-settings.php:1588
2837
+ msgid "Save Changes"
2838
+ msgstr ""
2839
+
2840
+ #: includes/admin/core/class-admin-settings.php:2158
2841
+ msgid "Subject Line"
2842
+ msgstr ""
2843
+
2844
+ #: includes/admin/core/class-admin-settings.php:2160
2845
+ msgid "This is the subject line of the e-mail"
2846
+ msgstr ""
2847
+
2848
+ #: includes/admin/core/class-admin-settings.php:2165
2849
+ msgid "Message Body"
2850
+ msgstr ""
2851
+
2852
+ #: includes/admin/core/class-admin-settings.php:2167
2853
+ msgid "This is the content of the e-mail"
2854
+ msgstr ""
2855
+
2856
+ #: includes/admin/core/class-admin-settings.php:2217
2857
+ #: includes/admin/core/class-admin-settings.php:2327
2858
+ msgid "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\">renew your license key</a>."
2859
+ msgstr ""
2860
+
2861
+ #: includes/admin/core/class-admin-settings.php:2230
2862
+ #: includes/admin/core/class-admin-settings.php:2340
2863
+ msgid "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank\">contact support</a> for more information."
2864
+ msgstr ""
2865
+
2866
+ #: includes/admin/core/class-admin-settings.php:2242
2867
+ #: includes/admin/core/class-admin-settings.php:2352
2868
+ msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> and verify it."
2869
+ msgstr ""
2870
+
2871
+ #: includes/admin/core/class-admin-settings.php:2255
2872
+ #: includes/admin/core/class-admin-settings.php:2365
2873
+ msgid "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> to manage your license key URLs."
2874
+ msgstr ""
2875
+
2876
+ #: includes/admin/core/class-admin-settings.php:2267
2877
+ #: includes/admin/core/class-admin-settings.php:2377
2878
+ msgid "This appears to be an invalid license key for %s."
2879
+ msgstr ""
2880
+
2881
+ #: includes/admin/core/class-admin-settings.php:2276
2882
+ #: includes/admin/core/class-admin-settings.php:2386
2883
+ msgid "Your license key has reached its activation limit. <a href=\"%s\">View possible upgrades</a> now."
2884
+ msgstr ""
2885
+
2886
+ #: includes/admin/core/class-admin-settings.php:2285
2887
+ #: includes/admin/core/class-admin-settings.php:2395
2888
+ msgid "The key you entered belongs to a bundle, please use the product specific license key."
2889
+ msgstr ""
2890
+
2891
+ #: includes/admin/core/class-admin-settings.php:2293
2892
+ #: includes/admin/core/class-admin-settings.php:2301
2893
+ #: includes/admin/core/class-admin-settings.php:2313
2894
+ msgid "unknown_error"
2895
+ msgstr ""
2896
+
2897
+ #: includes/admin/core/class-admin-settings.php:2294
2898
+ #: includes/admin/core/class-admin-settings.php:2302
2899
+ msgid "There was an error with this license key: %s. Please <a href=\"%s\">contact our support team</a>."
2900
+ msgstr ""
2901
+
2902
+ #: includes/admin/core/class-admin-settings.php:2315
2903
+ msgid "There was an error with this license key: %s%s. Please <a href=\"%s\">contact our support team</a>."
2904
+ msgstr ""
2905
+
2906
+ #: includes/admin/core/class-admin-settings.php:2410
2907
+ msgid "License key never expires."
2908
+ msgstr ""
2909
+
2910
+ #: includes/admin/core/class-admin-settings.php:2417
2911
+ msgid "Your license key expires soon! It expires on %s. <a href=\"%s\" target=\"_blank\">Renew your license key</a>."
2912
+ msgstr ""
2913
+
2914
+ #: includes/admin/core/class-admin-settings.php:2427
2915
+ msgid "Your license key expires on %s."
2916
+ msgstr ""
2917
+
2918
+ #: includes/admin/core/class-admin-settings.php:2445
2919
+ msgid "To receive updates, please enter your valid %s license key."
2920
+ msgstr ""
2921
+
2922
+ #: includes/admin/core/class-admin-settings.php:2467
2923
+ msgid "Clear License"
2924
+ msgstr ""
2925
+
2926
+ #: includes/admin/core/class-admin-settings.php:2469
2927
+ msgid "Activate"
2928
+ msgstr ""
2929
+
2930
+ #: includes/admin/core/class-admin-settings.php:2471
2931
+ msgid "Re-Activate"
2932
+ msgstr ""
2933
+
2934
+ #: includes/admin/core/class-admin-settings.php:2523
2935
+ msgid "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C (Mac)."
2936
+ msgstr ""
2937
+
2938
+ #: includes/admin/core/class-admin-upgrade.php:131
2939
+ msgid "%s is a major update, and we highly recommend creating a full backup of your site before updating."
2940
+ msgstr ""
2941
+
2942
+ #: includes/admin/core/class-admin-upgrade.php:237
2943
+ msgid "Upgrade"
2944
+ msgstr ""
2945
+
2946
+ #: includes/admin/core/class-admin-upgrade.php:245
2947
+ msgid "empty"
2948
+ msgstr ""
2949
+
2950
+ #: includes/admin/core/class-admin-upgrade.php:248
2951
+ msgid "%s - Upgrade Process"
2952
+ msgstr ""
2953
+
2954
+ #: includes/admin/core/class-admin-upgrade.php:249
2955
+ msgid "You have installed <strong>%s</strong> version. Your latest DB version is <strong>%s</strong>. We recommend creating a backup of your site before running the update process. Do not exit the page before the update process has complete."
2956
+ msgstr ""
2957
+
2958
+ #: includes/admin/core/class-admin-upgrade.php:250
2959
+ msgid "After clicking the <strong>\"Run\"</strong> button, the update process will start. All information will be displayed in the <strong>\"Upgrade Log\"</strong> field."
2960
+ msgstr ""
2961
+
2962
+ #: includes/admin/core/class-admin-upgrade.php:252
2963
+ msgid "Upgrade Log"
2964
+ msgstr ""
2965
+
2966
+ #: includes/admin/core/class-admin-users.php:117
2967
+ #: includes/admin/core/class-admin-users.php:120
2968
+ msgid "UM Action"
2969
+ msgstr ""
2970
+
2971
+ #: includes/admin/core/class-admin-users.php:124
2972
+ #: includes/core/class-fields.php:2664
2973
+ msgid "Apply"
2974
+ msgstr ""
2975
+
2976
+ #: includes/admin/core/class-admin-users.php:166
2977
+ #: includes/core/um-filters-user.php:19
2978
+ #: includes/core/um-filters-user.php:24
2979
+ msgid "Approve Membership"
2980
+ msgstr ""
2981
+
2982
+ #: includes/admin/core/class-admin-users.php:169
2983
+ #: includes/core/um-filters-user.php:20
2984
+ msgid "Reject Membership"
2985
+ msgstr ""
2986
+
2987
+ #: includes/admin/core/class-admin-users.php:172
2988
+ #: includes/core/um-filters-user.php:28
2989
+ msgid "Put as Pending Review"
2990
+ msgstr ""
2991
+
2992
+ #: includes/admin/core/class-admin-users.php:175
2993
+ #: includes/core/um-filters-user.php:32
2994
+ msgid "Resend Activation E-mail"
2995
+ msgstr ""
2996
+
2997
+ #: includes/admin/core/class-admin-users.php:178
2998
+ msgid "Deactivate"
2999
+ msgstr ""
3000
+
3001
+ #: includes/admin/core/class-admin-users.php:181
3002
+ msgid "Reactivate"
3003
+ msgstr ""
3004
+
3005
+ #: includes/admin/core/class-admin-users.php:204
3006
+ #: templates/account.php:43
3007
+ #: templates/account.php:84
3008
+ msgid "View profile"
3009
+ msgstr ""
3010
+
3011
+ #: includes/admin/core/class-admin-users.php:209
3012
+ msgid "Info"
3013
+ msgstr ""
3014
+
3015
+ #: includes/admin/core/class-admin-users.php:308
3016
+ #: includes/admin/core/class-admin-users.php:310
3017
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:340
3018
+ msgid "All"
3019
+ msgstr ""
3020
+
3021
+ #: includes/admin/core/class-admin-users.php:314
3022
+ #: includes/admin/templates/dashboard/users.php:28
3023
+ #: includes/core/class-user.php:981
3024
+ msgid "Approved"
3025
+ msgstr ""
3026
+
3027
+ #: includes/admin/core/class-admin-users.php:315
3028
+ msgid "Pending review"
3029
+ msgstr ""
3030
+
3031
+ #: includes/admin/core/class-admin-users.php:316
3032
+ msgid "Waiting e-mail confirmation"
3033
+ msgstr ""
3034
+
3035
+ #: includes/admin/core/class-admin-users.php:317
3036
+ #: includes/admin/templates/dashboard/users.php:86
3037
+ msgid "Inactive"
3038
+ msgstr ""
3039
+
3040
+ #: includes/admin/core/class-admin-users.php:318
3041
+ #: includes/admin/templates/dashboard/users.php:41
3042
+ msgid "Rejected"
3043
+ msgstr ""
3044
+
3045
+ #: includes/admin/core/class-admin-users.php:381
3046
+ msgid "You do not have enough permissions to do that."
3047
+ msgstr ""
3048
+
3049
+ #: includes/admin/core/list-tables/emails-list-table.php:70
3050
+ #: includes/admin/core/list-tables/roles-list-table.php:176
3051
+ msgid "item"
3052
+ msgstr ""
3053
+
3054
+ #: includes/admin/core/list-tables/emails-list-table.php:71
3055
+ #: includes/admin/core/list-tables/roles-list-table.php:177
3056
+ msgid "items"
3057
+ msgstr ""
3058
+
3059
+ #: includes/admin/core/list-tables/emails-list-table.php:75
3060
+ #: includes/admin/core/list-tables/roles-list-table.php:181
3061
+ msgid "not found."
3062
+ msgstr ""
3063
+
3064
+ #: includes/admin/core/list-tables/emails-list-table.php:245
3065
+ msgid "Member"
3066
+ msgstr ""
3067
+
3068
+ #: includes/admin/core/list-tables/emails-list-table.php:256
3069
+ msgid "Edit template"
3070
+ msgstr ""
3071
+
3072
+ #: includes/admin/core/list-tables/emails-list-table.php:279
3073
+ msgid "Email Notification"
3074
+ msgstr ""
3075
+
3076
+ #: includes/admin/core/list-tables/emails-list-table.php:280
3077
+ msgid "Email Notifications"
3078
+ msgstr ""
3079
+
3080
+ #: includes/admin/core/list-tables/emails-list-table.php:310
3081
+ msgid "Recipient(s)"
3082
+ msgstr ""
3083
+
3084
+ #: includes/admin/core/list-tables/emails-list-table.php:323
3085
+ msgid "You may get more details about email notifications customization <a href=\"%s\">here</a>"
3086
+ msgstr ""
3087
+
3088
+ #: includes/admin/core/list-tables/roles-list-table.php:22
3089
+ #: includes/admin/core/list-tables/roles-list-table.php:89
3090
+ #: includes/admin/core/list-tables/roles-list-table.php:402
3091
+ #: includes/core/class-member-directory.php:313
3092
+ msgid "Roles"
3093
+ msgstr ""
3094
+
3095
+ #: includes/admin/core/list-tables/roles-list-table.php:342
3096
+ msgid "Are you sure you want to delete this role?"
3097
+ msgstr ""
3098
+
3099
+ #: includes/admin/core/list-tables/roles-list-table.php:347
3100
+ msgid "Are you sure you want to reset UM role meta?"
3101
+ msgstr ""
3102
+
3103
+ #: includes/admin/core/list-tables/roles-list-table.php:347
3104
+ msgid "Reset UM Role meta"
3105
+ msgstr ""
3106
+
3107
+ #: includes/admin/core/list-tables/roles-list-table.php:401
3108
+ msgid "Role"
3109
+ msgstr ""
3110
+
3111
+ #: includes/admin/core/list-tables/roles-list-table.php:414
3112
+ msgid "Role Title"
3113
+ msgstr ""
3114
+
3115
+ #: includes/admin/core/list-tables/roles-list-table.php:415
3116
+ msgid "Role ID"
3117
+ msgstr ""
3118
+
3119
+ #: includes/admin/core/list-tables/roles-list-table.php:416
3120
+ msgid "No.of Members"
3121
+ msgstr ""
3122
+
3123
+ #: includes/admin/core/list-tables/roles-list-table.php:417
3124
+ msgid "UM Custom Role"
3125
+ msgstr ""
3126
+
3127
+ #: includes/admin/core/list-tables/roles-list-table.php:418
3128
+ msgid "WP-Admin Access"
3129
+ msgstr ""
3130
+
3131
+ #: includes/admin/core/list-tables/roles-list-table.php:419
3132
+ msgid "Priority"
3133
+ msgstr ""
3134
+
3135
+ #: includes/admin/core/list-tables/roles-list-table.php:485
3136
+ #: includes/admin/templates/role/role-edit.php:156
3137
+ #: includes/core/class-common.php:60
3138
+ #: includes/core/class-common.php:90
3139
+ msgid "Add New"
3140
+ msgstr ""
3141
+
3142
+ #: includes/admin/core/list-tables/roles-list-table.php:492
3143
+ msgid "User Role <strong>Deleted</strong> Successfully."
3144
+ msgstr ""
3145
+
3146
+ #: includes/admin/core/packages/2.0-beta1/functions.php:8
3147
+ #: includes/admin/core/packages/2.0.10/functions.php:8
3148
+ msgid "Styles was upgraded successfully"
3149
+ msgstr ""
3150
+
3151
+ #: includes/admin/core/packages/2.0-beta1/functions.php:21
3152
+ msgid "User Roles was upgraded successfully"
3153
+ msgstr ""
3154
+
3155
+ #: includes/admin/core/packages/2.0-beta1/functions.php:89
3156
+ msgid "Users from %s to %s was upgraded successfully..."
3157
+ msgstr ""
3158
+
3159
+ #: includes/admin/core/packages/2.0-beta1/functions.php:113
3160
+ msgid "Settings was upgraded successfully"
3161
+ msgstr ""
3162
+
3163
+ #: includes/admin/core/packages/2.0-beta1/functions.php:123
3164
+ msgid "Menus settings was upgraded successfully"
3165
+ msgstr ""
3166
+
3167
+ #: includes/admin/core/packages/2.0-beta1/functions.php:133
3168
+ msgid "Mailchimp Lists was upgraded successfully"
3169
+ msgstr ""
3170
+
3171
+ #: includes/admin/core/packages/2.0-beta1/functions.php:143
3172
+ msgid "Social login forms was upgraded successfully"
3173
+ msgstr ""
3174
+
3175
+ #: includes/admin/core/packages/2.0-beta1/functions.php:153
3176
+ msgid "UM Custom Posts was upgraded successfully"
3177
+ msgstr ""
3178
+
3179
+ #: includes/admin/core/packages/2.0-beta1/functions.php:170
3180
+ msgid "Forums are ready for upgrade"
3181
+ msgstr ""
3182
+
3183
+ #: includes/admin/core/packages/2.0-beta1/functions.php:218
3184
+ msgid "Forums from %s to %s was upgraded successfully..."
3185
+ msgstr ""
3186
+
3187
+ #: includes/admin/core/packages/2.0-beta1/functions.php:236
3188
+ msgid "Woocommerce Products are ready for upgrade"
3189
+ msgstr ""
3190
+
3191
+ #: includes/admin/core/packages/2.0-beta1/functions.php:305
3192
+ msgid "Woocommerce Products from %s to %s was upgraded successfully..."
3193
+ msgstr ""
3194
+
3195
+ #: includes/admin/core/packages/2.0-beta1/functions.php:323
3196
+ msgid "Email Templates was upgraded successfully"
3197
+ msgstr ""
3198
+
3199
+ #: includes/admin/core/packages/2.0-beta1/init.php:13
3200
+ #: includes/admin/core/packages/2.0.10/init.php:6
3201
+ msgid "Upgrade Styles..."
3202
+ msgstr ""
3203
+
3204
+ #: includes/admin/core/packages/2.0-beta1/init.php:38
3205
+ msgid "Upgrade Roles..."
3206
+ msgstr ""
3207
+
3208
+ #: includes/admin/core/packages/2.0-beta1/init.php:52
3209
+ msgid "Upgrade Users..."
3210
+ msgstr ""
3211
+
3212
+ #: includes/admin/core/packages/2.0-beta1/init.php:73
3213
+ msgid "Getting "
3214
+ msgstr ""
3215
+
3216
+ #: includes/admin/core/packages/2.0-beta1/init.php:73
3217
+ #: includes/admin/core/packages/2.0-beta1/init.php:85
3218
+ #: includes/admin/core/packages/2.1.3-beta3/init.php:22
3219
+ msgid " users..."
3220
+ msgstr ""
3221
+
3222
+ #: includes/admin/core/packages/2.0-beta1/init.php:85
3223
+ #: includes/admin/core/packages/2.1.3-beta3/init.php:22
3224
+ #: includes/admin/assets/js/um-admin-forms.js:66
3225
+ msgid "There are "
3226
+ msgstr ""
3227
+
3228
+ #: includes/admin/core/packages/2.0-beta1/init.php:86
3229
+ msgid "Start users upgrading..."
3230
+ msgstr ""
3231
+
3232
+ #: includes/admin/core/packages/2.0-beta1/init.php:139
3233
+ msgid "Upgrade Content Restriction Settings..."
3234
+ msgstr ""
3235
+
3236
+ #: includes/admin/core/packages/2.0-beta1/init.php:165
3237
+ msgid "Upgrade Settings..."
3238
+ msgstr ""
3239
+
3240
+ #: includes/admin/core/packages/2.0-beta1/init.php:191
3241
+ msgid "Upgrade Menu Items..."
3242
+ msgstr ""
3243
+
3244
+ #: includes/admin/core/packages/2.0-beta1/init.php:217
3245
+ msgid "Upgrade Mailchimp Lists..."
3246
+ msgstr ""
3247
+
3248
+ #: includes/admin/core/packages/2.0-beta1/init.php:243
3249
+ msgid "Upgrade Social Login Forms..."
3250
+ msgstr ""
3251
+
3252
+ #: includes/admin/core/packages/2.0-beta1/init.php:269
3253
+ msgid "Upgrade UM Custom Post Types..."
3254
+ msgstr ""
3255
+
3256
+ #: includes/admin/core/packages/2.0-beta1/init.php:295
3257
+ msgid "Upgrade bbPress Forums..."
3258
+ msgstr ""
3259
+
3260
+ #: includes/admin/core/packages/2.0-beta1/init.php:296
3261
+ msgid "Get bbPress Forums count..."
3262
+ msgstr ""
3263
+
3264
+ #: includes/admin/core/packages/2.0-beta1/init.php:355
3265
+ msgid "Upgrade Woocommerce Products..."
3266
+ msgstr ""
3267
+
3268
+ #: includes/admin/core/packages/2.0-beta1/init.php:356
3269
+ msgid "Get all Products..."
3270
+ msgstr ""
3271
+
3272
+ #: includes/admin/core/packages/2.0-beta1/init.php:417
3273
+ msgid "Upgrade Email Templates..."
3274
+ msgstr ""
3275
+
3276
+ #: includes/admin/core/packages/2.0.10/functions.php:21
3277
+ msgid "Users cache was cleared successfully"
3278
+ msgstr ""
3279
+
3280
+ #: includes/admin/core/packages/2.0.10/init.php:32
3281
+ msgid "Clear Users Cache..."
3282
+ msgstr ""
3283
+
3284
+ #: includes/admin/core/packages/2.0.24/functions.php:11
3285
+ msgid "Temporary dir was purged successfully"
3286
+ msgstr ""
3287
+
3288
+ #: includes/admin/core/packages/2.0.24/init.php:6
3289
+ msgid "Purge temp files dir..."
3290
+ msgstr ""
3291
+
3292
+ #: includes/admin/core/packages/2.0.44/functions.php:13
3293
+ msgid "Field was upgraded successfully"
3294
+ msgstr ""
3295
+
3296
+ #: includes/admin/core/packages/2.0.44/init.php:7
3297
+ msgid "Upgrade predefined metafields..."
3298
+ msgstr ""
3299
+
3300
+ #: includes/admin/core/packages/2.0.54/functions.php:13
3301
+ msgid "Roles was upgraded successfully"
3302
+ msgstr ""
3303
+
3304
+ #: includes/admin/core/packages/2.0.54/init.php:7
3305
+ msgid "Upgrade user roles..."
3306
+ msgstr ""
3307
+
3308
+ #: includes/admin/core/packages/2.1.0-beta1/functions.php:11
3309
+ msgid "Usermeta was upgraded successfully"
3310
+ msgstr ""
3311
+
3312
+ #: includes/admin/core/packages/2.1.0-beta1/functions.php:24
3313
+ msgid "Member directories were upgraded successfully"
3314
+ msgstr ""
3315
+
3316
+ #: includes/admin/core/packages/2.1.0-beta1/init.php:7
3317
+ #: includes/admin/core/packages/2.1.3-beta3/init.php:10
3318
+ msgid "Upgrade user metadata..."
3319
+ msgstr ""
3320
+
3321
+ #: includes/admin/core/packages/2.1.0-beta1/init.php:33
3322
+ msgid "Upgrade Member Directories..."
3323
+ msgstr ""
3324
+
3325
+ #: includes/admin/core/packages/2.1.3-beta3/functions.php:118
3326
+ msgid "Metadata from %s to %s users were upgraded successfully..."
3327
+ msgstr ""
3328
+
3329
+ #: includes/admin/core/packages/2.1.3-beta3/functions.php:146
3330
+ msgid "Usermeta table was upgraded successfully"
3331
+ msgstr ""
3332
+
3333
+ #: includes/admin/core/packages/2.1.3-beta3/init.php:23
3334
+ #: includes/admin/assets/js/um-admin-forms.js:67
3335
+ msgid "Start metadata upgrading..."
3336
+ msgstr ""
3337
+
3338
+ #: includes/admin/core/packages/2.1.3-beta3/init.php:69
3339
+ msgid "Create additional metadata table..."
3340
+ msgstr ""
3341
+
3342
+ #: includes/admin/core/packages/2.1.5/init.php:6
3343
+ msgid "Upgrade form fields..."
3344
+ msgstr ""
3345
+
3346
+ #: includes/admin/templates/dashboard/cache.php:12
3347
+ msgid "Run this task from time to time to keep your DB clean."
3348
+ msgstr ""
3349
+
3350
+ #: includes/admin/templates/dashboard/cache.php:15
3351
+ msgid "Clear cache of %s users"
3352
+ msgstr ""
3353
+
3354
+ #: includes/admin/templates/dashboard/feed.php:7
3355
+ msgid "Latest From Ultimate Member"
3356
+ msgstr ""
3357
+
3358
+ #: includes/admin/templates/dashboard/purge.php:7
3359
+ msgid "You can free up <span class=\"red\">%s MB</span> by purging your temp upload directory."
3360
+ msgstr ""
3361
+
3362
+ #: includes/admin/templates/dashboard/purge.php:12
3363
+ msgid "Purge Temp"
3364
+ msgstr ""
3365
+
3366
+ #: includes/admin/templates/dashboard/purge.php:19
3367
+ msgid "Your temp uploads directory is <span class=\"ok\">clean</span>. There is nothing to purge."
3368
+ msgstr ""
3369
+
3370
+ #: includes/admin/templates/dashboard/upgrade-request.php:4
3371
+ msgid "Run this task from time to time if you have issues with WP Cron and need to get UM extension updates."
3372
+ msgstr ""
3373
+
3374
+ #: includes/admin/templates/dashboard/upgrade-request.php:7
3375
+ msgid "Get latest versions"
3376
+ msgstr ""
3377
+
3378
+ #: includes/admin/templates/dashboard/users.php:60
3379
+ #: includes/core/class-user.php:989
3380
+ msgid "Pending Review"
3381
+ msgstr ""
3382
+
3383
+ #: includes/admin/templates/dashboard/users.php:73
3384
+ #: includes/core/class-user.php:985
3385
+ msgid "Awaiting E-mail Confirmation"
3386
+ msgstr ""
3387
+
3388
+ #: includes/admin/templates/directory/appearance.php:12
3389
+ #: includes/admin/templates/form/login_customize.php:23
3390
+ #: includes/admin/templates/form/profile_customize.php:42
3391
+ #: includes/admin/templates/form/register_customize.php:38
3392
+ msgid "Template"
3393
+ msgstr ""
3394
+
3395
+ #: includes/admin/templates/directory/general.php:41
3396
+ msgid "View type(s)"
3397
+ msgstr ""
3398
+
3399
+ #: includes/admin/templates/directory/general.php:42
3400
+ msgid "View type a specific parameter in the directory"
3401
+ msgstr ""
3402
+
3403
+ #: includes/admin/templates/directory/general.php:51
3404
+ msgid "Default view type"
3405
+ msgstr ""
3406
+
3407
+ #: includes/admin/templates/directory/general.php:52
3408
+ msgid "Default directory view type"
3409
+ msgstr ""
3410
+
3411
+ #: includes/admin/templates/directory/general.php:60
3412
+ msgid "User Roles to Display"
3413
+ msgstr ""
3414
+
3415
+ #: includes/admin/templates/directory/general.php:61
3416
+ msgid "If you do not want to show all members, select only user roles to appear in this directory"
3417
+ msgstr ""
3418
+
3419
+ #: includes/admin/templates/directory/general.php:69
3420
+ msgid "Only show members who have uploaded a profile photo"
3421
+ msgstr ""
3422
+
3423
+ #: includes/admin/templates/directory/general.php:70
3424
+ msgid "If 'Use Gravatars' as profile photo is enabled, this option is ignored"
3425
+ msgstr ""
3426
+
3427
+ #: includes/admin/templates/directory/general.php:76
3428
+ msgid "Only show members who have uploaded a cover photo"
3429
+ msgstr ""
3430
+
3431
+ #: includes/admin/templates/directory/general.php:82
3432
+ msgid "Only show specific users (Enter one username per line)"
3433
+ msgstr ""
3434
+
3435
+ #: includes/admin/templates/directory/general.php:88
3436
+ msgid "Exclude specific users (Enter one username per line)"
3437
+ msgstr ""
3438
+
3439
+ #: includes/admin/templates/directory/pagination.php:12
3440
+ msgid "Show results only after search/filtration"
3441
+ msgstr ""
3442
+
3443
+ #: includes/admin/templates/directory/pagination.php:13
3444
+ msgid "If turned on, member results will only appear after search/filter is performed"
3445
+ msgstr ""
3446
+
3447
+ #: includes/admin/templates/directory/pagination.php:20
3448
+ msgid "Maximum number of profiles"
3449
+ msgstr ""
3450
+
3451
+ #: includes/admin/templates/directory/pagination.php:21
3452
+ msgid "Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to disable this limit"
3453
+ msgstr ""
3454
+
3455
+ #: includes/admin/templates/directory/pagination.php:28
3456
+ msgid "Number of profiles per page"
3457
+ msgstr ""
3458
+
3459
+ #: includes/admin/templates/directory/pagination.php:29
3460
+ msgid "Number of profiles to appear on page for standard users"
3461
+ msgstr ""
3462
+
3463
+ #: includes/admin/templates/directory/pagination.php:36
3464
+ msgid "Number of profiles per page (for Mobiles & Tablets)"
3465
+ msgstr ""
3466
+
3467
+ #: includes/admin/templates/directory/pagination.php:37
3468
+ msgid "Number of profiles to appear on page for mobile users"
3469
+ msgstr ""
3470
+
3471
+ #: includes/admin/templates/directory/pagination.php:44
3472
+ msgid "Results Text"
3473
+ msgstr ""
3474
+
3475
+ #: includes/admin/templates/directory/pagination.php:45
3476
+ msgid "Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text"
3477
+ msgstr ""
3478
+
3479
+ #: includes/admin/templates/directory/pagination.php:46
3480
+ #: includes/admin/templates/directory/pagination.php:54
3481
+ msgid "You could use {total_users} placeholder for getting users count"
3482
+ msgstr ""
3483
+
3484
+ #: includes/admin/templates/directory/pagination.php:52
3485
+ msgid "Single Result Text"
3486
+ msgstr ""
3487
+
3488
+ #: includes/admin/templates/directory/pagination.php:53
3489
+ msgid "Same as above but in case of 1 user found only"
3490
+ msgstr ""
3491
+
3492
+ #: includes/admin/templates/directory/pagination.php:60
3493
+ msgid "Custom text if no users were found"
3494
+ msgstr ""
3495
+
3496
+ #: includes/admin/templates/directory/pagination.php:61
3497
+ msgid "This is the text that is displayed if no users are found during a search"
3498
+ msgstr ""
3499
+
3500
+ #: includes/admin/templates/directory/profile.php:20
3501
+ msgid "Enable Profile Photo"
3502
+ msgstr ""
3503
+
3504
+ #: includes/admin/templates/directory/profile.php:26
3505
+ msgid "Enable Cover Photo"
3506
+ msgstr ""
3507
+
3508
+ #: includes/admin/templates/directory/profile.php:27
3509
+ msgid "If turned on, the users cover photo will appear in the directory"
3510
+ msgstr ""
3511
+
3512
+ #: includes/admin/templates/directory/profile.php:33
3513
+ msgid "Show display name"
3514
+ msgstr ""
3515
+
3516
+ #: includes/admin/templates/directory/profile.php:39
3517
+ msgid "Show tagline below profile name"
3518
+ msgstr ""
3519
+
3520
+ #: includes/admin/templates/directory/profile.php:45
3521
+ msgid "Choose field(s) to display in tagline"
3522
+ msgstr ""
3523
+
3524
+ #: includes/admin/templates/directory/profile.php:48
3525
+ #: includes/admin/templates/directory/profile.php:64
3526
+ #: includes/admin/templates/directory/search.php:63
3527
+ msgid "Add New Custom Field"
3528
+ msgstr ""
3529
+
3530
+ #: includes/admin/templates/directory/profile.php:56
3531
+ msgid "Show extra user information below tagline?"
3532
+ msgstr ""
3533
+
3534
+ #: includes/admin/templates/directory/profile.php:62
3535
+ msgid "Choose field(s) to display in extra user information section"
3536
+ msgstr ""
3537
+
3538
+ #: includes/admin/templates/directory/profile.php:73
3539
+ msgid "Show social connect icons in extra user information section"
3540
+ msgstr ""
3541
+
3542
+ #: includes/admin/templates/directory/profile.php:80
3543
+ msgid "Hide extra user information to the reveal section"
3544
+ msgstr ""
3545
+
3546
+ #: includes/admin/templates/directory/profile.php:81
3547
+ msgid "If not checked always shown"
3548
+ msgstr ""
3549
+
3550
+ #: includes/admin/templates/directory/search.php:25
3551
+ msgid "Enable Search feature"
3552
+ msgstr ""
3553
+
3554
+ #: includes/admin/templates/directory/search.php:26
3555
+ msgid "If turned on, users will be able to search members in this directory"
3556
+ msgstr ""
3557
+
3558
+ #: includes/admin/templates/directory/search.php:32
3559
+ msgid "User Roles that can use search"
3560
+ msgstr ""
3561
+
3562
+ #: includes/admin/templates/directory/search.php:33
3563
+ msgid "If you want to allow specific user roles to be able to search only"
3564
+ msgstr ""
3565
+
3566
+ #: includes/admin/templates/directory/search.php:42
3567
+ msgid "Enable Filters feature"
3568
+ msgstr ""
3569
+
3570
+ #: includes/admin/templates/directory/search.php:43
3571
+ msgid "If turned on, users will be able to filter members in this directory"
3572
+ msgstr ""
3573
+
3574
+ #: includes/admin/templates/directory/search.php:49
3575
+ msgid "User Roles that can use filters"
3576
+ msgstr ""
3577
+
3578
+ #: includes/admin/templates/directory/search.php:50
3579
+ msgid "If you want to allow specific user roles to be able to filter only"
3580
+ msgstr ""
3581
+
3582
+ #: includes/admin/templates/directory/search.php:59
3583
+ msgid "Choose filter(s) meta to enable"
3584
+ msgstr ""
3585
+
3586
+ #: includes/admin/templates/directory/search.php:70
3587
+ msgid "Expand the filter bar by default"
3588
+ msgstr ""
3589
+
3590
+ #: includes/admin/templates/directory/search.php:71
3591
+ msgid "If turned on, filters bar will be visible after a page loading"
3592
+ msgstr ""
3593
+
3594
+ #: includes/admin/templates/directory/search.php:78
3595
+ msgid "Can filter bar be collapsed"
3596
+ msgstr ""
3597
+
3598
+ #: includes/admin/templates/directory/search.php:79
3599
+ msgid "If turned on, filters bar can be collapsed after a page loading"
3600
+ msgstr ""
3601
+
3602
+ #: includes/admin/templates/directory/search.php:86
3603
+ msgid "Admin filtering"
3604
+ msgstr ""
3605
+
3606
+ #: includes/admin/templates/directory/search.php:87
3607
+ msgid "Limit which users appear in the member directory e.g only display users from USA"
3608
+ msgstr ""
3609
+
3610
+ #: includes/admin/templates/directory/search.php:90
3611
+ msgid "Add New Filter"
3612
+ msgstr ""
3613
+
3614
+ #: includes/admin/templates/directory/sorting.php:15
3615
+ msgid "Default sort users by"
3616
+ msgstr ""
3617
+
3618
+ #: includes/admin/templates/directory/sorting.php:16
3619
+ msgid "Default sorting users by a specific parameter in the directory"
3620
+ msgstr ""
3621
+
3622
+ #: includes/admin/templates/directory/sorting.php:24
3623
+ msgid "To sort by a custom field, enter the meta key of field here"
3624
+ msgstr ""
3625
+
3626
+ #: includes/admin/templates/directory/sorting.php:31
3627
+ msgid "Label of custom sort"
3628
+ msgstr ""
3629
+
3630
+ #: includes/admin/templates/directory/sorting.php:32
3631
+ msgid "To sort by a custom field, enter the label of sorting here"
3632
+ msgstr ""
3633
+
3634
+ #: includes/admin/templates/directory/sorting.php:39
3635
+ msgid "Enable custom sorting"
3636
+ msgstr ""
3637
+
3638
+ #: includes/admin/templates/directory/sorting.php:40
3639
+ msgid "Whether to provide an ability to change the sorting on the directory page"
3640
+ msgstr ""
3641
+
3642
+ #: includes/admin/templates/directory/sorting.php:46
3643
+ msgid "Choose field(s) to enable in sorting"
3644
+ msgstr ""
3645
+
3646
+ #: includes/admin/templates/directory/sorting.php:48
3647
+ #: includes/core/class-member-directory.php:303
3648
+ msgid "Other (Custom Field)"
3649
+ msgstr ""
3650
+
3651
+ #: includes/admin/templates/directory/sorting.php:49
3652
+ #: includes/admin/templates/form/profile_settings.php:25
3653
+ msgid "Add New Field"
3654
+ msgstr ""
3655
+
3656
+ #: includes/admin/templates/extensions.php:173
3657
+ msgid "<strong>All Access Pass</strong> – Get access to all Ultimate Member extensions at a significant discount with our All Access Pass."
3658
+ msgstr ""
3659
+
3660
+ #: includes/admin/templates/extensions.php:177
3661
+ msgid "View Pricing"
3662
+ msgstr ""
3663
+
3664
+ #: includes/admin/templates/extensions.php:186
3665
+ msgid "Premium"
3666
+ msgstr ""
3667
+
3668
+ #: includes/admin/templates/extensions.php:191
3669
+ msgid "Free"
3670
+ msgstr ""
3671
+
3672
+ #: includes/admin/templates/extensions.php:217
3673
+ #: includes/admin/templates/extensions.php:251
3674
+ msgid "Get this Add on"
3675
+ msgstr ""
3676
+
3677
+ #: includes/admin/templates/extensions.php:222
3678
+ #: includes/admin/templates/extensions.php:256
3679
+ msgid "More Details"
3680
+ msgstr ""
3681
+
3682
+ #: includes/admin/templates/form/builder.php:13
3683
+ msgid "Live Preview"
3684
+ msgstr ""
3685
+
3686
+ #: includes/admin/templates/form/builder.php:27
3687
+ msgid "Add Master Row"
3688
+ msgstr ""
3689
+
3690
+ #: includes/admin/templates/form/login_customize.php:12
3691
+ #: includes/admin/templates/form/profile_customize.php:21
3692
+ #: includes/admin/templates/form/register_customize.php:19
3693
+ msgid "Apply custom settings to this form"
3694
+ msgstr ""
3695
+
3696
+ #: includes/admin/templates/form/login_customize.php:13
3697
+ #: includes/admin/templates/form/profile_customize.php:22
3698
+ #: includes/admin/templates/form/register_customize.php:20
3699
+ msgid "Switch to yes if you want to customize this form settings, styling &amp; appearance"
3700
+ msgstr ""
3701
+
3702
+ #: includes/admin/templates/form/login_customize.php:31
3703
+ #: includes/admin/templates/form/profile_customize.php:50
3704
+ #: includes/admin/templates/form/register_customize.php:46
3705
+ msgid "Max. Width (px)"
3706
+ msgstr ""
3707
+
3708
+ #: includes/admin/templates/form/login_customize.php:32
3709
+ #: includes/admin/templates/form/profile_customize.php:51
3710
+ #: includes/admin/templates/form/register_customize.php:47
3711
+ msgid "The maximum width of shortcode in pixels e.g. 600px"
3712
+ msgstr ""
3713
+
3714
+ #: includes/admin/templates/form/login_customize.php:39
3715
+ #: includes/admin/templates/form/profile_customize.php:66
3716
+ #: includes/admin/templates/form/register_customize.php:54
3717
+ msgid "Field Icons"
3718
+ msgstr ""
3719
+
3720
+ #: includes/admin/templates/form/login_customize.php:40
3721
+ #: includes/admin/templates/form/profile_customize.php:67
3722
+ #: includes/admin/templates/form/register_customize.php:55
3723
+ msgid "Whether to show field icons and where to show them relative to the field"
3724
+ msgstr ""
3725
+
3726
+ #: includes/admin/templates/form/login_customize.php:52
3727
+ #: includes/admin/templates/form/profile_customize.php:79
3728
+ #: includes/admin/templates/form/register_customize.php:67
3729
+ msgid "Primary Button Text"
3730
+ msgstr ""
3731
+
3732
+ #: includes/admin/templates/form/login_customize.php:53
3733
+ #: includes/admin/templates/form/login_customize.php:72
3734
+ #: includes/admin/templates/form/profile_customize.php:80
3735
+ #: includes/admin/templates/form/profile_customize.php:99
3736
+ #: includes/admin/templates/form/register_customize.php:68
3737
+ #: includes/admin/templates/form/register_customize.php:87
3738
+ msgid "Customize the button text"
3739
+ msgstr ""
3740
+
3741
+ #: includes/admin/templates/form/login_customize.php:60
3742
+ #: includes/admin/templates/form/profile_customize.php:87
3743
+ #: includes/admin/templates/form/register_customize.php:75
3744
+ msgid "Show Secondary Button"
3745
+ msgstr ""
3746
+
3747
+ #: includes/admin/templates/form/login_customize.php:71
3748
+ #: includes/admin/templates/form/profile_customize.php:98
3749
+ #: includes/admin/templates/form/register_customize.php:86
3750
+ msgid "Secondary Button Text"
3751
+ msgstr ""
3752
+
3753
+ #: includes/admin/templates/form/login_customize.php:79
3754
+ msgid "Show Forgot Password Link?"
3755
+ msgstr ""
3756
+
3757
+ #: includes/admin/templates/form/login_customize.php:90
3758
+ msgid "Show \"Remember Me\"?"
3759
+ msgstr ""
3760
+
3761
+ #: includes/admin/templates/form/login_settings.php:12
3762
+ msgid "Redirection after Login"
3763
+ msgstr ""
3764
+
3765
+ #: includes/admin/templates/form/login_settings.php:13
3766
+ msgid "Change this If you want to override role redirection settings after login only."
3767
+ msgstr ""
3768
+
3769
+ #: includes/admin/templates/form/login_settings.php:17
3770
+ #: includes/admin/templates/role/login.php:19
3771
+ #: includes/admin/templates/role/register.php:30
3772
+ msgid "Redirect to profile"
3773
+ msgstr ""
3774
+
3775
+ #: includes/admin/templates/form/login_settings.php:18
3776
+ #: includes/admin/templates/role/login.php:20
3777
+ #: includes/admin/templates/role/register.php:31
3778
+ #: includes/admin/templates/role/register.php:58
3779
+ #: includes/admin/templates/role/register.php:92
3780
+ msgid "Redirect to URL"
3781
+ msgstr ""
3782
+
3783
+ #: includes/admin/templates/form/login_settings.php:19
3784
+ #: includes/admin/templates/role/login.php:21
3785
+ msgid "Refresh active page"
3786
+ msgstr ""
3787
+
3788
+ #: includes/admin/templates/form/login_settings.php:20
3789
+ #: includes/admin/templates/role/login.php:22
3790
+ msgid "Redirect to WordPress Admin"
3791
+ msgstr ""
3792
+
3793
+ #: includes/admin/templates/form/login_settings.php:26
3794
+ #: includes/admin/templates/role/delete.php:26
3795
+ #: includes/admin/templates/role/login.php:28
3796
+ #: includes/admin/templates/role/logout.php:26
3797
+ #: includes/admin/templates/role/register.php:38
3798
+ #: includes/admin/templates/role/register.php:72
3799
+ #: includes/admin/templates/role/register.php:106
3800
+ msgid "Set Custom Redirect URL"
3801
+ msgstr ""
3802
+
3803
+ #: includes/admin/templates/form/mode.php:9
3804
+ msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
3805
+ msgstr ""
3806
+
3807
+ #: includes/admin/templates/form/mode.php:14
3808
+ msgid "Profile Form"
3809
+ msgstr ""
3810
+
3811
+ #: includes/admin/templates/form/profile_customize.php:33
3812
+ msgid "Make this profile form role-specific"
3813
+ msgstr ""
3814
+
3815
+ #: includes/admin/templates/form/profile_customize.php:34
3816
+ msgid "Please note if you make a profile form specific to a role then you must make sure that every other role is assigned a profile form"
3817
+ msgstr ""
3818
+
3819
+ #: includes/admin/templates/form/profile_customize.php:58
3820
+ msgid "Profile Area Max. Width (px)"
3821
+ msgstr ""
3822
+
3823
+ #: includes/admin/templates/form/profile_customize.php:106
3824
+ msgid "Enable Cover Photos"
3825
+ msgstr ""
3826
+
3827
+ #: includes/admin/templates/form/profile_customize.php:117
3828
+ msgid "Cover Photo Size"
3829
+ msgstr ""
3830
+
3831
+ #: includes/admin/templates/form/profile_customize.php:118
3832
+ #: includes/admin/templates/form/profile_customize.php:153
3833
+ msgid "Set the profile photo size in pixels here"
3834
+ msgstr ""
3835
+
3836
+ #: includes/admin/templates/form/profile_customize.php:126
3837
+ msgid "Cover photo ratio"
3838
+ msgstr ""
3839
+
3840
+ #: includes/admin/templates/form/profile_customize.php:161
3841
+ msgid "Make Profile Photo Required"
3842
+ msgstr ""
3843
+
3844
+ #: includes/admin/templates/form/profile_customize.php:162
3845
+ msgid "Require user to update a profile photo when updating their profile"
3846
+ msgstr ""
3847
+
3848
+ #: includes/admin/templates/form/profile_customize.php:173
3849
+ msgid "Show display name in profile header?"
3850
+ msgstr ""
3851
+
3852
+ #: includes/admin/templates/form/profile_customize.php:184
3853
+ msgid "Show social links in profile header?"
3854
+ msgstr ""
3855
+
3856
+ #: includes/admin/templates/form/profile_customize.php:195
3857
+ msgid "Show user description in profile header?"
3858
+ msgstr ""
3859
+
3860
+ #: includes/admin/templates/form/profile_settings.php:21
3861
+ msgid "Field(s) to show in user meta"
3862
+ msgstr ""
3863
+
3864
+ #: includes/admin/templates/form/profile_settings.php:22
3865
+ msgid "Fields selected here will appear in the profile header area below the user's display name"
3866
+ msgstr ""
3867
+
3868
+ #: includes/admin/templates/form/register_customize.php:30
3869
+ msgid "Assign role to form"
3870
+ msgstr ""
3871
+
3872
+ #: includes/admin/templates/form/register_gdpr.php:8
3873
+ msgid "Select page"
3874
+ msgstr ""
3875
+
3876
+ #: includes/admin/templates/form/register_gdpr.php:23
3877
+ msgid "Enable on this form"
3878
+ msgstr ""
3879
+
3880
+ #: includes/admin/templates/form/register_gdpr.php:33
3881
+ msgid "Content"
3882
+ msgstr ""
3883
+
3884
+ #: includes/admin/templates/form/register_gdpr.php:41
3885
+ msgid "Toggle Show text"
3886
+ msgstr ""
3887
+
3888
+ #: includes/admin/templates/form/register_gdpr.php:42
3889
+ #: includes/admin/templates/form/register_gdpr.php:43
3890
+ #: templates/gdpr-register.php:15
3891
+ #: templates/gdpr-register.php:17
3892
+ msgid "Show privacy policy"
3893
+ msgstr ""
3894
+
3895
+ #: includes/admin/templates/form/register_gdpr.php:49
3896
+ msgid "Toggle Hide text"
3897
+ msgstr ""
3898
+
3899
+ #: includes/admin/templates/form/register_gdpr.php:50
3900
+ #: includes/admin/templates/form/register_gdpr.php:51
3901
+ #: templates/gdpr-register.php:16
3902
+ msgid "Hide privacy policy"
3903
+ msgstr ""
3904
+
3905
+ #: includes/admin/templates/form/register_gdpr.php:57
3906
+ msgid "Checkbox agreement description"
3907
+ msgstr ""
3908
+
3909
+ #: includes/admin/templates/form/register_gdpr.php:58
3910
+ #: includes/admin/templates/form/register_gdpr.php:59
3911
+ #: templates/gdpr-register.php:27
3912
+ msgid "Please confirm that you agree to our privacy policy"
3913
+ msgstr ""
3914
+
3915
+ #: includes/admin/templates/form/register_gdpr.php:65
3916
+ msgid "Error Text"
3917
+ msgstr ""
3918
+
3919
+ #: includes/admin/templates/form/register_gdpr.php:66
3920
+ #: includes/admin/templates/form/register_gdpr.php:67
3921
+ #: templates/gdpr-register.php:40
3922
+ msgid "Please confirm your acceptance of our privacy policy"
3923
+ msgstr ""
3924
+
3925
+ #: includes/admin/templates/gdpr.php:4
3926
+ msgid "What personal data we collect and why we collect it"
3927
+ msgstr ""
3928
+
3929
+ #: includes/admin/templates/gdpr.php:10
3930
+ msgid "%s provides you with forms for user registration, login and profiles."
3931
+ msgstr ""
3932
+
3933
+ #: includes/admin/templates/gdpr.php:13
3934
+ msgid "Via these forms you are collecting personal data from your users."
3935
+ msgstr ""
3936
+
3937
+ #: includes/admin/templates/gdpr.php:16
3938
+ msgid "You should include in your privacy policy what personal data is captured when someone submits/fills in one of the forms, why you collect it and what you do with this data and how long you keep it."
3939
+ msgstr ""
3940
+
3941
+ #: includes/admin/templates/gdpr.php:20
3942
+ msgid "How long we retain your data"
3943
+ msgstr ""
3944
+
3945
+ #: includes/admin/templates/gdpr.php:23
3946
+ msgid "Registered user information is retained in your website’s database indefinitely."
3947
+ msgstr ""
3948
+
3949
+ #: includes/admin/templates/gdpr.php:26
3950
+ msgid "Data can be exported or removed upon users request via the existing WordPress data exporter or eraser."
3951
+ msgstr ""
3952
+
3953
+ #: includes/admin/templates/gdpr.php:29
3954
+ msgid "If syncing data to a 3rd party service (e.g Mailchimp via our MailChimp extension), data is retained there until unsubscribed or deleted."
3955
+ msgstr ""
3956
+
3957
+ #: includes/admin/templates/gdpr.php:33
3958
+ msgid "Where we send your data"
3959
+ msgstr ""
3960
+
3961
+ #: includes/admin/templates/gdpr.php:36
3962
+ msgid "%s does not send any user data outside of your site by default."
3963
+ msgstr ""
3964
+
3965
+ #: includes/admin/templates/gdpr.php:39
3966
+ msgid "If you have extended the functionality of the plugin (e.g sending registered user data to MailChimp via our MailChimp extension, this user info may be passed to these external services. These services may be located abroad and outwith the EU."
3967
+ msgstr ""
3968
+
3969
+ #: includes/admin/templates/modal/dynamic_edit_field.php:9
3970
+ msgid "Edit Field"
3971
+ msgstr ""
3972
+
3973
+ #: includes/admin/templates/modal/dynamic_edit_field.php:15
3974
+ #: includes/admin/templates/modal/dynamic_edit_row.php:15
3975
+ msgid "Update"
3976
+ msgstr ""
3977
+
3978
+ #: includes/admin/templates/modal/dynamic_edit_field.php:18
3979
+ #: includes/admin/templates/modal/dynamic_edit_row.php:18
3980
+ #: includes/admin/templates/modal/dynamic_new_divider.php:18
3981
+ #: includes/admin/templates/modal/dynamic_new_field.php:18
3982
+ #: includes/admin/templates/modal/dynamic_new_group.php:18
3983
+ #: includes/admin/templates/modal/fonticons.php:14
3984
+ #: includes/admin/templates/role/publish.php:24
3985
+ #: includes/class-config.php:254
3986
+ #: includes/core/class-fields.php:2665
3987
+ #: includes/core/class-fields.php:2764
3988
+ #: includes/core/um-actions-profile.php:766
3989
+ #: includes/core/um-actions-profile.php:778
3990
+ #: includes/core/um-actions-profile.php:966
3991
+ #: includes/core/um-actions-profile.php:999
3992
+ #: includes/core/um-actions-profile.php:1346
3993
+ #: includes/core/um-actions-profile.php:1353
3994
+ msgid "Cancel"
3995
+ msgstr ""
3996
+
3997
+ #: includes/admin/templates/modal/dynamic_edit_row.php:9
3998
+ msgid "Edit Row Settings"
3999
+ msgstr ""
4000
+
4001
+ #: includes/admin/templates/modal/dynamic_form_preview.php:7
4002
+ msgid "Live Form Preview"
4003
+ msgstr ""
4004
+
4005
+ #: includes/admin/templates/modal/dynamic_form_preview.php:13
4006
+ msgid "Continue editing"
4007
+ msgstr ""
4008
+
4009
+ #: includes/admin/templates/modal/dynamic_new_divider.php:9
4010
+ msgid "Add a New Divider"
4011
+ msgstr ""
4012
+
4013
+ #: includes/admin/templates/modal/dynamic_new_divider.php:15
4014
+ #: includes/admin/templates/modal/dynamic_new_field.php:15
4015
+ #: includes/admin/templates/modal/dynamic_new_group.php:15
4016
+ msgid "Add"
4017
+ msgstr ""
4018
+
4019
+ #: includes/admin/templates/modal/dynamic_new_field.php:9
4020
+ msgid "Add a New Field"
4021
+ msgstr ""
4022
+
4023
+ #: includes/admin/templates/modal/dynamic_new_group.php:9
4024
+ msgid "Add a New Field Group"
4025
+ msgstr ""
4026
+
4027
+ #: includes/admin/templates/modal/dynamic_registration_preview.php:7
4028
+ msgid "Review Registration Details"
4029
+ msgstr ""
4030
+
4031
+ #: includes/admin/templates/modal/fields.php:7
4032
+ msgid "Fields Manager"
4033
+ msgstr ""
4034
+
4035
+ #: includes/admin/templates/modal/fonticons.php:7
4036
+ msgid "Choose from %s available icons"
4037
+ msgstr ""
4038
+
4039
+ #: includes/admin/templates/modal/fonticons.php:13
4040
+ msgid "Finish"
4041
+ msgstr ""
4042
+
4043
+ #: includes/admin/templates/role/admin-permissions.php:14
4044
+ msgid "Can access wp-admin?"
4045
+ msgstr ""
4046
+
4047
+ #: includes/admin/templates/role/admin-permissions.php:15
4048
+ msgid "The core admin role must always have access to wp-admin / WordPress backend"
4049
+ msgstr ""
4050
+
4051
+ #: includes/admin/templates/role/admin-permissions.php:21
4052
+ msgid "Force hiding adminbar in frontend?"
4053
+ msgstr ""
4054
+
4055
+ #: includes/admin/templates/role/admin-permissions.php:22
4056
+ msgid "Mark this option if you need to hide the adminbar on frontend for this role"
4057
+ msgstr ""
4058
+
4059
+ #: includes/admin/templates/role/admin-permissions.php:28
4060
+ msgid "Can edit other member accounts?"
4061
+ msgstr ""
4062
+
4063
+ #: includes/admin/templates/role/admin-permissions.php:29
4064
+ #: includes/admin/templates/role/admin-permissions.php:46
4065
+ msgid "Allow this role to edit accounts of other members"
4066
+ msgstr ""
4067
+
4068
+ #: includes/admin/templates/role/admin-permissions.php:35
4069
+ msgid "Can edit these user roles only"
4070
+ msgstr ""
4071
+
4072
+ #: includes/admin/templates/role/admin-permissions.php:36
4073
+ #: includes/admin/templates/role/admin-permissions.php:53
4074
+ msgid "Which roles that role can edit, choose none to allow role to edit all member roles"
4075
+ msgstr ""
4076
+
4077
+ #: includes/admin/templates/role/admin-permissions.php:45
4078
+ msgid "Can delete other member accounts?"
4079
+ msgstr ""
4080
+
4081
+ #: includes/admin/templates/role/admin-permissions.php:52
4082
+ msgid "Can delete these user roles only"
4083
+ msgstr ""
4084
+
4085
+ #: includes/admin/templates/role/delete.php:15
4086
+ msgid "Action to be taken after account is deleted"
4087
+ msgstr ""
4088
+
4089
+ #: includes/admin/templates/role/delete.php:16
4090
+ msgid "Select what happens when a user with this role deletes their own account"
4091
+ msgstr ""
4092
+
4093
+ #: includes/admin/templates/role/delete.php:19
4094
+ #: includes/admin/templates/role/logout.php:19
4095
+ msgid "Go to Homepage"
4096
+ msgstr ""
4097
+
4098
+ #: includes/admin/templates/role/delete.php:20
4099
+ #: includes/admin/templates/role/logout.php:20
4100
+ msgid "Go to Custom URL"
4101
+ msgstr ""
4102
+
4103
+ #: includes/admin/templates/role/delete.php:27
4104
+ msgid "Set a url to redirect this user role to after they delete account"
4105
+ msgstr ""
4106
+
4107
+ #: includes/admin/templates/role/general.php:14
4108
+ msgid "Can edit their profile?"
4109
+ msgstr ""
4110
+
4111
+ #: includes/admin/templates/role/general.php:15
4112
+ msgid "Can this role edit his own profile?"
4113
+ msgstr ""
4114
+
4115
+ #: includes/admin/templates/role/general.php:21
4116
+ msgid "Can delete their account?"
4117
+ msgstr ""
4118
+
4119
+ #: includes/admin/templates/role/general.php:22
4120
+ msgid "Allow this role to delete their account and end their membership on your site"
4121
+ msgstr ""
4122
+
4123
+ #: includes/admin/templates/role/home.php:15
4124
+ msgid "Can view default homepage?"
4125
+ msgstr ""
4126
+
4127
+ #: includes/admin/templates/role/home.php:16
4128
+ msgid "Allow this user role to view your site's homepage"
4129
+ msgstr ""
4130
+
4131
+ #: includes/admin/templates/role/home.php:22
4132
+ msgid "Custom Homepage Redirect"
4133
+ msgstr ""
4134
+
4135
+ #: includes/admin/templates/role/home.php:23
4136
+ msgid "Set a url to redirect this user role to if they try to view your site's homepage"
4137
+ msgstr ""
4138
+
4139
+ #: includes/admin/templates/role/login.php:15
4140
+ msgid "Action to be taken after login"
4141
+ msgstr ""
4142
+
4143
+ #: includes/admin/templates/role/login.php:16
4144
+ msgid "Select what happens when a user with this role logins to your site"
4145
+ msgstr ""
4146
+
4147
+ #: includes/admin/templates/role/login.php:29
4148
+ msgid "Set a url to redirect this user role to after they login with their account"
4149
+ msgstr ""
4150
+
4151
+ #: includes/admin/templates/role/logout.php:15
4152
+ msgid "Action to be taken after logout"
4153
+ msgstr ""
4154
+
4155
+ #: includes/admin/templates/role/logout.php:16
4156
+ msgid "Select what happens when a user with this role logouts of your site"
4157
+ msgstr ""
4158
+
4159
+ #: includes/admin/templates/role/logout.php:27
4160
+ msgid "Set a url to redirect this user role to after they logout from site"
4161
+ msgstr ""
4162
+
4163
+ #: includes/admin/templates/role/profile.php:14
4164
+ msgid "Can view other member profiles?"
4165
+ msgstr ""
4166
+
4167
+ #: includes/admin/templates/role/profile.php:15
4168
+ msgid "Can this role view all member profiles?"
4169
+ msgstr ""
4170
+
4171
+ #: includes/admin/templates/role/profile.php:21
4172
+ msgid "Can view these user roles only"
4173
+ msgstr ""
4174
+
4175
+ #: includes/admin/templates/role/profile.php:22
4176
+ msgid "Which roles that role can view, choose none to allow role to view all member roles"
4177
+ msgstr ""
4178
+
4179
+ #: includes/admin/templates/role/profile.php:32
4180
+ msgid "Can make their profile private?"
4181
+ msgstr ""
4182
+
4183
+ #: includes/admin/templates/role/profile.php:33
4184
+ msgid "Can this role make their profile private?"
4185
+ msgstr ""
4186
+
4187
+ #: includes/admin/templates/role/profile.php:40
4188
+ msgid "Can view/access private profiles?"
4189
+ msgstr ""
4190
+
4191
+ #: includes/admin/templates/role/profile.php:41
4192
+ msgid "Can this role view private profiles?"
4193
+ msgstr ""
4194
+
4195
+ #: includes/admin/templates/role/publish.php:13
4196
+ msgid "Role Priority"
4197
+ msgstr ""
4198
+
4199
+ #: includes/admin/templates/role/publish.php:14
4200
+ msgid "The higher the number, the higher the priority"
4201
+ msgstr ""
4202
+
4203
+ #: includes/admin/templates/role/publish.php:23
4204
+ msgid "Update Role"
4205
+ msgstr ""
4206
+
4207
+ #: includes/admin/templates/role/publish.php:23
4208
+ msgid "Create Role"
4209
+ msgstr ""
4210
+
4211
+ #: includes/admin/templates/role/register.php:14
4212
+ msgid "Registration Status"
4213
+ msgstr ""
4214
+
4215
+ #: includes/admin/templates/role/register.php:15
4216
+ msgid "Select the status you would like this user role to have after they register on your site"
4217
+ msgstr ""
4218
+
4219
+ #: includes/admin/templates/role/register.php:18
4220
+ msgid "Auto Approve"
4221
+ msgstr ""
4222
+
4223
+ #: includes/admin/templates/role/register.php:19
4224
+ msgid "Require Email Activation"
4225
+ msgstr ""
4226
+
4227
+ #: includes/admin/templates/role/register.php:20
4228
+ msgid "Require Admin Review"
4229
+ msgstr ""
4230
+
4231
+ #: includes/admin/templates/role/register.php:26
4232
+ #: includes/admin/templates/role/register.php:53
4233
+ #: includes/admin/templates/role/register.php:87
4234
+ msgid "Action to be taken after registration"
4235
+ msgstr ""
4236
+
4237
+ #: includes/admin/templates/role/register.php:27
4238
+ #: includes/admin/templates/role/register.php:54
4239
+ #: includes/admin/templates/role/register.php:88
4240
+ msgid "Select what action is taken after a person registers on your site. Depending on the status you can redirect them to their profile, a custom url or show a custom message"
4241
+ msgstr ""
4242
+
4243
+ #: includes/admin/templates/role/register.php:45
4244
+ msgid "Login user after validating the activation link?"
4245
+ msgstr ""
4246
+
4247
+ #: includes/admin/templates/role/register.php:46
4248
+ msgid "Login the user after validating the activation link"
4249
+ msgstr ""
4250
+
4251
+ #: includes/admin/templates/role/register.php:57
4252
+ #: includes/admin/templates/role/register.php:91
4253
+ #: includes/admin/assets/js/um-admin-blocks.js:153
4254
+ msgid "Show custom message"
4255
+ msgstr ""
4256
+
4257
+ #: includes/admin/templates/role/register.php:65
4258
+ #: includes/admin/templates/role/register.php:99
4259
+ msgid "Personalize the custom message"
4260
+ msgstr ""
4261
+
4262
+ #: includes/admin/templates/role/register.php:66
4263
+ msgid "Thank you for registering. Before you can login we need you to activate your account by clicking the activation link in the email we just sent you."
4264
+ msgstr ""
4265
+
4266
+ #: includes/admin/templates/role/register.php:79
4267
+ msgid "URL redirect after e-mail activation"
4268
+ msgstr ""
4269
+
4270
+ #: includes/admin/templates/role/register.php:80
4271
+ msgid "If you want users to go to a specific page other than login page after e-mail activation, enter the URL here."
4272
+ msgstr ""
4273
+
4274
+ #: includes/admin/templates/role/register.php:100
4275
+ msgid "Thank you for applying for membership to our site. We will review your details and send you an email letting you know whether your application has been successful or not."
4276
+ msgstr ""
4277
+
4278
+ #: includes/admin/templates/role/role-edit.php:69
4279
+ #: includes/admin/templates/role/role-edit.php:73
4280
+ msgid "Security Issue"
4281
+ msgstr ""
4282
+
4283
+ #: includes/admin/templates/role/role-edit.php:86
4284
+ msgid "Title is empty!"
4285
+ msgstr ""
4286
+
4287
+ #: includes/admin/templates/role/role-edit.php:113
4288
+ msgid "Role already exists!"
4289
+ msgstr ""
4290
+
4291
+ #: includes/admin/templates/role/role-edit.php:154
4292
+ msgid "Add New Role"
4293
+ msgstr ""
4294
+
4295
+ #: includes/admin/templates/role/role-edit.php:154
4296
+ msgid "Edit Role"
4297
+ msgstr ""
4298
+
4299
+ #: includes/admin/templates/role/role-edit.php:163
4300
+ msgid "User Role <strong>Added</strong> Successfully."
4301
+ msgstr ""
4302
+
4303
+ #: includes/admin/templates/role/role-edit.php:166
4304
+ msgid "User Role <strong>Updated</strong> Successfully."
4305
+ msgstr ""
4306
+
4307
+ #: includes/admin/templates/role/role-edit.php:194
4308
+ msgid "Enter Title Here"
4309
+ msgstr ""
4310
+
4311
+ #: includes/admin/templates/role/wp-capabilities.php:39
4312
+ msgid "Uncheck All"
4313
+ msgstr ""
4314
+
4315
+ #: includes/admin/templates/role/wp-capabilities.php:41
4316
+ #: includes/admin/templates/role/wp-capabilities.php:49
4317
+ msgid "Check All"
4318
+ msgstr ""
4319
+
4320
+ #: includes/class-config.php:131
4321
+ #: includes/class-config.php:791
4322
+ msgid "User"
4323
+ msgstr ""
4324
+
4325
+ #: includes/class-config.php:132
4326
+ #: includes/class-config.php:264
4327
+ #: includes/class-config.php:272
4328
+ #: includes/class-config.php:792
4329
+ msgid "Login"
4330
+ msgstr ""
4331
+
4332
+ #: includes/class-config.php:133
4333
+ #: includes/class-config.php:262
4334
+ #: includes/class-config.php:276
4335
+ #: includes/class-config.php:793
4336
+ msgid "Register"
4337
+ msgstr ""
4338
+
4339
+ #: includes/class-config.php:135
4340
+ #: includes/class-config.php:795
4341
+ #: includes/core/class-member-directory.php:2185
4342
+ #: includes/core/um-actions-profile.php:1352
4343
+ #: includes/core/um-actions-user.php:19
4344
+ msgid "Logout"
4345
+ msgstr ""
4346
+
4347
+ #: includes/class-config.php:137
4348
+ #: includes/class-config.php:797
4349
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:276
4350
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:296
4351
+ msgid "Password Reset"
4352
+ msgstr ""
4353
+
4354
+ #: includes/class-config.php:181
4355
+ #: includes/class-config.php:281
4356
+ msgid "{total_users} Members"
4357
+ msgstr ""
4358
+
4359
+ #: includes/class-config.php:182
4360
+ #: includes/class-config.php:282
4361
+ msgid "{total_users} Member"
4362
+ msgstr ""
4363
+
4364
+ #: includes/class-config.php:183
4365
+ msgid "We are sorry. We cannot find any users who match your search criteria."
4366
+ msgstr ""
4367
+
4368
+ #: includes/class-config.php:252
4369
+ msgid "Update Profile"
4370
+ msgstr ""
4371
+
4372
+ #: includes/class-config.php:341
4373
+ msgid "Account Welcome Email"
4374
+ msgstr ""
4375
+
4376
+ #: includes/class-config.php:352
4377
+ msgid "Whether to send the user an email when his account is automatically approved"
4378
+ msgstr ""
4379
+
4380
+ #: includes/class-config.php:358
4381
+ msgid "Account Activation Email"
4382
+ msgstr ""
4383
+
4384
+ #: includes/class-config.php:366
4385
+ msgid "Whether to send the user an email when his account needs e-mail activation"
4386
+ msgstr ""
4387
+
4388
+ #: includes/class-config.php:371
4389
+ msgid "Your account is pending review"
4390
+ msgstr ""
4391
+
4392
+ #: includes/class-config.php:379
4393
+ msgid "Whether to send the user an email when his account needs admin review"
4394
+ msgstr ""
4395
+
4396
+ #: includes/class-config.php:384
4397
+ msgid "Account Approved Email"
4398
+ msgstr ""
4399
+
4400
+ #: includes/class-config.php:396
4401
+ msgid "Whether to send the user an email when his account is approved"
4402
+ msgstr ""
4403
+
4404
+ #: includes/class-config.php:401
4405
+ msgid "Account Rejected Email"
4406
+ msgstr ""
4407
+
4408
+ #: includes/class-config.php:408
4409
+ msgid "Whether to send the user an email when his account is rejected"
4410
+ msgstr ""
4411
+
4412
+ #: includes/class-config.php:413
4413
+ msgid "Account Deactivated Email"
4414
+ msgstr ""
4415
+
4416
+ #: includes/class-config.php:420
4417
+ msgid "Whether to send the user an email when his account is deactivated"
4418
+ msgstr ""
4419
+
4420
+ #: includes/class-config.php:426
4421
+ msgid "Account Deleted Email"
4422
+ msgstr ""
4423
+
4424
+ #: includes/class-config.php:433
4425
+ msgid "Whether to send the user an email when his account is deleted"
4426
+ msgstr ""
4427
+
4428
+ #: includes/class-config.php:439
4429
+ msgid "Password Reset Email"
4430
+ msgstr ""
4431
+
4432
+ #: includes/class-config.php:447
4433
+ msgid "Whether to send an email when users changed their password (Recommended, please keep on)"
4434
+ msgstr ""
4435
+
4436
+ #: includes/class-config.php:453
4437
+ msgid "Password Changed Email"
4438
+ msgstr ""
4439
+
4440
+ #: includes/class-config.php:460
4441
+ msgid "Whether to send the user an email when he request to reset password (Recommended, please keep on)"
4442
+ msgstr ""
4443
+
4444
+ #: includes/class-config.php:466
4445
+ msgid "Account Updated Email"
4446
+ msgstr ""
4447
+
4448
+ #: includes/class-config.php:473
4449
+ msgid "Whether to send the user an email when he updated their account"
4450
+ msgstr ""
4451
+
4452
+ #: includes/class-config.php:479
4453
+ msgid "New User Notification"
4454
+ msgstr ""
4455
+
4456
+ #: includes/class-config.php:485
4457
+ msgid "Whether to receive notification when a new user account is approved"
4458
+ msgstr ""
4459
+
4460
+ #: includes/class-config.php:491
4461
+ msgid "Account Needs Review Notification"
4462
+ msgstr ""
4463
+
4464
+ #: includes/class-config.php:498
4465
+ msgid "Whether to receive notification when an account needs admin review"
4466
+ msgstr ""
4467
+
4468
+ #: includes/class-config.php:503
4469
+ msgid "Account Deletion Notification"
4470
+ msgstr ""
4471
+
4472
+ #: includes/class-config.php:506
4473
+ msgid "Whether to receive notification when an account is deleted"
4474
+ msgstr ""
4475
+
4476
+ #: includes/class-config.php:529
4477
+ msgid "Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below."
4478
+ msgstr ""
4479
+
4480
+ #: includes/class-config.php:530
4481
+ msgid "Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account, click on the button below."
4482
+ msgstr ""
4483
+
4484
+ #: includes/class-dependencies.php:207
4485
+ msgid "This version of <strong>\"%s\"</strong> requires the core <strong>%s</strong> plugin to be <strong>%s</strong> or higher."
4486
+ msgstr ""
4487
+
4488
+ #: includes/class-dependencies.php:209
4489
+ msgid "Please update <strong>%s</strong> to the latest version."
4490
+ msgstr ""
4491
+
4492
+ #: includes/class-dependencies.php:211
4493
+ msgid "Sorry, but this version of <strong>%s</strong> does not work with extension <strong>\"%s\" %s</strong> version."
4494
+ msgstr ""
4495
+
4496
+ #: includes/class-dependencies.php:213
4497
+ msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4498
+ msgstr ""
4499
+
4500
+ #: includes/class-dependencies.php:222
4501
+ msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4502
+ msgstr ""
4503
+
4504
+ #: includes/class-dependencies.php:224
4505
+ msgid "Correct folder name is <strong>\"%s\"</strong>"
4506
+ msgstr ""
4507
+
4508
+ #: includes/class-extensions.php:101
4509
+ msgid "%s License Key"
4510
+ msgstr ""
4511
+
4512
+ #: includes/class-init.php:158
4513
+ #: includes/class-init.php:167
4514
+ msgid "Cheatin&#8217; huh?"
4515
+ msgstr ""
4516
+
4517
+ #: includes/core/class-account.php:98
4518
+ msgid "Update Account"
4519
+ msgstr ""
4520
+
4521
+ #: includes/core/class-account.php:103
4522
+ msgid "Change Password"
4523
+ msgstr ""
4524
+
4525
+ #: includes/core/class-account.php:104
4526
+ msgid "Update Password"
4527
+ msgstr ""
4528
+
4529
+ #: includes/core/class-account.php:110
4530
+ msgid "Update Privacy"
4531
+ msgstr ""
4532
+
4533
+ #: includes/core/class-account.php:116
4534
+ msgid "Update Notifications"
4535
+ msgstr ""
4536
+
4537
+ #: includes/core/class-account.php:124
4538
+ #: includes/core/class-account.php:125
4539
+ #: includes/core/class-builtin.php:1171
4540
+ #: includes/core/class-builtin.php:1174
4541
+ msgid "Delete Account"
4542
+ msgstr ""
4543
+
4544
+ #: includes/core/class-builtin.php:140
4545
+ msgid "Please provide a meta key"
4546
+ msgstr ""
4547
+
4548
+ #: includes/core/class-builtin.php:141
4549
+ msgid "Your meta key is a reserved core field and cannot be used"
4550
+ msgstr ""
4551
+
4552
+ #: includes/core/class-builtin.php:142
4553
+ msgid "Your meta key is a predefined reserved key and cannot be used"
4554
+ msgstr ""
4555
+
4556
+ #: includes/core/class-builtin.php:143
4557
+ msgid "Your meta key already exists in your fields list"
4558
+ msgstr ""
4559
+
4560
+ #: includes/core/class-builtin.php:144
4561
+ msgid "Your meta key contains illegal characters. Please correct it."
4562
+ msgstr ""
4563
+
4564
+ #: includes/core/class-builtin.php:157
4565
+ msgid "Please provide a date range beginning"
4566
+ msgstr ""
4567
+
4568
+ #: includes/core/class-builtin.php:158
4569
+ msgid "Please enter a valid start date in the date range"
4570
+ msgstr ""
4571
+
4572
+ #: includes/core/class-builtin.php:172
4573
+ msgid "Please provide a date range end"
4574
+ msgstr ""
4575
+
4576
+ #: includes/core/class-builtin.php:173
4577
+ msgid "Please enter a valid end date in the date range"
4578
+ msgstr ""
4579
+
4580
+ #: includes/core/class-builtin.php:174
4581
+ msgid "The end of date range must be greater than the start of date range"
4582
+ msgstr ""
4583
+
4584
+ #: includes/core/class-builtin.php:216
4585
+ #: includes/core/class-builtin.php:232
4586
+ #: includes/core/class-builtin.php:248
4587
+ #: includes/core/class-builtin.php:264
4588
+ #: includes/core/class-builtin.php:284
4589
+ #: includes/core/class-builtin.php:304
4590
+ #: includes/core/class-builtin.php:324
4591
+ #: includes/core/class-builtin.php:344
4592
+ #: includes/core/class-builtin.php:360
4593
+ #: includes/core/class-builtin.php:376
4594
+ #: includes/core/class-builtin.php:396
4595
+ #: includes/core/class-builtin.php:416
4596
+ #: includes/core/class-builtin.php:442
4597
+ #: includes/core/class-builtin.php:458
4598
+ #: includes/core/class-builtin.php:475
4599
+ #: includes/core/class-builtin.php:488
4600
+ #: includes/core/class-builtin.php:505
4601
+ #: includes/core/class-builtin.php:518
4602
+ #: includes/core/class-builtin.php:531
4603
+ #: includes/core/class-builtin.php:547
4604
+ #: includes/core/class-builtin.php:563
4605
+ #: includes/core/class-builtin.php:579
4606
+ msgid "You must provide a title"
4607
+ msgstr ""
4608
+
4609
+ #: includes/core/class-builtin.php:225
4610
+ msgid "Number"
4611
+ msgstr ""
4612
+
4613
+ #: includes/core/class-builtin.php:271
4614
+ #: includes/core/class-builtin.php:291
4615
+ #: includes/core/class-builtin.php:311
4616
+ #: includes/core/class-builtin.php:331
4617
+ msgid "You have not added any choices yet."
4618
+ msgstr ""
4619
+
4620
+ #: includes/core/class-builtin.php:383
4621
+ #: includes/core/class-builtin.php:403
4622
+ msgid "Please enter a valid size"
4623
+ msgstr ""
4624
+
4625
+ #: includes/core/class-builtin.php:423
4626
+ msgid "Number of years is not valid"
4627
+ msgstr ""
4628
+
4629
+ #: includes/core/class-builtin.php:492
4630
+ msgid "You must add a shortcode to the content area"
4631
+ msgstr ""
4632
+
4633
+ #: includes/core/class-builtin.php:671
4634
+ #: includes/core/class-user.php:1711
4635
+ #: includes/core/um-actions-profile.php:638
4636
+ #: includes/core/um-filters-profile.php:22
4637
+ msgid "Only me"
4638
+ msgstr ""
4639
+
4640
+ #: includes/core/class-builtin.php:695
4641
+ #: includes/core/class-builtin.php:698
4642
+ #: includes/core/class-builtin.php:1105
4643
+ msgid "Username or E-mail"
4644
+ msgstr ""
4645
+
4646
+ #: includes/core/class-builtin.php:720
4647
+ #: includes/core/class-builtin.php:723
4648
+ #: includes/core/class-member-directory.php:317
4649
+ msgid "First Name"
4650
+ msgstr ""
4651
+
4652
+ #: includes/core/class-builtin.php:730
4653
+ #: includes/core/class-builtin.php:733
4654
+ #: includes/core/class-member-directory.php:318
4655
+ msgid "Last Name"
4656
+ msgstr ""
4657
+
4658
+ #: includes/core/class-builtin.php:750
4659
+ #: includes/core/class-builtin.php:753
4660
+ #: includes/core/class-builtin.php:1383
4661
+ msgid "Website URL"
4662
+ msgstr ""
4663
+
4664
+ #: includes/core/class-builtin.php:761
4665
+ #: includes/core/class-builtin.php:764
4666
+ msgid "Registration Date"
4667
+ msgstr ""
4668
+
4669
+ #: includes/core/class-builtin.php:772
4670
+ #: includes/core/class-builtin.php:775
4671
+ #: includes/core/class-member-directory.php:315
4672
+ msgid "Last Login"
4673
+ msgstr ""
4674
+
4675
+ #: includes/core/class-builtin.php:783
4676
+ #: includes/core/class-builtin.php:786
4677
+ msgid "E-mail Address"
4678
+ msgstr ""
4679
+
4680
+ #: includes/core/class-builtin.php:794
4681
+ #: includes/core/class-builtin.php:797
4682
+ #: includes/core/class-member-directory.php:320
4683
+ msgid "Secondary E-mail Address"
4684
+ msgstr ""
4685
+
4686
+ #: includes/core/class-builtin.php:806
4687
+ #: includes/core/class-builtin.php:809
4688
+ #: includes/core/class-member-directory.php:321
4689
+ msgid "Biography"
4690
+ msgstr ""
4691
+
4692
+ #: includes/core/class-builtin.php:815
4693
+ msgid "Enter a bit about yourself..."
4694
+ msgstr ""
4695
+
4696
+ #: includes/core/class-builtin.php:819
4697
+ #: includes/core/class-builtin.php:822
4698
+ msgid "Birth Date"
4699
+ msgstr ""
4700
+
4701
+ #: includes/core/class-builtin.php:833
4702
+ #: includes/core/class-builtin.php:836
4703
+ #: includes/core/class-member-directory.php:311
4704
+ msgid "Gender"
4705
+ msgstr ""
4706
+
4707
+ #: includes/core/class-builtin.php:840
4708
+ msgid "Male"
4709
+ msgstr ""
4710
+
4711
+ #: includes/core/class-builtin.php:840
4712
+ msgid "Female"
4713
+ msgstr ""
4714
+
4715
+ #: includes/core/class-builtin.php:844
4716
+ #: includes/core/class-builtin.php:847
4717
+ #: includes/core/class-member-directory.php:310
4718
+ msgid "Country"
4719
+ msgstr ""
4720
+
4721
+ #: includes/core/class-builtin.php:848
4722
+ msgid "Choose a Country"
4723
+ msgstr ""
4724
+
4725
+ #: includes/core/class-builtin.php:856
4726
+ #: includes/core/class-builtin.php:859
4727
+ msgid "Facebook"
4728
+ msgstr ""
4729
+
4730
+ #: includes/core/class-builtin.php:874
4731
+ #: includes/core/class-builtin.php:877
4732
+ msgid "Twitter"
4733
+ msgstr ""
4734
+
4735
+ #: includes/core/class-builtin.php:892
4736
+ #: includes/core/class-builtin.php:895
4737
+ msgid "LinkedIn"
4738
+ msgstr ""
4739
+
4740
+ #: includes/core/class-builtin.php:910
4741
+ #: includes/core/class-builtin.php:913
4742
+ msgid "Google+"
4743
+ msgstr ""
4744
+
4745
+ #: includes/core/class-builtin.php:928
4746
+ #: includes/core/class-builtin.php:931
4747
+ msgid "Instagram"
4748
+ msgstr ""
4749
+
4750
+ #: includes/core/class-builtin.php:946
4751
+ #: includes/core/class-builtin.php:949
4752
+ #: includes/core/class-builtin.php:1375
4753
+ msgid "Skype ID"
4754
+ msgstr ""
4755
+
4756
+ #: includes/core/class-builtin.php:961
4757
+ #: includes/core/class-builtin.php:964
4758
+ msgid "YouTube"
4759
+ msgstr ""
4760
+
4761
+ #: includes/core/class-builtin.php:979
4762
+ #: includes/core/class-builtin.php:982
4763
+ msgid "SoundCloud"
4764
+ msgstr ""
4765
+
4766
+ #: includes/core/class-builtin.php:997
4767
+ #: includes/core/class-builtin.php:1000
4768
+ msgid "VKontakte"
4769
+ msgstr ""
4770
+
4771
+ #: includes/core/class-builtin.php:1015
4772
+ msgid "Roles (Dropdown)"
4773
+ msgstr ""
4774
+
4775
+ #: includes/core/class-builtin.php:1018
4776
+ #: includes/core/class-builtin.php:1030
4777
+ msgid "Account Type"
4778
+ msgstr ""
4779
+
4780
+ #: includes/core/class-builtin.php:1027
4781
+ msgid "Roles (Radio)"
4782
+ msgstr ""
4783
+
4784
+ #: includes/core/class-builtin.php:1038
4785
+ #: includes/core/class-member-directory.php:312
4786
+ msgid "Languages"
4787
+ msgstr ""
4788
+
4789
+ #: includes/core/class-builtin.php:1041
4790
+ msgid "Languages Spoken"
4791
+ msgstr ""
4792
+
4793
+ #: includes/core/class-builtin.php:1042
4794
+ msgid "Select languages"
4795
+ msgstr ""
4796
+
4797
+ #: includes/core/class-builtin.php:1050
4798
+ #: includes/core/class-builtin.php:1053
4799
+ #: includes/core/class-builtin.php:1374
4800
+ #: includes/core/class-member-directory.php:322
4801
+ msgid "Phone Number"
4802
+ msgstr ""
4803
+
4804
+ #: includes/core/class-builtin.php:1062
4805
+ #: includes/core/class-builtin.php:1065
4806
+ #: includes/core/class-member-directory.php:323
4807
+ msgid "Mobile Number"
4808
+ msgstr ""
4809
+
4810
+ #: includes/core/class-builtin.php:1076
4811
+ msgid "Profile Photo"
4812
+ msgstr ""
4813
+
4814
+ #: includes/core/class-builtin.php:1079
4815
+ msgid "Change your profile photo"
4816
+ msgstr ""
4817
+
4818
+ #: includes/core/class-builtin.php:1080
4819
+ msgid "Upload your photo here"
4820
+ msgstr ""
4821
+
4822
+ #: includes/core/class-builtin.php:1090
4823
+ msgid "Cover Photo"
4824
+ msgstr ""
4825
+
4826
+ #: includes/core/class-builtin.php:1093
4827
+ #: includes/core/um-actions-profile.php:726
4828
+ msgid "Change your cover photo"
4829
+ msgstr ""
4830
+
4831
+ #: includes/core/class-builtin.php:1094
4832
+ msgid "Upload profile cover here"
4833
+ msgstr ""
4834
+
4835
+ #: includes/core/class-builtin.php:1108
4836
+ msgid "Enter your username or email"
4837
+ msgstr ""
4838
+
4839
+ #: includes/core/class-builtin.php:1118
4840
+ #: includes/core/class-builtin.php:1121
4841
+ msgid "Profile Privacy"
4842
+ msgstr ""
4843
+
4844
+ #: includes/core/class-builtin.php:1122
4845
+ msgid "Who can see your public profile?"
4846
+ msgstr ""
4847
+
4848
+ #: includes/core/class-builtin.php:1134
4849
+ #: includes/core/class-builtin.php:1137
4850
+ msgid "Avoid indexing my profile by search engines"
4851
+ msgstr ""
4852
+
4853
+ #: includes/core/class-builtin.php:1138
4854
+ msgid "Hide my profile for robots?"
4855
+ msgstr ""
4856
+
4857
+ #: includes/core/class-builtin.php:1153
4858
+ #: includes/core/class-builtin.php:1156
4859
+ msgid "Hide my profile from directory"
4860
+ msgstr ""
4861
+
4862
+ #: includes/core/class-builtin.php:1157
4863
+ msgid "Here you can hide yourself from appearing in public directory"
4864
+ msgstr ""
4865
+
4866
+ #: includes/core/class-builtin.php:1175
4867
+ msgid "If you confirm, everything related to your profile will be deleted permanently from the site"
4868
+ msgstr ""
4869
+
4870
+ #: includes/core/class-builtin.php:1364
4871
+ msgid "Alphabetic value only"
4872
+ msgstr ""
4873
+
4874
+ #: includes/core/class-builtin.php:1365
4875
+ msgid "Alpha-numeric value"
4876
+ msgstr ""
4877
+
4878
+ #: includes/core/class-builtin.php:1366
4879
+ msgid "English letters only"
4880
+ msgstr ""
4881
+
4882
+ #: includes/core/class-builtin.php:1367
4883
+ msgid "Facebook URL"
4884
+ msgstr ""
4885
+
4886
+ #: includes/core/class-builtin.php:1368
4887
+ msgid "Google+ URL"
4888
+ msgstr ""
4889
+
4890
+ #: includes/core/class-builtin.php:1369
4891
+ msgid "Instagram URL"
4892
+ msgstr ""
4893
+
4894
+ #: includes/core/class-builtin.php:1370
4895
+ msgid "LinkedIn URL"
4896
+ msgstr ""
4897
+
4898
+ #: includes/core/class-builtin.php:1371
4899
+ msgid "VKontakte URL"
4900
+ msgstr ""
4901
+
4902
+ #: includes/core/class-builtin.php:1372
4903
+ msgid "Lowercase only"
4904
+ msgstr ""
4905
+
4906
+ #: includes/core/class-builtin.php:1373
4907
+ msgid "Numeric value only"
4908
+ msgstr ""
4909
+
4910
+ #: includes/core/class-builtin.php:1376
4911
+ msgid "SoundCloud Profile"
4912
+ msgstr ""
4913
+
4914
+ #: includes/core/class-builtin.php:1377
4915
+ msgid "Twitter URL"
4916
+ msgstr ""
4917
+
4918
+ #: includes/core/class-builtin.php:1378
4919
+ msgid "E-mail( Not Unique )"
4920
+ msgstr ""
4921
+
4922
+ #: includes/core/class-builtin.php:1379
4923
+ msgid "Unique E-mail"
4924
+ msgstr ""
4925
+
4926
+ #: includes/core/class-builtin.php:1380
4927
+ msgid "Unique Metakey value"
4928
+ msgstr ""
4929
+
4930
+ #: includes/core/class-builtin.php:1381
4931
+ msgid "Unique Username"
4932
+ msgstr ""
4933
+
4934
+ #: includes/core/class-builtin.php:1382
4935
+ msgid "Unique Username/E-mail"
4936
+ msgstr ""
4937
+
4938
+ #: includes/core/class-builtin.php:1384
4939
+ msgid "YouTube Profile"
4940
+ msgstr ""
4941
+
4942
+ #: includes/core/class-builtin.php:1385
4943
+ msgid "Custom Validation"
4944
+ msgstr ""
4945
+
4946
+ #: includes/core/class-builtin.php:1424
4947
+ msgid "Afar"
4948
+ msgstr ""
4949
+
4950
+ #: includes/core/class-builtin.php:1425
4951
+ msgid "Abkhazian"
4952
+ msgstr ""
4953
+
4954
+ #: includes/core/class-builtin.php:1426
4955
+ msgid "Avestan"
4956
+ msgstr ""
4957
+
4958
+ #: includes/core/class-builtin.php:1427
4959
+ msgid "Afrikaans"
4960
+ msgstr ""
4961
+
4962
+ #: includes/core/class-builtin.php:1428
4963
+ msgid "Akan"
4964
+ msgstr ""
4965
+
4966
+ #: includes/core/class-builtin.php:1429
4967
+ msgid "Amharic"
4968
+ msgstr ""
4969
+
4970
+ #: includes/core/class-builtin.php:1430
4971
+ msgid "Aragonese"
4972
+ msgstr ""
4973
+
4974
+ #: includes/core/class-builtin.php:1431
4975
+ msgid "Arabic"
4976
+ msgstr ""
4977
+
4978
+ #: includes/core/class-builtin.php:1432
4979
+ msgid "Assamese"
4980
+ msgstr ""
4981
+
4982
+ #: includes/core/class-builtin.php:1433
4983
+ msgid "Avaric"
4984
+ msgstr ""
4985
+
4986
+ #: includes/core/class-builtin.php:1434
4987
+ msgid "Aymara"
4988
+ msgstr ""
4989
+
4990
+ #: includes/core/class-builtin.php:1435
4991
+ msgid "Azerbaijani"
4992
+ msgstr ""
4993
+
4994
+ #: includes/core/class-builtin.php:1436
4995
+ msgid "Bashkir"
4996
+ msgstr ""
4997
+
4998
+ #: includes/core/class-builtin.php:1437
4999
+ msgid "Belarusian"
5000
+ msgstr ""
5001
+
5002
+ #: includes/core/class-builtin.php:1438
5003
+ msgid "Bulgarian"
5004
+ msgstr ""
5005
+
5006
+ #: includes/core/class-builtin.php:1439
5007
+ msgid "Bihari"
5008
+ msgstr ""
5009
+
5010
+ #: includes/core/class-builtin.php:1440
5011
+ msgid "Bislama"
5012
+ msgstr ""
5013
+
5014
+ #: includes/core/class-builtin.php:1441
5015
+ msgid "Bambara"
5016
+ msgstr ""
5017
+
5018
+ #: includes/core/class-builtin.php:1442
5019
+ msgid "Bengali"
5020
+ msgstr ""
5021
+
5022
+ #: includes/core/class-builtin.php:1443
5023
+ msgid "Tibetan"
5024
+ msgstr ""
5025
+
5026
+ #: includes/core/class-builtin.php:1444
5027
+ msgid "Breton"
5028
+ msgstr ""
5029
+
5030
+ #: includes/core/class-builtin.php:1445
5031
+ msgid "Bosnian"
5032
+ msgstr ""
5033
+
5034
+ #: includes/core/class-builtin.php:1446
5035
+ msgid "Catalan"
5036
+ msgstr ""
5037
+
5038
+ #: includes/core/class-builtin.php:1447
5039
+ msgid "Chechen"
5040
+ msgstr ""
5041
+
5042
+ #: includes/core/class-builtin.php:1448
5043
+ msgid "Chamorro"
5044
+ msgstr ""
5045
+
5046
+ #: includes/core/class-builtin.php:1449
5047
+ msgid "Corsican"
5048
+ msgstr ""
5049
+
5050
+ #: includes/core/class-builtin.php:1450
5051
+ msgid "Cree"
5052
+ msgstr ""
5053
+
5054
+ #: includes/core/class-builtin.php:1451
5055
+ msgid "Czech"
5056
+ msgstr ""
5057
+
5058
+ #: includes/core/class-builtin.php:1452
5059
+ msgid "Church Slavic"
5060
+ msgstr ""
5061
+
5062
+ #: includes/core/class-builtin.php:1453
5063
+ msgid "Chuvash"
5064
+ msgstr ""
5065
+
5066
+ #: includes/core/class-builtin.php:1454
5067
+ msgid "Welsh"
5068
+ msgstr ""
5069
+
5070
+ #: includes/core/class-builtin.php:1455
5071
+ msgid "Danish"
5072
+ msgstr ""
5073
+
5074
+ #: includes/core/class-builtin.php:1456
5075
+ msgid "German"
5076
+ msgstr ""
5077
+
5078
+ #: includes/core/class-builtin.php:1457
5079
+ msgid "Divehi"
5080
+ msgstr ""
5081
+
5082
+ #: includes/core/class-builtin.php:1458
5083
+ msgid "Dzongkha"
5084
+ msgstr ""
5085
+
5086
+ #: includes/core/class-builtin.php:1459
5087
+ msgid "Ewe"
5088
+ msgstr ""
5089
+
5090
+ #: includes/core/class-builtin.php:1460
5091
+ msgid "Greek"
5092
+ msgstr ""
5093
+
5094
+ #: includes/core/class-builtin.php:1461
5095
+ msgid "English"
5096
+ msgstr ""
5097
+
5098
+ #: includes/core/class-builtin.php:1462
5099
+ msgid "Esperanto"
5100
+ msgstr ""
5101
+
5102
+ #: includes/core/class-builtin.php:1463
5103
+ msgid "Spanish"
5104
+ msgstr ""
5105
+
5106
+ #: includes/core/class-builtin.php:1464
5107
+ msgid "Estonian"
5108
+ msgstr ""
5109
+
5110
+ #: includes/core/class-builtin.php:1465
5111
+ msgid "Basque"
5112
+ msgstr ""
5113
+
5114
+ #: includes/core/class-builtin.php:1466
5115
+ msgid "Persian"
5116
+ msgstr ""
5117
+
5118
+ #: includes/core/class-builtin.php:1467
5119
+ msgid "Fulah"
5120
+ msgstr ""
5121
+
5122
+ #: includes/core/class-builtin.php:1468
5123
+ msgid "Finnish"
5124
+ msgstr ""
5125
+
5126
+ #: includes/core/class-builtin.php:1469
5127
+ msgid "Fijian"
5128
+ msgstr ""
5129
+
5130
+ #: includes/core/class-builtin.php:1470
5131
+ msgid "Faroese"
5132
+ msgstr ""
5133
+
5134
+ #: includes/core/class-builtin.php:1471
5135
+ msgid "French"
5136
+ msgstr ""
5137
+
5138
+ #: includes/core/class-builtin.php:1472
5139
+ msgid "Western Frisian"
5140
+ msgstr ""
5141
+
5142
+ #: includes/core/class-builtin.php:1473
5143
+ msgid "Irish"
5144
+ msgstr ""
5145
+
5146
+ #: includes/core/class-builtin.php:1474
5147
+ msgid "Scottish Gaelic"
5148
+ msgstr ""
5149
+
5150
+ #: includes/core/class-builtin.php:1475
5151
+ msgid "Galician"
5152
+ msgstr ""
5153
+
5154
+ #: includes/core/class-builtin.php:1476
5155
+ msgid "Guarani"
5156
+ msgstr ""
5157
+
5158
+ #: includes/core/class-builtin.php:1477
5159
+ msgid "Gujarati"
5160
+ msgstr ""
5161
+
5162
+ #: includes/core/class-builtin.php:1478
5163
+ msgid "Manx"
5164
+ msgstr ""
5165
+
5166
+ #: includes/core/class-builtin.php:1479
5167
+ msgid "Hausa"
5168
+ msgstr ""
5169
+
5170
+ #: includes/core/class-builtin.php:1480
5171
+ msgid "Hebrew"
5172
+ msgstr ""
5173
+
5174
+ #: includes/core/class-builtin.php:1481
5175
+ msgid "Hindi"
5176
+ msgstr ""
5177
+
5178
+ #: includes/core/class-builtin.php:1482
5179
+ msgid "Hiri Motu"
5180
+ msgstr ""
5181
+
5182
+ #: includes/core/class-builtin.php:1483
5183
+ msgid "Croatian"
5184
+ msgstr ""
5185
+
5186
+ #: includes/core/class-builtin.php:1484
5187
+ msgid "Haitian"
5188
+ msgstr ""
5189
+
5190
+ #: includes/core/class-builtin.php:1485
5191
+ msgid "Hungarian"
5192
+ msgstr ""
5193
+
5194
+ #: includes/core/class-builtin.php:1486
5195
+ msgid "Armenian"
5196
+ msgstr ""
5197
+
5198
+ #: includes/core/class-builtin.php:1487
5199
+ msgid "Herero"
5200
+ msgstr ""
5201
+
5202
+ #: includes/core/class-builtin.php:1488
5203
+ msgid "Interlingua (International Auxiliary Language Association)"
5204
+ msgstr ""
5205
+
5206
+ #: includes/core/class-builtin.php:1489
5207
+ msgid "Indonesian"
5208
+ msgstr ""
5209
+
5210
+ #: includes/core/class-builtin.php:1490
5211
+ msgid "Interlingue"
5212
+ msgstr ""
5213
+
5214
+ #: includes/core/class-builtin.php:1491
5215
+ msgid "Igbo"
5216
+ msgstr ""
5217
+
5218
+ #: includes/core/class-builtin.php:1492
5219
+ msgid "Sichuan Yi"
5220
+ msgstr ""
5221
+
5222
+ #: includes/core/class-builtin.php:1493
5223
+ msgid "Inupiaq"
5224
+ msgstr ""
5225
+
5226
+ #: includes/core/class-builtin.php:1494
5227
+ msgid "Ido"
5228
+ msgstr ""
5229
+
5230
+ #: includes/core/class-builtin.php:1495
5231
+ msgid "Icelandic"
5232
+ msgstr ""
5233
+
5234
+ #: includes/core/class-builtin.php:1496
5235
+ msgid "Italian"
5236
+ msgstr ""
5237
+
5238
+ #: includes/core/class-builtin.php:1497
5239
+ msgid "Inuktitut"
5240
+ msgstr ""
5241
+
5242
+ #: includes/core/class-builtin.php:1498
5243
+ msgid "Japanese"
5244
+ msgstr ""
5245
+
5246
+ #: includes/core/class-builtin.php:1499
5247
+ msgid "Javanese"
5248
+ msgstr ""
5249
+
5250
+ #: includes/core/class-builtin.php:1500
5251
+ msgid "Georgian"
5252
+ msgstr ""
5253
+
5254
+ #: includes/core/class-builtin.php:1501
5255
+ msgid "Kongo"
5256
+ msgstr ""
5257
+
5258
+ #: includes/core/class-builtin.php:1502
5259
+ msgid "Kikuyu"
5260
+ msgstr ""
5261
+
5262
+ #: includes/core/class-builtin.php:1503
5263
+ msgid "Kwanyama"
5264
+ msgstr ""
5265
+
5266
+ #: includes/core/class-builtin.php:1504
5267
+ msgid "Kazakh"
5268
+ msgstr ""
5269
+
5270
+ #: includes/core/class-builtin.php:1505
5271
+ msgid "Kalaallisut"
5272
+ msgstr ""
5273
+
5274
+ #: includes/core/class-builtin.php:1506
5275
+ msgid "Khmer"
5276
+ msgstr ""
5277
+
5278
+ #: includes/core/class-builtin.php:1507
5279
+ msgid "Kannada"
5280
+ msgstr ""
5281
+
5282
+ #: includes/core/class-builtin.php:1508
5283
+ msgid "Korean"
5284
+ msgstr ""
5285
+
5286
+ #: includes/core/class-builtin.php:1509
5287
+ msgid "Kanuri"
5288
+ msgstr ""
5289
+
5290
+ #: includes/core/class-builtin.php:1510
5291
+ msgid "Kashmiri"
5292
+ msgstr ""
5293
+
5294
+ #: includes/core/class-builtin.php:1511
5295
+ msgid "Kurdish"
5296
+ msgstr ""
5297
+
5298
+ #: includes/core/class-builtin.php:1512
5299
+ msgid "Komi"
5300
+ msgstr ""
5301
+
5302
+ #: includes/core/class-builtin.php:1513
5303
+ msgid "Cornish"
5304
+ msgstr ""
5305
+
5306
+ #: includes/core/class-builtin.php:1514
5307
+ msgid "Kirghiz"
5308
+ msgstr ""
5309
+
5310
+ #: includes/core/class-builtin.php:1515
5311
+ msgid "Latin"
5312
+ msgstr ""
5313
+
5314
+ #: includes/core/class-builtin.php:1516
5315
+ msgid "Luxembourgish"
5316
+ msgstr ""
5317
+
5318
+ #: includes/core/class-builtin.php:1517
5319
+ msgid "Ganda"
5320
+ msgstr ""
5321
+
5322
+ #: includes/core/class-builtin.php:1518
5323
+ msgid "Limburgish"
5324
+ msgstr ""
5325
+
5326
+ #: includes/core/class-builtin.php:1519
5327
+ msgid "Lingala"
5328
+ msgstr ""
5329
+
5330
+ #: includes/core/class-builtin.php:1520
5331
+ msgid "Lao"
5332
+ msgstr ""
5333
+
5334
+ #: includes/core/class-builtin.php:1521
5335
+ msgid "Lithuanian"
5336
+ msgstr ""
5337
+
5338
+ #: includes/core/class-builtin.php:1522
5339
+ msgid "Luba-Katanga"
5340
+ msgstr ""
5341
+
5342
+ #: includes/core/class-builtin.php:1523
5343
+ msgid "Latvian"
5344
+ msgstr ""
5345
+
5346
+ #: includes/core/class-builtin.php:1524
5347
+ msgid "Malagasy"
5348
+ msgstr ""
5349
+
5350
+ #: includes/core/class-builtin.php:1525
5351
+ msgid "Marshallese"
5352
+ msgstr ""
5353
+
5354
+ #: includes/core/class-builtin.php:1526
5355
+ msgid "Maori"
5356
+ msgstr ""
5357
+
5358
+ #: includes/core/class-builtin.php:1527
5359
+ msgid "Macedonian"
5360
+ msgstr ""
5361
+
5362
+ #: includes/core/class-builtin.php:1528
5363
+ msgid "Malayalam"
5364
+ msgstr ""
5365
+
5366
+ #: includes/core/class-builtin.php:1529
5367
+ msgid "Mongolian"
5368
+ msgstr ""
5369
+
5370
+ #: includes/core/class-builtin.php:1530
5371
+ msgid "Marathi"
5372
+ msgstr ""
5373
+
5374
+ #: includes/core/class-builtin.php:1531
5375
+ msgid "Malay"
5376
+ msgstr ""
5377
+
5378
+ #: includes/core/class-builtin.php:1532
5379
+ msgid "Maltese"
5380
+ msgstr ""
5381
+
5382
+ #: includes/core/class-builtin.php:1533
5383
+ msgid "Burmese"
5384
+ msgstr ""
5385
+
5386
+ #: includes/core/class-builtin.php:1534
5387
+ #: includes/core/class-builtin.php:1765
5388
+ msgid "Nauru"
5389
+ msgstr ""
5390
+
5391
+ #: includes/core/class-builtin.php:1535
5392
+ msgid "Norwegian Bokmal"
5393
+ msgstr ""
5394
+
5395
+ #: includes/core/class-builtin.php:1536
5396
+ msgid "North Ndebele"
5397
+ msgstr ""
5398
+
5399
+ #: includes/core/class-builtin.php:1537
5400
+ msgid "Nepali"
5401
+ msgstr ""
5402
+
5403
+ #: includes/core/class-builtin.php:1538
5404
+ msgid "Ndonga"
5405
+ msgstr ""
5406
+
5407
+ #: includes/core/class-builtin.php:1539
5408
+ msgid "Dutch"
5409
+ msgstr ""
5410
+
5411
+ #: includes/core/class-builtin.php:1540
5412
+ msgid "Norwegian Nynorsk"
5413
+ msgstr ""
5414
+
5415
+ #: includes/core/class-builtin.php:1541
5416
+ msgid "Norwegian"
5417
+ msgstr ""
5418
+
5419
+ #: includes/core/class-builtin.php:1542
5420
+ msgid "South Ndebele"
5421
+ msgstr ""
5422
+
5423
+ #: includes/core/class-builtin.php:1543
5424
+ msgid "Navajo"
5425
+ msgstr ""
5426
+
5427
+ #: includes/core/class-builtin.php:1544
5428
+ msgid "Chichewa"
5429
+ msgstr ""
5430
+
5431
+ #: includes/core/class-builtin.php:1545
5432
+ msgid "Occitan"
5433
+ msgstr ""
5434
+
5435
+ #: includes/core/class-builtin.php:1546
5436
+ msgid "Ojibwa"
5437
+ msgstr ""
5438
+
5439
+ #: includes/core/class-builtin.php:1547
5440
+ msgid "Oromo"
5441
+ msgstr ""
5442
+
5443
+ #: includes/core/class-builtin.php:1548
5444
+ msgid "Oriya"
5445
+ msgstr ""
5446
+
5447
+ #: includes/core/class-builtin.php:1549
5448
+ msgid "Ossetian"
5449
+ msgstr ""
5450
+
5451
+ #: includes/core/class-builtin.php:1550
5452
+ msgid "Panjabi"
5453
+ msgstr ""
5454
+
5455
+ #: includes/core/class-builtin.php:1551
5456
+ msgid "Pali"
5457
+ msgstr ""
5458
+
5459
+ #: includes/core/class-builtin.php:1552
5460
+ msgid "Polish"
5461
+ msgstr ""
5462
+
5463
+ #: includes/core/class-builtin.php:1553
5464
+ msgid "Pashto"
5465
+ msgstr ""
5466
+
5467
+ #: includes/core/class-builtin.php:1554
5468
+ msgid "Portuguese"
5469
+ msgstr ""
5470
+
5471
+ #: includes/core/class-builtin.php:1555
5472
+ msgid "Quechua"
5473
+ msgstr ""
5474
+
5475
+ #: includes/core/class-builtin.php:1556
5476
+ msgid "Raeto-Romance"
5477
+ msgstr ""
5478
+
5479
+ #: includes/core/class-builtin.php:1557
5480
+ msgid "Kirundi"
5481
+ msgstr ""
5482
+
5483
+ #: includes/core/class-builtin.php:1558
5484
+ msgid "Romanian"
5485
+ msgstr ""
5486
+
5487
+ #: includes/core/class-builtin.php:1559
5488
+ msgid "Russian"
5489
+ msgstr ""
5490
+
5491
+ #: includes/core/class-builtin.php:1560
5492
+ msgid "Kinyarwanda"
5493
+ msgstr ""
5494
+
5495
+ #: includes/core/class-builtin.php:1561
5496
+ msgid "Sanskrit"
5497
+ msgstr ""
5498
+
5499
+ #: includes/core/class-builtin.php:1562
5500
+ msgid "Sardinian"
5501
+ msgstr ""
5502
+
5503
+ #: includes/core/class-builtin.php:1563
5504
+ msgid "Sindhi"
5505
+ msgstr ""
5506
+
5507
+ #: includes/core/class-builtin.php:1564
5508
+ msgid "Northern Sami"
5509
+ msgstr ""
5510
+
5511
+ #: includes/core/class-builtin.php:1565
5512
+ msgid "Sango"
5513
+ msgstr ""
5514
+
5515
+ #: includes/core/class-builtin.php:1566
5516
+ msgid "Sinhala"
5517
+ msgstr ""
5518
+
5519
+ #: includes/core/class-builtin.php:1567
5520
+ msgid "Slovak"
5521
+ msgstr ""
5522
+
5523
+ #: includes/core/class-builtin.php:1568
5524
+ msgid "Slovenian"
5525
+ msgstr ""
5526
+
5527
+ #: includes/core/class-builtin.php:1569
5528
+ msgid "Samoan"
5529
+ msgstr ""
5530
+
5531
+ #: includes/core/class-builtin.php:1570
5532
+ msgid "Shona"
5533
+ msgstr ""
5534
+
5535
+ #: includes/core/class-builtin.php:1571
5536
+ msgid "Somali"
5537
+ msgstr ""
5538
+
5539
+ #: includes/core/class-builtin.php:1572
5540
+ msgid "Albanian"
5541
+ msgstr ""
5542
+
5543
+ #: includes/core/class-builtin.php:1573
5544
+ msgid "Serbian"
5545
+ msgstr ""
5546
+
5547
+ #: includes/core/class-builtin.php:1574
5548
+ msgid "Swati"
5549
+ msgstr ""
5550
+
5551
+ #: includes/core/class-builtin.php:1575
5552
+ msgid "Southern Sotho"
5553
+ msgstr ""
5554
+
5555
+ #: includes/core/class-builtin.php:1576
5556
+ msgid "Sundanese"
5557
+ msgstr ""
5558
+
5559
+ #: includes/core/class-builtin.php:1577
5560
+ msgid "Swedish"
5561
+ msgstr ""
5562
+
5563
+ #: includes/core/class-builtin.php:1578
5564
+ msgid "Swahili"
5565
+ msgstr ""
5566
+
5567
+ #: includes/core/class-builtin.php:1579
5568
+ msgid "Tamil"
5569
+ msgstr ""
5570
+
5571
+ #: includes/core/class-builtin.php:1580
5572
+ msgid "Telugu"
5573
+ msgstr ""
5574
+
5575
+ #: includes/core/class-builtin.php:1581
5576
+ msgid "Tajik"
5577
+ msgstr ""
5578
+
5579
+ #: includes/core/class-builtin.php:1582
5580
+ msgid "Thai"
5581
+ msgstr ""
5582
+
5583
+ #: includes/core/class-builtin.php:1583
5584
+ msgid "Tigrinya"
5585
+ msgstr ""
5586
+
5587
+ #: includes/core/class-builtin.php:1584
5588
+ msgid "Turkmen"
5589
+ msgstr ""
5590
+
5591
+ #: includes/core/class-builtin.php:1585
5592
+ msgid "Tagalog"
5593
+ msgstr ""
5594
+
5595
+ #: includes/core/class-builtin.php:1586
5596
+ msgid "Tswana"
5597
+ msgstr ""
5598
+
5599
+ #: includes/core/class-builtin.php:1587
5600
+ #: includes/core/class-builtin.php:1835
5601
+ msgid "Tonga"
5602
+ msgstr ""
5603
+
5604
+ #: includes/core/class-builtin.php:1588
5605
+ msgid "Turkish"
5606
+ msgstr ""
5607
+
5608
+ #: includes/core/class-builtin.php:1589
5609
+ msgid "Tsonga"
5610
+ msgstr ""
5611
+
5612
+ #: includes/core/class-builtin.php:1590
5613
+ msgid "Tatar"
5614
+ msgstr ""
5615
+
5616
+ #: includes/core/class-builtin.php:1591
5617
+ msgid "Twi"
5618
+ msgstr ""
5619
+
5620
+ #: includes/core/class-builtin.php:1592
5621
+ msgid "Tahitian"
5622
+ msgstr ""
5623
+
5624
+ #: includes/core/class-builtin.php:1593
5625
+ msgid "Uighur"
5626
+ msgstr ""
5627
+
5628
+ #: includes/core/class-builtin.php:1594
5629
+ msgid "Ukrainian"
5630
+ msgstr ""
5631
+
5632
+ #: includes/core/class-builtin.php:1595
5633
+ msgid "Urdu"
5634
+ msgstr ""
5635
+
5636
+ #: includes/core/class-builtin.php:1596
5637
+ msgid "Uzbek"
5638
+ msgstr ""
5639
+
5640
+ #: includes/core/class-builtin.php:1597
5641
+ msgid "Venda"
5642
+ msgstr ""
5643
+
5644
+ #: includes/core/class-builtin.php:1598
5645
+ msgid "Vietnamese"
5646
+ msgstr ""
5647
+
5648
+ #: includes/core/class-builtin.php:1599
5649
+ msgid "Volapuk"
5650
+ msgstr ""
5651
+
5652
+ #: includes/core/class-builtin.php:1600
5653
+ msgid "Walloon"
5654
+ msgstr ""
5655
+
5656
+ #: includes/core/class-builtin.php:1601
5657
+ msgid "Wolof"
5658
+ msgstr ""
5659
+
5660
+ #: includes/core/class-builtin.php:1602
5661
+ msgid "Xhosa"
5662
+ msgstr ""
5663
+
5664
+ #: includes/core/class-builtin.php:1603
5665
+ msgid "Yiddish"
5666
+ msgstr ""
5667
+
5668
+ #: includes/core/class-builtin.php:1604
5669
+ msgid "Yoruba"
5670
+ msgstr ""
5671
+
5672
+ #: includes/core/class-builtin.php:1605
5673
+ msgid "Zhuang"
5674
+ msgstr ""
5675
+
5676
+ #: includes/core/class-builtin.php:1606
5677
+ msgid "Chinese"
5678
+ msgstr ""
5679
+
5680
+ #: includes/core/class-builtin.php:1607
5681
+ msgid "Zulu"
5682
+ msgstr ""
5683
+
5684
+ #: includes/core/class-builtin.php:1613
5685
+ msgid "Afghanistan"
5686
+ msgstr ""
5687
+
5688
+ #: includes/core/class-builtin.php:1614
5689
+ msgid "Åland Islands"
5690
+ msgstr ""
5691
+
5692
+ #: includes/core/class-builtin.php:1615
5693
+ msgid "Albania"
5694
+ msgstr ""
5695
+
5696
+ #: includes/core/class-builtin.php:1616
5697
+ msgid "Algeria"
5698
+ msgstr ""
5699
+
5700
+ #: includes/core/class-builtin.php:1617
5701
+ msgid "American Samoa"
5702
+ msgstr ""
5703
+
5704
+ #: includes/core/class-builtin.php:1618
5705
+ msgid "Andorra"
5706
+ msgstr ""
5707
+
5708
+ #: includes/core/class-builtin.php:1619
5709
+ msgid "Angola"
5710
+ msgstr ""
5711
+
5712
+ #: includes/core/class-builtin.php:1620
5713
+ msgid "Anguilla"
5714
+ msgstr ""
5715
+
5716
+ #: includes/core/class-builtin.php:1621
5717
+ msgid "Antarctica"
5718
+ msgstr ""
5719
+
5720
+ #: includes/core/class-builtin.php:1622
5721
+ msgid "Antigua and Barbuda"
5722
+ msgstr ""
5723
+
5724
+ #: includes/core/class-builtin.php:1623
5725
+ msgid "Argentina"
5726
+ msgstr ""
5727
+
5728
+ #: includes/core/class-builtin.php:1624
5729
+ msgid "Armenia"
5730
+ msgstr ""
5731
+
5732
+ #: includes/core/class-builtin.php:1625
5733
+ msgid "Aruba"
5734
+ msgstr ""
5735
+
5736
+ #: includes/core/class-builtin.php:1626
5737
+ msgid "Australia"
5738
+ msgstr ""
5739
+
5740
+ #: includes/core/class-builtin.php:1627
5741
+ msgid "Austria"
5742
+ msgstr ""
5743
+
5744
+ #: includes/core/class-builtin.php:1628
5745
+ msgid "Azerbaijan"
5746
+ msgstr ""
5747
+
5748
+ #: includes/core/class-builtin.php:1629
5749
+ msgid "Bahamas"
5750
+ msgstr ""
5751
+
5752
+ #: includes/core/class-builtin.php:1630
5753
+ msgid "Bahrain"
5754
+ msgstr ""
5755
+
5756
+ #: includes/core/class-builtin.php:1631
5757
+ msgid "Bangladesh"
5758
+ msgstr ""
5759
+
5760
+ #: includes/core/class-builtin.php:1632
5761
+ msgid "Barbados"
5762
+ msgstr ""
5763
+
5764
+ #: includes/core/class-builtin.php:1633
5765
+ msgid "Belarus"
5766
+ msgstr ""
5767
+
5768
+ #: includes/core/class-builtin.php:1634
5769
+ msgid "Belgium"
5770
+ msgstr ""
5771
+
5772
+ #: includes/core/class-builtin.php:1635
5773
+ msgid "Belize"
5774
+ msgstr ""
5775
+
5776
+ #: includes/core/class-builtin.php:1636
5777
+ msgid "Benin"
5778
+ msgstr ""
5779
+
5780
+ #: includes/core/class-builtin.php:1637
5781
+ msgid "Bermuda"
5782
+ msgstr ""
5783
+
5784
+ #: includes/core/class-builtin.php:1638
5785
+ msgid "Bhutan"
5786
+ msgstr ""
5787
+
5788
+ #: includes/core/class-builtin.php:1639
5789
+ msgid "Bolivia, Plurinational State of"
5790
+ msgstr ""
5791
+
5792
+ #: includes/core/class-builtin.php:1640
5793
+ msgid "Bosnia and Herzegovina"
5794
+ msgstr ""
5795
+
5796
+ #: includes/core/class-builtin.php:1641
5797
+ msgid "Botswana"
5798
+ msgstr ""
5799
+
5800
+ #: includes/core/class-builtin.php:1642
5801
+ msgid "Bouvet Island"
5802
+ msgstr ""
5803
+
5804
+ #: includes/core/class-builtin.php:1643
5805
+ msgid "Brazil"
5806
+ msgstr ""
5807
+
5808
+ #: includes/core/class-builtin.php:1644
5809
+ msgid "British Indian Ocean Territory"
5810
+ msgstr ""
5811
+
5812
+ #: includes/core/class-builtin.php:1645
5813
+ msgid "Brunei Darussalam"
5814
+ msgstr ""
5815
+
5816
+ #: includes/core/class-builtin.php:1646
5817
+ msgid "Bulgaria"
5818
+ msgstr ""
5819
+
5820
+ #: includes/core/class-builtin.php:1647
5821
+ msgid "Burkina Faso"
5822
+ msgstr ""
5823
+
5824
+ #: includes/core/class-builtin.php:1648
5825
+ msgid "Burundi"
5826
+ msgstr ""
5827
+
5828
+ #: includes/core/class-builtin.php:1649
5829
+ msgid "Cambodia"
5830
+ msgstr ""
5831
+
5832
+ #: includes/core/class-builtin.php:1650
5833
+ msgid "Cameroon"
5834
+ msgstr ""
5835
+
5836
+ #: includes/core/class-builtin.php:1651
5837
+ msgid "Canada"
5838
+ msgstr ""
5839
+
5840
+ #: includes/core/class-builtin.php:1652
5841
+ msgid "Cape Verde"
5842
+ msgstr ""
5843
+
5844
+ #: includes/core/class-builtin.php:1653
5845
+ msgid "Cayman Islands"
5846
+ msgstr ""
5847
+
5848
+ #: includes/core/class-builtin.php:1654
5849
+ msgid "Central African Republic"
5850
+ msgstr ""
5851
+
5852
+ #: includes/core/class-builtin.php:1655
5853
+ msgid "Chad"
5854
+ msgstr ""
5855
+
5856
+ #: includes/core/class-builtin.php:1656
5857
+ msgid "Chile"
5858
+ msgstr ""
5859
+
5860
+ #: includes/core/class-builtin.php:1657
5861
+ msgid "China"
5862
+ msgstr ""
5863
+
5864
+ #: includes/core/class-builtin.php:1658
5865
+ msgid "Christmas Island"
5866
+ msgstr ""
5867
+
5868
+ #: includes/core/class-builtin.php:1659
5869
+ msgid "Cocos (Keeling) Islands"
5870
+ msgstr ""
5871
+
5872
+ #: includes/core/class-builtin.php:1660
5873
+ msgid "Colombia"
5874
+ msgstr ""
5875
+
5876
+ #: includes/core/class-builtin.php:1661
5877
+ msgid "Comoros"
5878
+ msgstr ""
5879
+
5880
+ #: includes/core/class-builtin.php:1662
5881
+ msgid "Congo"
5882
+ msgstr ""
5883
+
5884
+ #: includes/core/class-builtin.php:1663
5885
+ msgid "Congo, the Democratic Republic of the"
5886
+ msgstr ""
5887
+
5888
+ #: includes/core/class-builtin.php:1664
5889
+ msgid "Cook Islands"
5890
+ msgstr ""
5891
+
5892
+ #: includes/core/class-builtin.php:1665
5893
+ msgid "Costa Rica"
5894
+ msgstr ""
5895
+
5896
+ #: includes/core/class-builtin.php:1666
5897
+ msgid "Côte d'Ivoire"
5898
+ msgstr ""
5899
+
5900
+ #: includes/core/class-builtin.php:1667
5901
+ msgid "Croatia"
5902
+ msgstr ""
5903
+
5904
+ #: includes/core/class-builtin.php:1668
5905
+ msgid "Cuba"
5906
+ msgstr ""
5907
+
5908
+ #: includes/core/class-builtin.php:1669
5909
+ msgid "Cyprus"
5910
+ msgstr ""
5911
+
5912
+ #: includes/core/class-builtin.php:1670
5913
+ msgid "Czech Republic"
5914
+ msgstr ""
5915
+
5916
+ #: includes/core/class-builtin.php:1671
5917
+ msgid "Denmark"
5918
+ msgstr ""
5919
+
5920
+ #: includes/core/class-builtin.php:1672
5921
+ msgid "Djibouti"
5922
+ msgstr ""
5923
+
5924
+ #: includes/core/class-builtin.php:1673
5925
+ msgid "Dominica"
5926
+ msgstr ""
5927
+
5928
+ #: includes/core/class-builtin.php:1674
5929
+ msgid "Dominican Republic"
5930
+ msgstr ""
5931
+
5932
+ #: includes/core/class-builtin.php:1675
5933
+ msgid "Ecuador"
5934
+ msgstr ""
5935
+
5936
+ #: includes/core/class-builtin.php:1676
5937
+ msgid "Egypt"
5938
+ msgstr ""
5939
+
5940
+ #: includes/core/class-builtin.php:1677
5941
+ msgid "El Salvador"
5942
+ msgstr ""
5943
+
5944
+ #: includes/core/class-builtin.php:1678
5945
+ msgid "Equatorial Guinea"
5946
+ msgstr ""
5947
+
5948
+ #: includes/core/class-builtin.php:1679
5949
+ msgid "Eritrea"
5950
+ msgstr ""
5951
+
5952
+ #: includes/core/class-builtin.php:1680
5953
+ msgid "Estonia"
5954
+ msgstr ""
5955
+
5956
+ #: includes/core/class-builtin.php:1681
5957
+ msgid "Ethiopia"
5958
+ msgstr ""
5959
+
5960
+ #: includes/core/class-builtin.php:1682
5961
+ msgid "Falkland Islands (Malvinas)"
5962
+ msgstr ""
5963
+
5964
+ #: includes/core/class-builtin.php:1683
5965
+ msgid "Faroe Islands"
5966
+ msgstr ""
5967
+
5968
+ #: includes/core/class-builtin.php:1684
5969
+ msgid "Fiji"
5970
+ msgstr ""
5971
+
5972
+ #: includes/core/class-builtin.php:1685
5973
+ msgid "Finland"
5974
+ msgstr ""
5975
+
5976
+ #: includes/core/class-builtin.php:1686
5977
+ msgid "France"
5978
+ msgstr ""
5979
+
5980
+ #: includes/core/class-builtin.php:1687
5981
+ msgid "French Guiana"
5982
+ msgstr ""
5983
+
5984
+ #: includes/core/class-builtin.php:1688
5985
+ msgid "French Polynesia"
5986
+ msgstr ""
5987
+
5988
+ #: includes/core/class-builtin.php:1689
5989
+ msgid "French Southern Territories"
5990
+ msgstr ""
5991
+
5992
+ #: includes/core/class-builtin.php:1690
5993
+ msgid "Gabon"
5994
+ msgstr ""
5995
+
5996
+ #: includes/core/class-builtin.php:1691
5997
+ msgid "Gambia"
5998
+ msgstr ""
5999
+
6000
+ #: includes/core/class-builtin.php:1692
6001
+ msgid "Georgia"
6002
+ msgstr ""
6003
+
6004
+ #: includes/core/class-builtin.php:1693
6005
+ msgid "Germany"
6006
+ msgstr ""
6007
+
6008
+ #: includes/core/class-builtin.php:1694
6009
+ msgid "Ghana"
6010
+ msgstr ""
6011
+
6012
+ #: includes/core/class-builtin.php:1695
6013
+ msgid "Gibraltar"
6014
+ msgstr ""
6015
+
6016
+ #: includes/core/class-builtin.php:1696
6017
+ msgid "Greece"
6018
+ msgstr ""
6019
+
6020
+ #: includes/core/class-builtin.php:1697
6021
+ msgid "Greenland"
6022
+ msgstr ""
6023
+
6024
+ #: includes/core/class-builtin.php:1698
6025
+ msgid "Grenada"
6026
+ msgstr ""
6027
+
6028
+ #: includes/core/class-builtin.php:1699
6029
+ msgid "Guadeloupe"
6030
+ msgstr ""
6031
+
6032
+ #: includes/core/class-builtin.php:1700
6033
+ msgid "Guam"
6034
+ msgstr ""
6035
+
6036
+ #: includes/core/class-builtin.php:1701
6037
+ msgid "Guatemala"
6038
+ msgstr ""
6039
+
6040
+ #: includes/core/class-builtin.php:1702
6041
+ msgid "Guernsey"
6042
+ msgstr ""
6043
+
6044
+ #: includes/core/class-builtin.php:1703
6045
+ msgid "Guinea"
6046
+ msgstr ""
6047
+
6048
+ #: includes/core/class-builtin.php:1704
6049
+ msgid "Guinea-Bissau"
6050
+ msgstr ""
6051
+
6052
+ #: includes/core/class-builtin.php:1705
6053
+ msgid "Guyana"
6054
+ msgstr ""
6055
+
6056
+ #: includes/core/class-builtin.php:1706
6057
+ msgid "Haiti"
6058
+ msgstr ""
6059
+
6060
+ #: includes/core/class-builtin.php:1707
6061
+ msgid "Heard Island and McDonald Islands"
6062
+ msgstr ""
6063
+
6064
+ #: includes/core/class-builtin.php:1708
6065
+ msgid "Holy See (Vatican City State)"
6066
+ msgstr ""
6067
+
6068
+ #: includes/core/class-builtin.php:1709
6069
+ msgid "Honduras"
6070
+ msgstr ""
6071
+
6072
+ #: includes/core/class-builtin.php:1710
6073
+ msgid "Hong Kong"
6074
+ msgstr ""
6075
+
6076
+ #: includes/core/class-builtin.php:1711
6077
+ msgid "Hungary"
6078
+ msgstr ""
6079
+
6080
+ #: includes/core/class-builtin.php:1712
6081
+ msgid "Iceland"
6082
+ msgstr ""
6083
+
6084
+ #: includes/core/class-builtin.php:1713
6085
+ msgid "India"
6086
+ msgstr ""
6087
+
6088
+ #: includes/core/class-builtin.php:1714
6089
+ msgid "Indonesia"
6090
+ msgstr ""
6091
+
6092
+ #: includes/core/class-builtin.php:1715
6093
+ msgid "Iran, Islamic Republic of"
6094
+ msgstr ""
6095
+
6096
+ #: includes/core/class-builtin.php:1716
6097
+ msgid "Iraq"
6098
+ msgstr ""
6099
+
6100
+ #: includes/core/class-builtin.php:1717
6101
+ msgid "Ireland"
6102
+ msgstr ""
6103
+
6104
+ #: includes/core/class-builtin.php:1718
6105
+ msgid "Isle of Man"
6106
+ msgstr ""
6107
+
6108
+ #: includes/core/class-builtin.php:1719
6109
+ msgid "Israel"
6110
+ msgstr ""
6111
+
6112
+ #: includes/core/class-builtin.php:1720
6113
+ msgid "Italy"
6114
+ msgstr ""
6115
+
6116
+ #: includes/core/class-builtin.php:1721
6117
+ msgid "Jamaica"
6118
+ msgstr ""
6119
+
6120
+ #: includes/core/class-builtin.php:1722
6121
+ msgid "Japan"
6122
+ msgstr ""
6123
+
6124
+ #: includes/core/class-builtin.php:1723
6125
+ msgid "Jersey"
6126
+ msgstr ""
6127
+
6128
+ #: includes/core/class-builtin.php:1724
6129
+ msgid "Jordan"
6130
+ msgstr ""
6131
+
6132
+ #: includes/core/class-builtin.php:1725
6133
+ msgid "Kazakhstan"
6134
+ msgstr ""
6135
+
6136
+ #: includes/core/class-builtin.php:1726
6137
+ msgid "Kenya"
6138
+ msgstr ""
6139
+
6140
+ #: includes/core/class-builtin.php:1727
6141
+ msgid "Kiribati"
6142
+ msgstr ""
6143
+
6144
+ #: includes/core/class-builtin.php:1728
6145
+ msgid "Korea, Democratic People's Republic of"
6146
+ msgstr ""
6147
+
6148
+ #: includes/core/class-builtin.php:1729
6149
+ msgid "Korea, Republic of"
6150
+ msgstr ""
6151
+
6152
+ #: includes/core/class-builtin.php:1730
6153
+ msgid "Kuwait"
6154
+ msgstr ""
6155
+
6156
+ #: includes/core/class-builtin.php:1731
6157
+ msgid "Kyrgyzstan"
6158
+ msgstr ""
6159
+
6160
+ #: includes/core/class-builtin.php:1732
6161
+ msgid "Lao People's Democratic Republic"
6162
+ msgstr ""
6163
+
6164
+ #: includes/core/class-builtin.php:1733
6165
+ msgid "Latvia"
6166
+ msgstr ""
6167
+
6168
+ #: includes/core/class-builtin.php:1734
6169
+ msgid "Lebanon"
6170
+ msgstr ""
6171
+
6172
+ #: includes/core/class-builtin.php:1735
6173
+ msgid "Lesotho"
6174
+ msgstr ""
6175
+
6176
+ #: includes/core/class-builtin.php:1736
6177
+ msgid "Liberia"
6178
+ msgstr ""
6179
+
6180
+ #: includes/core/class-builtin.php:1737
6181
+ msgid "Libyan Arab Jamahiriya"
6182
+ msgstr ""
6183
+
6184
+ #: includes/core/class-builtin.php:1738
6185
+ msgid "Liechtenstein"
6186
+ msgstr ""
6187
+
6188
+ #: includes/core/class-builtin.php:1739
6189
+ msgid "Lithuania"
6190
+ msgstr ""
6191
+
6192
+ #: includes/core/class-builtin.php:1740
6193
+ msgid "Luxembourg"
6194
+ msgstr ""
6195
+
6196
+ #: includes/core/class-builtin.php:1741
6197
+ msgid "Macao"
6198
+ msgstr ""
6199
+
6200
+ #: includes/core/class-builtin.php:1742
6201
+ msgid "Macedonia, the former Yugoslav Republic of"
6202
+ msgstr ""
6203
+
6204
+ #: includes/core/class-builtin.php:1743
6205
+ msgid "Madagascar"
6206
+ msgstr ""
6207
+
6208
+ #: includes/core/class-builtin.php:1744
6209
+ msgid "Malawi"
6210
+ msgstr ""
6211
+
6212
+ #: includes/core/class-builtin.php:1745
6213
+ msgid "Malaysia"
6214
+ msgstr ""
6215
+
6216
+ #: includes/core/class-builtin.php:1746
6217
+ msgid "Maldives"
6218
+ msgstr ""
6219
+
6220
+ #: includes/core/class-builtin.php:1747
6221
+ msgid "Mali"
6222
+ msgstr ""
6223
+
6224
+ #: includes/core/class-builtin.php:1748
6225
+ msgid "Malta"
6226
+ msgstr ""
6227
+
6228
+ #: includes/core/class-builtin.php:1749
6229
+ msgid "Marshall Islands"
6230
+ msgstr ""
6231
+
6232
+ #: includes/core/class-builtin.php:1750
6233
+ msgid "Martinique"
6234
+ msgstr ""
6235
+
6236
+ #: includes/core/class-builtin.php:1751
6237
+ msgid "Mauritania"
6238
+ msgstr ""
6239
+
6240
+ #: includes/core/class-builtin.php:1752
6241
+ msgid "Mauritius"
6242
+ msgstr ""
6243
+
6244
+ #: includes/core/class-builtin.php:1753
6245
+ msgid "Mayotte"
6246
+ msgstr ""
6247
+
6248
+ #: includes/core/class-builtin.php:1754
6249
+ msgid "Mexico"
6250
+ msgstr ""
6251
+
6252
+ #: includes/core/class-builtin.php:1755
6253
+ msgid "Micronesia, Federated States of"
6254
+ msgstr ""
6255
+
6256
+ #: includes/core/class-builtin.php:1756
6257
+ msgid "Moldova, Republic of"
6258
+ msgstr ""
6259
+
6260
+ #: includes/core/class-builtin.php:1757
6261
+ msgid "Monaco"
6262
+ msgstr ""
6263
+
6264
+ #: includes/core/class-builtin.php:1758
6265
+ msgid "Mongolia"
6266
+ msgstr ""
6267
+
6268
+ #: includes/core/class-builtin.php:1759
6269
+ msgid "Montenegro"
6270
+ msgstr ""
6271
+
6272
+ #: includes/core/class-builtin.php:1760
6273
+ msgid "Montserrat"
6274
+ msgstr ""
6275
+
6276
+ #: includes/core/class-builtin.php:1761
6277
+ msgid "Morocco"
6278
+ msgstr ""
6279
+
6280
+ #: includes/core/class-builtin.php:1762
6281
+ msgid "Mozambique"
6282
+ msgstr ""
6283
+
6284
+ #: includes/core/class-builtin.php:1763
6285
+ msgid "Myanmar"
6286
+ msgstr ""
6287
+
6288
+ #: includes/core/class-builtin.php:1764
6289
+ msgid "Namibia"
6290
+ msgstr ""
6291
+
6292
+ #: includes/core/class-builtin.php:1766
6293
+ msgid "Nepal"
6294
+ msgstr ""
6295
+
6296
+ #: includes/core/class-builtin.php:1767
6297
+ msgid "Netherlands"
6298
+ msgstr ""
6299
+
6300
+ #: includes/core/class-builtin.php:1768
6301
+ msgid "Netherlands Antilles"
6302
+ msgstr ""
6303
+
6304
+ #: includes/core/class-builtin.php:1769
6305
+ msgid "New Caledonia"
6306
+ msgstr ""
6307
+
6308
+ #: includes/core/class-builtin.php:1770
6309
+ msgid "New Zealand"
6310
+ msgstr ""
6311
+
6312
+ #: includes/core/class-builtin.php:1771
6313
+ msgid "Nicaragua"
6314
+ msgstr ""
6315
+
6316
+ #: includes/core/class-builtin.php:1772
6317
+ msgid "Niger"
6318
+ msgstr ""
6319
+
6320
+ #: includes/core/class-builtin.php:1773
6321
+ msgid "Nigeria"
6322
+ msgstr ""
6323
+
6324
+ #: includes/core/class-builtin.php:1774
6325
+ msgid "Niue"
6326
+ msgstr ""
6327
+
6328
+ #: includes/core/class-builtin.php:1775
6329
+ msgid "Norfolk Island"
6330
+ msgstr ""
6331
+
6332
+ #: includes/core/class-builtin.php:1776
6333
+ msgid "Northern Mariana Islands"
6334
+ msgstr ""
6335
+
6336
+ #: includes/core/class-builtin.php:1777
6337
+ msgid "Norway"
6338
+ msgstr ""
6339
+
6340
+ #: includes/core/class-builtin.php:1778
6341
+ msgid "Oman"
6342
+ msgstr ""
6343
+
6344
+ #: includes/core/class-builtin.php:1779
6345
+ msgid "Pakistan"
6346
+ msgstr ""
6347
+
6348
+ #: includes/core/class-builtin.php:1780
6349
+ msgid "Palau"
6350
+ msgstr ""
6351
+
6352
+ #: includes/core/class-builtin.php:1781
6353
+ msgid "Palestine"
6354
+ msgstr ""
6355
+
6356
+ #: includes/core/class-builtin.php:1782
6357
+ msgid "Panama"
6358
+ msgstr ""
6359
+
6360
+ #: includes/core/class-builtin.php:1783
6361
+ msgid "Papua New Guinea"
6362
+ msgstr ""
6363
+
6364
+ #: includes/core/class-builtin.php:1784
6365
+ msgid "Paraguay"
6366
+ msgstr ""
6367
+
6368
+ #: includes/core/class-builtin.php:1785
6369
+ msgid "Peru"
6370
+ msgstr ""
6371
+
6372
+ #: includes/core/class-builtin.php:1786
6373
+ msgid "Philippines"
6374
+ msgstr ""
6375
+
6376
+ #: includes/core/class-builtin.php:1787
6377
+ msgid "Pitcairn"
6378
+ msgstr ""
6379
+
6380
+ #: includes/core/class-builtin.php:1788
6381
+ msgid "Poland"
6382
+ msgstr ""
6383
+
6384
+ #: includes/core/class-builtin.php:1789
6385
+ msgid "Portugal"
6386
+ msgstr ""
6387
+
6388
+ #: includes/core/class-builtin.php:1790
6389
+ msgid "Puerto Rico"
6390
+ msgstr ""
6391
+
6392
+ #: includes/core/class-builtin.php:1791
6393
+ msgid "Qatar"
6394
+ msgstr ""
6395
+
6396
+ #: includes/core/class-builtin.php:1792
6397
+ msgid "Réunion"
6398
+ msgstr ""
6399
+
6400
+ #: includes/core/class-builtin.php:1793
6401
+ msgid "Romania"
6402
+ msgstr ""
6403
+
6404
+ #: includes/core/class-builtin.php:1794
6405
+ msgid "Russian Federation"
6406
+ msgstr ""
6407
+
6408
+ #: includes/core/class-builtin.php:1795
6409
+ msgid "Rwanda"
6410
+ msgstr ""
6411
+
6412
+ #: includes/core/class-builtin.php:1796
6413
+ msgid "Saint Barthélemy"
6414
+ msgstr ""
6415
+
6416
+ #: includes/core/class-builtin.php:1797
6417
+ msgid "Saint Helena"
6418
+ msgstr ""
6419
+
6420
+ #: includes/core/class-builtin.php:1798
6421
+ msgid "Saint Kitts and Nevis"
6422
+ msgstr ""
6423
+
6424
+ #: includes/core/class-builtin.php:1799
6425
+ msgid "Saint Lucia"
6426
+ msgstr ""
6427
+
6428
+ #: includes/core/class-builtin.php:1800
6429
+ msgid "Saint Martin (French part)"
6430
+ msgstr ""
6431
+
6432
+ #: includes/core/class-builtin.php:1801
6433
+ msgid "Saint Pierre and Miquelon"
6434
+ msgstr ""
6435
+
6436
+ #: includes/core/class-builtin.php:1802
6437
+ msgid "Saint Vincent and the Grenadines"
6438
+ msgstr ""
6439
+
6440
+ #: includes/core/class-builtin.php:1803
6441
+ msgid "Samoa"
6442
+ msgstr ""
6443
+
6444
+ #: includes/core/class-builtin.php:1804
6445
+ msgid "San Marino"
6446
+ msgstr ""
6447
+
6448
+ #: includes/core/class-builtin.php:1805
6449
+ msgid "Sao Tome and Principe"
6450
+ msgstr ""
6451
+
6452
+ #: includes/core/class-builtin.php:1806
6453
+ msgid "Saudi Arabia"
6454
+ msgstr ""
6455
+
6456
+ #: includes/core/class-builtin.php:1807
6457
+ msgid "Senegal"
6458
+ msgstr ""
6459
+
6460
+ #: includes/core/class-builtin.php:1808
6461
+ msgid "Serbia"
6462
+ msgstr ""
6463
+
6464
+ #: includes/core/class-builtin.php:1809
6465
+ msgid "Seychelles"
6466
+ msgstr ""
6467
+
6468
+ #: includes/core/class-builtin.php:1810
6469
+ msgid "Sierra Leone"
6470
+ msgstr ""
6471
+
6472
+ #: includes/core/class-builtin.php:1811
6473
+ msgid "Singapore"
6474
+ msgstr ""
6475
+
6476
+ #: includes/core/class-builtin.php:1812
6477
+ msgid "Slovakia"
6478
+ msgstr ""
6479
+
6480
+ #: includes/core/class-builtin.php:1813
6481
+ msgid "Slovenia"
6482
+ msgstr ""
6483
+
6484
+ #: includes/core/class-builtin.php:1814
6485
+ msgid "Solomon Islands"
6486
+ msgstr ""
6487
+
6488
+ #: includes/core/class-builtin.php:1815
6489
+ msgid "Somalia"
6490
+ msgstr ""
6491
+
6492
+ #: includes/core/class-builtin.php:1816
6493
+ msgid "South Africa"
6494
+ msgstr ""
6495
+
6496
+ #: includes/core/class-builtin.php:1817
6497
+ msgid "South Georgia and the South Sandwich Islands"
6498
+ msgstr ""
6499
+
6500
+ #: includes/core/class-builtin.php:1818
6501
+ msgid "South Sudan"
6502
+ msgstr ""
6503
+
6504
+ #: includes/core/class-builtin.php:1819
6505
+ msgid "Spain"
6506
+ msgstr ""
6507
+
6508
+ #: includes/core/class-builtin.php:1820
6509
+ msgid "Sri Lanka"
6510
+ msgstr ""
6511
+
6512
+ #: includes/core/class-builtin.php:1821
6513
+ msgid "Sudan"
6514
+ msgstr ""
6515
+
6516
+ #: includes/core/class-builtin.php:1822
6517
+ msgid "Suriname"
6518
+ msgstr ""
6519
+
6520
+ #: includes/core/class-builtin.php:1823
6521
+ msgid "Svalbard and Jan Mayen"
6522
+ msgstr ""
6523
+
6524
+ #: includes/core/class-builtin.php:1824
6525
+ msgid "Swaziland"
6526
+ msgstr ""
6527
+
6528
+ #: includes/core/class-builtin.php:1825
6529
+ msgid "Sweden"
6530
+ msgstr ""
6531
+
6532
+ #: includes/core/class-builtin.php:1826
6533
+ msgid "Switzerland"
6534
+ msgstr ""
6535
+
6536
+ #: includes/core/class-builtin.php:1827
6537
+ msgid "Syrian Arab Republic"
6538
+ msgstr ""
6539
+
6540
+ #: includes/core/class-builtin.php:1828
6541
+ msgid "Taiwan, Province of China"
6542
+ msgstr ""
6543
+
6544
+ #: includes/core/class-builtin.php:1829
6545
+ msgid "Tajikistan"
6546
+ msgstr ""
6547
+
6548
+ #: includes/core/class-builtin.php:1830
6549
+ msgid "Tanzania, United Republic of"
6550
+ msgstr ""
6551
+
6552
+ #: includes/core/class-builtin.php:1831
6553
+ msgid "Thailand"
6554
+ msgstr ""
6555
+
6556
+ #: includes/core/class-builtin.php:1832
6557
+ msgid "Timor-Leste"
6558
+ msgstr ""
6559
+
6560
+ #: includes/core/class-builtin.php:1833
6561
+ msgid "Togo"
6562
+ msgstr ""
6563
+
6564
+ #: includes/core/class-builtin.php:1834
6565
+ msgid "Tokelau"
6566
+ msgstr ""
6567
+
6568
+ #: includes/core/class-builtin.php:1836
6569
+ msgid "Trinidad and Tobago"
6570
+ msgstr ""
6571
+
6572
+ #: includes/core/class-builtin.php:1837
6573
+ msgid "Tunisia"
6574
+ msgstr ""
6575
+
6576
+ #: includes/core/class-builtin.php:1838
6577
+ msgid "Turkey"
6578
+ msgstr ""
6579
+
6580
+ #: includes/core/class-builtin.php:1839
6581
+ msgid "Turkmenistan"
6582
+ msgstr ""
6583
+
6584
+ #: includes/core/class-builtin.php:1840
6585
+ msgid "Turks and Caicos Islands"
6586
+ msgstr ""
6587
+
6588
+ #: includes/core/class-builtin.php:1841
6589
+ msgid "Tuvalu"
6590
+ msgstr ""
6591
+
6592
+ #: includes/core/class-builtin.php:1842
6593
+ msgid "Uganda"
6594
+ msgstr ""
6595
+
6596
+ #: includes/core/class-builtin.php:1843
6597
+ msgid "Ukraine"
6598
+ msgstr ""
6599
+
6600
+ #: includes/core/class-builtin.php:1844
6601
+ msgid "United Arab Emirates"
6602
+ msgstr ""
6603
+
6604
+ #: includes/core/class-builtin.php:1845
6605
+ msgid "United Kingdom"
6606
+ msgstr ""
6607
+
6608
+ #: includes/core/class-builtin.php:1846
6609
+ msgid "United States"
6610
+ msgstr ""
6611
+
6612
+ #: includes/core/class-builtin.php:1847
6613
+ msgid "United States Minor Outlying Islands"
6614
+ msgstr ""
6615
+
6616
+ #: includes/core/class-builtin.php:1848
6617
+ msgid "Uruguay"
6618
+ msgstr ""
6619
+
6620
+ #: includes/core/class-builtin.php:1849
6621
+ msgid "Uzbekistan"
6622
+ msgstr ""
6623
+
6624
+ #: includes/core/class-builtin.php:1850
6625
+ msgid "Vanuatu"
6626
+ msgstr ""
6627
+
6628
+ #: includes/core/class-builtin.php:1851
6629
+ msgid "Venezuela, Bolivarian Republic of"
6630
+ msgstr ""
6631
+
6632
+ #: includes/core/class-builtin.php:1852
6633
+ msgid "Viet Nam"
6634
+ msgstr ""
6635
+
6636
+ #: includes/core/class-builtin.php:1853
6637
+ msgid "Virgin Islands, British"
6638
+ msgstr ""
6639
+
6640
+ #: includes/core/class-builtin.php:1854
6641
+ msgid "Virgin Islands, U.S."
6642
+ msgstr ""
6643
+
6644
+ #: includes/core/class-builtin.php:1855
6645
+ msgid "Wallis and Futuna"
6646
+ msgstr ""
6647
+
6648
+ #: includes/core/class-builtin.php:1856
6649
+ msgid "Western Sahara"
6650
+ msgstr ""
6651
+
6652
+ #: includes/core/class-builtin.php:1857
6653
+ msgid "Yemen"
6654
+ msgstr ""
6655
+
6656
+ #: includes/core/class-builtin.php:1858
6657
+ msgid "Zambia"
6658
+ msgstr ""
6659
+
6660
+ #: includes/core/class-builtin.php:1859
6661
+ msgid "Zimbabwe"
6662
+ msgstr ""
6663
+
6664
+ #: includes/core/class-common.php:59
6665
+ #: includes/um-short-functions.php:792
6666
+ #: includes/um-short-functions.php:802
6667
+ msgid "Form"
6668
+ msgstr ""
6669
+
6670
+ #: includes/core/class-common.php:61
6671
+ msgid "Add New Form"
6672
+ msgstr ""
6673
+
6674
+ #: includes/core/class-common.php:62
6675
+ msgid "Edit Form"
6676
+ msgstr ""
6677
+
6678
+ #: includes/core/class-common.php:63
6679
+ msgid "You did not create any forms yet"
6680
+ msgstr ""
6681
+
6682
+ #: includes/core/class-common.php:64
6683
+ #: includes/core/class-common.php:94
6684
+ msgid "Nothing found in Trash"
6685
+ msgstr ""
6686
+
6687
+ #: includes/core/class-common.php:65
6688
+ msgid "Search Forms"
6689
+ msgstr ""
6690
+
6691
+ #: includes/core/class-common.php:89
6692
+ msgid "Member Directory"
6693
+ msgstr ""
6694
+
6695
+ #: includes/core/class-common.php:91
6696
+ msgid "Add New Member Directory"
6697
+ msgstr ""
6698
+
6699
+ #: includes/core/class-common.php:92
6700
+ msgid "Edit Member Directory"
6701
+ msgstr ""
6702
+
6703
+ #: includes/core/class-common.php:93
6704
+ msgid "You did not create any member directories yet"
6705
+ msgstr ""
6706
+
6707
+ #: includes/core/class-common.php:95
6708
+ msgid "Search Member Directories"
6709
+ msgstr ""
6710
+
6711
+ #: includes/core/class-cron.php:62
6712
+ msgid "Once Weekly"
6713
+ msgstr ""
6714
+
6715
+ #: includes/core/class-date-time.php:54
6716
+ msgid "just now"
6717
+ msgstr ""
6718
+
6719
+ #: includes/core/class-date-time.php:63
6720
+ msgid "%s min"
6721
+ msgid_plural "%s mins"
6722
+ msgstr[0] ""
6723
+ msgstr[1] ""
6724
+
6725
+ #: includes/core/class-date-time.php:72
6726
+ msgid "%s hr"
6727
+ msgid_plural "%s hrs"
6728
+ msgstr[0] ""
6729
+ msgstr[1] ""
6730
+
6731
+ #: includes/core/class-date-time.php:82
6732
+ msgid "Yesterday at %s"
6733
+ msgstr ""
6734
+
6735
+ #: includes/core/class-date-time.php:84
6736
+ #: includes/core/class-date-time.php:89
6737
+ #: includes/core/class-date-time.php:93
6738
+ #: includes/core/class-date-time.php:97
6739
+ msgid "%s at %s"
6740
+ msgstr ""
6741
+
6742
+ #: includes/core/class-date-time.php:146
6743
+ msgid "%s year old"
6744
+ msgstr ""
6745
+
6746
+ #: includes/core/class-date-time.php:149
6747
+ msgid "%s years old"
6748
+ msgstr ""
6749
+
6750
+ #: includes/core/class-date-time.php:152
6751
+ msgid "Less than 1 year old"
6752
+ msgstr ""
6753
+
6754
+ #: includes/core/class-fields.php:1342
6755
+ #: includes/core/um-actions-account.php:436
6756
+ #: templates/message.php:6
6757
+ msgid "%s"
6758
+ msgstr ""
6759
+
6760
+ #: includes/core/class-fields.php:1363
6761
+ msgid "Custom Field"
6762
+ msgstr ""
6763
+
6764
+ #: includes/core/class-fields.php:1706
6765
+ msgid "Please upload a valid image!"
6766
+ msgstr ""
6767
+
6768
+ #: includes/core/class-fields.php:1720
6769
+ msgid "Sorry this is not a valid image."
6770
+ msgstr ""
6771
+
6772
+ #: includes/core/class-fields.php:1723
6773
+ msgid "This image is too large!"
6774
+ msgstr ""
6775
+
6776
+ #: includes/core/class-fields.php:1726
6777
+ msgid "This image is too small!"
6778
+ msgstr ""
6779
+
6780
+ #: includes/core/class-fields.php:1729
6781
+ msgid "You can only upload one image"
6782
+ msgstr ""
6783
+
6784
+ #: includes/core/class-fields.php:1761
6785
+ msgid "Sorry this is not a valid file."
6786
+ msgstr ""
6787
+
6788
+ #: includes/core/class-fields.php:1764
6789
+ msgid "This file is too large!"
6790
+ msgstr ""
6791
+
6792
+ #: includes/core/class-fields.php:1767
6793
+ msgid "This file is too small!"
6794
+ msgstr ""
6795
+
6796
+ #: includes/core/class-fields.php:1770
6797
+ msgid "You can only upload one file"
6798
+ msgstr ""
6799
+
6800
+ #: includes/core/class-fields.php:2299
6801
+ msgid "Current Password"
6802
+ msgstr ""
6803
+
6804
+ #: includes/core/class-fields.php:2330
6805
+ msgid "New Password"
6806
+ msgstr ""
6807
+
6808
+ #: includes/core/class-fields.php:2369
6809
+ msgid "Confirm %s"
6810
+ msgstr ""
6811
+
6812
+ #: includes/core/class-fields.php:2618
6813
+ msgid "Upload Photo"
6814
+ msgstr ""
6815
+
6816
+ #: includes/core/class-fields.php:2640
6817
+ #: includes/core/class-fields.php:2664
6818
+ #: includes/core/um-actions-profile.php:997
6819
+ msgid "Change photo"
6820
+ msgstr ""
6821
+
6822
+ #: includes/core/class-fields.php:2664
6823
+ #: includes/core/class-fields.php:2763
6824
+ msgid "Processing..."
6825
+ msgstr ""
6826
+
6827
+ #: includes/core/class-fields.php:2688
6828
+ msgid "Upload File"
6829
+ msgstr ""
6830
+
6831
+ #: includes/core/class-fields.php:2730
6832
+ #: includes/core/um-filters-fields.php:267
6833
+ msgid "This file has been removed."
6834
+ msgstr ""
6835
+
6836
+ #: includes/core/class-fields.php:2733
6837
+ msgid "Change file"
6838
+ msgstr ""
6839
+
6840
+ #: includes/core/class-fields.php:2763
6841
+ msgid "Save"
6842
+ msgstr ""
6843
+
6844
+ #: includes/core/class-fields.php:4298
6845
+ msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
6846
+ msgstr ""
6847
+
6848
+ #: includes/core/class-fields.php:4300
6849
+ msgid "This user has not added any information to their profile yet."
6850
+ msgstr ""
6851
+
6852
+ #: includes/core/class-files.php:257
6853
+ msgid "Wrong path"
6854
+ msgstr ""
6855
+
6856
+ #: includes/core/class-files.php:261
6857
+ msgid "Wrong mode"
6858
+ msgstr ""
6859
+
6860
+ #: includes/core/class-files.php:284
6861
+ #: includes/core/class-files.php:333
6862
+ #: includes/core/class-files.php:370
6863
+ msgid "You have no permission to edit this user"
6864
+ msgstr ""
6865
+
6866
+ #: includes/core/class-files.php:299
6867
+ msgid "You have no permission to delete this file"
6868
+ msgstr ""
6869
+
6870
+ #: includes/core/class-files.php:319
6871
+ msgid "Invalid parameters"
6872
+ msgstr ""
6873
+
6874
+ #: includes/core/class-files.php:324
6875
+ msgid "Invalid coordinates"
6876
+ msgstr ""
6877
+
6878
+ #: includes/core/class-files.php:339
6879
+ msgid "Invalid file ownership"
6880
+ msgstr ""
6881
+
6882
+ #: includes/core/class-files.php:400
6883
+ msgid "Invalid nonce"
6884
+ msgstr ""
6885
+
6886
+ #: includes/core/class-files.php:421
6887
+ #: includes/core/class-files.php:507
6888
+ msgid "A theme or plugin compatibility issue"
6889
+ msgstr ""
6890
+
6891
+ #: includes/core/class-files.php:1291
6892
+ msgid "Original size"
6893
+ msgstr ""
6894
+
6895
+ #: includes/core/class-login.php:78
6896
+ #: includes/core/class-register.php:71
6897
+ msgid "Invalid Nonce."
6898
+ msgstr ""
6899
+
6900
+ #: includes/core/class-mail.php:615
6901
+ #: includes/core/class-password.php:703
6902
+ #: includes/core/class-profile.php:481
6903
+ msgid "Your set password"
6904
+ msgstr ""
6905
+
6906
+ #: includes/core/class-member-directory.php:281
6907
+ msgid "Grid"
6908
+ msgstr ""
6909
+
6910
+ #: includes/core/class-member-directory.php:282
6911
+ msgid "List"
6912
+ msgstr ""
6913
+
6914
+ #: includes/core/class-member-directory.php:287
6915
+ msgid "New users first"
6916
+ msgstr ""
6917
+
6918
+ #: includes/core/class-member-directory.php:288
6919
+ msgid "Old users first"
6920
+ msgstr ""
6921
+
6922
+ #: includes/core/class-member-directory.php:291
6923
+ msgid "First name"
6924
+ msgstr ""
6925
+
6926
+ #: includes/core/class-member-directory.php:292
6927
+ msgid "Last name"
6928
+ msgstr ""
6929
+
6930
+ #: includes/core/class-member-directory.php:293
6931
+ msgid "Display name"
6932
+ msgstr ""
6933
+
6934
+ #: includes/core/class-member-directory.php:294
6935
+ msgid "Last & First name"
6936
+ msgstr ""
6937
+
6938
+ #: includes/core/class-member-directory.php:295
6939
+ msgid "Last login"
6940
+ msgstr ""
6941
+
6942
+ #: includes/core/class-member-directory.php:302
6943
+ msgid "Random"
6944
+ msgstr ""
6945
+
6946
+ #: includes/core/class-member-directory.php:314
6947
+ msgid "Age"
6948
+ msgstr ""
6949
+
6950
+ #: includes/core/class-member-directory.php:316
6951
+ msgid "User Registered"
6952
+ msgstr ""
6953
+
6954
+ #: includes/core/class-member-directory.php:882
6955
+ #: includes/core/class-member-directory.php:883
6956
+ msgid " stars"
6957
+ msgstr ""
6958
+
6959
+ #: includes/core/class-member-directory.php:893
6960
+ msgid "<strong>Age:</strong>&nbsp;{value} years old"
6961
+ msgstr ""
6962
+
6963
+ #: includes/core/class-member-directory.php:894
6964
+ msgid "<strong>Age:</strong>&nbsp;{min_range} - {max_range} years old"
6965
+ msgstr ""
6966
+
6967
+ #: includes/core/class-member-directory.php:2130
6968
+ #: includes/core/class-member-directory.php:2174
6969
+ #: includes/core/um-actions-profile.php:1319
6970
+ #: includes/core/um-actions-profile.php:1350
6971
+ msgid "Edit Profile"
6972
+ msgstr ""
6973
+
6974
+ #: includes/core/class-member-directory.php:2180
6975
+ #: includes/core/um-actions-profile.php:1351
6976
+ msgid "My Account"
6977
+ msgstr ""
6978
+
6979
+ #: includes/core/class-password.php:460
6980
+ msgid "Please provide your username or email"
6981
+ msgstr ""
6982
+
6983
+ #: includes/core/class-password.php:464
6984
+ msgid "We can't find an account registered with that address or username"
6985
+ msgstr ""
6986
+
6987
+ #: includes/core/class-password.php:483
6988
+ msgid "You have reached the limit for requesting password change for this user already. Contact support if you cannot open the email"
6989
+ msgstr ""
6990
+
6991
+ #: includes/core/class-password.php:539
6992
+ msgid "You must enter a new password"
6993
+ msgstr ""
6994
+
6995
+ #: includes/core/class-password.php:545
6996
+ #: includes/core/um-actions-account.php:75
6997
+ msgid "Your password must contain at least 8 characters"
6998
+ msgstr ""
6999
+
7000
+ #: includes/core/class-password.php:549
7001
+ #: includes/core/um-actions-account.php:79
7002
+ msgid "Your password must contain less than 30 characters"
7003
+ msgstr ""
7004
+
7005
+ #: includes/core/class-password.php:553
7006
+ #: includes/core/um-actions-account.php:83
7007
+ #: includes/core/um-actions-form.php:536
7008
+ msgid "Your password must contain at least one lowercase letter, one capital letter and one number"
7009
+ msgstr ""
7010
+
7011
+ #: includes/core/class-password.php:559
7012
+ msgid "You must confirm your new password"
7013
+ msgstr ""
7014
+
7015
+ #: includes/core/class-password.php:563
7016
+ #: includes/core/um-actions-form.php:545
7017
+ msgid "Your passwords do not match"
7018
+ msgstr ""
7019
+
7020
+ #: includes/core/class-permalinks.php:188
7021
+ msgid "This activation link is expired or have already been used."
7022
+ msgstr ""
7023
+
7024
+ #: includes/core/class-profile.php:100
7025
+ msgid "Anyone"
7026
+ msgstr ""
7027
+
7028
+ #: includes/core/class-profile.php:101
7029
+ msgid "Guests only"
7030
+ msgstr ""
7031
+
7032
+ #: includes/core/class-profile.php:102
7033
+ msgid "Members only"
7034
+ msgstr ""
7035
+
7036
+ #: includes/core/class-profile.php:103
7037
+ msgid "Only the owner"
7038
+ msgstr ""
7039
+
7040
+ #: includes/core/class-profile.php:104
7041
+ msgid "Specific roles"
7042
+ msgstr ""
7043
+
7044
+ #: includes/core/class-profile.php:141
7045
+ msgid "About"
7046
+ msgstr ""
7047
+
7048
+ #: includes/core/class-profile.php:145
7049
+ msgid "Posts"
7050
+ msgstr ""
7051
+
7052
+ #: includes/core/class-profile.php:149
7053
+ msgid "Comments"
7054
+ msgstr ""
7055
+
7056
+ #: includes/core/class-shortcodes.php:363
7057
+ msgid "This content has been restricted to logged in users only. Please <a href=\"{login_referrer}\">login</a> to view this content."
7058
+ msgstr ""
7059
+
7060
+ #: includes/core/class-shortcodes.php:682
7061
+ msgid "You are already registered"
7062
+ msgstr ""
7063
+
7064
+ #: includes/core/class-shortcodes.php:936
7065
+ msgid "Default Template"
7066
+ msgstr ""
7067
+
7068
+ #: includes/core/class-uploader.php:691
7069
+ msgid "Your image is invalid!"
7070
+ msgstr ""
7071
+
7072
+ #: includes/core/class-uploader.php:733
7073
+ msgid "This media type is not recognized."
7074
+ msgstr ""
7075
+
7076
+ #: includes/core/class-uploader.php:781
7077
+ msgid "Your image is invalid or too large!"
7078
+ msgstr ""
7079
+
7080
+ #: includes/core/class-uploader.php:787
7081
+ #: includes/core/class-uploader.php:789
7082
+ msgid "Your photo is too small. It must be at least %spx wide."
7083
+ msgstr ""
7084
+
7085
+ #: includes/core/class-uploader.php:842
7086
+ msgid "This file type is not recognized."
7087
+ msgstr ""
7088
+
7089
+ #: includes/core/class-user.php:773
7090
+ msgid "Ultimate Member Role"
7091
+ msgstr ""
7092
+
7093
+ #: includes/core/class-user.php:776
7094
+ msgid "&mdash; No role for Ultimate Member &mdash;"
7095
+ msgstr ""
7096
+
7097
+ #: includes/core/class-user.php:993
7098
+ msgid "Membership Rejected"
7099
+ msgstr ""
7100
+
7101
+ #: includes/core/class-user.php:997
7102
+ msgid "Membership Inactive"
7103
+ msgstr ""
7104
+
7105
+ #: includes/core/rest/class-api-v1.php:256
7106
+ #: includes/core/rest/class-api-v1.php:328
7107
+ #: includes/core/rest/class-api-v1.php:365
7108
+ #: includes/core/rest/class-api-v2.php:256
7109
+ #: includes/core/rest/class-api-v2.php:328
7110
+ #: includes/core/rest/class-api-v2.php:365
7111
+ msgid "You must provide a user ID"
7112
+ msgstr ""
7113
+
7114
+ #: includes/core/rest/class-api-v1.php:261
7115
+ #: includes/core/rest/class-api-v2.php:261
7116
+ msgid "You need to provide data to update"
7117
+ msgstr ""
7118
+
7119
+ #: includes/core/rest/class-api-v1.php:270
7120
+ #: includes/core/rest/class-api-v2.php:270
7121
+ msgid "User status has been changed."
7122
+ msgstr ""
7123
+
7124
+ #: includes/core/rest/class-api-v1.php:299
7125
+ #: includes/core/rest/class-api-v2.php:299
7126
+ msgid "User role has been changed."
7127
+ msgstr ""
7128
+
7129
+ #: includes/core/rest/class-api-v1.php:303
7130
+ #: includes/core/rest/class-api-v2.php:303
7131
+ msgid "User meta has been changed."
7132
+ msgstr ""
7133
+
7134
+ #: includes/core/rest/class-api-v1.php:334
7135
+ #: includes/core/rest/class-api-v1.php:371
7136
+ #: includes/core/rest/class-api-v2.php:334
7137
+ #: includes/core/rest/class-api-v2.php:371
7138
+ msgid "Invalid user specified"
7139
+ msgstr ""
7140
+
7141
+ #: includes/core/rest/class-api-v1.php:341
7142
+ #: includes/core/rest/class-api-v2.php:341
7143
+ msgid "User has been successfully deleted."
7144
+ msgstr ""
7145
+
7146
+ #: includes/core/rest/class-api.php:253
7147
+ msgid "You must specify both a token and API key!"
7148
+ msgstr ""
7149
+
7150
+ #: includes/core/rest/class-api.php:265
7151
+ msgid "Your request could not be authenticated"
7152
+ msgstr ""
7153
+
7154
+ #: includes/core/rest/class-api.php:277
7155
+ msgid "Invalid API key"
7156
+ msgstr ""
7157
+
7158
+ #: includes/core/rest/class-api.php:434
7159
+ msgid "Invalid query!"
7160
+ msgstr ""
7161
+
7162
+ #: includes/core/um-actions-account.php:15
7163
+ msgid "Are you hacking? Please try again!"
7164
+ msgstr ""
7165
+
7166
+ #: includes/core/um-actions-account.php:26
7167
+ #: includes/core/um-actions-account.php:129
7168
+ msgid "You must enter your password"
7169
+ msgstr ""
7170
+
7171
+ #: includes/core/um-actions-account.php:29
7172
+ #: includes/core/um-actions-account.php:58
7173
+ #: includes/core/um-actions-account.php:62
7174
+ #: includes/core/um-actions-account.php:132
7175
+ msgid "This is not your password"
7176
+ msgstr ""
7177
+
7178
+ #: includes/core/um-actions-account.php:45
7179
+ msgid "Password is required"
7180
+ msgstr ""
7181
+
7182
+ #: includes/core/um-actions-account.php:50
7183
+ msgid "Password confirmation is required"
7184
+ msgstr ""
7185
+
7186
+ #: includes/core/um-actions-account.php:69
7187
+ msgid "Your new password does not match"
7188
+ msgstr ""
7189
+
7190
+ #: includes/core/um-actions-account.php:99
7191
+ msgid "Your username is invalid"
7192
+ msgstr ""
7193
+
7194
+ #: includes/core/um-actions-account.php:104
7195
+ msgid "You must provide your first name"
7196
+ msgstr ""
7197
+
7198
+ #: includes/core/um-actions-account.php:108
7199
+ msgid "You must provide your last name"
7200
+ msgstr ""
7201
+
7202
+ #: includes/core/um-actions-account.php:114
7203
+ msgid "You must provide your e-mail"
7204
+ msgstr ""
7205
+
7206
+ #: includes/core/um-actions-account.php:118
7207
+ msgid "Please provide a valid e-mail"
7208
+ msgstr ""
7209
+
7210
+ #: includes/core/um-actions-account.php:122
7211
+ msgid "Email already linked to another account"
7212
+ msgstr ""
7213
+
7214
+ #: includes/core/um-actions-account.php:452
7215
+ msgid "Select what email notifications do you want to receive"
7216
+ msgstr ""
7217
+
7218
+ #: includes/core/um-actions-account.php:510
7219
+ msgid "Download your data"
7220
+ msgstr ""
7221
+
7222
+ #: includes/core/um-actions-account.php:512
7223
+ msgid "You can request a file with the information that we believe is most relevant and useful to you."
7224
+ msgstr ""
7225
+
7226
+ #: includes/core/um-actions-account.php:530
7227
+ msgid "You could download your previous data:"
7228
+ msgstr ""
7229
+
7230
+ #: includes/core/um-actions-account.php:531
7231
+ msgid "download personal data"
7232
+ msgstr ""
7233
+
7234
+ #: includes/core/um-actions-account.php:532
7235
+ msgid "You could send a new request for an export of personal your data."
7236
+ msgstr ""
7237
+
7238
+ #: includes/core/um-actions-account.php:548
7239
+ #: includes/core/um-actions-account.php:622
7240
+ #: includes/core/um-actions-account.php:699
7241
+ msgid "A confirmation email has been sent to your email. Click the link within the email to confirm your export request."
7242
+ msgstr ""
7243
+
7244
+ #: includes/core/um-actions-account.php:550
7245
+ msgid "The administrator has not yet approved downloading the data. Please expect an email with a link to your data."
7246
+ msgstr ""
7247
+
7248
+ #: includes/core/um-actions-account.php:555
7249
+ msgid "Enter your current password to confirm a new export of your personal data."
7250
+ msgstr ""
7251
+
7252
+ #: includes/core/um-actions-account.php:560
7253
+ #: includes/core/um-actions-account.php:632
7254
+ msgid "You must enter a password"
7255
+ msgstr ""
7256
+
7257
+ #: includes/core/um-actions-account.php:568
7258
+ msgid "To export of your personal data, click the button below."
7259
+ msgstr ""
7260
+
7261
+ #: includes/core/um-actions-account.php:575
7262
+ msgid "Request data"
7263
+ msgstr ""
7264
+
7265
+ #: includes/core/um-actions-account.php:584
7266
+ msgid "Erase of your data"
7267
+ msgstr ""
7268
+
7269
+ #: includes/core/um-actions-account.php:586
7270
+ msgid "You can request erasing of the data that we have about you."
7271
+ msgstr ""
7272
+
7273
+ #: includes/core/um-actions-account.php:605
7274
+ msgid "Your personal data has been deleted."
7275
+ msgstr ""
7276
+
7277
+ #: includes/core/um-actions-account.php:606
7278
+ msgid "You could send a new request for deleting your personal data."
7279
+ msgstr ""
7280
+
7281
+ #: includes/core/um-actions-account.php:624
7282
+ msgid "The administrator has not yet approved deleting your data. Please expect an email with a link to your data."
7283
+ msgstr ""
7284
+
7285
+ #: includes/core/um-actions-account.php:629
7286
+ msgid "Enter your current password to confirm the erasure of your personal data."
7287
+ msgstr ""
7288
+
7289
+ #: includes/core/um-actions-account.php:640
7290
+ msgid "Require erasure of your personal data, click on the button below."
7291
+ msgstr ""
7292
+
7293
+ #: includes/core/um-actions-account.php:647
7294
+ msgid "Request data erase"
7295
+ msgstr ""
7296
+
7297
+ #: includes/core/um-actions-account.php:661
7298
+ #: includes/core/um-actions-account.php:692
7299
+ msgid "Wrong request."
7300
+ msgstr ""
7301
+
7302
+ #: includes/core/um-actions-account.php:672
7303
+ #: includes/core/um-actions-account.php:679
7304
+ msgid "The password you entered is incorrect."
7305
+ msgstr ""
7306
+
7307
+ #: includes/core/um-actions-core.php:27
7308
+ msgid "Super administrators can not be modified."
7309
+ msgstr ""
7310
+
7311
+ #: includes/core/um-actions-core.php:89
7312
+ #: includes/core/um-actions-core.php:100
7313
+ #: includes/core/um-actions-core.php:113
7314
+ #: includes/core/um-actions-core.php:123
7315
+ #: includes/core/um-actions-core.php:136
7316
+ msgid "You do not have permission to make this action."
7317
+ msgstr ""
7318
+
7319
+ #: includes/core/um-actions-core.php:146
7320
+ msgid "You do not have permission to delete this user."
7321
+ msgstr ""
7322
+
7323
+ #: includes/core/um-actions-form.php:94
7324
+ msgid "You are not allowed to use this word as your username."
7325
+ msgstr ""
7326
+
7327
+ #: includes/core/um-actions-form.php:394
7328
+ msgid "Profile Photo is required."
7329
+ msgstr ""
7330
+
7331
+ #: includes/core/um-actions-form.php:447
7332
+ #: includes/core/um-actions-form.php:448
7333
+ msgid "%s - wrong conditions."
7334
+ msgstr ""
7335
+
7336
+ #: includes/core/um-actions-form.php:456
7337
+ #: includes/core/um-actions-form.php:460
7338
+ #: includes/core/um-actions-form.php:464
7339
+ msgid "%s is required."
7340
+ msgstr ""
7341
+
7342
+ #: includes/core/um-actions-form.php:469
7343
+ msgid "Please specify account type."
7344
+ msgstr ""
7345
+
7346
+ #: includes/core/um-actions-form.php:499
7347
+ msgid "This field is required"
7348
+ msgstr ""
7349
+
7350
+ #: includes/core/um-actions-form.php:501
7351
+ msgid "%s is required"
7352
+ msgstr ""
7353
+
7354
+ #: includes/core/um-actions-form.php:510
7355
+ msgid "You are only allowed to enter a maximum of %s words"
7356
+ msgstr ""
7357
+
7358
+ #: includes/core/um-actions-form.php:516
7359
+ msgid "Your %s must contain at least %s characters"
7360
+ msgstr ""
7361
+
7362
+ #: includes/core/um-actions-form.php:522
7363
+ msgid "Your %s must contain less than %s characters"
7364
+ msgstr ""
7365
+
7366
+ #: includes/core/um-actions-form.php:529
7367
+ msgid "You can not use HTML tags here"
7368
+ msgstr ""
7369
+
7370
+ #: includes/core/um-actions-form.php:542
7371
+ msgid "Please confirm your password"
7372
+ msgstr ""
7373
+
7374
+ #: includes/core/um-actions-form.php:551
7375
+ msgid "Please select at least %s choices"
7376
+ msgstr ""
7377
+
7378
+ #: includes/core/um-actions-form.php:557
7379
+ msgid "You can only select up to %s choices"
7380
+ msgstr ""
7381
+
7382
+ #: includes/core/um-actions-form.php:563
7383
+ msgid "Minimum number limit is %s"
7384
+ msgstr ""
7385
+
7386
+ #: includes/core/um-actions-form.php:569
7387
+ msgid "Maximum number limit is %s"
7388
+ msgstr ""
7389
+
7390
+ #: includes/core/um-actions-form.php:605
7391
+ msgid "Please enter numbers only in this field"
7392
+ msgstr ""
7393
+
7394
+ #: includes/core/um-actions-form.php:611
7395
+ msgid "Please enter a valid phone number"
7396
+ msgstr ""
7397
+
7398
+ #: includes/core/um-actions-form.php:617
7399
+ #: includes/core/um-actions-form.php:623
7400
+ #: includes/core/um-actions-form.php:629
7401
+ #: includes/core/um-actions-form.php:635
7402
+ #: includes/core/um-actions-form.php:648
7403
+ #: includes/core/um-actions-form.php:654
7404
+ #: includes/core/um-actions-form.php:660
7405
+ msgid "Please enter a valid %s username or profile URL"
7406
+ msgstr ""
7407
+
7408
+ #: includes/core/um-actions-form.php:642
7409
+ msgid "Please enter a valid %s profile URL"
7410
+ msgstr ""
7411
+
7412
+ #: includes/core/um-actions-form.php:666
7413
+ msgid "Please enter a valid URL"
7414
+ msgstr ""
7415
+
7416
+ #: includes/core/um-actions-form.php:673
7417
+ #: includes/core/um-actions-form.php:687
7418
+ msgid "You must provide a username"
7419
+ msgstr ""
7420
+
7421
+ #: includes/core/um-actions-form.php:675
7422
+ #: includes/core/um-actions-form.php:689
7423
+ msgid "Your username is already taken"
7424
+ msgstr ""
7425
+
7426
+ #: includes/core/um-actions-form.php:677
7427
+ msgid "Username cannot be an email"
7428
+ msgstr ""
7429
+
7430
+ #: includes/core/um-actions-form.php:679
7431
+ #: includes/core/um-actions-form.php:693
7432
+ msgid "Your username contains invalid characters"
7433
+ msgstr ""
7434
+
7435
+ #: includes/core/um-actions-form.php:691
7436
+ #: includes/core/um-actions-form.php:713
7437
+ #: includes/core/um-actions-form.php:715
7438
+ #: includes/core/um-actions-form.php:727
7439
+ #: includes/core/um-actions-form.php:734
7440
+ msgid "This email is already linked to an existing account"
7441
+ msgstr ""
7442
+
7443
+ #: includes/core/um-actions-form.php:711
7444
+ msgid "You must provide your email"
7445
+ msgstr ""
7446
+
7447
+ #: includes/core/um-actions-form.php:717
7448
+ #: includes/core/um-actions-form.php:725
7449
+ #: includes/core/um-actions-form.php:749
7450
+ msgid "This is not a valid email"
7451
+ msgstr ""
7452
+
7453
+ #: includes/core/um-actions-form.php:719
7454
+ msgid "Your email contains invalid characters"
7455
+ msgstr ""
7456
+
7457
+ #: includes/core/um-actions-form.php:768
7458
+ msgid "You must provide a unique value"
7459
+ msgstr ""
7460
+
7461
+ #: includes/core/um-actions-form.php:778
7462
+ msgid "You must provide alphabetic letters"
7463
+ msgstr ""
7464
+
7465
+ #: includes/core/um-actions-form.php:790
7466
+ msgid "You must provide lowercase letters."
7467
+ msgstr ""
7468
+
7469
+ #: includes/core/um-actions-form.php:808
7470
+ msgid "Your user description must contain less than %s characters"
7471
+ msgstr ""
7472
+
7473
+ #: includes/core/um-actions-login.php:18
7474
+ msgid "Please enter your username or email"
7475
+ msgstr ""
7476
+
7477
+ #: includes/core/um-actions-login.php:22
7478
+ msgid "Please enter your username"
7479
+ msgstr ""
7480
+
7481
+ #: includes/core/um-actions-login.php:26
7482
+ msgid "Please enter your email"
7483
+ msgstr ""
7484
+
7485
+ #: includes/core/um-actions-login.php:52
7486
+ msgid "Please enter your password"
7487
+ msgstr ""
7488
+
7489
+ #: includes/core/um-actions-login.php:59
7490
+ msgid "Password is incorrect. Please try again."
7491
+ msgstr ""
7492
+
7493
+ #: includes/core/um-actions-login.php:184
7494
+ msgid "This action has been prevented for security measures."
7495
+ msgstr ""
7496
+
7497
+ #: includes/core/um-actions-login.php:412
7498
+ msgid "Keep me signed in"
7499
+ msgstr ""
7500
+
7501
+ #: includes/core/um-actions-login.php:456
7502
+ msgid "Forgot your password?"
7503
+ msgstr ""
7504
+
7505
+ #: includes/core/um-actions-misc.php:111
7506
+ msgid "Your account was updated successfully."
7507
+ msgstr ""
7508
+
7509
+ #: includes/core/um-actions-misc.php:115
7510
+ msgid "You have successfully changed your password."
7511
+ msgstr ""
7512
+
7513
+ #: includes/core/um-actions-misc.php:119
7514
+ msgid "Your account is now active! You can login."
7515
+ msgstr ""
7516
+
7517
+ #: includes/core/um-actions-misc.php:153
7518
+ msgid "An error has been encountered"
7519
+ msgstr ""
7520
+
7521
+ #: includes/core/um-actions-misc.php:158
7522
+ msgid "Registration is currently disabled"
7523
+ msgstr ""
7524
+
7525
+ #: includes/core/um-actions-misc.php:162
7526
+ #: includes/core/um-filters-login.php:40
7527
+ msgid "This email address has been blocked."
7528
+ msgstr ""
7529
+
7530
+ #: includes/core/um-actions-misc.php:166
7531
+ msgid "We do not accept registrations from that domain."
7532
+ msgstr ""
7533
+
7534
+ #: includes/core/um-actions-misc.php:170
7535
+ #: includes/core/um-filters-login.php:43
7536
+ msgid "Your IP address has been blocked."
7537
+ msgstr ""
7538
+
7539
+ #: includes/core/um-actions-misc.php:174
7540
+ #: includes/core/um-filters-login.php:95
7541
+ msgid "Your account has been disabled."
7542
+ msgstr ""
7543
+
7544
+ #: includes/core/um-actions-misc.php:178
7545
+ #: includes/core/um-filters-login.php:98
7546
+ msgid "Your account has not been approved yet."
7547
+ msgstr ""
7548
+
7549
+ #: includes/core/um-actions-misc.php:182
7550
+ #: includes/core/um-filters-login.php:101
7551
+ msgid "Your account is awaiting e-mail verification."
7552
+ msgstr ""
7553
+
7554
+ #: includes/core/um-actions-misc.php:186
7555
+ #: includes/core/um-filters-login.php:104
7556
+ msgid "Your membership request has been rejected."
7557
+ msgstr ""
7558
+
7559
+ #: includes/core/um-actions-profile.php:204
7560
+ msgid "You are not allowed to edit this user."
7561
+ msgstr ""
7562
+
7563
+ #: includes/core/um-actions-profile.php:350
7564
+ msgid "Your choosed %s"
7565
+ msgstr ""
7566
+
7567
+ #: includes/core/um-actions-profile.php:690
7568
+ #: includes/core/um-actions-profile.php:700
7569
+ msgid "Profile photo"
7570
+ msgstr ""
7571
+
7572
+ #: includes/core/um-actions-profile.php:761
7573
+ #: includes/core/um-actions-profile.php:777
7574
+ #: includes/core/um-actions-profile.php:848
7575
+ msgid "Upload a cover photo"
7576
+ msgstr ""
7577
+
7578
+ #: includes/core/um-actions-profile.php:761
7579
+ msgid "Change cover photo"
7580
+ msgstr ""
7581
+
7582
+ #: includes/core/um-actions-profile.php:965
7583
+ msgid "Upload photo"
7584
+ msgstr ""
7585
+
7586
+ #: includes/core/um-actions-profile.php:998
7587
+ msgid "Remove photo"
7588
+ msgstr ""
7589
+
7590
+ #: includes/core/um-actions-profile.php:1161
7591
+ msgid "Tell us a bit about yourself..."
7592
+ msgstr ""
7593
+
7594
+ #: includes/core/um-actions-profile.php:1176
7595
+ msgid "This user account status is %s"
7596
+ msgstr ""
7597
+
7598
+ #: includes/core/um-actions-user.php:14
7599
+ msgid "Your account"
7600
+ msgstr ""
7601
+
7602
+ #: includes/core/um-filters-fields.php:34
7603
+ msgid "Invalid soundcloud track ID"
7604
+ msgstr ""
7605
+
7606
+ #: includes/core/um-filters-fields.php:124
7607
+ msgid "Joined %s"
7608
+ msgstr ""
7609
+
7610
+ #: includes/core/um-filters-fields.php:301
7611
+ msgid "Untitled photo"
7612
+ msgstr ""
7613
+
7614
+ #: includes/core/um-filters-profile.php:141
7615
+ #: includes/core/um-filters-profile.php:162
7616
+ msgid "max"
7617
+ msgstr ""
7618
+
7619
+ #: includes/core/um-filters-user.php:36
7620
+ msgid "Deactivate this account"
7621
+ msgstr ""
7622
+
7623
+ #: includes/core/um-filters-user.php:40
7624
+ msgid "Reactivate this account"
7625
+ msgstr ""
7626
+
7627
+ #: includes/core/um-filters-user.php:46
7628
+ msgid "Delete this user"
7629
+ msgstr ""
7630
+
7631
+ #: includes/core/um-filters-user.php:50
7632
+ msgid "Login as this user"
7633
+ msgstr ""
7634
+
7635
+ #: includes/um-short-functions.php:752
7636
+ #: includes/um-short-functions.php:987
7637
+ msgid "date submitted"
7638
+ msgstr ""
7639
+
7640
+ #: includes/um-short-functions.php:758
7641
+ #: includes/um-short-functions.php:956
7642
+ #: includes/um-short-functions.php:993
7643
+ msgid "(empty)"
7644
+ msgstr ""
7645
+
7646
+ #: includes/um-short-functions.php:791
7647
+ msgid "Date Submitted"
7648
+ msgstr ""
7649
+
7650
+ #: includes/um-short-functions.php:945
7651
+ msgid "%s - Form ID#: %s"
7652
+ msgstr ""
7653
+
7654
+ #: includes/widgets/class-um-search-widget.php:27
7655
+ msgid "Ultimate Member - Search"
7656
+ msgstr ""
7657
+
7658
+ #: includes/widgets/class-um-search-widget.php:30
7659
+ msgid "Shows the search member form."
7660
+ msgstr ""
7661
+
7662
+ #: includes/widgets/class-um-search-widget.php:73
7663
+ msgid "Search Users"
7664
+ msgstr ""
7665
+
7666
+ #: templates/members-grid.php:55
7667
+ msgid "Edit profile"
7668
+ msgstr ""
7669
+
7670
+ #: templates/members-pagination.php:7
7671
+ msgid "Jump to page:"
7672
+ msgstr ""
7673
+
7674
+ #: templates/members-pagination.php:10
7675
+ msgid "of"
7676
+ msgstr ""
7677
+
7678
+ #: templates/members-pagination.php:16
7679
+ msgid "First page"
7680
+ msgstr ""
7681
+
7682
+ #: templates/members-pagination.php:17
7683
+ msgid "Previous page"
7684
+ msgstr ""
7685
+
7686
+ #: templates/members-pagination.php:23
7687
+ msgid "Next page"
7688
+ msgstr ""
7689
+
7690
+ #: templates/members-pagination.php:24
7691
+ msgid "Last page"
7692
+ msgstr ""
7693
+
7694
+ #: templates/members.php:225
7695
+ msgid "Search:"
7696
+ msgstr ""
7697
+
7698
+ #: templates/members.php:226
7699
+ #: templates/members.php:228
7700
+ msgid "Search"
7701
+ msgstr ""
7702
+
7703
+ #: templates/members.php:253
7704
+ msgid "Change to %s"
7705
+ msgstr ""
7706
+
7707
+ #: templates/members.php:266
7708
+ msgid "Sort by:"
7709
+ msgstr ""
7710
+
7711
+ #: templates/members.php:286
7712
+ msgid "More filters"
7713
+ msgstr ""
7714
+
7715
+ #: templates/members.php:311
7716
+ msgid "Remove filter"
7717
+ msgstr ""
7718
+
7719
+ #: templates/members.php:338
7720
+ msgid "Remove all filters"
7721
+ msgstr ""
7722
+
7723
+ #: templates/members.php:338
7724
+ msgid "Clear all"
7725
+ msgstr ""
7726
+
7727
+ #: templates/modal/um_view_photo.php:6
7728
+ msgid "Close view photo modal"
7729
+ msgstr ""
7730
+
7731
+ #: templates/password-change.php:47
7732
+ msgid "Change my password"
7733
+ msgstr ""
7734
+
7735
+ #: templates/password-reset.php:10
7736
+ msgid "We have sent you a password reset link to your e-mail. Please check your inbox."
7737
+ msgstr ""
7738
+
7739
+ #: templates/password-reset.php:45
7740
+ msgid "Your password reset link has expired. Please request a new link below."
7741
+ msgstr ""
7742
+
7743
+ #: templates/password-reset.php:47
7744
+ msgid "Your password reset link appears to be invalid. Please request a new link below."
7745
+ msgstr ""
7746
+
7747
+ #: templates/password-reset.php:56
7748
+ msgid "To reset your password, please enter your email address or username below"
7749
+ msgstr ""
7750
+
7751
+ #: templates/password-reset.php:94
7752
+ msgid "Reset my password"
7753
+ msgstr ""
7754
+
7755
+ #: templates/profile/comments-single.php:14
7756
+ msgid "On <a href=\"%1$s\">%2$s</a>"
7757
+ msgstr ""
7758
+
7759
+ #: templates/profile/comments.php:24
7760
+ msgid "load more comments"
7761
+ msgstr ""
7762
+
7763
+ #: templates/profile/comments.php:36
7764
+ msgid "You have not made any comments."
7765
+ msgstr ""
7766
+
7767
+ #: templates/profile/comments.php:38
7768
+ msgid "This user has not made any comments."
7769
+ msgstr ""
7770
+
7771
+ #: templates/profile/posts-single.php:23
7772
+ msgid "%s ago"
7773
+ msgstr ""
7774
+
7775
+ #: templates/profile/posts-single.php:26
7776
+ msgid "in"
7777
+ msgstr ""
7778
+
7779
+ #: templates/profile/posts-single.php:32
7780
+ msgid "no comments"
7781
+ msgstr ""
7782
+
7783
+ #: templates/profile/posts-single.php:34
7784
+ msgid "%s comments"
7785
+ msgstr ""
7786
+
7787
+ #: templates/profile/posts-single.php:36
7788
+ msgid "1 comment"
7789
+ msgstr ""
7790
+
7791
+ #: templates/profile/posts.php:23
7792
+ msgid "load more posts"
7793
+ msgstr ""
7794
+
7795
+ #: templates/profile/posts.php:35
7796
+ msgid "You have not created any posts."
7797
+ msgstr ""
7798
+
7799
+ #: templates/profile/posts.php:37
7800
+ msgid "This user has not created any posts."
7801
+ msgstr ""
7802
+
7803
+ #: assets/js/um-profile.js:128
7804
+ msgid "Are you sure that you want to delete this user?"
7805
+ msgstr ""
7806
+
7807
+ #: assets/js/um-raty.js:612
7808
+ msgid "Cancel this rating!"
7809
+ msgstr ""
7810
+
7811
+ #: assets/js/um-raty.js:623
7812
+ msgid "Not rated yet!"
7813
+ msgstr ""
7814
+
7815
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:20
7816
+ msgid "UM Form"
7817
+ msgstr ""
7818
+
7819
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:21
7820
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:150
7821
+ msgid "Choose display form"
7822
+ msgstr ""
7823
+
7824
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:86
7825
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:213
7826
+ msgid "Loading Forms"
7827
+ msgstr ""
7828
+
7829
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:94
7830
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:221
7831
+ msgid "No Posts"
7832
+ msgstr ""
7833
+
7834
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:114
7835
+ msgid "Select Forms"
7836
+ msgstr ""
7837
+
7838
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:149
7839
+ msgid "UM Member Directories"
7840
+ msgstr ""
7841
+
7842
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:241
7843
+ msgid "Select Directories"
7844
+ msgstr ""
7845
+
7846
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:275
7847
+ msgid "UM Password Reset"
7848
+ msgstr ""
7849
+
7850
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:318
7851
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:319
7852
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:379
7853
+ msgid "UM Account"
7854
+ msgstr ""
7855
+
7856
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:387
7857
+ msgid "Account Tab"
7858
+ msgstr ""
7859
+
7860
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:392
7861
+ msgid "Select Tab"
7862
+ msgstr ""
7863
+
7864
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:454
7865
+ msgid "User Profile Wall"
7866
+ msgstr ""
7867
+
7868
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:455
7869
+ msgid "Used on the user profile page"
7870
+ msgstr ""
7871
+
7872
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:525
7873
+ msgid "Select User"
7874
+ msgstr ""
7875
+
7876
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:541
7877
+ msgid "Hashtag"
7878
+ msgstr ""
7879
+
7880
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:558
7881
+ msgid "Shortcode Attribute"
7882
+ msgstr ""
7883
+
7884
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:563
7885
+ #: includes/admin/assets/js/um-admin-blocks-shortcode.js:577
7886
+ msgid "Show the form on the wall?"
7887
+ msgstr ""
7888
+
7889
+ #: includes/admin/assets/js/um-admin-blocks.js:66
7890
+ msgid "UM access Controls"
7891
+ msgstr ""
7892
+
7893
+ #: includes/admin/assets/js/um-admin-blocks.js:71
7894
+ msgid "Restrict access?"
7895
+ msgstr ""
7896
+
7897
+ #: includes/admin/assets/js/um-admin-blocks.js:128
7898
+ msgid "What roles can access this content?"
7899
+ msgstr ""
7900
+
7901
+ #: includes/admin/assets/js/um-admin-blocks.js:141
7902
+ msgid "Restriction Action"
7903
+ msgstr ""
7904
+
7905
+ #: includes/admin/assets/js/um-admin-blocks.js:145
7906
+ msgid "Hide block"
7907
+ msgstr ""
7908
+
7909
+ #: includes/admin/assets/js/um-admin-blocks.js:149
7910
+ msgid "Show global default message"
7911
+ msgstr ""
7912
+
7913
+ #: includes/admin/assets/js/um-admin-blocks.js:172
7914
+ msgid "Restriction Message Content"
7915
+ msgstr ""
7916
+
7917
+ #: includes/admin/assets/js/um-admin-forms.js:22
7918
+ msgid "Upgrade Process Started..."
7919
+ msgstr ""
7920
+
7921
+ #: includes/admin/assets/js/um-admin-forms.js:54
7922
+ msgid "Getting metadata"
7923
+ msgstr ""
7924
+
7925
+ #: includes/admin/assets/js/um-admin-forms.js:66
7926
+ msgid " metadata rows..."
7927
+ msgstr ""
7928
+
7929
+ #: includes/admin/assets/js/um-admin-forms.js:132
7930
+ msgid "Wrong AJAX response..."
7931
+ msgstr ""
7932
+
7933
+ #: includes/admin/assets/js/um-admin-forms.js:133
7934
+ #: includes/admin/assets/js/um-admin-forms.js:139
7935
+ msgid "Your upgrade was crashed, please contact with support"
7936
+ msgstr ""
7937
+
7938
+ #: includes/admin/assets/js/um-admin-forms.js:138
7939
+ msgid "Something went wrong with AJAX request..."
7940
+ msgstr ""
7941
+
7942
+ #: includes/admin/assets/js/um-admin-settings.js:24
7943
+ msgid "Are sure, maybe some settings not saved"
7944
+ msgstr ""
languages/ultimatemember-en_US.po DELETED
@@ -1,7122 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Ultimate Member\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-08-18 00:00+0800\n"
6
- "PO-Revision-Date: 2018-08-18 00:00+0800\n"
7
- "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
- "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
- "Language: en_US\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.1.1\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPathExcluded-0: .git\n"
20
- "X-Poedit-SearchPathExcluded-1: node_modules\n"
21
- "X-Poedit-SearchPathExcluded-2: admin/core/lib/ReduxFramework\n"
22
- "X-Poedit-SearchPathExcluded-3: assets/vendor\n"
23
-
24
- #: assets/js/um-jquery-form.min.js:1
25
- msgid "ajaxSubmit: skipping submit process - no element selected"
26
- msgstr ""
27
-
28
- #: assets/js/um-jquery-form.min.js:1
29
- msgid "ajaxSubmit: submit vetoed via form-pre-serialize trigger"
30
- msgstr ""
31
-
32
- #: assets/js/um-jquery-form.min.js:1
33
- msgid "ajaxSubmit: submit aborted via beforeSerialize callback"
34
- msgstr ""
35
-
36
- #: assets/js/um-jquery-form.min.js:1
37
- msgid "ajaxSubmit: submit aborted via beforeSubmit callback"
38
- msgstr ""
39
-
40
- #: assets/js/um-jquery-form.min.js:1
41
- msgid "ajaxSubmit: submit vetoed via form-submit-validate trigger"
42
- msgstr ""
43
-
44
- #: assets/js/um-jquery-form.min.js:1
45
- msgid "fileAPI :"
46
- msgstr ""
47
-
48
- #: assets/js/um-jquery-form.min.js:1
49
- msgid "aborting upload... "
50
- msgstr ""
51
-
52
- #: assets/js/um-jquery-form.min.js:1
53
- msgid "cannot get iframe.contentWindow document: "
54
- msgstr ""
55
-
56
- #: assets/js/um-jquery-form.min.js:1
57
- msgid "cannot get iframe.contentDocument: "
58
- msgstr ""
59
-
60
- #: assets/js/um-jquery-form.min.js:1
61
- msgid "state = "
62
- msgstr ""
63
-
64
- #: assets/js/um-jquery-form.min.js:1
65
- msgid "Server abort: "
66
- msgstr ""
67
-
68
- #: assets/js/um-jquery-form.min.js:1
69
- msgid "cannot access response document"
70
- msgstr ""
71
-
72
- #: assets/js/um-jquery-form.min.js:1
73
- msgid "isXml="
74
- msgstr ""
75
-
76
- #: assets/js/um-jquery-form.min.js:1
77
- msgid "requeing onLoad callback, DOM not available"
78
- msgstr ""
79
-
80
- #: assets/js/um-jquery-form.min.js:1
81
- msgid "error caught: "
82
- msgstr ""
83
-
84
- #: assets/js/um-jquery-form.min.js:1
85
- msgid "upload aborted"
86
- msgstr ""
87
-
88
- #: assets/js/um-jquery-form.min.js:1
89
- msgid "DOM not ready, queuing ajaxForm"
90
- msgstr ""
91
-
92
- #: assets/js/um-jquery-form.min.js:1
93
- msgid "terminating; zero elements found by selector"
94
- msgstr ""
95
-
96
- #: includes/admin/class-admin.php:133
97
- #, php-format
98
- msgid "Duplicate of %s"
99
- msgstr ""
100
-
101
- #: includes/admin/class-admin.php:282
102
- msgid "Docs"
103
- msgstr ""
104
-
105
- #: includes/admin/class-admin.php:283
106
- #: includes/admin/core/class-admin-settings.php:1119
107
- msgid "Settings"
108
- msgstr ""
109
-
110
- #: includes/admin/class-admin.php:354 includes/admin/class-admin.php:357
111
- msgid "Form updated."
112
- msgstr ""
113
-
114
- #: includes/admin/class-admin.php:355
115
- msgid "Custom field updated."
116
- msgstr ""
117
-
118
- #: includes/admin/class-admin.php:356
119
- msgid "Custom field deleted."
120
- msgstr ""
121
-
122
- #: includes/admin/class-admin.php:358
123
- msgid "Form restored to revision."
124
- msgstr ""
125
-
126
- #: includes/admin/class-admin.php:359
127
- msgid "Form created."
128
- msgstr ""
129
-
130
- #: includes/admin/class-admin.php:360
131
- msgid "Form saved."
132
- msgstr ""
133
-
134
- #: includes/admin/class-admin.php:361
135
- msgid "Form submitted."
136
- msgstr ""
137
-
138
- #: includes/admin/class-admin.php:362
139
- msgid "Form scheduled."
140
- msgstr ""
141
-
142
- #: includes/admin/class-admin.php:363
143
- msgid "Form draft updated."
144
- msgstr ""
145
-
146
- #: includes/admin/core/class-admin-builder.php:227
147
- msgid "Manage conditional fields support"
148
- msgstr ""
149
-
150
- #: includes/admin/core/class-admin-builder.php:227
151
- #: includes/admin/core/class-admin-builder.php:229
152
- msgid ""
153
- "Here you can setup conditional logic to show/hide this field based on "
154
- "specific fields value or conditions"
155
- msgstr ""
156
-
157
- #: includes/admin/core/class-admin-builder.php:229
158
- msgid "Add conditional fields support"
159
- msgstr ""
160
-
161
- #: includes/admin/core/class-admin-builder.php:244
162
- msgid "Add new rule"
163
- msgstr ""
164
-
165
- #: includes/admin/core/class-admin-builder.php:245
166
- msgid "Reset all rules"
167
- msgstr ""
168
-
169
- #: includes/admin/core/class-admin-builder.php:402
170
- #: includes/admin/core/class-admin-builder.php:472
171
- #: includes/admin/core/class-admin-dragdrop.php:161
172
- msgid "Add Row"
173
- msgstr ""
174
-
175
- #: includes/admin/core/class-admin-builder.php:403
176
- #: includes/admin/core/class-admin-builder.php:473
177
- #: includes/admin/core/class-admin-dragdrop.php:162
178
- msgid "Edit Row"
179
- msgstr ""
180
-
181
- #: includes/admin/core/class-admin-builder.php:476
182
- #: includes/admin/core/class-admin-dragdrop.php:164
183
- #: includes/admin/core/class-admin-dragdrop.php:178
184
- #: includes/admin/core/class-admin-dragdrop.php:203
185
- msgid "Delete Row"
186
- msgstr ""
187
-
188
- #: includes/admin/core/class-admin-builder.php:610
189
- #: includes/admin/core/class-admin-builder.php:764
190
- #: includes/core/class-fields.php:4009
191
- msgid "Please login as administrator"
192
- msgstr ""
193
-
194
- #: includes/admin/core/class-admin-builder.php:830
195
- msgid "Search Icons..."
196
- msgstr ""
197
-
198
- #: includes/admin/core/class-admin-builder.php:851
199
- msgid "Setup New Field"
200
- msgstr ""
201
-
202
- #: includes/admin/core/class-admin-builder.php:867
203
- msgid "Predefined Fields"
204
- msgstr ""
205
-
206
- #: includes/admin/core/class-admin-builder.php:878
207
- #: includes/core/class-builtin.php:1315
208
- msgid "None"
209
- msgstr ""
210
-
211
- #: includes/admin/core/class-admin-builder.php:882
212
- msgid "Custom Fields"
213
- msgstr ""
214
-
215
- #: includes/admin/core/class-admin-builder.php:893
216
- msgid "You did not create any custom fields"
217
- msgstr ""
218
-
219
- #: includes/admin/core/class-admin-builder.php:925
220
- #: includes/admin/core/class-admin-builder.php:999
221
- msgid "This field type is not setup correcty."
222
- msgstr ""
223
-
224
- #: includes/admin/core/class-admin-builder.php:1146
225
- #: includes/core/class-form.php:153 includes/core/class-form.php:326
226
- #: includes/core/um-actions-password.php:202
227
- msgid "This is not possible for security reasons."
228
- msgstr ""
229
-
230
- #: includes/admin/core/class-admin-columns.php:64
231
- msgid "Duplicate"
232
- msgstr ""
233
-
234
- #: includes/admin/core/class-admin-columns.php:93
235
- #: includes/admin/core/class-admin-columns.php:112
236
- #: includes/admin/templates/role/role-edit.php:171
237
- msgid "Title"
238
- msgstr ""
239
-
240
- #: includes/admin/core/class-admin-columns.php:94
241
- #: includes/admin/core/class-admin-columns.php:113
242
- msgid "ID"
243
- msgstr ""
244
-
245
- #: includes/admin/core/class-admin-columns.php:95
246
- msgid "Type"
247
- msgstr ""
248
-
249
- #: includes/admin/core/class-admin-columns.php:96
250
- #: includes/admin/core/class-admin-columns.php:114
251
- #: includes/admin/core/class-admin-metabox.php:818
252
- #: includes/admin/core/class-admin-metabox.php:979
253
- msgid "Shortcode"
254
- msgstr ""
255
-
256
- #: includes/admin/core/class-admin-columns.php:97
257
- #: includes/admin/core/class-admin-columns.php:115
258
- msgid "Date"
259
- msgstr ""
260
-
261
- #: includes/admin/core/class-admin-enqueue.php:127
262
- #: includes/admin/core/class-admin-enqueue.php:161
263
- #: includes/admin/core/class-admin-forms.php:812
264
- #: includes/admin/core/class-admin-forms.php:826
265
- #: includes/admin/core/class-admin-forms.php:931
266
- #: includes/admin/core/class-admin-forms.php:940
267
- #: includes/admin/core/class-admin-notices.php:415
268
- #: includes/core/um-actions-profile.php:553
269
- msgid "Remove"
270
- msgstr ""
271
-
272
- #: includes/admin/core/class-admin-enqueue.php:128
273
- #: includes/admin/core/class-admin-enqueue.php:162
274
- #: includes/admin/core/class-admin-forms.php:1008
275
- msgid "Select"
276
- msgstr ""
277
-
278
- #: includes/admin/core/class-admin-enqueue.php:159
279
- msgid "Are sure, maybe some settings not saved"
280
- msgstr ""
281
-
282
- #: includes/admin/core/class-admin-forms.php:456
283
- msgid "Choose Icon"
284
- msgstr ""
285
-
286
- #: includes/admin/core/class-admin-forms.php:462
287
- msgid "No Icon"
288
- msgstr ""
289
-
290
- #: includes/admin/core/class-admin-forms.php:985
291
- msgid "Select media"
292
- msgstr ""
293
-
294
- #: includes/admin/core/class-admin-forms.php:1009
295
- msgid "Clear"
296
- msgstr ""
297
-
298
- #: includes/admin/core/class-admin-gdpr.php:42
299
- msgid "Privacy Policy"
300
- msgstr ""
301
-
302
- #: includes/admin/core/class-admin-gdpr.php:57
303
- msgid "Account Status"
304
- msgstr ""
305
-
306
- #: includes/admin/core/class-admin-gdpr.php:58
307
- msgid "Submitted data on Registration"
308
- msgstr ""
309
-
310
- #: includes/admin/core/class-admin-gdpr.php:59
311
- msgid "Registration Form ID"
312
- msgstr ""
313
-
314
- #: includes/admin/core/class-admin-gdpr.php:60
315
- msgid "Registration Timestamp"
316
- msgstr ""
317
-
318
- #: includes/admin/core/class-admin-gdpr.php:61
319
- msgid "Registration Request"
320
- msgstr ""
321
-
322
- #: includes/admin/core/class-admin-gdpr.php:62
323
- msgid "Registration Nonce"
324
- msgstr ""
325
-
326
- #: includes/admin/core/class-admin-gdpr.php:63
327
- msgid "Registration HTTP referer"
328
- msgstr ""
329
-
330
- #: includes/admin/core/class-admin-gdpr.php:64
331
- msgid "Community Role"
332
- msgstr ""
333
-
334
- #: includes/admin/core/class-admin-gdpr.php:65
335
- msgid "Profile Slug \"Username\""
336
- msgstr ""
337
-
338
- #: includes/admin/core/class-admin-gdpr.php:66
339
- msgid "Profile Slug \"First and Last Name with '.'\""
340
- msgstr ""
341
-
342
- #: includes/admin/core/class-admin-gdpr.php:67
343
- msgid "Profile Slug \"First and Last Name with '-'\""
344
- msgstr ""
345
-
346
- #: includes/admin/core/class-admin-gdpr.php:68
347
- msgid "Profile Slug \"First and Last Name with '+'\""
348
- msgstr ""
349
-
350
- #: includes/admin/core/class-admin-gdpr.php:69
351
- msgid "Profile Slug \"User ID\""
352
- msgstr ""
353
-
354
- #: includes/admin/core/class-admin-gdpr.php:70
355
- msgid "Last Login Timestamp"
356
- msgstr ""
357
-
358
- #: includes/admin/core/class-admin-gdpr.php:73
359
- msgid "Private Content Post ID"
360
- msgstr ""
361
-
362
- #: includes/admin/core/class-admin-gdpr.php:76
363
- msgid "Verified Account"
364
- msgstr ""
365
-
366
- #: includes/admin/core/class-admin-gdpr.php:79
367
- msgid "Terms&Conditions Agreement"
368
- msgstr ""
369
-
370
- #: includes/admin/core/class-admin-gdpr.php:82
371
- msgid "Privacy Policy Agreement"
372
- msgstr ""
373
-
374
- #: includes/admin/core/class-admin-gdpr.php:298
375
- #, php-format
376
- msgid "Your %s was unable to be removed at this time."
377
- msgstr ""
378
-
379
- #: includes/admin/core/class-admin-menu.php:71
380
- #, php-format
381
- msgid ""
382
- "If you like Ultimate Member please consider leaving a %s review. It will "
383
- "help us to grow the plugin and make it more popular. Thank you."
384
- msgstr ""
385
-
386
- #: includes/admin/core/class-admin-menu.php:138
387
- msgid "Ultimate Member"
388
- msgstr ""
389
-
390
- #: includes/admin/core/class-admin-menu.php:142
391
- msgid "Dashboard"
392
- msgstr ""
393
-
394
- #: includes/admin/core/class-admin-menu.php:150
395
- #: includes/admin/templates/gdpr.php:7 includes/core/class-common.php:56
396
- msgid "Forms"
397
- msgstr ""
398
-
399
- #: includes/admin/core/class-admin-menu.php:152
400
- #: includes/admin/core/list-tables/roles-list-table.php:477
401
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:12
402
- msgid "User Roles"
403
- msgstr ""
404
-
405
- #: includes/admin/core/class-admin-menu.php:155
406
- #: includes/core/class-common.php:85
407
- msgid "Member Directories"
408
- msgstr ""
409
-
410
- #: includes/admin/core/class-admin-menu.php:197
411
- #: includes/admin/core/class-admin-settings.php:1007
412
- msgid "Extensions"
413
- msgstr ""
414
-
415
- #: includes/admin/core/class-admin-menu.php:210
416
- msgid "Users Overview"
417
- msgstr ""
418
-
419
- #: includes/admin/core/class-admin-menu.php:212
420
- msgid "Latest from our blog"
421
- msgstr ""
422
-
423
- #: includes/admin/core/class-admin-menu.php:214
424
- msgid "Purge Temp Files"
425
- msgstr ""
426
-
427
- #: includes/admin/core/class-admin-menu.php:216
428
- msgid "User Cache"
429
- msgstr ""
430
-
431
- #: includes/admin/core/class-admin-menu.php:219
432
- #: includes/admin/core/class-admin-menu.php:221
433
- #: includes/admin/core/class-admin-menu.php:223
434
- msgid "Language"
435
- msgstr ""
436
-
437
- #: includes/admin/core/class-admin-menu.php:229
438
- msgid "Upgrade's Manual Request"
439
- msgstr ""
440
-
441
- #: includes/admin/core/class-admin-metabox.php:72
442
- msgid "This is a translation of UM profile page?"
443
- msgstr ""
444
-
445
- #: includes/admin/core/class-admin-metabox.php:79
446
- msgid "This is a translation of UM account page?"
447
- msgstr ""
448
-
449
- #: includes/admin/core/class-admin-metabox.php:259
450
- msgid "UM Content Restriction"
451
- msgstr ""
452
-
453
- #: includes/admin/core/class-admin-metabox.php:415
454
- #: includes/admin/core/class-admin-metabox.php:565
455
- #: includes/admin/templates/access/restrict_content.php:47
456
- msgid "Restrict access to this content?"
457
- msgstr ""
458
-
459
- #: includes/admin/core/class-admin-metabox.php:416
460
- #: includes/admin/core/class-admin-metabox.php:423
461
- #: includes/admin/core/class-admin-metabox.php:436
462
- #: includes/admin/core/class-admin-metabox.php:566
463
- #: includes/admin/core/class-admin-metabox.php:574
464
- #: includes/admin/core/class-admin-metabox.php:588
465
- #: includes/admin/templates/access/restrict_content.php:48
466
- #: includes/admin/templates/access/restrict_content.php:55
467
- #: includes/admin/templates/access/restrict_content.php:68
468
- msgid "Activate content restriction for this post"
469
- msgstr ""
470
-
471
- #: includes/admin/core/class-admin-metabox.php:422
472
- #: includes/admin/core/class-admin-metabox.php:573
473
- #: includes/admin/templates/access/restrict_content.php:54
474
- msgid "Who can access this content?"
475
- msgstr ""
476
-
477
- #: includes/admin/core/class-admin-metabox.php:426
478
- #: includes/admin/core/class-admin-metabox.php:577
479
- #: includes/admin/templates/access/restrict_content.php:58
480
- #: includes/core/class-builtin.php:662 includes/core/um-navmenu.php:142
481
- msgid "Everyone"
482
- msgstr ""
483
-
484
- #: includes/admin/core/class-admin-metabox.php:427
485
- #: includes/admin/core/class-admin-metabox.php:578
486
- #: includes/admin/templates/access/restrict_content.php:59
487
- msgid "Logged out users"
488
- msgstr ""
489
-
490
- #: includes/admin/core/class-admin-metabox.php:428
491
- #: includes/admin/core/class-admin-metabox.php:579
492
- #: includes/admin/templates/access/restrict_content.php:60
493
- msgid "Logged in users"
494
- msgstr ""
495
-
496
- #: includes/admin/core/class-admin-metabox.php:435
497
- #: includes/admin/core/class-admin-metabox.php:587
498
- #: includes/admin/templates/access/restrict_content.php:67
499
- msgid "Select which roles can access this content"
500
- msgstr ""
501
-
502
- #: includes/admin/core/class-admin-metabox.php:444
503
- #: includes/admin/core/class-admin-metabox.php:598
504
- #: includes/admin/templates/access/restrict_content.php:77
505
- msgid "What happens when users without access tries to view the content?"
506
- msgstr ""
507
-
508
- #: includes/admin/core/class-admin-metabox.php:445
509
- #: includes/admin/core/class-admin-metabox.php:457
510
- #: includes/admin/core/class-admin-metabox.php:599
511
- #: includes/admin/core/class-admin-metabox.php:612
512
- #: includes/admin/templates/access/restrict_content.php:78
513
- #: includes/admin/templates/access/restrict_content.php:90
514
- msgid "Action when users without access tries to view the content"
515
- msgstr ""
516
-
517
- #: includes/admin/core/class-admin-metabox.php:448
518
- #: includes/admin/core/class-admin-metabox.php:602
519
- #: includes/admin/templates/access/restrict_content.php:81
520
- msgid "Show access restricted message"
521
- msgstr ""
522
-
523
- #: includes/admin/core/class-admin-metabox.php:449
524
- #: includes/admin/core/class-admin-metabox.php:603
525
- #: includes/admin/templates/access/restrict_content.php:82
526
- msgid "Redirect user"
527
- msgstr ""
528
-
529
- #: includes/admin/core/class-admin-metabox.php:456
530
- #: includes/admin/core/class-admin-metabox.php:611
531
- #: includes/admin/templates/access/restrict_content.php:89
532
- msgid ""
533
- "Would you like to use the global default message or apply a custom message "
534
- "to this content?"
535
- msgstr ""
536
-
537
- #: includes/admin/core/class-admin-metabox.php:460
538
- #: includes/admin/core/class-admin-metabox.php:615
539
- #: includes/admin/templates/access/restrict_content.php:93
540
- msgid "Global default message (default)"
541
- msgstr ""
542
-
543
- #: includes/admin/core/class-admin-metabox.php:461
544
- #: includes/admin/core/class-admin-metabox.php:616
545
- #: includes/admin/templates/access/restrict_content.php:94
546
- msgid "Custom message"
547
- msgstr ""
548
-
549
- #: includes/admin/core/class-admin-metabox.php:468
550
- #: includes/admin/core/class-admin-metabox.php:624
551
- #: includes/admin/templates/access/restrict_content.php:101
552
- msgid "Custom Restrict Content message"
553
- msgstr ""
554
-
555
- #: includes/admin/core/class-admin-metabox.php:469
556
- #: includes/admin/core/class-admin-metabox.php:489
557
- #: includes/admin/core/class-admin-metabox.php:625
558
- #: includes/admin/core/class-admin-metabox.php:647
559
- #: includes/admin/templates/access/restrict_content.php:102
560
- #: includes/admin/templates/access/restrict_content.php:122
561
- msgid "Changed global restrict message"
562
- msgstr ""
563
-
564
- #: includes/admin/core/class-admin-metabox.php:476
565
- #: includes/admin/core/class-admin-metabox.php:633
566
- #: includes/admin/templates/access/restrict_content.php:109
567
- msgid "Where should users be redirected to?"
568
- msgstr ""
569
-
570
- #: includes/admin/core/class-admin-metabox.php:477
571
- #: includes/admin/core/class-admin-metabox.php:634
572
- #: includes/admin/templates/access/restrict_content.php:110
573
- msgid "Select redirect to page when user hasn't access to content"
574
- msgstr ""
575
-
576
- #: includes/admin/core/class-admin-metabox.php:481
577
- #: includes/admin/core/class-admin-metabox.php:638
578
- #: includes/admin/templates/access/restrict_content.php:114
579
- msgid "Login page"
580
- msgstr ""
581
-
582
- #: includes/admin/core/class-admin-metabox.php:482
583
- #: includes/admin/core/class-admin-metabox.php:639
584
- #: includes/admin/templates/access/restrict_content.php:115
585
- msgid "Custom URL"
586
- msgstr ""
587
-
588
- #: includes/admin/core/class-admin-metabox.php:488
589
- #: includes/admin/core/class-admin-metabox.php:646
590
- #: includes/admin/templates/access/restrict_content.php:121
591
- msgid "Redirect URL"
592
- msgstr ""
593
-
594
- #: includes/admin/core/class-admin-metabox.php:496
595
- #: includes/admin/core/class-admin-metabox.php:655
596
- #: includes/admin/templates/access/restrict_content.php:129
597
- msgid "Hide from queries"
598
- msgstr ""
599
-
600
- #: includes/admin/core/class-admin-metabox.php:497
601
- #: includes/admin/core/class-admin-metabox.php:656
602
- #: includes/admin/templates/access/restrict_content.php:130
603
- msgid ""
604
- "Hide this content from archives, RSS feeds etc for users who do not have "
605
- "permission to view this content"
606
- msgstr ""
607
-
608
- #: includes/admin/core/class-admin-metabox.php:814
609
- msgid "General Options"
610
- msgstr ""
611
-
612
- #: includes/admin/core/class-admin-metabox.php:815
613
- msgid "Profile Card"
614
- msgstr ""
615
-
616
- #: includes/admin/core/class-admin-metabox.php:816
617
- msgid "Search Options"
618
- msgstr ""
619
-
620
- #: includes/admin/core/class-admin-metabox.php:817
621
- msgid "Results &amp; Pagination"
622
- msgstr ""
623
-
624
- #: includes/admin/core/class-admin-metabox.php:819
625
- msgid "Styling: General"
626
- msgstr ""
627
-
628
- #: includes/admin/core/class-admin-metabox.php:832
629
- msgid "Administrative Permissions"
630
- msgstr ""
631
-
632
- #: includes/admin/core/class-admin-metabox.php:840
633
- msgid "General Permissions"
634
- msgstr ""
635
-
636
- #: includes/admin/core/class-admin-metabox.php:848
637
- msgid "Profile Access"
638
- msgstr ""
639
-
640
- #: includes/admin/core/class-admin-metabox.php:859
641
- msgid "Homepage Options"
642
- msgstr ""
643
-
644
- #: includes/admin/core/class-admin-metabox.php:870
645
- msgid "Registration Options"
646
- msgstr ""
647
-
648
- #: includes/admin/core/class-admin-metabox.php:878
649
- msgid "Login Options"
650
- msgstr ""
651
-
652
- #: includes/admin/core/class-admin-metabox.php:886
653
- msgid "Logout Options"
654
- msgstr ""
655
-
656
- #: includes/admin/core/class-admin-metabox.php:894
657
- msgid "Delete Options"
658
- msgstr ""
659
-
660
- #: includes/admin/core/class-admin-metabox.php:902
661
- msgid "Publish"
662
- msgstr ""
663
-
664
- #: includes/admin/core/class-admin-metabox.php:950
665
- msgid "WP Capabilities"
666
- msgstr ""
667
-
668
- #: includes/admin/core/class-admin-metabox.php:977
669
- msgid "Select Form Type"
670
- msgstr ""
671
-
672
- #: includes/admin/core/class-admin-metabox.php:978
673
- msgid "Form Builder"
674
- msgstr ""
675
-
676
- #: includes/admin/core/class-admin-metabox.php:981
677
- #: includes/admin/core/class-admin-metabox.php:1002
678
- #: includes/admin/core/class-admin-metabox.php:1024
679
- msgid "Customize this form"
680
- msgstr ""
681
-
682
- #: includes/admin/core/class-admin-metabox.php:1003
683
- msgid "User Meta"
684
- msgstr ""
685
-
686
- #: includes/admin/core/class-admin-metabox.php:1025
687
- msgid "Options"
688
- msgstr ""
689
-
690
- #: includes/admin/core/class-admin-metabox.php:1205
691
- msgid ""
692
- "Select where this field should appear. This option should only be changed on "
693
- "the profile form and allows you to show a field in one mode only (edit or "
694
- "view) or in both modes."
695
- msgstr ""
696
-
697
- #: includes/admin/core/class-admin-metabox.php:1239
698
- msgid "If"
699
- msgstr ""
700
-
701
- #: includes/admin/core/class-admin-metabox.php:1316
702
- msgid "Value"
703
- msgstr ""
704
-
705
- #: includes/admin/core/class-admin-metabox.php:1325
706
- msgid "Does this field require a special validation"
707
- msgstr ""
708
-
709
- #: includes/admin/core/class-admin-metabox.php:1370
710
- msgid ""
711
- "If you want to apply your custom validation, you can use action hooks to add "
712
- "custom validation. Please refer to documentation for further details."
713
- msgstr ""
714
-
715
- #: includes/admin/core/class-admin-metabox.php:1384
716
- #: includes/admin/core/class-admin-metabox.php:1412
717
- msgid ""
718
- "Select an icon to appear in the field. Leave blank if you do not want an "
719
- "icon to show in the field."
720
- msgstr ""
721
-
722
- #: includes/admin/core/class-admin-metabox.php:1439
723
- msgid "Specify a custom CSS class to be applied to this element"
724
- msgstr ""
725
-
726
- #: includes/admin/core/class-admin-metabox.php:1449
727
- msgid "This is the width in pixels, e.g. 4 or 2, etc"
728
- msgstr ""
729
-
730
- #: includes/admin/core/class-admin-metabox.php:1459
731
- msgid "Optional text to include with the divider"
732
- msgstr ""
733
-
734
- #: includes/admin/core/class-admin-metabox.php:1469
735
- msgid "Set padding for this section"
736
- msgstr ""
737
-
738
- #: includes/admin/core/class-admin-metabox.php:1479
739
- msgid "Set margin for this section"
740
- msgstr ""
741
-
742
- #: includes/admin/core/class-admin-metabox.php:1489
743
- msgid "Set border for this section"
744
- msgstr ""
745
-
746
- #: includes/admin/core/class-admin-metabox.php:1499
747
- msgid "Choose the border style"
748
- msgstr ""
749
-
750
- #: includes/admin/core/class-admin-metabox.php:1514
751
- msgid "Rounded corners can be applied by setting a pixels value here. e.g. 5px"
752
- msgstr ""
753
-
754
- #: includes/admin/core/class-admin-metabox.php:1524
755
- msgid "Give a color to this border"
756
- msgstr ""
757
-
758
- #: includes/admin/core/class-admin-metabox.php:1534
759
- msgid "Enable Row Heading"
760
- msgstr ""
761
-
762
- #: includes/admin/core/class-admin-metabox.php:1534
763
- msgid "Whether to enable a heading for this row"
764
- msgstr ""
765
-
766
- #: includes/admin/core/class-admin-metabox.php:1544
767
- msgid "Enter the row heading text here"
768
- msgstr ""
769
-
770
- #: includes/admin/core/class-admin-metabox.php:1554
771
- msgid "This will be the background of entire section"
772
- msgstr ""
773
-
774
- #: includes/admin/core/class-admin-metabox.php:1564
775
- msgid "This will be the background of the heading section"
776
- msgstr ""
777
-
778
- #: includes/admin/core/class-admin-metabox.php:1574
779
- msgid "This will be the text color of heading part only"
780
- msgstr ""
781
-
782
- #: includes/admin/core/class-admin-metabox.php:1584
783
- msgid "This will be the text color of entire section"
784
- msgstr ""
785
-
786
- #: includes/admin/core/class-admin-metabox.php:1594
787
- msgid ""
788
- "This will be the color of selected icon. By default It will be the same "
789
- "color as heading text color"
790
- msgstr ""
791
-
792
- #: includes/admin/core/class-admin-metabox.php:1604
793
- msgid "Select a color for this divider"
794
- msgstr ""
795
-
796
- #: includes/admin/core/class-admin-metabox.php:1614
797
- msgid "Entering custom text here will replace the url with a text link"
798
- msgstr ""
799
-
800
- #: includes/admin/core/class-admin-metabox.php:1624
801
- msgid "Choose whether to open this link in same window or in a new window"
802
- msgstr ""
803
-
804
- #: includes/admin/core/class-admin-metabox.php:1637
805
- msgid "Whether to follow or nofollow this link by search engines"
806
- msgstr ""
807
-
808
- #: includes/admin/core/class-admin-metabox.php:1650
809
- msgid ""
810
- "Turn on to force users to create a strong password (A combination of one "
811
- "lowercase letter, one uppercase letter, and one number). If turned on this "
812
- "option is only applied to register forms and not to login forms."
813
- msgstr ""
814
-
815
- #: includes/admin/core/class-admin-metabox.php:1660
816
- msgid ""
817
- "Turn on to add a confirm password field. If turned on the confirm password "
818
- "field will only show on register forms and not on login forms."
819
- msgstr ""
820
-
821
- #: includes/admin/core/class-admin-metabox.php:1670
822
- msgid "This is the line-style of divider"
823
- msgstr ""
824
-
825
- #: includes/admin/core/class-admin-metabox.php:1686
826
- msgid "Choose the minutes interval between each time in the time picker."
827
- msgstr ""
828
-
829
- #: includes/admin/core/class-admin-metabox.php:1699
830
- msgid "The display format of the date which is visible to user."
831
- msgstr ""
832
-
833
- #: includes/admin/core/class-admin-metabox.php:1710
834
- msgid "Choose the displayed time-format for this field"
835
- msgstr ""
836
-
837
- #: includes/admin/core/class-admin-metabox.php:1725
838
- msgid ""
839
- "Whether you wish to show the date in full or only show the years e.g. 25 "
840
- "Years"
841
- msgstr ""
842
-
843
- #: includes/admin/core/class-admin-metabox.php:1744
844
- msgid ""
845
- "Disable specific week days from being available for selection in this date "
846
- "picker"
847
- msgstr ""
848
-
849
- #: includes/admin/core/class-admin-metabox.php:1762
850
- msgid ""
851
- "Number of years available for the date selection. Default to last 50 years"
852
- msgstr ""
853
-
854
- #: includes/admin/core/class-admin-metabox.php:1772
855
- msgid "This decides which years should be shown relative to today date"
856
- msgstr ""
857
-
858
- #: includes/admin/core/class-admin-metabox.php:1786
859
- msgid "Set the minimum date/day in range in the format YYYY/MM/DD"
860
- msgstr ""
861
-
862
- #: includes/admin/core/class-admin-metabox.php:1796
863
- msgid "Set the maximum date/day in range in the format YYYY/MM/DD"
864
- msgstr ""
865
-
866
- #: includes/admin/core/class-admin-metabox.php:1806
867
- msgid ""
868
- "Whether to show a specific number of years or specify a date range to be "
869
- "available for the date picker."
870
- msgstr ""
871
-
872
- #: includes/admin/core/class-admin-metabox.php:1822
873
- msgid ""
874
- "Enter the shortcode in the following textarea and it will be displayed on "
875
- "the fields"
876
- msgstr ""
877
-
878
- #: includes/admin/core/class-admin-metabox.php:1832
879
- msgid "Edit the content of this field here"
880
- msgstr ""
881
-
882
- #: includes/admin/core/class-admin-metabox.php:1845
883
- msgid "Enable/disable crop feature for this image upload and define ratio"
884
- msgstr ""
885
-
886
- #: includes/admin/core/class-admin-metabox.php:1867
887
- #: includes/admin/core/class-admin-metabox.php:1887
888
- msgid ""
889
- "Select the image types that you want to allow to be uploaded via this field."
890
- msgstr ""
891
-
892
- #: includes/admin/core/class-admin-metabox.php:1908
893
- msgid "This is the headline that appears in the upload box for this field"
894
- msgstr ""
895
-
896
- #: includes/admin/core/class-admin-metabox.php:1918
897
- msgid ""
898
- "If you need to add information or secondary line below the headline of "
899
- "upload box, enter it here"
900
- msgstr ""
901
-
902
- #: includes/admin/core/class-admin-metabox.php:1928
903
- msgid "The text that appears on the button. e.g. Upload"
904
- msgstr ""
905
-
906
- #: includes/admin/core/class-admin-metabox.php:1938
907
- msgid ""
908
- "The maximum size for image that can be uploaded through this field. Leave "
909
- "empty for unlimited size."
910
- msgstr ""
911
-
912
- #: includes/admin/core/class-admin-metabox.php:1948
913
- msgid "The height of textarea in pixels. Default is 100 pixels"
914
- msgstr ""
915
-
916
- #: includes/admin/core/class-admin-metabox.php:1958
917
- msgid "This is the required spacing in pixels. e.g. 20px"
918
- msgstr ""
919
-
920
- #: includes/admin/core/class-admin-metabox.php:1968
921
- msgid "Enable/disable multiple selections for this field"
922
- msgstr ""
923
-
924
- #: includes/admin/core/class-admin-metabox.php:1978
925
- msgid ""
926
- "Enter a number here to force a maximum number of selections by user for this "
927
- "field"
928
- msgstr ""
929
-
930
- #: includes/admin/core/class-admin-metabox.php:1988
931
- msgid ""
932
- "Enter a number here to force a minimum number of selections by user for this "
933
- "field"
934
- msgstr ""
935
-
936
- #: includes/admin/core/class-admin-metabox.php:1998
937
- msgid "This is the max number of entries the user can add via field group."
938
- msgstr ""
939
-
940
- #: includes/admin/core/class-admin-metabox.php:2008
941
- msgid ""
942
- "If you want to enable a maximum number of words to be input in this "
943
- "textarea. Leave empty to disable this setting"
944
- msgstr ""
945
-
946
- #: includes/admin/core/class-admin-metabox.php:2018
947
- msgid "Minimum number that can be entered in this field"
948
- msgstr ""
949
-
950
- #: includes/admin/core/class-admin-metabox.php:2028
951
- msgid "Maximum number that can be entered in this field"
952
- msgstr ""
953
-
954
- #: includes/admin/core/class-admin-metabox.php:2038
955
- msgid ""
956
- "If you want to enable a minimum number of characters to be input in this "
957
- "field. Leave empty to disable this setting"
958
- msgstr ""
959
-
960
- #: includes/admin/core/class-admin-metabox.php:2048
961
- msgid ""
962
- "If you want to enable a maximum number of characters to be input in this "
963
- "field. Leave empty to disable this setting"
964
- msgstr ""
965
-
966
- #: includes/admin/core/class-admin-metabox.php:2058
967
- msgid "Turn on/off HTML tags for this textarea"
968
- msgstr ""
969
-
970
- #: includes/admin/core/class-admin-metabox.php:2077
971
- msgid ""
972
- "Enter one choice per line. This will represent the available choices or "
973
- "selections available for user."
974
- msgstr ""
975
-
976
- #: includes/admin/core/class-admin-metabox.php:2087
977
- msgid ""
978
- "This is the title of the field for your reference in the backend. The title "
979
- "will not appear on the front-end of your website."
980
- msgstr ""
981
-
982
- #: includes/admin/core/class-admin-metabox.php:2112
983
- msgid ""
984
- "The meta key cannot be changed for duplicated fields or when editing an "
985
- "existing field. If you require a different meta key please create a new "
986
- "field."
987
- msgstr ""
988
-
989
- #: includes/admin/core/class-admin-metabox.php:2118
990
- msgid ""
991
- "A meta key is required to store the entered info in this field in the "
992
- "database. The meta key should be unique to this field and be written in "
993
- "lowercase with an underscore ( _ ) separating words e.g country_list or "
994
- "job_title"
995
- msgstr ""
996
-
997
- #: includes/admin/core/class-admin-metabox.php:2131
998
- msgid ""
999
- "This is the text that appears in a tooltip when a user hovers over the info "
1000
- "icon. Help text is useful for providing users with more information about "
1001
- "what they should enter in the field. Leave blank if no help text is needed "
1002
- "for field."
1003
- msgstr ""
1004
-
1005
- #: includes/admin/core/class-admin-metabox.php:2143
1006
- msgid "Text to display by default in this field"
1007
- msgstr ""
1008
-
1009
- #: includes/admin/core/class-admin-metabox.php:2149
1010
- msgid ""
1011
- "If you wish the rating field to be prefilled with a number of stars, enter "
1012
- "it here."
1013
- msgstr ""
1014
-
1015
- #: includes/admin/core/class-admin-metabox.php:2155
1016
- msgid ""
1017
- "This option allows you to pre-fill the field with a default value prior to "
1018
- "the user entering a value in the field. Leave blank to have no default value"
1019
- msgstr ""
1020
-
1021
- #: includes/admin/core/class-admin-metabox.php:2167
1022
- msgid ""
1023
- "The field label is the text that appears above the field on your front-end "
1024
- "form. Leave blank to not show a label above field."
1025
- msgstr ""
1026
-
1027
- #: includes/admin/core/class-admin-metabox.php:2177
1028
- msgid ""
1029
- "This is the text that appears within the field e.g please enter your email "
1030
- "address. Leave blank to not show any placeholder text."
1031
- msgstr ""
1032
-
1033
- #: includes/admin/core/class-admin-metabox.php:2187
1034
- msgid ""
1035
- "Field privacy allows you to select who can view this field on the front-end. "
1036
- "The site admin can view all fields regardless of the option set here."
1037
- msgstr ""
1038
-
1039
- #: includes/admin/core/class-admin-metabox.php:2210
1040
- msgid "Select the member roles that can view this field on the front-end."
1041
- msgstr ""
1042
-
1043
- #: includes/admin/core/class-admin-metabox.php:2236
1044
- msgid ""
1045
- "This option allows you to set whether the field must be filled in before the "
1046
- "form can be processed."
1047
- msgstr ""
1048
-
1049
- #: includes/admin/core/class-admin-metabox.php:2250
1050
- msgid ""
1051
- "This option allows you to set whether or not the user can edit the "
1052
- "information in this field."
1053
- msgstr ""
1054
-
1055
- #: includes/admin/core/class-admin-metabox.php:2263
1056
- msgid "Choose whether you want a 5-stars or 10-stars ratings based here."
1057
- msgstr ""
1058
-
1059
- #: includes/admin/core/class-admin-metabox.php:2276
1060
- msgid "Add a callback source to retrieve choices."
1061
- msgstr ""
1062
-
1063
- #: includes/admin/core/class-admin-metabox.php:2287
1064
- msgid "Parent Option"
1065
- msgstr ""
1066
-
1067
- #: includes/admin/core/class-admin-metabox.php:2287
1068
- msgid "Dynamically populates the option based from selected parent option."
1069
- msgstr ""
1070
-
1071
- #: includes/admin/core/class-admin-metabox.php:2289
1072
- msgid "No Selected"
1073
- msgstr ""
1074
-
1075
- #: includes/admin/core/class-admin-notices.php:280
1076
- #, php-format
1077
- msgid ""
1078
- "<strong>%s %s</strong> requires 2.0 extensions. You have pre 2.0 extensions "
1079
- "installed on your site. <br /> Please update %s extensions to latest "
1080
- "versions. For more info see this <a href=\"%s\" target=\"_blank\">doc</a>."
1081
- msgstr ""
1082
-
1083
- #: includes/admin/core/class-admin-notices.php:295
1084
- #, php-format
1085
- msgid ""
1086
- "Exif is not enabled on your server. Mobile photo uploads will not be rotated "
1087
- "correctly until you enable the exif extension. <a href=\"%s\">Hide this "
1088
- "notice</a>"
1089
- msgstr ""
1090
-
1091
- #: includes/admin/core/class-admin-notices.php:318
1092
- msgid ""
1093
- "One or more of your Ultimate Member pages are not correctly setup. Please "
1094
- "visit <strong>Ultimate Member > Settings</strong> to re-assign your missing "
1095
- "pages."
1096
- msgstr ""
1097
-
1098
- #: includes/admin/core/class-admin-notices.php:327
1099
- msgid "Ultimate Member Setup Error: User page can not be a child page."
1100
- msgstr ""
1101
-
1102
- #: includes/admin/core/class-admin-notices.php:337
1103
- msgid "Ultimate Member Setup Error: Account page can not be a child page."
1104
- msgstr ""
1105
-
1106
- #: includes/admin/core/class-admin-notices.php:370
1107
- #, php-format
1108
- msgid ""
1109
- "Your site language is <strong>%1$s</strong>. Good news! Ultimate Member is "
1110
- "already available in <strong>%2$s language</strong>. <a href=\"%3$s"
1111
- "\">Download the translation</a> files and start using the plugin in your "
1112
- "language now. <a href=\"%4$s\">Hide this notice</a>"
1113
- msgstr ""
1114
-
1115
- #: includes/admin/core/class-admin-notices.php:377
1116
- #, php-format
1117
- msgid ""
1118
- "Ultimate Member has not yet been translated to your language: <strong>%1$s</"
1119
- "strong>. If you have translated the plugin you need put these files "
1120
- "<code>ultimatemember-%1$s.po and ultimatemember-%1$s.mo</code> in <strong>/"
1121
- "wp-content/languages/plugins/</strong> for the plugin to be translated in "
1122
- "your language. <a href=\"%2$s\">Hide this notice</a>"
1123
- msgstr ""
1124
-
1125
- #: includes/admin/core/class-admin-notices.php:414
1126
- #, php-format
1127
- msgid ""
1128
- "Are you sure you want to delete the selected user(s)? The following users "
1129
- "will be deleted: <p>%s</p> <strong>This cannot be undone!</strong>"
1130
- msgstr ""
1131
-
1132
- #: includes/admin/core/class-admin-notices.php:415
1133
- msgid "Undo"
1134
- msgstr ""
1135
-
1136
- #: includes/admin/core/class-admin-notices.php:420
1137
- msgid "Your translation files have been updated successfully."
1138
- msgstr ""
1139
-
1140
- #: includes/admin/core/class-admin-notices.php:424
1141
- msgid "Your temp uploads directory is now clean."
1142
- msgstr ""
1143
-
1144
- #: includes/admin/core/class-admin-notices.php:428
1145
- msgid "Your user cache is now removed."
1146
- msgstr ""
1147
-
1148
- #: includes/admin/core/class-admin-notices.php:432
1149
- msgid "You got the latest upgrades."
1150
- msgstr ""
1151
-
1152
- #: includes/admin/core/class-admin-notices.php:436
1153
- msgid "Try again later. You can run this action once daily."
1154
- msgstr ""
1155
-
1156
- #: includes/admin/core/class-admin-notices.php:440
1157
- msgid "The form has been duplicated successfully."
1158
- msgstr ""
1159
-
1160
- #: includes/admin/core/class-admin-notices.php:444
1161
- msgid "User has been updated."
1162
- msgstr ""
1163
-
1164
- #: includes/admin/core/class-admin-notices.php:448
1165
- msgid "Users have been updated."
1166
- msgstr ""
1167
-
1168
- #: includes/admin/core/class-admin-notices.php:452
1169
- msgid "Changed roles."
1170
- msgstr ""
1171
-
1172
- #: includes/admin/core/class-admin-notices.php:456
1173
- msgid "Super administrators cannot be modified."
1174
- msgstr ""
1175
-
1176
- #: includes/admin/core/class-admin-notices.php:457
1177
- msgid "Other users have been updated."
1178
- msgstr ""
1179
-
1180
- #: includes/admin/core/class-admin-notices.php:494
1181
- #, php-format
1182
- msgid ""
1183
- "You have installed <strong>%s</strong> with wrong folder name. Correct "
1184
- "folder name is <strong>\"ultimate-member\"</strong>."
1185
- msgstr ""
1186
-
1187
- #: includes/admin/core/class-admin-notices.php:519
1188
- #, php-format
1189
- msgid ""
1190
- "Thanks for installing <strong>%s</strong>! We hope you like the plugin. To "
1191
- "fund full-time development and support of the plugin we also sell "
1192
- "extensions. If you subscribe to our mailing list we will send you a 20%% "
1193
- "discount code for our <a href=\"%s\" target=\"_blank\">extensions bundle</a>."
1194
- msgstr ""
1195
-
1196
- #: includes/admin/core/class-admin-notices.php:523
1197
- #, php-format
1198
- msgid "Claim 20% discount code"
1199
- msgstr ""
1200
-
1201
- #: includes/admin/core/class-admin-notices.php:525
1202
- msgid "No thanks"
1203
- msgstr ""
1204
-
1205
- #: includes/admin/core/class-admin-notices.php:562
1206
- #, php-format
1207
- msgid ""
1208
- "There are %d inactive %s license keys for this site. This site is not "
1209
- "authorized to get plugin updates. You can active this site on <a href=\"%s"
1210
- "\">www.ultimatemember.com</a>."
1211
- msgstr ""
1212
-
1213
- #: includes/admin/core/class-admin-notices.php:569
1214
- #, php-format
1215
- msgid ""
1216
- "You have %d invalid or expired license keys for %s. Please go to the <a href="
1217
- "\"%s\">Licenses page</a> to correct this issue."
1218
- msgstr ""
1219
-
1220
- #: includes/admin/core/class-admin-notices.php:583
1221
- #, php-format
1222
- msgid ""
1223
- "<strong>%s version %s</strong> needs to be updated to work correctly.<br /"
1224
- ">It is necessary to update the structure of the database and options that "
1225
- "are associated with <strong>%s %s</strong>.<br />Please visit <a href=\"%s\">"
1226
- "\"Upgrade\"</a> page and run the upgrade process."
1227
- msgstr ""
1228
-
1229
- #: includes/admin/core/class-admin-notices.php:587
1230
- msgid "Upgrade Now"
1231
- msgstr ""
1232
-
1233
- #: includes/admin/core/class-admin-notices.php:601
1234
- #, php-format
1235
- msgid "<strong>%s %s</strong> Successfully Upgraded"
1236
- msgstr ""
1237
-
1238
- #: includes/admin/core/class-admin-notices.php:627
1239
- #, php-format
1240
- msgid ""
1241
- "Hey there! It's been one month since you installed %s. How have you found "
1242
- "the plugin so far?"
1243
- msgstr ""
1244
-
1245
- #: includes/admin/core/class-admin-notices.php:630
1246
- msgid "I love it!"
1247
- msgstr ""
1248
-
1249
- #: includes/admin/core/class-admin-notices.php:631
1250
- msgid "It's good but could be better"
1251
- msgstr ""
1252
-
1253
- #: includes/admin/core/class-admin-notices.php:632
1254
- msgid "I don't like the plugin"
1255
- msgstr ""
1256
-
1257
- #: includes/admin/core/class-admin-notices.php:637
1258
- #, php-format
1259
- msgid ""
1260
- "Great! We're happy to hear that you love the plugin. It would be amazing if "
1261
- "you could let others know why you like %s by leaving a review of the plugin. "
1262
- "This will help %s to grow and become more popular and would be massively "
1263
- "appreciated by us!"
1264
- msgstr ""
1265
-
1266
- #: includes/admin/core/class-admin-notices.php:641
1267
- msgid "Leave Review"
1268
- msgstr ""
1269
-
1270
- #: includes/admin/core/class-admin-notices.php:646
1271
- msgid ""
1272
- "We're glad to hear that you like the plugin but we would love to get your "
1273
- "feedback so we can make the plugin better."
1274
- msgstr ""
1275
-
1276
- #: includes/admin/core/class-admin-notices.php:650
1277
- #: includes/admin/core/class-admin-notices.php:659
1278
- msgid "Provide Feedback"
1279
- msgstr ""
1280
-
1281
- #: includes/admin/core/class-admin-notices.php:655
1282
- #, php-format
1283
- msgid ""
1284
- "We're sorry to hear that. If you're having the issue with the plugin you can "
1285
- "create a topic on our <a href=\"%s\" target=\"_blank\">support forum</a> and "
1286
- "we will try and help you out with the issue. Alternatively if you have an "
1287
- "idea on how we can make the plugin better or want to tell us what you don't "
1288
- "like about the plugin you can tell us know by giving us feedback."
1289
- msgstr ""
1290
-
1291
- #: includes/admin/core/class-admin-notices.php:681
1292
- #, php-format
1293
- msgid ""
1294
- "<strong>%s</strong> future plans! Detailed future list is <a href=\"%s\" "
1295
- "target=\"_blank\">here</a>"
1296
- msgstr ""
1297
-
1298
- #: includes/admin/core/class-admin-notices.php:696
1299
- msgid "Wrong Nonce"
1300
- msgstr ""
1301
-
1302
- #: includes/admin/core/class-admin-notices.php:701
1303
- msgid "Wrong Data"
1304
- msgstr ""
1305
-
1306
- #: includes/admin/core/class-admin-settings.php:107
1307
- #: includes/admin/core/class-admin-settings.php:116
1308
- #, php-format
1309
- msgid "%s page"
1310
- msgstr ""
1311
-
1312
- #: includes/admin/core/class-admin-settings.php:108
1313
- msgid "Add page ID"
1314
- msgstr ""
1315
-
1316
- #: includes/admin/core/class-admin-settings.php:118
1317
- msgid "Choose a page..."
1318
- msgstr ""
1319
-
1320
- #: includes/admin/core/class-admin-settings.php:131
1321
- msgid "Enable profile menu"
1322
- msgstr ""
1323
-
1324
- #: includes/admin/core/class-admin-settings.php:143
1325
- #, php-format
1326
- msgid "%s Tab"
1327
- msgstr ""
1328
-
1329
- #: includes/admin/core/class-admin-settings.php:149
1330
- #, php-format
1331
- msgid "Who can see %s Tab?"
1332
- msgstr ""
1333
-
1334
- #: includes/admin/core/class-admin-settings.php:150
1335
- msgid "Select which users can view this tab."
1336
- msgstr ""
1337
-
1338
- #: includes/admin/core/class-admin-settings.php:159
1339
- msgid "Allowed roles"
1340
- msgstr ""
1341
-
1342
- #: includes/admin/core/class-admin-settings.php:160
1343
- msgid "Select the the user roles allowed to view this tab."
1344
- msgstr ""
1345
-
1346
- #: includes/admin/core/class-admin-settings.php:162
1347
- msgid "Choose user roles..."
1348
- msgstr ""
1349
-
1350
- #: includes/admin/core/class-admin-settings.php:173
1351
- msgid "Profile menu default tab"
1352
- msgstr ""
1353
-
1354
- #: includes/admin/core/class-admin-settings.php:174
1355
- msgid "This will be the default tab on user profile page"
1356
- msgstr ""
1357
-
1358
- #: includes/admin/core/class-admin-settings.php:182
1359
- msgid "Enable menu icons in desktop view"
1360
- msgstr ""
1361
-
1362
- #: includes/admin/core/class-admin-settings.php:236
1363
- msgid "General"
1364
- msgstr ""
1365
-
1366
- #: includes/admin/core/class-admin-settings.php:239
1367
- msgid "Pages"
1368
- msgstr ""
1369
-
1370
- #: includes/admin/core/class-admin-settings.php:243
1371
- #: includes/admin/templates/dashboard/users.php:6
1372
- msgid "Users"
1373
- msgstr ""
1374
-
1375
- #: includes/admin/core/class-admin-settings.php:249
1376
- msgid "Profile Permalink Base"
1377
- msgstr ""
1378
-
1379
- #: includes/admin/core/class-admin-settings.php:250
1380
- msgid ""
1381
- "Here you can control the permalink structure of the user profile URL "
1382
- "globally e.g. "
1383
- msgstr ""
1384
-
1385
- #: includes/admin/core/class-admin-settings.php:252
1386
- #: includes/admin/core/class-admin-settings.php:269
1387
- #: includes/core/class-builtin.php:669 includes/core/class-builtin.php:672
1388
- msgid "Username"
1389
- msgstr ""
1390
-
1391
- #: includes/admin/core/class-admin-settings.php:253
1392
- msgid "First and Last Name with '.'"
1393
- msgstr ""
1394
-
1395
- #: includes/admin/core/class-admin-settings.php:254
1396
- msgid "First and Last Name with '-'"
1397
- msgstr ""
1398
-
1399
- #: includes/admin/core/class-admin-settings.php:255
1400
- msgid "First and Last Name with '+'"
1401
- msgstr ""
1402
-
1403
- #: includes/admin/core/class-admin-settings.php:256
1404
- msgid "User ID"
1405
- msgstr ""
1406
-
1407
- #: includes/admin/core/class-admin-settings.php:258
1408
- #: includes/admin/core/class-admin-settings.php:277
1409
- msgid "Select..."
1410
- msgstr ""
1411
-
1412
- #: includes/admin/core/class-admin-settings.php:264
1413
- msgid "User Display Name"
1414
- msgstr ""
1415
-
1416
- #: includes/admin/core/class-admin-settings.php:265
1417
- msgid ""
1418
- "This is the name that will be displayed for users on the front end of your "
1419
- "site. Default setting uses first/last name as display name if it exists"
1420
- msgstr ""
1421
-
1422
- #: includes/admin/core/class-admin-settings.php:267
1423
- msgid "Default WP Display Name"
1424
- msgstr ""
1425
-
1426
- #: includes/admin/core/class-admin-settings.php:268
1427
- #: includes/core/class-builtin.php:727 includes/core/class-builtin.php:730
1428
- msgid "Nickname"
1429
- msgstr ""
1430
-
1431
- #: includes/admin/core/class-admin-settings.php:270
1432
- msgid "First name & last name"
1433
- msgstr ""
1434
-
1435
- #: includes/admin/core/class-admin-settings.php:271
1436
- msgid "Last name & first name"
1437
- msgstr ""
1438
-
1439
- #: includes/admin/core/class-admin-settings.php:272
1440
- msgid "First name & first initial of last name"
1441
- msgstr ""
1442
-
1443
- #: includes/admin/core/class-admin-settings.php:273
1444
- msgid "First initial of first name & last name"
1445
- msgstr ""
1446
-
1447
- #: includes/admin/core/class-admin-settings.php:274
1448
- msgid "First name only"
1449
- msgstr ""
1450
-
1451
- #: includes/admin/core/class-admin-settings.php:275
1452
- msgid "Custom field(s)"
1453
- msgstr ""
1454
-
1455
- #: includes/admin/core/class-admin-settings.php:282
1456
- msgid "Display Name Custom Field(s)"
1457
- msgstr ""
1458
-
1459
- #: includes/admin/core/class-admin-settings.php:283
1460
- msgid ""
1461
- "Specify the custom field meta key or custom fields seperated by comma that "
1462
- "you want to use to display users name on the frontend of your site"
1463
- msgstr ""
1464
-
1465
- #: includes/admin/core/class-admin-settings.php:289
1466
- msgid "Automatically redirect author page to their profile?"
1467
- msgstr ""
1468
-
1469
- #: includes/admin/core/class-admin-settings.php:290
1470
- msgid ""
1471
- "If enabled, author pages will automatically redirect to the user's profile "
1472
- "page"
1473
- msgstr ""
1474
-
1475
- #: includes/admin/core/class-admin-settings.php:295
1476
- msgid "Enable Members Directory"
1477
- msgstr ""
1478
-
1479
- #: includes/admin/core/class-admin-settings.php:296
1480
- msgid "Control whether to enable or disable member directories on this site"
1481
- msgstr ""
1482
-
1483
- #: includes/admin/core/class-admin-settings.php:301
1484
- msgid "Use Gravatars?"
1485
- msgstr ""
1486
-
1487
- #: includes/admin/core/class-admin-settings.php:302
1488
- msgid ""
1489
- "Do you want to use gravatars instead of the default plugin profile photo (If "
1490
- "the user did not upload a custom profile photo / avatar)"
1491
- msgstr ""
1492
-
1493
- #: includes/admin/core/class-admin-settings.php:307
1494
- msgid "Use Gravatar builtin image"
1495
- msgstr ""
1496
-
1497
- #: includes/admin/core/class-admin-settings.php:308
1498
- msgid ""
1499
- "Gravatar has a number of built in options which you can also use as defaults"
1500
- msgstr ""
1501
-
1502
- #: includes/admin/core/class-admin-settings.php:310
1503
- #: includes/admin/templates/form/login_settings.php:13
1504
- #: includes/admin/templates/form/register_customize.php:3
1505
- #: includes/admin/templates/form/register_customize.php:29
1506
- msgid "Default"
1507
- msgstr ""
1508
-
1509
- #: includes/admin/core/class-admin-settings.php:311
1510
- msgid "404 ( File Not Found response )"
1511
- msgstr ""
1512
-
1513
- #: includes/admin/core/class-admin-settings.php:312
1514
- msgid "Mystery Man"
1515
- msgstr ""
1516
-
1517
- #: includes/admin/core/class-admin-settings.php:313
1518
- msgid "Identicon"
1519
- msgstr ""
1520
-
1521
- #: includes/admin/core/class-admin-settings.php:314
1522
- msgid "Monsterid"
1523
- msgstr ""
1524
-
1525
- #: includes/admin/core/class-admin-settings.php:315
1526
- msgid "Wavatar"
1527
- msgstr ""
1528
-
1529
- #: includes/admin/core/class-admin-settings.php:316
1530
- msgid "Retro"
1531
- msgstr ""
1532
-
1533
- #: includes/admin/core/class-admin-settings.php:317
1534
- msgid "Blank ( a transparent PNG image )"
1535
- msgstr ""
1536
-
1537
- #: includes/admin/core/class-admin-settings.php:325
1538
- msgid "Use Default plugin avatar as Gravatar's Default avatar"
1539
- msgstr ""
1540
-
1541
- #: includes/admin/core/class-admin-settings.php:326
1542
- msgid ""
1543
- "Do you want to use the plugin default avatar instead of the gravatar default "
1544
- "photo (If the user did not upload a custom profile photo / avatar)"
1545
- msgstr ""
1546
-
1547
- #: includes/admin/core/class-admin-settings.php:332
1548
- msgid "Require a strong password? (when user resets password only)"
1549
- msgstr ""
1550
-
1551
- #: includes/admin/core/class-admin-settings.php:333
1552
- msgid ""
1553
- "Enable or disable a strong password rules on password reset and change "
1554
- "procedure"
1555
- msgstr ""
1556
-
1557
- #: includes/admin/core/class-admin-settings.php:338
1558
- #: includes/class-config.php:134 includes/class-config.php:738
1559
- #: includes/core/class-account.php:90
1560
- msgid "Account"
1561
- msgstr ""
1562
-
1563
- #: includes/admin/core/class-admin-settings.php:343
1564
- msgid "Password Account Tab"
1565
- msgstr ""
1566
-
1567
- #: includes/admin/core/class-admin-settings.php:349
1568
- msgid "Privacy Account Tab"
1569
- msgstr ""
1570
-
1571
- #: includes/admin/core/class-admin-settings.php:350
1572
- msgid "Enable/disable the Privacy account tab in account page"
1573
- msgstr ""
1574
-
1575
- #: includes/admin/core/class-admin-settings.php:355
1576
- msgid "Notifications Account Tab"
1577
- msgstr ""
1578
-
1579
- #: includes/admin/core/class-admin-settings.php:356
1580
- msgid "Enable/disable the Notifications account tab in account page"
1581
- msgstr ""
1582
-
1583
- #: includes/admin/core/class-admin-settings.php:361
1584
- msgid "Delete Account Tab"
1585
- msgstr ""
1586
-
1587
- #: includes/admin/core/class-admin-settings.php:362
1588
- msgid "Enable/disable the Delete account tab in account page"
1589
- msgstr ""
1590
-
1591
- #: includes/admin/core/class-admin-settings.php:367
1592
- msgid "Account Deletion Custom Text"
1593
- msgstr ""
1594
-
1595
- #: includes/admin/core/class-admin-settings.php:368
1596
- msgid ""
1597
- "This is custom text that will be displayed to users before they delete their "
1598
- "accounts from your site"
1599
- msgstr ""
1600
-
1601
- #: includes/admin/core/class-admin-settings.php:376
1602
- msgid "Add a First & Last Name fields"
1603
- msgstr ""
1604
-
1605
- #: includes/admin/core/class-admin-settings.php:377
1606
- msgid ""
1607
- "Whether to enable these fields on the user account page by default or hide "
1608
- "them."
1609
- msgstr ""
1610
-
1611
- #: includes/admin/core/class-admin-settings.php:382
1612
- msgid "Disable First & Last Name fields"
1613
- msgstr ""
1614
-
1615
- #: includes/admin/core/class-admin-settings.php:383
1616
- msgid ""
1617
- "Whether to allow users changing their first and last name in account page."
1618
- msgstr ""
1619
-
1620
- #: includes/admin/core/class-admin-settings.php:389
1621
- msgid "Require First & Last Name"
1622
- msgstr ""
1623
-
1624
- #: includes/admin/core/class-admin-settings.php:390
1625
- msgid "Require first and last name?"
1626
- msgstr ""
1627
-
1628
- #: includes/admin/core/class-admin-settings.php:396
1629
- msgid "Allow users to change e-mail"
1630
- msgstr ""
1631
-
1632
- #: includes/admin/core/class-admin-settings.php:397
1633
- msgid "Whether to allow users changing their email in account page."
1634
- msgstr ""
1635
-
1636
- #: includes/admin/core/class-admin-settings.php:402
1637
- msgid "Allow users to hide their profiles from directory"
1638
- msgstr ""
1639
-
1640
- #: includes/admin/core/class-admin-settings.php:403
1641
- msgid ""
1642
- "Whether to allow users changing their profile visibility from member "
1643
- "directory in account page."
1644
- msgstr ""
1645
-
1646
- #: includes/admin/core/class-admin-settings.php:408
1647
- msgid "Require a strong password?"
1648
- msgstr ""
1649
-
1650
- #: includes/admin/core/class-admin-settings.php:409
1651
- msgid ""
1652
- "Enable or disable a strong password rules on account page / change password "
1653
- "tab"
1654
- msgstr ""
1655
-
1656
- #: includes/admin/core/class-admin-settings.php:414
1657
- msgid "Uploads"
1658
- msgstr ""
1659
-
1660
- #: includes/admin/core/class-admin-settings.php:420
1661
- msgid "Profile Photo Maximum File Size (bytes)"
1662
- msgstr ""
1663
-
1664
- #: includes/admin/core/class-admin-settings.php:421
1665
- msgid "Sets a maximum size for the uploaded photo"
1666
- msgstr ""
1667
-
1668
- #: includes/admin/core/class-admin-settings.php:428
1669
- msgid "Cover Photo Maximum File Size (bytes)"
1670
- msgstr ""
1671
-
1672
- #: includes/admin/core/class-admin-settings.php:429
1673
- msgid "Sets a maximum size for the uploaded cover"
1674
- msgstr ""
1675
-
1676
- #: includes/admin/core/class-admin-settings.php:435
1677
- msgid "Profile Photo Thumbnail Sizes (px)"
1678
- msgstr ""
1679
-
1680
- #: includes/admin/core/class-admin-settings.php:436
1681
- msgid ""
1682
- "Here you can define which thumbnail sizes will be created for each profile "
1683
- "photo upload."
1684
- msgstr ""
1685
-
1686
- #: includes/admin/core/class-admin-settings.php:438
1687
- #: includes/admin/core/class-admin-settings.php:448
1688
- msgid "Add New Size"
1689
- msgstr ""
1690
-
1691
- #: includes/admin/core/class-admin-settings.php:445
1692
- msgid "Cover Photo Thumbnail Sizes (px)"
1693
- msgstr ""
1694
-
1695
- #: includes/admin/core/class-admin-settings.php:446
1696
- msgid ""
1697
- "Here you can define which thumbnail sizes will be created for each cover "
1698
- "photo upload."
1699
- msgstr ""
1700
-
1701
- #: includes/admin/core/class-admin-settings.php:456
1702
- msgid "Image Quality"
1703
- msgstr ""
1704
-
1705
- #: includes/admin/core/class-admin-settings.php:457
1706
- msgid ""
1707
- "Quality is used to determine quality of image uploads, and ranges from 0 "
1708
- "(worst quality, smaller file) to 100 (best quality, biggest file). The "
1709
- "default range is 60."
1710
- msgstr ""
1711
-
1712
- #: includes/admin/core/class-admin-settings.php:464
1713
- msgid "Image Upload Maximum Width (px)"
1714
- msgstr ""
1715
-
1716
- #: includes/admin/core/class-admin-settings.php:465
1717
- msgid ""
1718
- "Any image upload above this width will be resized to this limit "
1719
- "automatically."
1720
- msgstr ""
1721
-
1722
- #: includes/admin/core/class-admin-settings.php:472
1723
- msgid "Cover Photo Minimum Width (px)"
1724
- msgstr ""
1725
-
1726
- #: includes/admin/core/class-admin-settings.php:473
1727
- msgid "This will be the minimum width for cover photo uploads"
1728
- msgstr ""
1729
-
1730
- #: includes/admin/core/class-admin-settings.php:480
1731
- msgid "Access"
1732
- msgstr ""
1733
-
1734
- #: includes/admin/core/class-admin-settings.php:483
1735
- msgid "Restriction Content"
1736
- msgstr ""
1737
-
1738
- #: includes/admin/core/class-admin-settings.php:488
1739
- msgid "Global Site Access"
1740
- msgstr ""
1741
-
1742
- #: includes/admin/core/class-admin-settings.php:489
1743
- msgid ""
1744
- "Globally control the access of your site, you can have seperate restrict "
1745
- "options per post/page by editing the desired item."
1746
- msgstr ""
1747
-
1748
- #: includes/admin/core/class-admin-settings.php:499
1749
- msgid "Custom Redirect URL"
1750
- msgstr ""
1751
-
1752
- #: includes/admin/core/class-admin-settings.php:500
1753
- msgid ""
1754
- "A logged out user will be redirected to this url If he is not permitted to "
1755
- "access the site"
1756
- msgstr ""
1757
-
1758
- #: includes/admin/core/class-admin-settings.php:506
1759
- msgid "Exclude the following URLs"
1760
- msgstr ""
1761
-
1762
- #: includes/admin/core/class-admin-settings.php:507
1763
- msgid ""
1764
- "Here you can exclude URLs beside the redirect URI to be accessible to "
1765
- "everyone"
1766
- msgstr ""
1767
-
1768
- #: includes/admin/core/class-admin-settings.php:508
1769
- msgid "Add New URL"
1770
- msgstr ""
1771
-
1772
- #: includes/admin/core/class-admin-settings.php:515
1773
- msgid "Allow Homepage to be accessible"
1774
- msgstr ""
1775
-
1776
- #: includes/admin/core/class-admin-settings.php:521
1777
- msgid "Allow Category pages to be accessible"
1778
- msgstr ""
1779
-
1780
- #: includes/admin/core/class-admin-settings.php:527
1781
- msgid "Restricted Access Message"
1782
- msgstr ""
1783
-
1784
- #: includes/admin/core/class-admin-settings.php:528
1785
- msgid ""
1786
- "This is the message shown to users that do not have permission to view the "
1787
- "content"
1788
- msgstr ""
1789
-
1790
- #: includes/admin/core/class-admin-settings.php:543
1791
- msgid "Restricted Access to Posts"
1792
- msgstr ""
1793
-
1794
- #: includes/admin/core/class-admin-settings.php:544
1795
- msgid "Restriction content of the current Posts"
1796
- msgstr ""
1797
-
1798
- #: includes/admin/core/class-admin-settings.php:553
1799
- msgid "Restricted Access to Taxonomies"
1800
- msgstr ""
1801
-
1802
- #: includes/admin/core/class-admin-settings.php:554
1803
- msgid "Restriction content of the current Taxonomies"
1804
- msgstr ""
1805
-
1806
- #: includes/admin/core/class-admin-settings.php:563
1807
- msgid "Other"
1808
- msgstr ""
1809
-
1810
- #: includes/admin/core/class-admin-settings.php:568
1811
- msgid "Enable the Reset Password Limit?"
1812
- msgstr ""
1813
-
1814
- #: includes/admin/core/class-admin-settings.php:573
1815
- msgid "Reset Password Limit"
1816
- msgstr ""
1817
-
1818
- #: includes/admin/core/class-admin-settings.php:574
1819
- msgid ""
1820
- "Set the maximum reset password limit. If reached the maximum limit, user "
1821
- "will be locked from using this."
1822
- msgstr ""
1823
-
1824
- #: includes/admin/core/class-admin-settings.php:582
1825
- msgid "Blocked Email Addresses"
1826
- msgstr ""
1827
-
1828
- #: includes/admin/core/class-admin-settings.php:583
1829
- msgid ""
1830
- "This will block the specified e-mail addresses from being able to sign up or "
1831
- "sign in to your site. To block an entire domain, use something like *@domain."
1832
- "com"
1833
- msgstr ""
1834
-
1835
- #: includes/admin/core/class-admin-settings.php:588
1836
- msgid "Blacklist Words"
1837
- msgstr ""
1838
-
1839
- #: includes/admin/core/class-admin-settings.php:589
1840
- msgid ""
1841
- "This option lets you specify blacklist of words to prevent anyone from "
1842
- "signing up with such a word as their username"
1843
- msgstr ""
1844
-
1845
- #: includes/admin/core/class-admin-settings.php:596
1846
- #: includes/admin/core/list-tables/emails-list-table.php:300
1847
- msgid "Email"
1848
- msgstr ""
1849
-
1850
- #: includes/admin/core/class-admin-settings.php:601
1851
- msgid "Admin E-mail Address"
1852
- msgstr ""
1853
-
1854
- #: includes/admin/core/class-admin-settings.php:602
1855
- #: includes/admin/core/class-admin-settings.php:614
1856
- msgid "e.g. admin@companyname.com"
1857
- msgstr ""
1858
-
1859
- #: includes/admin/core/class-admin-settings.php:607
1860
- msgid "Mail appears from"
1861
- msgstr ""
1862
-
1863
- #: includes/admin/core/class-admin-settings.php:608
1864
- msgid "e.g. Site Name"
1865
- msgstr ""
1866
-
1867
- #: includes/admin/core/class-admin-settings.php:613
1868
- msgid "Mail appears from address"
1869
- msgstr ""
1870
-
1871
- #: includes/admin/core/class-admin-settings.php:619
1872
- msgid "Use HTML for E-mails?"
1873
- msgstr ""
1874
-
1875
- #: includes/admin/core/class-admin-settings.php:620
1876
- msgid ""
1877
- "If you plan use e-mails with HTML, please make sure that this option is "
1878
- "enabled. Otherwise, HTML will be displayed as plain text."
1879
- msgstr ""
1880
-
1881
- #: includes/admin/core/class-admin-settings.php:625
1882
- msgid "Appearance"
1883
- msgstr ""
1884
-
1885
- #: includes/admin/core/class-admin-settings.php:628
1886
- msgid "Profile"
1887
- msgstr ""
1888
-
1889
- #: includes/admin/core/class-admin-settings.php:633
1890
- msgid "Profile Default Template"
1891
- msgstr ""
1892
-
1893
- #: includes/admin/core/class-admin-settings.php:634
1894
- msgid "This will be the default template to output profile"
1895
- msgstr ""
1896
-
1897
- #: includes/admin/core/class-admin-settings.php:642
1898
- msgid "Profile Maximum Width"
1899
- msgstr ""
1900
-
1901
- #: includes/admin/core/class-admin-settings.php:651
1902
- msgid "Profile Area Maximum Width"
1903
- msgstr ""
1904
-
1905
- #: includes/admin/core/class-admin-settings.php:653
1906
- #: includes/admin/templates/form/profile_customize.php:56
1907
- msgid ""
1908
- "The maximum width of the profile area inside profile (below profile header)"
1909
- msgstr ""
1910
-
1911
- #: includes/admin/core/class-admin-settings.php:659
1912
- msgid "Profile Field Icons"
1913
- msgstr ""
1914
-
1915
- #: includes/admin/core/class-admin-settings.php:660
1916
- msgid "This is applicable for edit mode only"
1917
- msgstr ""
1918
-
1919
- #: includes/admin/core/class-admin-settings.php:663
1920
- #: includes/admin/core/class-admin-settings.php:859
1921
- #: includes/admin/core/class-admin-settings.php:949
1922
- #: includes/admin/templates/form/login_customize.php:40
1923
- #: includes/admin/templates/form/profile_customize.php:67
1924
- #: includes/admin/templates/form/register_customize.php:55
1925
- msgid "Show inside text field"
1926
- msgstr ""
1927
-
1928
- #: includes/admin/core/class-admin-settings.php:664
1929
- #: includes/admin/core/class-admin-settings.php:860
1930
- #: includes/admin/core/class-admin-settings.php:950
1931
- #: includes/admin/templates/form/login_customize.php:41
1932
- #: includes/admin/templates/form/profile_customize.php:68
1933
- #: includes/admin/templates/form/register_customize.php:56
1934
- msgid "Show with label"
1935
- msgstr ""
1936
-
1937
- #: includes/admin/core/class-admin-settings.php:665
1938
- #: includes/admin/core/class-admin-settings.php:861
1939
- #: includes/admin/core/class-admin-settings.php:951
1940
- #: includes/admin/templates/form/login_customize.php:42
1941
- #: includes/admin/templates/form/profile_customize.php:69
1942
- #: includes/admin/templates/form/register_customize.php:57
1943
- msgid "Turn off"
1944
- msgstr ""
1945
-
1946
- #: includes/admin/core/class-admin-settings.php:672
1947
- msgid "Profile Primary Button Text"
1948
- msgstr ""
1949
-
1950
- #: includes/admin/core/class-admin-settings.php:674
1951
- msgid "The text that is used for updating profile button"
1952
- msgstr ""
1953
-
1954
- #: includes/admin/core/class-admin-settings.php:680
1955
- msgid "Profile Secondary Button"
1956
- msgstr ""
1957
-
1958
- #: includes/admin/core/class-admin-settings.php:682
1959
- #: includes/admin/core/class-admin-settings.php:878
1960
- #: includes/admin/core/class-admin-settings.php:968
1961
- msgid "Switch on/off the secondary button display in the form"
1962
- msgstr ""
1963
-
1964
- #: includes/admin/core/class-admin-settings.php:687
1965
- msgid "Profile Secondary Button Text"
1966
- msgstr ""
1967
-
1968
- #: includes/admin/core/class-admin-settings.php:689
1969
- msgid "The text that is used for cancelling update profile button"
1970
- msgstr ""
1971
-
1972
- #: includes/admin/core/class-admin-settings.php:696
1973
- msgid "Default Profile Photo"
1974
- msgstr ""
1975
-
1976
- #: includes/admin/core/class-admin-settings.php:697
1977
- msgid ""
1978
- "You can change the default profile picture globally here. Please make sure "
1979
- "that the photo is 300x300px."
1980
- msgstr ""
1981
-
1982
- #: includes/admin/core/class-admin-settings.php:698
1983
- msgid "Select Default Profile Photo"
1984
- msgstr ""
1985
-
1986
- #: includes/admin/core/class-admin-settings.php:708
1987
- msgid "Default Cover Photo"
1988
- msgstr ""
1989
-
1990
- #: includes/admin/core/class-admin-settings.php:709
1991
- msgid ""
1992
- "You can change the default cover photo globally here. Please make sure that "
1993
- "the default cover is large enough and respects the ratio you are using for "
1994
- "cover photos."
1995
- msgstr ""
1996
-
1997
- #: includes/admin/core/class-admin-settings.php:710
1998
- msgid "Select Default Cover Photo"
1999
- msgstr ""
2000
-
2001
- #: includes/admin/core/class-admin-settings.php:715
2002
- #: includes/admin/templates/form/profile_customize.php:127
2003
- msgid "Profile Photo Size"
2004
- msgstr ""
2005
-
2006
- #: includes/admin/core/class-admin-settings.php:717
2007
- msgid ""
2008
- "The global default of profile photo size. This can be overridden by "
2009
- "individual form settings"
2010
- msgstr ""
2011
-
2012
- #: includes/admin/core/class-admin-settings.php:723
2013
- msgid "Profile Cover Photos"
2014
- msgstr ""
2015
-
2016
- #: includes/admin/core/class-admin-settings.php:725
2017
- msgid "Switch on/off the profile cover photos"
2018
- msgstr ""
2019
-
2020
- #: includes/admin/core/class-admin-settings.php:730
2021
- msgid "Profile Cover Ratio"
2022
- msgstr ""
2023
-
2024
- #: includes/admin/core/class-admin-settings.php:731
2025
- msgid "Choose global ratio for cover photos of profiles"
2026
- msgstr ""
2027
-
2028
- #: includes/admin/core/class-admin-settings.php:745
2029
- msgid "Profile Header Meta Text Icon"
2030
- msgstr ""
2031
-
2032
- #: includes/admin/core/class-admin-settings.php:747
2033
- msgid "Display field icons for related user meta fields in header or not"
2034
- msgstr ""
2035
-
2036
- #: includes/admin/core/class-admin-settings.php:752
2037
- msgid "Show display name in profile header"
2038
- msgstr ""
2039
-
2040
- #: includes/admin/core/class-admin-settings.php:754
2041
- msgid "Switch on/off the user name on profile header"
2042
- msgstr ""
2043
-
2044
- #: includes/admin/core/class-admin-settings.php:759
2045
- msgid "Show social links in profile header"
2046
- msgstr ""
2047
-
2048
- #: includes/admin/core/class-admin-settings.php:761
2049
- msgid "Switch on/off the social links on profile header"
2050
- msgstr ""
2051
-
2052
- #: includes/admin/core/class-admin-settings.php:766
2053
- msgid "Show user description in header"
2054
- msgstr ""
2055
-
2056
- #: includes/admin/core/class-admin-settings.php:768
2057
- msgid "Switch on/off the user description on profile header"
2058
- msgstr ""
2059
-
2060
- #: includes/admin/core/class-admin-settings.php:773
2061
- msgid "Enable html support for user description"
2062
- msgstr ""
2063
-
2064
- #: includes/admin/core/class-admin-settings.php:775
2065
- msgid ""
2066
- "Switch on/off to enable/disable support for html tags on user description."
2067
- msgstr ""
2068
-
2069
- #: includes/admin/core/class-admin-settings.php:780
2070
- msgid "User description maximum chars"
2071
- msgstr ""
2072
-
2073
- #: includes/admin/core/class-admin-settings.php:782
2074
- msgid ""
2075
- "Maximum number of characters to allow in user description field in header."
2076
- msgstr ""
2077
-
2078
- #: includes/admin/core/class-admin-settings.php:789
2079
- msgid "Profile Header Menu Position"
2080
- msgstr ""
2081
-
2082
- #: includes/admin/core/class-admin-settings.php:791
2083
- msgid ""
2084
- "For incompatible themes, please make the menu open from left instead of "
2085
- "bottom by default."
2086
- msgstr ""
2087
-
2088
- #: includes/admin/core/class-admin-settings.php:801
2089
- msgid "Show a custom message if profile is empty"
2090
- msgstr ""
2091
-
2092
- #: includes/admin/core/class-admin-settings.php:803
2093
- msgid "Switch on/off the custom message that appears when the profile is empty"
2094
- msgstr ""
2095
-
2096
- #: includes/admin/core/class-admin-settings.php:808
2097
- msgid "Show the emoticon"
2098
- msgstr ""
2099
-
2100
- #: includes/admin/core/class-admin-settings.php:810
2101
- msgid "Switch on/off the emoticon (sad face) that appears above the message"
2102
- msgstr ""
2103
-
2104
- #: includes/admin/core/class-admin-settings.php:816
2105
- msgid "Profile Menu"
2106
- msgstr ""
2107
-
2108
- #: includes/admin/core/class-admin-settings.php:820
2109
- #: includes/admin/templates/form/mode.php:9
2110
- msgid "Registration Form"
2111
- msgstr ""
2112
-
2113
- #: includes/admin/core/class-admin-settings.php:825
2114
- msgid "Registration Default Template"
2115
- msgstr ""
2116
-
2117
- #: includes/admin/core/class-admin-settings.php:826
2118
- msgid "This will be the default template to output registration"
2119
- msgstr ""
2120
-
2121
- #: includes/admin/core/class-admin-settings.php:834
2122
- msgid "Registration Maximum Width"
2123
- msgstr ""
2124
-
2125
- #: includes/admin/core/class-admin-settings.php:836
2126
- #: includes/admin/core/class-admin-settings.php:926
2127
- msgid "The maximum width this shortcode can take from the page width"
2128
- msgstr ""
2129
-
2130
- #: includes/admin/core/class-admin-settings.php:842
2131
- msgid "Registration Shortcode Alignment"
2132
- msgstr ""
2133
-
2134
- #: includes/admin/core/class-admin-settings.php:843
2135
- #: includes/admin/core/class-admin-settings.php:933
2136
- #: includes/admin/templates/form/profile_customize.php:115
2137
- msgid "The shortcode is centered by default unless you specify otherwise here"
2138
- msgstr ""
2139
-
2140
- #: includes/admin/core/class-admin-settings.php:846
2141
- #: includes/admin/core/class-admin-settings.php:936
2142
- msgid "Centered"
2143
- msgstr ""
2144
-
2145
- #: includes/admin/core/class-admin-settings.php:847
2146
- #: includes/admin/core/class-admin-settings.php:937
2147
- msgid "Left aligned"
2148
- msgstr ""
2149
-
2150
- #: includes/admin/core/class-admin-settings.php:848
2151
- #: includes/admin/core/class-admin-settings.php:938
2152
- msgid "Right aligned"
2153
- msgstr ""
2154
-
2155
- #: includes/admin/core/class-admin-settings.php:855
2156
- msgid "Registration Field Icons"
2157
- msgstr ""
2158
-
2159
- #: includes/admin/core/class-admin-settings.php:856
2160
- msgid "This controls the display of field icons in the registration form"
2161
- msgstr ""
2162
-
2163
- #: includes/admin/core/class-admin-settings.php:868
2164
- msgid "Registration Primary Button Text"
2165
- msgstr ""
2166
-
2167
- #: includes/admin/core/class-admin-settings.php:870
2168
- #: includes/admin/core/class-admin-settings.php:960
2169
- msgid "The text that is used for primary button text"
2170
- msgstr ""
2171
-
2172
- #: includes/admin/core/class-admin-settings.php:876
2173
- msgid "Registration Secondary Button"
2174
- msgstr ""
2175
-
2176
- #: includes/admin/core/class-admin-settings.php:883
2177
- msgid "Registration Secondary Button Text"
2178
- msgstr ""
2179
-
2180
- #: includes/admin/core/class-admin-settings.php:885
2181
- #: includes/admin/core/class-admin-settings.php:975
2182
- msgid "The text that is used for the secondary button text"
2183
- msgstr ""
2184
-
2185
- #: includes/admin/core/class-admin-settings.php:892
2186
- msgid "Registration Secondary Button URL"
2187
- msgstr ""
2188
-
2189
- #: includes/admin/core/class-admin-settings.php:894
2190
- #: includes/admin/core/class-admin-settings.php:984
2191
- msgid "You can replace default link for this button by entering custom URL"
2192
- msgstr ""
2193
-
2194
- #: includes/admin/core/class-admin-settings.php:901
2195
- msgid "Registration Default Role"
2196
- msgstr ""
2197
-
2198
- #: includes/admin/core/class-admin-settings.php:902
2199
- msgid ""
2200
- "This will be the default role assigned to users registering thru "
2201
- "registration form"
2202
- msgstr ""
2203
-
2204
- #: includes/admin/core/class-admin-settings.php:910
2205
- #: includes/admin/templates/form/mode.php:13
2206
- msgid "Login Form"
2207
- msgstr ""
2208
-
2209
- #: includes/admin/core/class-admin-settings.php:915
2210
- msgid "Login Default Template"
2211
- msgstr ""
2212
-
2213
- #: includes/admin/core/class-admin-settings.php:916
2214
- msgid "This will be the default template to output login"
2215
- msgstr ""
2216
-
2217
- #: includes/admin/core/class-admin-settings.php:924
2218
- msgid "Login Maximum Width"
2219
- msgstr ""
2220
-
2221
- #: includes/admin/core/class-admin-settings.php:932
2222
- msgid "Login Shortcode Alignment"
2223
- msgstr ""
2224
-
2225
- #: includes/admin/core/class-admin-settings.php:945
2226
- msgid "Login Field Icons"
2227
- msgstr ""
2228
-
2229
- #: includes/admin/core/class-admin-settings.php:946
2230
- msgid "This controls the display of field icons in the login form"
2231
- msgstr ""
2232
-
2233
- #: includes/admin/core/class-admin-settings.php:958
2234
- msgid "Login Primary Button Text"
2235
- msgstr ""
2236
-
2237
- #: includes/admin/core/class-admin-settings.php:966
2238
- msgid "Login Secondary Button"
2239
- msgstr ""
2240
-
2241
- #: includes/admin/core/class-admin-settings.php:973
2242
- msgid "Login Secondary Button Text"
2243
- msgstr ""
2244
-
2245
- #: includes/admin/core/class-admin-settings.php:982
2246
- msgid "Login Secondary Button URL"
2247
- msgstr ""
2248
-
2249
- #: includes/admin/core/class-admin-settings.php:991
2250
- msgid "Login Forgot Password Link"
2251
- msgstr ""
2252
-
2253
- #: includes/admin/core/class-admin-settings.php:993
2254
- msgid "Switch on/off the forgot password link in login form"
2255
- msgstr ""
2256
-
2257
- #: includes/admin/core/class-admin-settings.php:998
2258
- msgid "Show \"Remember Me\""
2259
- msgstr ""
2260
-
2261
- #: includes/admin/core/class-admin-settings.php:1000
2262
- msgid ""
2263
- "Allow users to choose If they want to stay signed in even after closing the "
2264
- "browser. If you do not show this option, the default will be to not remember "
2265
- "login session."
2266
- msgstr ""
2267
-
2268
- #: includes/admin/core/class-admin-settings.php:1010
2269
- msgid "Licenses"
2270
- msgstr ""
2271
-
2272
- #: includes/admin/core/class-admin-settings.php:1013
2273
- msgid "Misc"
2274
- msgstr ""
2275
-
2276
- #: includes/admin/core/class-admin-settings.php:1018
2277
- msgid "Show an asterisk for required fields"
2278
- msgstr ""
2279
-
2280
- #: includes/admin/core/class-admin-settings.php:1023
2281
- msgid "User Profile Title"
2282
- msgstr ""
2283
-
2284
- #: includes/admin/core/class-admin-settings.php:1024
2285
- msgid "This is the title that is displayed on a specific user profile"
2286
- msgstr ""
2287
-
2288
- #: includes/admin/core/class-admin-settings.php:1030
2289
- msgid "User Profile Dynamic Meta Description"
2290
- msgstr ""
2291
-
2292
- #: includes/admin/core/class-admin-settings.php:1031
2293
- msgid ""
2294
- "This will be used in the meta description that is available for search-"
2295
- "engines."
2296
- msgstr ""
2297
-
2298
- #: includes/admin/core/class-admin-settings.php:1039
2299
- msgid "Remove Data on Uninstall?"
2300
- msgstr ""
2301
-
2302
- #: includes/admin/core/class-admin-settings.php:1040
2303
- msgid ""
2304
- "Check this box if you would like Ultimate Member to completely remove all of "
2305
- "its data when the plugin/extensions are deleted."
2306
- msgstr ""
2307
-
2308
- #: includes/admin/core/class-admin-settings.php:1045
2309
- msgid "Install Info"
2310
- msgstr ""
2311
-
2312
- #: includes/admin/core/class-admin-settings.php:1150
2313
- msgid "Ultimate Member - Settings"
2314
- msgstr ""
2315
-
2316
- #: includes/admin/core/class-admin-settings.php:1289
2317
- msgid "Save Changes"
2318
- msgstr ""
2319
-
2320
- #: includes/admin/core/class-admin-settings.php:1732
2321
- msgid "Subject Line"
2322
- msgstr ""
2323
-
2324
- #: includes/admin/core/class-admin-settings.php:1734
2325
- msgid "This is the subject line of the e-mail"
2326
- msgstr ""
2327
-
2328
- #: includes/admin/core/class-admin-settings.php:1739
2329
- msgid "Message Body"
2330
- msgstr ""
2331
-
2332
- #: includes/admin/core/class-admin-settings.php:1741
2333
- msgid "This is the content of the e-mail"
2334
- msgstr ""
2335
-
2336
- #: includes/admin/core/class-admin-settings.php:1791
2337
- #: includes/admin/core/class-admin-settings.php:1889
2338
- #, php-format
2339
- msgid ""
2340
- "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
2341
- "\">renew your license key</a>."
2342
- msgstr ""
2343
-
2344
- #: includes/admin/core/class-admin-settings.php:1804
2345
- #: includes/admin/core/class-admin-settings.php:1902
2346
- #, php-format
2347
- msgid ""
2348
- "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
2349
- "\">contact support</a> for more information."
2350
- msgstr ""
2351
-
2352
- #: includes/admin/core/class-admin-settings.php:1816
2353
- #: includes/admin/core/class-admin-settings.php:1914
2354
- #, php-format
2355
- msgid ""
2356
- "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
2357
- "page</a> and verify it."
2358
- msgstr ""
2359
-
2360
- #: includes/admin/core/class-admin-settings.php:1829
2361
- #: includes/admin/core/class-admin-settings.php:1927
2362
- #, php-format
2363
- msgid ""
2364
- "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
2365
- "\">visit your account page</a> to manage your license key URLs."
2366
- msgstr ""
2367
-
2368
- #: includes/admin/core/class-admin-settings.php:1841
2369
- #: includes/admin/core/class-admin-settings.php:1939
2370
- #, php-format
2371
- msgid "This appears to be an invalid license key for %s."
2372
- msgstr ""
2373
-
2374
- #: includes/admin/core/class-admin-settings.php:1850
2375
- #: includes/admin/core/class-admin-settings.php:1948
2376
- #, php-format
2377
- msgid ""
2378
- "Your license key has reached its activation limit. <a href=\"%s\">View "
2379
- "possible upgrades</a> now."
2380
- msgstr ""
2381
-
2382
- #: includes/admin/core/class-admin-settings.php:1859
2383
- #: includes/admin/core/class-admin-settings.php:1957
2384
- msgid ""
2385
- "The key you entered belongs to a bundle, please use the product specific "
2386
- "license key."
2387
- msgstr ""
2388
-
2389
- #: includes/admin/core/class-admin-settings.php:1867
2390
- #: includes/admin/core/class-admin-settings.php:1875
2391
- msgid "unknown_error"
2392
- msgstr ""
2393
-
2394
- #: includes/admin/core/class-admin-settings.php:1868
2395
- #: includes/admin/core/class-admin-settings.php:1876
2396
- #, php-format
2397
- msgid ""
2398
- "There was an error with this license key: %s. Please <a href=\"%s\">contact "
2399
- "our support team</a>."
2400
- msgstr ""
2401
-
2402
- #: includes/admin/core/class-admin-settings.php:1972
2403
- msgid "License key never expires."
2404
- msgstr ""
2405
-
2406
- #: includes/admin/core/class-admin-settings.php:1979
2407
- #, php-format
2408
- msgid ""
2409
- "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
2410
- "\"_blank\">Renew your license key</a>."
2411
- msgstr ""
2412
-
2413
- #: includes/admin/core/class-admin-settings.php:1989
2414
- #, php-format
2415
- msgid "Your license key expires on %s."
2416
- msgstr ""
2417
-
2418
- #: includes/admin/core/class-admin-settings.php:2007
2419
- #, php-format
2420
- msgid "To receive updates, please enter your valid %s license key."
2421
- msgstr ""
2422
-
2423
- #: includes/admin/core/class-admin-settings.php:2031
2424
- msgid "Clear License"
2425
- msgstr ""
2426
-
2427
- #: includes/admin/core/class-admin-settings.php:2033
2428
- msgid "Activate"
2429
- msgstr ""
2430
-
2431
- #: includes/admin/core/class-admin-settings.php:2035
2432
- msgid "Re-Activate"
2433
- msgstr ""
2434
-
2435
- #: includes/admin/core/class-admin-settings.php:2087
2436
- msgid ""
2437
- "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
2438
- "(Mac)."
2439
- msgstr ""
2440
-
2441
- #: includes/admin/core/class-admin-upgrade.php:129
2442
- #, php-format
2443
- msgid ""
2444
- "%s is a major update, and we highly recommend creating a full backup of your "
2445
- "site before updating."
2446
- msgstr ""
2447
-
2448
- #: includes/admin/core/class-admin-upgrade.php:221
2449
- msgid "Upgrade"
2450
- msgstr ""
2451
-
2452
- #: includes/admin/core/class-admin-upgrade.php:229
2453
- msgid "empty"
2454
- msgstr ""
2455
-
2456
- #: includes/admin/core/class-admin-upgrade.php:232
2457
- #, php-format
2458
- msgid "%s - Upgrade Process"
2459
- msgstr ""
2460
-
2461
- #: includes/admin/core/class-admin-upgrade.php:233
2462
- #, php-format
2463
- msgid ""
2464
- "You have installed %s version. Your latest DB version is %s. Before the "
2465
- "click to \"Run\" button make sure that did the following:"
2466
- msgstr ""
2467
-
2468
- #: includes/admin/core/class-admin-upgrade.php:235
2469
- msgid "Create full site's backup."
2470
- msgstr ""
2471
-
2472
- #: includes/admin/core/class-admin-upgrade.php:236
2473
- msgid "Set maintenance mode (if you need)"
2474
- msgstr ""
2475
-
2476
- #: includes/admin/core/class-admin-upgrade.php:237
2477
- msgid "You have nice Internet connection"
2478
- msgstr ""
2479
-
2480
- #: includes/admin/core/class-admin-upgrade.php:239
2481
- msgid ""
2482
- "After the click to \"Run\" button, the update process will be started. All "
2483
- "information will be displayed in \"Upgrade Log\" field."
2484
- msgstr ""
2485
-
2486
- #: includes/admin/core/class-admin-upgrade.php:240
2487
- msgid ""
2488
- "If the update was successful, you will see a corresponding message. "
2489
- "Otherwise, contact technical support if the update failed."
2490
- msgstr ""
2491
-
2492
- #: includes/admin/core/class-admin-upgrade.php:241
2493
- msgid "Upgrade Log"
2494
- msgstr ""
2495
-
2496
- #: includes/admin/core/class-admin-users.php:109
2497
- #: includes/admin/core/class-admin-users.php:112
2498
- msgid "UM Action"
2499
- msgstr ""
2500
-
2501
- #: includes/admin/core/class-admin-users.php:116
2502
- #: includes/core/class-fields.php:2270
2503
- msgid "Apply"
2504
- msgstr ""
2505
-
2506
- #: includes/admin/core/class-admin-users.php:158
2507
- #: includes/core/um-filters-user.php:20 includes/core/um-filters-user.php:25
2508
- msgid "Approve Membership"
2509
- msgstr ""
2510
-
2511
- #: includes/admin/core/class-admin-users.php:161
2512
- #: includes/core/um-filters-user.php:21
2513
- msgid "Reject Membership"
2514
- msgstr ""
2515
-
2516
- #: includes/admin/core/class-admin-users.php:164
2517
- #: includes/core/um-filters-user.php:29
2518
- msgid "Put as Pending Review"
2519
- msgstr ""
2520
-
2521
- #: includes/admin/core/class-admin-users.php:167
2522
- #: includes/core/um-filters-user.php:33
2523
- msgid "Resend Activation E-mail"
2524
- msgstr ""
2525
-
2526
- #: includes/admin/core/class-admin-users.php:170
2527
- msgid "Deactivate"
2528
- msgstr ""
2529
-
2530
- #: includes/admin/core/class-admin-users.php:173
2531
- msgid "Reactivate"
2532
- msgstr ""
2533
-
2534
- #: includes/admin/core/class-admin-users.php:196 templates/account.php:38
2535
- #: templates/account.php:62
2536
- msgid "View profile"
2537
- msgstr ""
2538
-
2539
- #: includes/admin/core/class-admin-users.php:200
2540
- msgid "Info"
2541
- msgstr ""
2542
-
2543
- #: includes/admin/core/class-admin-users.php:305
2544
- #: includes/admin/templates/dashboard/users.php:11
2545
- #: includes/core/class-user.php:816
2546
- msgid "Approved"
2547
- msgstr ""
2548
-
2549
- #: includes/admin/core/class-admin-users.php:306
2550
- msgid "Pending review"
2551
- msgstr ""
2552
-
2553
- #: includes/admin/core/class-admin-users.php:307
2554
- msgid "Waiting e-mail confirmation"
2555
- msgstr ""
2556
-
2557
- #: includes/admin/core/class-admin-users.php:308
2558
- #: includes/admin/templates/dashboard/users.php:37
2559
- msgid "Inactive"
2560
- msgstr ""
2561
-
2562
- #: includes/admin/core/class-admin-users.php:309
2563
- #: includes/admin/templates/dashboard/users.php:16
2564
- msgid "Rejected"
2565
- msgstr ""
2566
-
2567
- #: includes/admin/core/class-admin-users.php:369
2568
- msgid "You do not have enough permissions to do that."
2569
- msgstr ""
2570
-
2571
- #: includes/admin/core/list-tables/emails-list-table.php:69
2572
- #: includes/admin/core/list-tables/roles-list-table.php:172
2573
- msgid "item"
2574
- msgstr ""
2575
-
2576
- #: includes/admin/core/list-tables/emails-list-table.php:70
2577
- #: includes/admin/core/list-tables/roles-list-table.php:173
2578
- msgid "items"
2579
- msgstr ""
2580
-
2581
- #: includes/admin/core/list-tables/emails-list-table.php:74
2582
- #: includes/admin/core/list-tables/roles-list-table.php:177
2583
- msgid "not found."
2584
- msgstr ""
2585
-
2586
- #: includes/admin/core/list-tables/emails-list-table.php:236
2587
- msgid "Member"
2588
- msgstr ""
2589
-
2590
- #: includes/admin/core/list-tables/emails-list-table.php:270
2591
- msgid "Email Notification"
2592
- msgstr ""
2593
-
2594
- #: includes/admin/core/list-tables/emails-list-table.php:271
2595
- msgid "Email Notifications"
2596
- msgstr ""
2597
-
2598
- #: includes/admin/core/list-tables/emails-list-table.php:301
2599
- msgid "Recipient(s)"
2600
- msgstr ""
2601
-
2602
- #: includes/admin/core/list-tables/roles-list-table.php:23
2603
- #: includes/admin/core/list-tables/roles-list-table.php:88
2604
- #: includes/admin/core/list-tables/roles-list-table.php:398
2605
- msgid "Roles"
2606
- msgstr ""
2607
-
2608
- #: includes/admin/core/list-tables/roles-list-table.php:335
2609
- msgid "Edit"
2610
- msgstr ""
2611
-
2612
- #: includes/admin/core/list-tables/roles-list-table.php:338
2613
- msgid "Are you sure you want to delete this role?"
2614
- msgstr ""
2615
-
2616
- #: includes/admin/core/list-tables/roles-list-table.php:338
2617
- #: includes/admin/core/list-tables/roles-list-table.php:406
2618
- msgid "Delete"
2619
- msgstr ""
2620
-
2621
- #: includes/admin/core/list-tables/roles-list-table.php:343
2622
- msgid "Are you sure you want to reset UM role meta?"
2623
- msgstr ""
2624
-
2625
- #: includes/admin/core/list-tables/roles-list-table.php:343
2626
- msgid "Reset UM Role meta"
2627
- msgstr ""
2628
-
2629
- #: includes/admin/core/list-tables/roles-list-table.php:367
2630
- #: includes/admin/core/list-tables/roles-list-table.php:375
2631
- #: includes/admin/templates/form/login_customize.php:14
2632
- #: includes/admin/templates/form/login_customize.php:62
2633
- #: includes/admin/templates/form/login_customize.php:81
2634
- #: includes/admin/templates/form/login_customize.php:92
2635
- #: includes/admin/templates/form/profile_customize.php:23
2636
- #: includes/admin/templates/form/profile_customize.php:89
2637
- #: includes/admin/templates/form/profile_customize.php:108
2638
- #: includes/admin/templates/form/profile_customize.php:141
2639
- #: includes/admin/templates/form/profile_customize.php:152
2640
- #: includes/admin/templates/form/profile_customize.php:163
2641
- #: includes/admin/templates/form/profile_customize.php:174
2642
- #: includes/admin/templates/form/register_customize.php:21
2643
- #: includes/admin/templates/form/register_customize.php:77
2644
- #: includes/admin/templates/form/register_gdpr.php:24
2645
- #: includes/core/class-builtin.php:1137 includes/core/class-builtin.php:1152
2646
- #: includes/core/um-filters-members.php:68
2647
- msgid "Yes"
2648
- msgstr ""
2649
-
2650
- #: includes/admin/core/list-tables/roles-list-table.php:367
2651
- #: includes/admin/core/list-tables/roles-list-table.php:375
2652
- #: includes/admin/templates/form/login_customize.php:13
2653
- #: includes/admin/templates/form/login_customize.php:61
2654
- #: includes/admin/templates/form/login_customize.php:80
2655
- #: includes/admin/templates/form/login_customize.php:91
2656
- #: includes/admin/templates/form/profile_customize.php:22
2657
- #: includes/admin/templates/form/profile_customize.php:88
2658
- #: includes/admin/templates/form/profile_customize.php:107
2659
- #: includes/admin/templates/form/profile_customize.php:140
2660
- #: includes/admin/templates/form/profile_customize.php:151
2661
- #: includes/admin/templates/form/profile_customize.php:162
2662
- #: includes/admin/templates/form/profile_customize.php:173
2663
- #: includes/admin/templates/form/register_customize.php:20
2664
- #: includes/admin/templates/form/register_customize.php:76
2665
- #: includes/admin/templates/form/register_gdpr.php:23
2666
- #: includes/core/class-builtin.php:1137 includes/core/class-builtin.php:1151
2667
- #: includes/core/class-builtin.php:1152
2668
- #: includes/core/um-actions-account.php:245
2669
- msgid "No"
2670
- msgstr ""
2671
-
2672
- #: includes/admin/core/list-tables/roles-list-table.php:397
2673
- msgid "Role"
2674
- msgstr ""
2675
-
2676
- #: includes/admin/core/list-tables/roles-list-table.php:410
2677
- msgid "Role Title"
2678
- msgstr ""
2679
-
2680
- #: includes/admin/core/list-tables/roles-list-table.php:411
2681
- msgid "Role ID"
2682
- msgstr ""
2683
-
2684
- #: includes/admin/core/list-tables/roles-list-table.php:412
2685
- msgid "No.of Members"
2686
- msgstr ""
2687
-
2688
- #: includes/admin/core/list-tables/roles-list-table.php:413
2689
- msgid "UM Custom Role"
2690
- msgstr ""
2691
-
2692
- #: includes/admin/core/list-tables/roles-list-table.php:414
2693
- msgid "WP-Admin Access"
2694
- msgstr ""
2695
-
2696
- #: includes/admin/core/list-tables/roles-list-table.php:415
2697
- msgid "Priority"
2698
- msgstr ""
2699
-
2700
- #: includes/admin/core/list-tables/roles-list-table.php:479
2701
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:14
2702
- #: includes/admin/templates/role/role-edit.php:136
2703
- #: includes/core/class-common.php:58 includes/core/class-common.php:87
2704
- msgid "Add New"
2705
- msgstr ""
2706
-
2707
- #: includes/admin/core/list-tables/roles-list-table.php:486
2708
- msgid "User Role <strong>Deleted</strong> Successfully."
2709
- msgstr ""
2710
-
2711
- #: includes/admin/core/packages/2.0-beta1/functions.php:6
2712
- #: includes/admin/core/packages/2.0.10/functions.php:6
2713
- msgid "Styles was upgraded successfully"
2714
- msgstr ""
2715
-
2716
- #: includes/admin/core/packages/2.0-beta1/functions.php:17
2717
- msgid "User Roles was upgraded successfully"
2718
- msgstr ""
2719
-
2720
- #: includes/admin/core/packages/2.0-beta1/functions.php:80
2721
- #, php-format
2722
- msgid "Users from %s to %s was upgraded successfully..."
2723
- msgstr ""
2724
-
2725
- #: includes/admin/core/packages/2.0-beta1/functions.php:100
2726
- msgid "Settings was upgraded successfully"
2727
- msgstr ""
2728
-
2729
- #: includes/admin/core/packages/2.0-beta1/functions.php:108
2730
- msgid "Menus settings was upgraded successfully"
2731
- msgstr ""
2732
-
2733
- #: includes/admin/core/packages/2.0-beta1/functions.php:116
2734
- msgid "Mailchimp Lists was upgraded successfully"
2735
- msgstr ""
2736
-
2737
- #: includes/admin/core/packages/2.0-beta1/functions.php:124
2738
- msgid "Social login forms was upgraded successfully"
2739
- msgstr ""
2740
-
2741
- #: includes/admin/core/packages/2.0-beta1/functions.php:132
2742
- msgid "UM Custom Posts was upgraded successfully"
2743
- msgstr ""
2744
-
2745
- #: includes/admin/core/packages/2.0-beta1/functions.php:147
2746
- msgid "Forums are ready for upgrade"
2747
- msgstr ""
2748
-
2749
- #: includes/admin/core/packages/2.0-beta1/functions.php:200
2750
- #, php-format
2751
- msgid "Forums from %s to %s was upgraded successfully..."
2752
- msgstr ""
2753
-
2754
- #: includes/admin/core/packages/2.0-beta1/functions.php:216
2755
- msgid "Woocommerce Products are ready for upgrade"
2756
- msgstr ""
2757
-
2758
- #: includes/admin/core/packages/2.0-beta1/functions.php:290
2759
- #, php-format
2760
- msgid "Woocommerce Products from %s to %s was upgraded successfully..."
2761
- msgstr ""
2762
-
2763
- #: includes/admin/core/packages/2.0-beta1/functions.php:306
2764
- msgid "Email Templates was upgraded successfully"
2765
- msgstr ""
2766
-
2767
- #: includes/admin/core/packages/2.0-beta1/init.php:13
2768
- #: includes/admin/core/packages/2.0.10/init.php:6
2769
- msgid "Upgrade Styles..."
2770
- msgstr ""
2771
-
2772
- #: includes/admin/core/packages/2.0-beta1/init.php:37
2773
- msgid "Upgrade Roles..."
2774
- msgstr ""
2775
-
2776
- #: includes/admin/core/packages/2.0-beta1/init.php:50
2777
- msgid "Upgrade Users..."
2778
- msgstr ""
2779
-
2780
- #: includes/admin/core/packages/2.0-beta1/init.php:71
2781
- msgid "Getting "
2782
- msgstr ""
2783
-
2784
- #: includes/admin/core/packages/2.0-beta1/init.php:71
2785
- #: includes/admin/core/packages/2.0-beta1/init.php:82
2786
- msgid " users..."
2787
- msgstr ""
2788
-
2789
- #: includes/admin/core/packages/2.0-beta1/init.php:82
2790
- msgid "There are "
2791
- msgstr ""
2792
-
2793
- #: includes/admin/core/packages/2.0-beta1/init.php:83
2794
- msgid "Start users upgrading..."
2795
- msgstr ""
2796
-
2797
- #: includes/admin/core/packages/2.0-beta1/init.php:135
2798
- msgid "Upgrade Content Restriction Settings..."
2799
- msgstr ""
2800
-
2801
- #: includes/admin/core/packages/2.0-beta1/init.php:160
2802
- msgid "Upgrade Settings..."
2803
- msgstr ""
2804
-
2805
- #: includes/admin/core/packages/2.0-beta1/init.php:185
2806
- msgid "Upgrade Menu Items..."
2807
- msgstr ""
2808
-
2809
- #: includes/admin/core/packages/2.0-beta1/init.php:210
2810
- msgid "Upgrade Mailchimp Lists..."
2811
- msgstr ""
2812
-
2813
- #: includes/admin/core/packages/2.0-beta1/init.php:235
2814
- msgid "Upgrade Social Login Forms..."
2815
- msgstr ""
2816
-
2817
- #: includes/admin/core/packages/2.0-beta1/init.php:260
2818
- msgid "Upgrade UM Custom Post Types..."
2819
- msgstr ""
2820
-
2821
- #: includes/admin/core/packages/2.0-beta1/init.php:285
2822
- msgid "Upgrade bbPress Forums..."
2823
- msgstr ""
2824
-
2825
- #: includes/admin/core/packages/2.0-beta1/init.php:286
2826
- msgid "Get bbPress Forums count..."
2827
- msgstr ""
2828
-
2829
- #: includes/admin/core/packages/2.0-beta1/init.php:343
2830
- msgid "Upgrade Woocommerce Products..."
2831
- msgstr ""
2832
-
2833
- #: includes/admin/core/packages/2.0-beta1/init.php:344
2834
- msgid "Get all Products..."
2835
- msgstr ""
2836
-
2837
- #: includes/admin/core/packages/2.0-beta1/init.php:403
2838
- msgid "Upgrade Email Templates..."
2839
- msgstr ""
2840
-
2841
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:13
2842
- msgid "User Role"
2843
- msgstr ""
2844
-
2845
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:15
2846
- msgid "Add New User Role"
2847
- msgstr ""
2848
-
2849
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:16
2850
- msgid "Edit User Role"
2851
- msgstr ""
2852
-
2853
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:17
2854
- msgid "You did not create any user roles yet"
2855
- msgstr ""
2856
-
2857
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:18
2858
- #: includes/core/class-common.php:62 includes/core/class-common.php:91
2859
- msgid "Nothing found in Trash"
2860
- msgstr ""
2861
-
2862
- #: includes/admin/core/packages/2.0-beta1/user_roles.php:19
2863
- msgid "Search User Roles"
2864
- msgstr ""
2865
-
2866
- #: includes/admin/core/packages/2.0.10/functions.php:17
2867
- msgid "Users cache was cleared successfully"
2868
- msgstr ""
2869
-
2870
- #: includes/admin/core/packages/2.0.10/init.php:31
2871
- msgid "Clear Users Cache..."
2872
- msgstr ""
2873
-
2874
- #: includes/admin/core/packages/2.0.24/functions.php:9
2875
- msgid "Temporary dir was purged successfully"
2876
- msgstr ""
2877
-
2878
- #: includes/admin/core/packages/2.0.24/init.php:6
2879
- msgid "Purge temp files dir..."
2880
- msgstr ""
2881
-
2882
- #: includes/admin/templates/dashboard/cache.php:9
2883
- msgid "Run this task from time to time to keep your DB clean."
2884
- msgstr ""
2885
-
2886
- #: includes/admin/templates/dashboard/cache.php:12
2887
- #, php-format
2888
- msgid "Clear cache of %s users"
2889
- msgstr ""
2890
-
2891
- #: includes/admin/templates/dashboard/feed.php:4
2892
- msgid "Latest From Ultimate Member"
2893
- msgstr ""
2894
-
2895
- #: includes/admin/templates/dashboard/language-contrib.php:2
2896
- #, php-format
2897
- msgid ""
2898
- "Ultimate Member is not yet available in your language: <strong>%1$s</strong>."
2899
- msgstr ""
2900
-
2901
- #: includes/admin/templates/dashboard/language-contrib.php:6
2902
- msgid ""
2903
- "If you want to contribute this translation to the plugin, please add it on "
2904
- "our <a href=\"https://ultimatemember.com/forums/\">community forum</a>."
2905
- msgstr ""
2906
-
2907
- #: includes/admin/templates/dashboard/language-download.php:2
2908
- #, php-format
2909
- msgid ""
2910
- "Ultimate Member is available in your language: <strong>%1$s (%2$s)</strong>."
2911
- msgstr ""
2912
-
2913
- #: includes/admin/templates/dashboard/language-download.php:7
2914
- msgid "Download Translation"
2915
- msgstr ""
2916
-
2917
- #: includes/admin/templates/dashboard/language-update.php:2
2918
- #, php-format
2919
- msgid ""
2920
- "You are currently using Ultimate Member in your language: <strong>%1$s "
2921
- "(%2$s)</strong>."
2922
- msgstr ""
2923
-
2924
- #: includes/admin/templates/dashboard/language-update.php:7
2925
- msgid "Force Update Translation"
2926
- msgstr ""
2927
-
2928
- #: includes/admin/templates/dashboard/purge.php:4
2929
- #, php-format
2930
- msgid ""
2931
- "You can free up <span class=\"red\">%s MB</span> by purging your temp upload "
2932
- "directory."
2933
- msgstr ""
2934
-
2935
- #: includes/admin/templates/dashboard/purge.php:9
2936
- msgid "Purge Temp"
2937
- msgstr ""
2938
-
2939
- #: includes/admin/templates/dashboard/purge.php:16
2940
- msgid ""
2941
- "Your temp uploads directory is <span class=\"ok\">clean</span>. There is "
2942
- "nothing to purge."
2943
- msgstr ""
2944
-
2945
- #: includes/admin/templates/dashboard/upgrade-request.php:1
2946
- msgid ""
2947
- "Run this task from time to time if you have issues with WP Cron and need to "
2948
- "get UM extension updates."
2949
- msgstr ""
2950
-
2951
- #: includes/admin/templates/dashboard/upgrade-request.php:4
2952
- msgid "Get latest versions"
2953
- msgstr ""
2954
-
2955
- #: includes/admin/templates/dashboard/users.php:27
2956
- #: includes/core/class-user.php:824
2957
- msgid "Pending Review"
2958
- msgstr ""
2959
-
2960
- #: includes/admin/templates/dashboard/users.php:32
2961
- #: includes/core/class-user.php:820
2962
- msgid "Awaiting E-mail Confirmation"
2963
- msgstr ""
2964
-
2965
- #: includes/admin/templates/directory/appearance.php:9
2966
- #: includes/admin/templates/form/login_customize.php:20
2967
- #: includes/admin/templates/form/profile_customize.php:39
2968
- #: includes/admin/templates/form/register_customize.php:35
2969
- msgid "Template"
2970
- msgstr ""
2971
-
2972
- #: includes/admin/templates/directory/general.php:46
2973
- msgid "New users first"
2974
- msgstr ""
2975
-
2976
- #: includes/admin/templates/directory/general.php:47
2977
- msgid "Old users first"
2978
- msgstr ""
2979
-
2980
- #: includes/admin/templates/directory/general.php:48
2981
- msgid "Last login"
2982
- msgstr ""
2983
-
2984
- #: includes/admin/templates/directory/general.php:49
2985
- msgid "Display Name"
2986
- msgstr ""
2987
-
2988
- #: includes/admin/templates/directory/general.php:50
2989
- #: includes/core/class-builtin.php:707 includes/core/class-builtin.php:710
2990
- msgid "First Name"
2991
- msgstr ""
2992
-
2993
- #: includes/admin/templates/directory/general.php:51
2994
- #: includes/core/class-builtin.php:717 includes/core/class-builtin.php:720
2995
- msgid "Last Name"
2996
- msgstr ""
2997
-
2998
- #: includes/admin/templates/directory/general.php:52
2999
- msgid "Random"
3000
- msgstr ""
3001
-
3002
- #: includes/admin/templates/directory/general.php:53
3003
- msgid "Other (custom field)"
3004
- msgstr ""
3005
-
3006
- #: includes/admin/templates/directory/general.php:65
3007
- msgid "User Roles to Display"
3008
- msgstr ""
3009
-
3010
- #: includes/admin/templates/directory/general.php:66
3011
- msgid ""
3012
- "If you do not want to show all members, select only user roles to appear in "
3013
- "this directory"
3014
- msgstr ""
3015
-
3016
- #: includes/admin/templates/directory/general.php:74
3017
- msgid "Only show members who have uploaded a profile photo"
3018
- msgstr ""
3019
-
3020
- #: includes/admin/templates/directory/general.php:75
3021
- msgid "If 'Use Gravatars' as profile photo is enabled, this option is ignored"
3022
- msgstr ""
3023
-
3024
- #: includes/admin/templates/directory/general.php:81
3025
- msgid "Only show members who have uploaded a cover photo"
3026
- msgstr ""
3027
-
3028
- #: includes/admin/templates/directory/general.php:87
3029
- msgid "Sort users by"
3030
- msgstr ""
3031
-
3032
- #: includes/admin/templates/directory/general.php:88
3033
- msgid "Sort users by a specific parameter in the directory"
3034
- msgstr ""
3035
-
3036
- #: includes/admin/templates/directory/general.php:95
3037
- msgid "Meta key"
3038
- msgstr ""
3039
-
3040
- #: includes/admin/templates/directory/general.php:96
3041
- msgid "To sort by a custom field, enter the meta key of field here"
3042
- msgstr ""
3043
-
3044
- #: includes/admin/templates/directory/general.php:103
3045
- msgid "Only show specific users (Enter one username per line)"
3046
- msgstr ""
3047
-
3048
- #: includes/admin/templates/directory/pagination.php:9
3049
- msgid "Number of profiles per page"
3050
- msgstr ""
3051
-
3052
- #: includes/admin/templates/directory/pagination.php:10
3053
- msgid "Number of profiles to appear on page for standard users"
3054
- msgstr ""
3055
-
3056
- #: includes/admin/templates/directory/pagination.php:17
3057
- msgid "Number of profiles per page (for Mobiles & Tablets)"
3058
- msgstr ""
3059
-
3060
- #: includes/admin/templates/directory/pagination.php:18
3061
- msgid "Number of profiles to appear on page for mobile users"
3062
- msgstr ""
3063
-
3064
- #: includes/admin/templates/directory/pagination.php:25
3065
- msgid "Maximum number of profiles"
3066
- msgstr ""
3067
-
3068
- #: includes/admin/templates/directory/pagination.php:26
3069
- msgid ""
3070
- "Use this setting to control the maximum number of profiles to appear in this "
3071
- "directory. Leave blank to disable this limit"
3072
- msgstr ""
3073
-
3074
- #: includes/admin/templates/directory/profile.php:19
3075
- msgid "Enable Profile Photo"
3076
- msgstr ""
3077
-
3078
- #: includes/admin/templates/directory/profile.php:25
3079
- msgid "Enable Cover Photo"
3080
- msgstr ""
3081
-
3082
- #: includes/admin/templates/directory/profile.php:26
3083
- msgid "If turned on, the users cover photo will appear in the directory"
3084
- msgstr ""
3085
-
3086
- #: includes/admin/templates/directory/profile.php:32
3087
- msgid "Show display name"
3088
- msgstr ""
3089
-
3090
- #: includes/admin/templates/directory/profile.php:38
3091
- msgid "Show tagline below profile name"
3092
- msgstr ""
3093
-
3094
- #: includes/admin/templates/directory/profile.php:44
3095
- msgid "Choose field(s) to display in tagline"
3096
- msgstr ""
3097
-
3098
- #: includes/admin/templates/directory/profile.php:47
3099
- #: includes/admin/templates/directory/profile.php:69
3100
- #: includes/admin/templates/directory/search.php:78
3101
- msgid "Add New Custom Field"
3102
- msgstr ""
3103
-
3104
- #: includes/admin/templates/directory/profile.php:54
3105
- msgid "Show extra user information below tagline?"
3106
- msgstr ""
3107
-
3108
- #: includes/admin/templates/directory/profile.php:60
3109
- msgid "Enable reveal section transition by default"
3110
- msgstr ""
3111
-
3112
- #: includes/admin/templates/directory/profile.php:67
3113
- msgid "Choose field(s) to display in reveal section"
3114
- msgstr ""
3115
-
3116
- #: includes/admin/templates/directory/profile.php:77
3117
- msgid "Show social connect icons"
3118
- msgstr ""
3119
-
3120
- #: includes/admin/templates/directory/search.php:49
3121
- msgid "Enable Search feature"
3122
- msgstr ""
3123
-
3124
- #: includes/admin/templates/directory/search.php:50
3125
- msgid "If turned on, users will be able to search members in this directory"
3126
- msgstr ""
3127
-
3128
- #: includes/admin/templates/directory/search.php:56
3129
- msgid "Show results only after search"
3130
- msgstr ""
3131
-
3132
- #: includes/admin/templates/directory/search.php:57
3133
- msgid "If turned on, member results will only appear after search is performed"
3134
- msgstr ""
3135
-
3136
- #: includes/admin/templates/directory/search.php:65
3137
- msgid "User Roles that can use search"
3138
- msgstr ""
3139
-
3140
- #: includes/admin/templates/directory/search.php:66
3141
- msgid "If you want to allow specific user roles to be able to search only"
3142
- msgstr ""
3143
-
3144
- #: includes/admin/templates/directory/search.php:74
3145
- msgid "Choose field(s) to enable in search"
3146
- msgstr ""
3147
-
3148
- #: includes/admin/templates/directory/search.php:84
3149
- msgid "Results Text"
3150
- msgstr ""
3151
-
3152
- #: includes/admin/templates/directory/search.php:85
3153
- msgid ""
3154
- "Customize the search result text . e.g. Found 3,000 Members. Leave this "
3155
- "blank to not show result text"
3156
- msgstr ""
3157
-
3158
- #: includes/admin/templates/directory/search.php:86
3159
- #: includes/class-config.php:152 includes/class-config.php:247
3160
- msgid "{total_users} Members"
3161
- msgstr ""
3162
-
3163
- #: includes/admin/templates/directory/search.php:92
3164
- msgid "Single Result Text"
3165
- msgstr ""
3166
-
3167
- #: includes/admin/templates/directory/search.php:93
3168
- msgid "Same as above but in case of 1 user found only"
3169
- msgstr ""
3170
-
3171
- #: includes/admin/templates/directory/search.php:94
3172
- #: includes/class-config.php:153 includes/class-config.php:248
3173
- msgid "{total_users} Member"
3174
- msgstr ""
3175
-
3176
- #: includes/admin/templates/directory/search.php:100
3177
- msgid "Custom text if no users were found"
3178
- msgstr ""
3179
-
3180
- #: includes/admin/templates/directory/search.php:101
3181
- msgid ""
3182
- "This is the text that is displayed if no users are found during a search"
3183
- msgstr ""
3184
-
3185
- #: includes/admin/templates/directory/search.php:102
3186
- #: includes/class-config.php:154
3187
- msgid "We are sorry. We cannot find any users who match your search criteria."
3188
- msgstr ""
3189
-
3190
- #: includes/admin/templates/extensions.php:155
3191
- msgid "View our Extensions Bundle"
3192
- msgstr ""
3193
-
3194
- #: includes/admin/templates/extensions.php:164
3195
- msgid "Premium"
3196
- msgstr ""
3197
-
3198
- #: includes/admin/templates/extensions.php:169
3199
- msgid "Free"
3200
- msgstr ""
3201
-
3202
- #: includes/admin/templates/extensions.php:195
3203
- #: includes/admin/templates/extensions.php:229
3204
- msgid "Get this Add on"
3205
- msgstr ""
3206
-
3207
- #: includes/admin/templates/extensions.php:200
3208
- #: includes/admin/templates/extensions.php:234
3209
- msgid "More Details"
3210
- msgstr ""
3211
-
3212
- #: includes/admin/templates/form/builder.php:9
3213
- msgid "Live Preview"
3214
- msgstr ""
3215
-
3216
- #: includes/admin/templates/form/builder.php:23
3217
- msgid "Add Master Row"
3218
- msgstr ""
3219
-
3220
- #: includes/admin/templates/form/login_customize.php:9
3221
- #: includes/admin/templates/form/profile_customize.php:18
3222
- #: includes/admin/templates/form/register_customize.php:16
3223
- msgid "Apply custom settings to this form"
3224
- msgstr ""
3225
-
3226
- #: includes/admin/templates/form/login_customize.php:10
3227
- #: includes/admin/templates/form/profile_customize.php:19
3228
- #: includes/admin/templates/form/register_customize.php:17
3229
- msgid ""
3230
- "Switch to yes if you want to customize this form settings, styling &amp; "
3231
- "appearance"
3232
- msgstr ""
3233
-
3234
- #: includes/admin/templates/form/login_customize.php:28
3235
- #: includes/admin/templates/form/profile_customize.php:47
3236
- #: includes/admin/templates/form/register_customize.php:43
3237
- msgid "Max. Width (px)"
3238
- msgstr ""
3239
-
3240
- #: includes/admin/templates/form/login_customize.php:29
3241
- #: includes/admin/templates/form/profile_customize.php:48
3242
- #: includes/admin/templates/form/register_customize.php:44
3243
- msgid "The maximum width of shortcode in pixels e.g. 600px"
3244
- msgstr ""
3245
-
3246
- #: includes/admin/templates/form/login_customize.php:36
3247
- #: includes/admin/templates/form/profile_customize.php:63
3248
- #: includes/admin/templates/form/register_customize.php:51
3249
- msgid "Field Icons"
3250
- msgstr ""
3251
-
3252
- #: includes/admin/templates/form/login_customize.php:37
3253
- #: includes/admin/templates/form/profile_customize.php:64
3254
- #: includes/admin/templates/form/register_customize.php:52
3255
- msgid ""
3256
- "Whether to show field icons and where to show them relative to the field"
3257
- msgstr ""
3258
-
3259
- #: includes/admin/templates/form/login_customize.php:49
3260
- #: includes/admin/templates/form/profile_customize.php:76
3261
- #: includes/admin/templates/form/register_customize.php:64
3262
- msgid "Primary Button Text"
3263
- msgstr ""
3264
-
3265
- #: includes/admin/templates/form/login_customize.php:50
3266
- #: includes/admin/templates/form/login_customize.php:69
3267
- #: includes/admin/templates/form/profile_customize.php:77
3268
- #: includes/admin/templates/form/profile_customize.php:96
3269
- #: includes/admin/templates/form/register_customize.php:65
3270
- #: includes/admin/templates/form/register_customize.php:84
3271
- msgid "Customize the button text"
3272
- msgstr ""
3273
-
3274
- #: includes/admin/templates/form/login_customize.php:57
3275
- #: includes/admin/templates/form/profile_customize.php:84
3276
- #: includes/admin/templates/form/register_customize.php:72
3277
- msgid "Show Secondary Button"
3278
- msgstr ""
3279
-
3280
- #: includes/admin/templates/form/login_customize.php:68
3281
- #: includes/admin/templates/form/profile_customize.php:95
3282
- #: includes/admin/templates/form/register_customize.php:83
3283
- msgid "Secondary Button Text"
3284
- msgstr ""
3285
-
3286
- #: includes/admin/templates/form/login_customize.php:76
3287
- msgid "Show Forgot Password Link?"
3288
- msgstr ""
3289
-
3290
- #: includes/admin/templates/form/login_customize.php:87
3291
- msgid "Show \"Remember Me\"?"
3292
- msgstr ""
3293
-
3294
- #: includes/admin/templates/form/login_settings.php:9
3295
- msgid "Redirection after Login"
3296
- msgstr ""
3297
-
3298
- #: includes/admin/templates/form/login_settings.php:10
3299
- msgid ""
3300
- "Change this If you want to override role redirection settings after login "
3301
- "only."
3302
- msgstr ""
3303
-
3304
- #: includes/admin/templates/form/login_settings.php:14
3305
- #: includes/admin/templates/role/login.php:16
3306
- #: includes/admin/templates/role/register.php:27
3307
- msgid "Redirect to profile"
3308
- msgstr ""
3309
-
3310
- #: includes/admin/templates/form/login_settings.php:15
3311
- #: includes/admin/templates/role/login.php:17
3312
- #: includes/admin/templates/role/register.php:28
3313
- #: includes/admin/templates/role/register.php:55
3314
- #: includes/admin/templates/role/register.php:89
3315
- msgid "Redirect to URL"
3316
- msgstr ""
3317
-
3318
- #: includes/admin/templates/form/login_settings.php:16
3319
- #: includes/admin/templates/role/login.php:18
3320
- msgid "Refresh active page"
3321
- msgstr ""
3322
-
3323
- #: includes/admin/templates/form/login_settings.php:17
3324
- #: includes/admin/templates/role/login.php:19
3325
- msgid "Redirect to WordPress Admin"
3326
- msgstr ""
3327
-
3328
- #: includes/admin/templates/form/login_settings.php:23
3329
- #: includes/admin/templates/role/delete.php:23
3330
- #: includes/admin/templates/role/login.php:25
3331
- #: includes/admin/templates/role/logout.php:23
3332
- #: includes/admin/templates/role/register.php:35
3333
- #: includes/admin/templates/role/register.php:69
3334
- #: includes/admin/templates/role/register.php:103
3335
- msgid "Set Custom Redirect URL"
3336
- msgstr ""
3337
-
3338
- #: includes/admin/templates/form/mode.php:6
3339
- msgid ""
3340
- "<strong>Note:</strong> Form type cannot be changed for the default forms."
3341
- msgstr ""
3342
-
3343
- #: includes/admin/templates/form/mode.php:11
3344
- msgid "Profile Form"
3345
- msgstr ""
3346
-
3347
- #: includes/admin/templates/form/profile_customize.php:30
3348
- msgid "Make this profile form role-specific"
3349
- msgstr ""
3350
-
3351
- #: includes/admin/templates/form/profile_customize.php:31
3352
- msgid ""
3353
- "Please note if you make a profile form specific to a role then you must make "
3354
- "sure that every other role is assigned a profile form"
3355
- msgstr ""
3356
-
3357
- #: includes/admin/templates/form/profile_customize.php:55
3358
- msgid "Profile Area Max. Width (px)"
3359
- msgstr ""
3360
-
3361
- #: includes/admin/templates/form/profile_customize.php:103
3362
- msgid "Enable Cover Photos"
3363
- msgstr ""
3364
-
3365
- #: includes/admin/templates/form/profile_customize.php:114
3366
- msgid "Cover photo ratio"
3367
- msgstr ""
3368
-
3369
- #: includes/admin/templates/form/profile_customize.php:128
3370
- msgid "Set the profile photo size in pixels here"
3371
- msgstr ""
3372
-
3373
- #: includes/admin/templates/form/profile_customize.php:135
3374
- msgid "Make Profile Photo Required"
3375
- msgstr ""
3376
-
3377
- #: includes/admin/templates/form/profile_customize.php:136
3378
- msgid "Require user to update a profile photo when updating their profile"
3379
- msgstr ""
3380
-
3381
- #: includes/admin/templates/form/profile_customize.php:147
3382
- msgid "Show display name in profile header?"
3383
- msgstr ""
3384
-
3385
- #: includes/admin/templates/form/profile_customize.php:158
3386
- msgid "Show social links in profile header?"
3387
- msgstr ""
3388
-
3389
- #: includes/admin/templates/form/profile_customize.php:169
3390
- msgid "Show user description in profile header?"
3391
- msgstr ""
3392
-
3393
- #: includes/admin/templates/form/profile_settings.php:17
3394
- msgid "Field(s) to show in user meta"
3395
- msgstr ""
3396
-
3397
- #: includes/admin/templates/form/profile_settings.php:18
3398
- msgid ""
3399
- "Fields selected here will appear in the profile header area below the user's "
3400
- "display name"
3401
- msgstr ""
3402
-
3403
- #: includes/admin/templates/form/profile_settings.php:21
3404
- msgid "Add New Field"
3405
- msgstr ""
3406
-
3407
- #: includes/admin/templates/form/register_customize.php:27
3408
- msgid "Assign role to form"
3409
- msgstr ""
3410
-
3411
- #: includes/admin/templates/form/register_gdpr.php:5
3412
- msgid "Select page"
3413
- msgstr ""
3414
-
3415
- #: includes/admin/templates/form/register_gdpr.php:20
3416
- msgid "Enable on this form"
3417
- msgstr ""
3418
-
3419
- #: includes/admin/templates/form/register_gdpr.php:30
3420
- msgid "Content"
3421
- msgstr ""
3422
-
3423
- #: includes/admin/templates/form/register_gdpr.php:38
3424
- msgid "Toggle Show text"
3425
- msgstr ""
3426
-
3427
- #: includes/admin/templates/form/register_gdpr.php:39
3428
- #: includes/admin/templates/form/register_gdpr.php:40
3429
- #: templates/gdpr-register.php:15 templates/gdpr-register.php:17
3430
- msgid "Show privacy policy"
3431
- msgstr ""
3432
-
3433
- #: includes/admin/templates/form/register_gdpr.php:46
3434
- msgid "Toggle Hide text"
3435
- msgstr ""
3436
-
3437
- #: includes/admin/templates/form/register_gdpr.php:47
3438
- #: includes/admin/templates/form/register_gdpr.php:48
3439
- #: templates/gdpr-register.php:16
3440
- msgid "Hide privacy policy"
3441
- msgstr ""
3442
-
3443
- #: includes/admin/templates/form/register_gdpr.php:54
3444
- msgid "Checkbox agreement description"
3445
- msgstr ""
3446
-
3447
- #: includes/admin/templates/form/register_gdpr.php:55
3448
- #: includes/admin/templates/form/register_gdpr.php:56
3449
- #: templates/gdpr-register.php:28
3450
- msgid "Please confirm that you agree to our privacy policy"
3451
- msgstr ""
3452
-
3453
- #: includes/admin/templates/form/register_gdpr.php:62
3454
- msgid "Error Text"
3455
- msgstr ""
3456
-
3457
- #: includes/admin/templates/form/register_gdpr.php:63
3458
- #: includes/admin/templates/form/register_gdpr.php:64
3459
- #: templates/gdpr-register.php:37
3460
- msgid "Please confirm your acceptance of our privacy policy"
3461
- msgstr ""
3462
-
3463
- #: includes/admin/templates/gdpr.php:4
3464
- msgid "What personal data we collect and why we collect it"
3465
- msgstr ""
3466
-
3467
- #: includes/admin/templates/gdpr.php:10
3468
- #, php-format
3469
- msgid "%s provides you with forms for user registration, login and profiles."
3470
- msgstr ""
3471
-
3472
- #: includes/admin/templates/gdpr.php:13
3473
- msgid "Via these forms you are collecting personal data from your users."
3474
- msgstr ""
3475
-
3476
- #: includes/admin/templates/gdpr.php:16
3477
- msgid ""
3478
- "You should include in your privacy policy what personal data is captured "
3479
- "when someone submits/fills in one of the forms, why you collect it and what "
3480
- "you do with this data and how long you keep it."
3481
- msgstr ""
3482
-
3483
- #: includes/admin/templates/gdpr.php:20
3484
- msgid "How long we retain your data"
3485
- msgstr ""
3486
-
3487
- #: includes/admin/templates/gdpr.php:23
3488
- msgid ""
3489
- "Registered user information is retained in your website’s database "
3490
- "indefinitely."
3491
- msgstr ""
3492
-
3493
- #: includes/admin/templates/gdpr.php:26
3494
- msgid ""
3495
- "Data can be exported or removed upon users request via the existing "
3496
- "WordPress data exporter or eraser."
3497
- msgstr ""
3498
-
3499
- #: includes/admin/templates/gdpr.php:29
3500
- msgid ""
3501
- "If syncing data to a 3rd party service (e.g Mailchimp via our MailChimp "
3502
- "extension), data is retained there until unsubscribed or deleted."
3503
- msgstr ""
3504
-
3505
- #: includes/admin/templates/gdpr.php:33
3506
- msgid "Where we send your data"
3507
- msgstr ""
3508
-
3509
- #: includes/admin/templates/gdpr.php:36
3510
- #, php-format
3511
- msgid "%s does not send any user data outside of your site by default."
3512
- msgstr ""
3513
-
3514
- #: includes/admin/templates/gdpr.php:39
3515
- msgid ""
3516
- "If you have extended the functionality of the plugin (e.g sending registered "
3517
- "user data to MailChimp via our MailChimp extension, this user info may be "
3518
- "passed to these external services. These services may be located abroad and "
3519
- "outwith the EU."
3520
- msgstr ""
3521
-
3522
- #: includes/admin/templates/modal/dynamic_edit_field.php:6
3523
- msgid "Edit Field"
3524
- msgstr ""
3525
-
3526
- #: includes/admin/templates/modal/dynamic_edit_field.php:12
3527
- #: includes/admin/templates/modal/dynamic_edit_row.php:12
3528
- msgid "Update"
3529
- msgstr ""
3530
-
3531
- #: includes/admin/templates/modal/dynamic_edit_field.php:14
3532
- #: includes/admin/templates/modal/dynamic_edit_row.php:14
3533
- #: includes/admin/templates/modal/dynamic_new_divider.php:14
3534
- #: includes/admin/templates/modal/dynamic_new_field.php:14
3535
- #: includes/admin/templates/modal/dynamic_new_group.php:14
3536
- #: includes/admin/templates/modal/fonticons.php:11
3537
- #: includes/admin/templates/role/publish.php:24
3538
- #: includes/core/class-fields.php:2271 includes/core/class-fields.php:2354
3539
- #: includes/core/um-actions-profile.php:554
3540
- #: includes/core/um-actions-profile.php:693
3541
- #: includes/core/um-actions-profile.php:726
3542
- #: includes/core/um-actions-profile.php:1073
3543
- #: includes/core/um-actions-profile.php:1080
3544
- msgid "Cancel"
3545
- msgstr ""
3546
-
3547
- #: includes/admin/templates/modal/dynamic_edit_row.php:6
3548
- msgid "Edit Row Settings"
3549
- msgstr ""
3550
-
3551
- #: includes/admin/templates/modal/dynamic_form_preview.php:4
3552
- msgid "Live Form Preview"
3553
- msgstr ""
3554
-
3555
- #: includes/admin/templates/modal/dynamic_form_preview.php:10
3556
- msgid "Continue editing"
3557
- msgstr ""
3558
-
3559
- #: includes/admin/templates/modal/dynamic_new_divider.php:6
3560
- msgid "Add a New Divider"
3561
- msgstr ""
3562
-
3563
- #: includes/admin/templates/modal/dynamic_new_divider.php:12
3564
- #: includes/admin/templates/modal/dynamic_new_field.php:12
3565
- #: includes/admin/templates/modal/dynamic_new_group.php:12
3566
- msgid "Add"
3567
- msgstr ""
3568
-
3569
- #: includes/admin/templates/modal/dynamic_new_field.php:6
3570
- msgid "Add a New Field"
3571
- msgstr ""
3572
-
3573
- #: includes/admin/templates/modal/dynamic_new_group.php:6
3574
- msgid "Add a New Field Group"
3575
- msgstr ""
3576
-
3577
- #: includes/admin/templates/modal/dynamic_registration_preview.php:4
3578
- msgid "Review Registration Details"
3579
- msgstr ""
3580
-
3581
- #: includes/admin/templates/modal/fields.php:4
3582
- msgid "Fields Manager"
3583
- msgstr ""
3584
-
3585
- #: includes/admin/templates/modal/fonticons.php:4
3586
- #, php-format
3587
- msgid "Choose from %s available icons"
3588
- msgstr ""
3589
-
3590
- #: includes/admin/templates/modal/fonticons.php:10
3591
- msgid "Finish"
3592
- msgstr ""
3593
-
3594
- #: includes/admin/templates/role/admin-permissions.php:11
3595
- msgid "Can access wp-admin?"
3596
- msgstr ""
3597
-
3598
- #: includes/admin/templates/role/admin-permissions.php:12
3599
- msgid ""
3600
- "The core admin role must always have access to wp-admin / WordPress backend"
3601
- msgstr ""
3602
-
3603
- #: includes/admin/templates/role/admin-permissions.php:18
3604
- msgid "Force hiding adminbar in frontend?"
3605
- msgstr ""
3606
-
3607
- #: includes/admin/templates/role/admin-permissions.php:19
3608
- msgid "Show/hide the adminbar on frontend"
3609
- msgstr ""
3610
-
3611
- #: includes/admin/templates/role/admin-permissions.php:25
3612
- msgid "Can edit other member accounts?"
3613
- msgstr ""
3614
-
3615
- #: includes/admin/templates/role/admin-permissions.php:26
3616
- #: includes/admin/templates/role/admin-permissions.php:43
3617
- msgid "Allow this role to edit accounts of other members"
3618
- msgstr ""
3619
-
3620
- #: includes/admin/templates/role/admin-permissions.php:32
3621
- msgid "Can edit these user roles only"
3622
- msgstr ""
3623
-
3624
- #: includes/admin/templates/role/admin-permissions.php:33
3625
- #: includes/admin/templates/role/admin-permissions.php:50
3626
- msgid ""
3627
- "Which roles that role can edit, choose none to allow role to edit all member "
3628
- "roles"
3629
- msgstr ""
3630
-
3631
- #: includes/admin/templates/role/admin-permissions.php:42
3632
- msgid "Can delete other member accounts?"
3633
- msgstr ""
3634
-
3635
- #: includes/admin/templates/role/admin-permissions.php:49
3636
- msgid "Can delete these user roles only"
3637
- msgstr ""
3638
-
3639
- #: includes/admin/templates/role/delete.php:12
3640
- msgid "Action to be taken after account is deleted"
3641
- msgstr ""
3642
-
3643
- #: includes/admin/templates/role/delete.php:13
3644
- msgid ""
3645
- "Select what happens when a user with this role deletes their own account"
3646
- msgstr ""
3647
-
3648
- #: includes/admin/templates/role/delete.php:16
3649
- #: includes/admin/templates/role/logout.php:16
3650
- msgid "Go to Homepage"
3651
- msgstr ""
3652
-
3653
- #: includes/admin/templates/role/delete.php:17
3654
- #: includes/admin/templates/role/logout.php:17
3655
- msgid "Go to Custom URL"
3656
- msgstr ""
3657
-
3658
- #: includes/admin/templates/role/delete.php:24
3659
- msgid "Set a url to redirect this user role to after they delete account"
3660
- msgstr ""
3661
-
3662
- #: includes/admin/templates/role/general.php:11
3663
- msgid "Can edit their profile?"
3664
- msgstr ""
3665
-
3666
- #: includes/admin/templates/role/general.php:12
3667
- msgid "Can this role edit his own profile?"
3668
- msgstr ""
3669
-
3670
- #: includes/admin/templates/role/general.php:18
3671
- msgid "Can delete their account?"
3672
- msgstr ""
3673
-
3674
- #: includes/admin/templates/role/general.php:19
3675
- msgid ""
3676
- "Allow this role to delete their account and end their membership on your site"
3677
- msgstr ""
3678
-
3679
- #: includes/admin/templates/role/home.php:12
3680
- msgid "Can view default homepage?"
3681
- msgstr ""
3682
-
3683
- #: includes/admin/templates/role/home.php:13
3684
- msgid "Allow this user role to view your site's homepage"
3685
- msgstr ""
3686
-
3687
- #: includes/admin/templates/role/home.php:19
3688
- msgid "Custom Homepage Redirect"
3689
- msgstr ""
3690
-
3691
- #: includes/admin/templates/role/home.php:20
3692
- msgid ""
3693
- "Set a url to redirect this user role to if they try to view your site's "
3694
- "homepage"
3695
- msgstr ""
3696
-
3697
- #: includes/admin/templates/role/login.php:12
3698
- msgid "Action to be taken after login"
3699
- msgstr ""
3700
-
3701
- #: includes/admin/templates/role/login.php:13
3702
- msgid "Select what happens when a user with this role logins to your site"
3703
- msgstr ""
3704
-
3705
- #: includes/admin/templates/role/login.php:26
3706
- msgid ""
3707
- "Set a url to redirect this user role to after they login with their account"
3708
- msgstr ""
3709
-
3710
- #: includes/admin/templates/role/logout.php:12
3711
- msgid "Action to be taken after logout"
3712
- msgstr ""
3713
-
3714
- #: includes/admin/templates/role/logout.php:13
3715
- msgid "Select what happens when a user with this role logouts of your site"
3716
- msgstr ""
3717
-
3718
- #: includes/admin/templates/role/logout.php:24
3719
- msgid "Set a url to redirect this user role to after they logout from site"
3720
- msgstr ""
3721
-
3722
- #: includes/admin/templates/role/profile.php:11
3723
- msgid "Can view other member profiles?"
3724
- msgstr ""
3725
-
3726
- #: includes/admin/templates/role/profile.php:12
3727
- msgid "Can this role view all member profiles?"
3728
- msgstr ""
3729
-
3730
- #: includes/admin/templates/role/profile.php:18
3731
- msgid "Can view these user roles only"
3732
- msgstr ""
3733
-
3734
- #: includes/admin/templates/role/profile.php:19
3735
- msgid ""
3736
- "Which roles that role can view, choose none to allow role to view all member "
3737
- "roles"
3738
- msgstr ""
3739
-
3740
- #: includes/admin/templates/role/profile.php:29
3741
- msgid "Can make their profile private?"
3742
- msgstr ""
3743
-
3744
- #: includes/admin/templates/role/profile.php:30
3745
- msgid "Can this role make their profile private?"
3746
- msgstr ""
3747
-
3748
- #: includes/admin/templates/role/profile.php:37
3749
- msgid "Can view/access private profiles?"
3750
- msgstr ""
3751
-
3752
- #: includes/admin/templates/role/profile.php:38
3753
- msgid "Can this role view private profiles?"
3754
- msgstr ""
3755
-
3756
- #: includes/admin/templates/role/publish.php:14
3757
- msgid "Role Priority"
3758
- msgstr ""
3759
-
3760
- #: includes/admin/templates/role/publish.php:15
3761
- msgid "The higher the number, the higher the priority"
3762
- msgstr ""
3763
-
3764
- #: includes/admin/templates/role/publish.php:23
3765
- msgid "Update Role"
3766
- msgstr ""
3767
-
3768
- #: includes/admin/templates/role/publish.php:23
3769
- msgid "Create Role"
3770
- msgstr ""
3771
-
3772
- #: includes/admin/templates/role/register.php:11
3773
- msgid "Registration Status"
3774
- msgstr ""
3775
-
3776
- #: includes/admin/templates/role/register.php:12
3777
- msgid ""
3778
- "Select the status you would like this user role to have after they register "
3779
- "on your site"
3780
- msgstr ""
3781
-
3782
- #: includes/admin/templates/role/register.php:15
3783
- msgid "Auto Approve"
3784
- msgstr ""
3785
-
3786
- #: includes/admin/templates/role/register.php:16
3787
- msgid "Require Email Activation"
3788
- msgstr ""
3789
-
3790
- #: includes/admin/templates/role/register.php:17
3791
- msgid "Require Admin Review"
3792
- msgstr ""
3793
-
3794
- #: includes/admin/templates/role/register.php:23
3795
- #: includes/admin/templates/role/register.php:50
3796
- #: includes/admin/templates/role/register.php:84
3797
- msgid "Action to be taken after registration"
3798
- msgstr ""
3799
-
3800
- #: includes/admin/templates/role/register.php:24
3801
- #: includes/admin/templates/role/register.php:51
3802
- #: includes/admin/templates/role/register.php:85
3803
- msgid ""
3804
- "Select what action is taken after a person registers on your site. Depending "
3805
- "on the status you can redirect them to their profile, a custom url or show a "
3806
- "custom message"
3807
- msgstr ""
3808
-
3809
- #: includes/admin/templates/role/register.php:42
3810
- msgid "Login user after validating the activation link?"
3811
- msgstr ""
3812
-
3813
- #: includes/admin/templates/role/register.php:43
3814
- msgid "Login the user after validating the activation link"
3815
- msgstr ""
3816
-
3817
- #: includes/admin/templates/role/register.php:54
3818
- #: includes/admin/templates/role/register.php:88
3819
- msgid "Show custom message"
3820
- msgstr ""
3821
-
3822
- #: includes/admin/templates/role/register.php:62
3823
- #: includes/admin/templates/role/register.php:96
3824
- msgid "Personalize the custom message"
3825
- msgstr ""
3826
-
3827
- #: includes/admin/templates/role/register.php:63
3828
- msgid ""
3829
- "Thank you for registering. Before you can login we need you to activate your "
3830
- "account by clicking the activation link in the email we just sent you."
3831
- msgstr ""
3832
-
3833
- #: includes/admin/templates/role/register.php:76
3834
- msgid "URL redirect after e-mail activation"
3835
- msgstr ""
3836
-
3837
- #: includes/admin/templates/role/register.php:77
3838
- msgid ""
3839
- "If you want users to go to a specific page other than login page after e-"
3840
- "mail activation, enter the URL here."
3841
- msgstr ""
3842
-
3843
- #: includes/admin/templates/role/register.php:97
3844
- msgid ""
3845
- "Thank you for applying for membership to our site. We will review your "
3846
- "details and send you an email letting you know whether your application has "
3847
- "been successful or not."
3848
- msgstr ""
3849
-
3850
- #: includes/admin/templates/role/role-edit.php:70
3851
- msgid "Title is empty!"
3852
- msgstr ""
3853
-
3854
- #: includes/admin/templates/role/role-edit.php:95
3855
- msgid "Role already exists!"
3856
- msgstr ""
3857
-
3858
- #: includes/admin/templates/role/role-edit.php:134
3859
- msgid "Add New Role"
3860
- msgstr ""
3861
-
3862
- #: includes/admin/templates/role/role-edit.php:134
3863
- msgid "Edit Role"
3864
- msgstr ""
3865
-
3866
- #: includes/admin/templates/role/role-edit.php:143
3867
- msgid "User Role <strong>Added</strong> Successfully."
3868
- msgstr ""
3869
-
3870
- #: includes/admin/templates/role/role-edit.php:146
3871
- msgid "User Role <strong>Updated</strong> Successfully."
3872
- msgstr ""
3873
-
3874
- #: includes/admin/templates/role/role-edit.php:172
3875
- msgid "Enter Title Here"
3876
- msgstr ""
3877
-
3878
- #: includes/admin/templates/role/wp-capabilities.php:36
3879
- msgid "Uncheck All"
3880
- msgstr ""
3881
-
3882
- #: includes/admin/templates/role/wp-capabilities.php:38
3883
- #: includes/admin/templates/role/wp-capabilities.php:46
3884
- msgid "Check All"
3885
- msgstr ""
3886
-
3887
- #: includes/class-config.php:129 includes/class-config.php:733
3888
- msgid "User"
3889
- msgstr ""
3890
-
3891
- #: includes/class-config.php:130 includes/class-config.php:234
3892
- #: includes/class-config.php:240 includes/class-config.php:734
3893
- msgid "Login"
3894
- msgstr ""
3895
-
3896
- #: includes/class-config.php:131 includes/class-config.php:232
3897
- #: includes/class-config.php:244 includes/class-config.php:735
3898
- msgid "Register"
3899
- msgstr ""
3900
-
3901
- #: includes/class-config.php:132 includes/class-config.php:736
3902
- msgid "Members"
3903
- msgstr ""
3904
-
3905
- #: includes/class-config.php:133 includes/class-config.php:737
3906
- #: includes/core/um-actions-profile.php:1079
3907
- #: includes/core/um-actions-user.php:15
3908
- msgid "Logout"
3909
- msgstr ""
3910
-
3911
- #: includes/class-config.php:135 includes/class-config.php:739
3912
- #: includes/core/class-builtin.php:1092
3913
- msgid "Password Reset"
3914
- msgstr ""
3915
-
3916
- #: includes/class-config.php:307
3917
- msgid "Account Welcome Email"
3918
- msgstr ""
3919
-
3920
- #: includes/class-config.php:318
3921
- msgid ""
3922
- "Whether to send the user an email when his account is automatically approved"
3923
- msgstr ""
3924
-
3925
- #: includes/class-config.php:324
3926
- msgid "Account Activation Email"
3927
- msgstr ""
3928
-
3929
- #: includes/class-config.php:332
3930
- msgid ""
3931
- "Whether to send the user an email when his account needs e-mail activation"
3932
- msgstr ""
3933
-
3934
- #: includes/class-config.php:337
3935
- msgid "Your account is pending review"
3936
- msgstr ""
3937
-
3938
- #: includes/class-config.php:345
3939
- msgid "Whether to send the user an email when his account needs admin review"
3940
- msgstr ""
3941
-
3942
- #: includes/class-config.php:350
3943
- msgid "Account Approved Email"
3944
- msgstr ""
3945
-
3946
- #: includes/class-config.php:362
3947
- msgid "Whether to send the user an email when his account is approved"
3948
- msgstr ""
3949
-
3950
- #: includes/class-config.php:367
3951
- msgid "Account Rejected Email"
3952
- msgstr ""
3953
-
3954
- #: includes/class-config.php:374
3955
- msgid "Whether to send the user an email when his account is rejected"
3956
- msgstr ""
3957
-
3958
- #: includes/class-config.php:379
3959
- msgid "Account Deactivated Email"
3960
- msgstr ""
3961
-
3962
- #: includes/class-config.php:386
3963
- msgid "Whether to send the user an email when his account is deactivated"
3964
- msgstr ""
3965
-
3966
- #: includes/class-config.php:392
3967
- msgid "Account Deleted Email"
3968
- msgstr ""
3969
-
3970
- #: includes/class-config.php:399
3971
- msgid "Whether to send the user an email when his account is deleted"
3972
- msgstr ""
3973
-
3974
- #: includes/class-config.php:405
3975
- msgid "Password Reset Email"
3976
- msgstr ""
3977
-
3978
- #: includes/class-config.php:413
3979
- msgid ""
3980
- "Whether to send an email when users changed their password (Recommended, "
3981
- "please keep on)"
3982
- msgstr ""
3983
-
3984
- #: includes/class-config.php:419
3985
- msgid "Password Changed Email"
3986
- msgstr ""
3987
-
3988
- #: includes/class-config.php:426
3989
- msgid ""
3990
- "Whether to send the user an email when he request to reset password "
3991
- "(Recommended, please keep on)"
3992
- msgstr ""
3993
-
3994
- #: includes/class-config.php:432
3995
- msgid "Account Updated Email"
3996
- msgstr ""
3997
-
3998
- #: includes/class-config.php:439
3999
- msgid "Whether to send the user an email when he updated their account"
4000
- msgstr ""
4001
-
4002
- #: includes/class-config.php:445
4003
- msgid "New User Notification"
4004
- msgstr ""
4005
-
4006
- #: includes/class-config.php:451
4007
- msgid "Whether to receive notification when a new user account is approved"
4008
- msgstr ""
4009
-
4010
- #: includes/class-config.php:457
4011
- msgid "Account Needs Review Notification"
4012
- msgstr ""
4013
-
4014
- #: includes/class-config.php:464
4015
- msgid "Whether to receive notification when an account needs admin review"
4016
- msgstr ""
4017
-
4018
- #: includes/class-config.php:469
4019
- msgid "Account Deletion Notification"
4020
- msgstr ""
4021
-
4022
- #: includes/class-config.php:472
4023
- msgid "Whether to receive notification when an account is deleted"
4024
- msgstr ""
4025
-
4026
- #: includes/class-config.php:495
4027
- msgid ""
4028
- "Are you sure you want to delete your account? This will erase all of your "
4029
- "account data from the site. To delete your account enter your password below"
4030
- msgstr ""
4031
-
4032
- #: includes/class-dependencies.php:160
4033
- #, php-format
4034
- msgid ""
4035
- "This version of <strong>\"%s\"</strong> requires the core <strong>%s</"
4036
- "strong> plugin to be <strong>%s</strong> or higher."
4037
- msgstr ""
4038
-
4039
- #: includes/class-dependencies.php:162
4040
- #, php-format
4041
- msgid "Please update <strong>%s</strong> to the latest version."
4042
- msgstr ""
4043
-
4044
- #: includes/class-dependencies.php:164
4045
- #, php-format
4046
- msgid ""
4047
- "Sorry, but this version of <strong>%s</strong> does not work with extension "
4048
- "<strong>\"%s\" %s</strong> version."
4049
- msgstr ""
4050
-
4051
- #: includes/class-dependencies.php:166
4052
- #, php-format
4053
- msgid "Please update extension <strong>\"%s\"</strong> to the latest version."
4054
- msgstr ""
4055
-
4056
- #: includes/class-dependencies.php:175
4057
- #, php-format
4058
- msgid "Please check <strong>\"%s\" %s</strong> extension's folder name."
4059
- msgstr ""
4060
-
4061
- #: includes/class-dependencies.php:177
4062
- #, php-format
4063
- msgid "Correct folder name is <strong>\"%s\"</strong>"
4064
- msgstr ""
4065
-
4066
- #: includes/class-init.php:147 includes/class-init.php:156
4067
- msgid "Cheatin&#8217; huh?"
4068
- msgstr ""
4069
-
4070
- #: includes/core/class-account.php:91
4071
- msgid "Update Account"
4072
- msgstr ""
4073
-
4074
- #: includes/core/class-account.php:96
4075
- msgid "Change Password"
4076
- msgstr ""
4077
-
4078
- #: includes/core/class-account.php:97
4079
- msgid "Update Password"
4080
- msgstr ""
4081
-
4082
- #: includes/core/class-account.php:102
4083
- msgid "Privacy"
4084
- msgstr ""
4085
-
4086
- #: includes/core/class-account.php:103
4087
- msgid "Update Privacy"
4088
- msgstr ""
4089
-
4090
- #: includes/core/class-account.php:108
4091
- msgid "Notifications"
4092
- msgstr ""
4093
-
4094
- #: includes/core/class-account.php:109
4095
- msgid "Update Notifications"
4096
- msgstr ""
4097
-
4098
- #: includes/core/class-account.php:117 includes/core/class-account.php:118
4099
- #: includes/core/class-builtin.php:1143 includes/core/class-builtin.php:1146
4100
- msgid "Delete Account"
4101
- msgstr ""
4102
-
4103
- #: includes/core/class-builtin.php:132
4104
- msgid "Please provide a meta key"
4105
- msgstr ""
4106
-
4107
- #: includes/core/class-builtin.php:133
4108
- msgid "Your meta key is a reserved core field and cannot be used"
4109
- msgstr ""
4110
-
4111
- #: includes/core/class-builtin.php:134
4112
- msgid "Your meta key is a predefined reserved key and cannot be used"
4113
- msgstr ""
4114
-
4115
- #: includes/core/class-builtin.php:135
4116
- msgid "Your meta key already exists in your fields list"
4117
- msgstr ""
4118
-
4119
- #: includes/core/class-builtin.php:136
4120
- msgid "Your meta key contains illegal characters. Please correct it."
4121
- msgstr ""
4122
-
4123
- #: includes/core/class-builtin.php:149
4124
- msgid "Please provide a date range beginning"
4125
- msgstr ""
4126
-
4127
- #: includes/core/class-builtin.php:150
4128
- msgid "Please enter a valid start date in the date range"
4129
- msgstr ""
4130
-
4131
- #: includes/core/class-builtin.php:164
4132
- msgid "Please provide a date range end"
4133
- msgstr ""
4134
-
4135
- #: includes/core/class-builtin.php:165
4136
- msgid "Please enter a valid end date in the date range"
4137
- msgstr ""
4138
-
4139
- #: includes/core/class-builtin.php:166
4140
- msgid "The end of date range must be greater than the start of date range"
4141
- msgstr ""
4142
-
4143
- #: includes/core/class-builtin.php:208 includes/core/class-builtin.php:224
4144
- #: includes/core/class-builtin.php:240 includes/core/class-builtin.php:256
4145
- #: includes/core/class-builtin.php:276 includes/core/class-builtin.php:296
4146
- #: includes/core/class-builtin.php:316 includes/core/class-builtin.php:336
4147
- #: includes/core/class-builtin.php:352 includes/core/class-builtin.php:368
4148
- #: includes/core/class-builtin.php:388 includes/core/class-builtin.php:408
4149
- #: includes/core/class-builtin.php:434 includes/core/class-builtin.php:450
4150
- #: includes/core/class-builtin.php:467 includes/core/class-builtin.php:480
4151
- #: includes/core/class-builtin.php:497 includes/core/class-builtin.php:510
4152
- #: includes/core/class-builtin.php:523 includes/core/class-builtin.php:539
4153
- #: includes/core/class-builtin.php:555 includes/core/class-builtin.php:571
4154
- msgid "You must provide a title"
4155
- msgstr ""
4156
-
4157
- #: includes/core/class-builtin.php:217
4158
- msgid "Number"
4159
- msgstr ""
4160
-
4161
- #: includes/core/class-builtin.php:263 includes/core/class-builtin.php:283
4162
- #: includes/core/class-builtin.php:303 includes/core/class-builtin.php:323
4163
- msgid "You have not added any choices yet."
4164
- msgstr ""
4165
-
4166
- #: includes/core/class-builtin.php:375 includes/core/class-builtin.php:395
4167
- msgid "Please enter a valid size"
4168
- msgstr ""
4169
-
4170
- #: includes/core/class-builtin.php:415
4171
- msgid "Number of years is not valid"
4172
- msgstr ""
4173
-
4174
- #: includes/core/class-builtin.php:484
4175
- msgid "You must add a shortcode to the content area"
4176
- msgstr ""
4177
-
4178
- #: includes/core/class-builtin.php:663 includes/core/class-user.php:1536
4179
- msgid "Only me"
4180
- msgstr ""
4181
-
4182
- #: includes/core/class-builtin.php:682 includes/core/class-builtin.php:685
4183
- #: includes/core/class-builtin.php:1099
4184
- msgid "Username or E-mail"
4185
- msgstr ""
4186
-
4187
- #: includes/core/class-builtin.php:693 includes/core/class-builtin.php:696
4188
- #: includes/core/class-builtin.php:1157 includes/core/class-builtin.php:1160
4189
- msgid "Password"
4190
- msgstr ""
4191
-
4192
- #: includes/core/class-builtin.php:737 includes/core/class-builtin.php:740
4193
- #: includes/core/class-builtin.php:1334
4194
- msgid "Website URL"
4195
- msgstr ""
4196
-
4197
- #: includes/core/class-builtin.php:748 includes/core/class-builtin.php:751
4198
- msgid "Registration Date"
4199
- msgstr ""
4200
-
4201
- #: includes/core/class-builtin.php:759 includes/core/class-builtin.php:762
4202
- msgid "Last Login"
4203
- msgstr ""
4204
-
4205
- #: includes/core/class-builtin.php:770 includes/core/class-builtin.php:773
4206
- msgid "E-mail Address"
4207
- msgstr ""
4208
-
4209
- #: includes/core/class-builtin.php:781 includes/core/class-builtin.php:784
4210
- msgid "Secondary E-mail Address"
4211
- msgstr ""
4212
-
4213
- #: includes/core/class-builtin.php:793 includes/core/class-builtin.php:796
4214
- msgid "Biography"
4215
- msgstr ""
4216
-
4217
- #: includes/core/class-builtin.php:802
4218
- msgid "Enter a bit about yourself..."
4219
- msgstr ""
4220
-
4221
- #: includes/core/class-builtin.php:806 includes/core/class-builtin.php:809
4222
- msgid "Birth Date"
4223
- msgstr ""
4224
-
4225
- #: includes/core/class-builtin.php:820 includes/core/class-builtin.php:823
4226
- msgid "Gender"
4227
- msgstr ""
4228
-
4229
- #: includes/core/class-builtin.php:827
4230
- msgid "Male"
4231
- msgstr ""
4232
-
4233
- #: includes/core/class-builtin.php:827
4234
- msgid "Female"
4235
- msgstr ""
4236
-
4237
- #: includes/core/class-builtin.php:831 includes/core/class-builtin.php:834
4238
- msgid "Country"
4239
- msgstr ""
4240
-
4241
- #: includes/core/class-builtin.php:835
4242
- msgid "Choose a Country"
4243
- msgstr ""
4244
-
4245
- #: includes/core/class-builtin.php:843 includes/core/class-builtin.php:846
4246
- msgid "Facebook"
4247
- msgstr ""
4248
-
4249
- #: includes/core/class-builtin.php:861 includes/core/class-builtin.php:864
4250
- msgid "Twitter"
4251
- msgstr ""
4252
-
4253
- #: includes/core/class-builtin.php:879 includes/core/class-builtin.php:882
4254
- msgid "LinkedIn"
4255
- msgstr ""
4256
-
4257
- #: includes/core/class-builtin.php:897 includes/core/class-builtin.php:900
4258
- msgid "Google+"
4259
- msgstr ""
4260
-
4261
- #: includes/core/class-builtin.php:915 includes/core/class-builtin.php:918
4262
- msgid "Instagram"
4263
- msgstr ""
4264
-
4265
- #: includes/core/class-builtin.php:933 includes/core/class-builtin.php:936
4266
- #: includes/core/class-builtin.php:1327
4267
- msgid "Skype ID"
4268
- msgstr ""
4269
-
4270
- #: includes/core/class-builtin.php:948 includes/core/class-builtin.php:951
4271
- msgid "YouTube"
4272
- msgstr ""
4273
-
4274
- #: includes/core/class-builtin.php:966 includes/core/class-builtin.php:969
4275
- msgid "SoundCloud"
4276
- msgstr ""
4277
-
4278
- #: includes/core/class-builtin.php:984 includes/core/class-builtin.php:987
4279
- msgid "VKontakte"
4280
- msgstr ""
4281
-
4282
- #: includes/core/class-builtin.php:1002
4283
- msgid "Roles (Dropdown)"
4284
- msgstr ""
4285
-
4286
- #: includes/core/class-builtin.php:1005 includes/core/class-builtin.php:1017
4287
- msgid "Account Type"
4288
- msgstr ""
4289
-
4290
- #: includes/core/class-builtin.php:1014
4291
- msgid "Roles (Radio)"
4292
- msgstr ""
4293
-
4294
- #: includes/core/class-builtin.php:1025
4295
- msgid "Languages"
4296
- msgstr ""
4297
-
4298
- #: includes/core/class-builtin.php:1028
4299
- msgid "Languages Spoken"
4300
- msgstr ""
4301
-
4302
- #: includes/core/class-builtin.php:1029
4303
- msgid "Select languages"
4304
- msgstr ""
4305
-
4306
- #: includes/core/class-builtin.php:1037 includes/core/class-builtin.php:1040
4307
- #: includes/core/class-builtin.php:1326
4308
- msgid "Phone Number"
4309
- msgstr ""
4310
-
4311
- #: includes/core/class-builtin.php:1049 includes/core/class-builtin.php:1052
4312
- msgid "Mobile Number"
4313
- msgstr ""
4314
-
4315
- #: includes/core/class-builtin.php:1063
4316
- msgid "Profile Photo"
4317
- msgstr ""
4318
-
4319
- #: includes/core/class-builtin.php:1066
4320
- msgid "Change your profile photo"
4321
- msgstr ""
4322
-
4323
- #: includes/core/class-builtin.php:1067
4324
- msgid "Upload your photo here"
4325
- msgstr ""
4326
-
4327
- #: includes/core/class-builtin.php:1077
4328
- msgid "Cover Photo"
4329
- msgstr ""
4330
-
4331
- #: includes/core/class-builtin.php:1080
4332
- #: includes/core/um-actions-profile.php:516
4333
- msgid "Change your cover photo"
4334
- msgstr ""
4335
-
4336
- #: includes/core/class-builtin.php:1081
4337
- msgid "Upload profile cover here"
4338
- msgstr ""
4339
-
4340
- #: includes/core/class-builtin.php:1094
4341
- msgid ""
4342
- "To reset your password, please enter your email address or username below"
4343
- msgstr ""
4344
-
4345
- #: includes/core/class-builtin.php:1102
4346
- msgid "Enter your username or email"
4347
- msgstr ""
4348
-
4349
- #: includes/core/class-builtin.php:1112 includes/core/class-builtin.php:1115
4350
- msgid "Profile Privacy"
4351
- msgstr ""
4352
-
4353
- #: includes/core/class-builtin.php:1116
4354
- msgid "Who can see your public profile?"
4355
- msgstr ""
4356
-
4357
- #: includes/core/class-builtin.php:1128 includes/core/class-builtin.php:1131
4358
- msgid "Hide my profile from directory"
4359
- msgstr ""
4360
-
4361
- #: includes/core/class-builtin.php:1132
4362
- msgid "Here you can hide yourself from appearing in public directory"
4363
- msgstr ""
4364
-
4365
- #: includes/core/class-builtin.php:1147
4366
- msgid ""
4367
- "If you confirm, everything related to your profile will be deleted "
4368
- "permanently from the site"
4369
- msgstr ""
4370
-
4371
- #: includes/core/class-builtin.php:1316
4372
- msgid "Alphabetic value only"
4373
- msgstr ""
4374
-
4375
- #: includes/core/class-builtin.php:1317
4376
- msgid "Alpha-numeric value"
4377
- msgstr ""
4378
-
4379
- #: includes/core/class-builtin.php:1318
4380
- msgid "English letters only"
4381
- msgstr ""
4382
-
4383
- #: includes/core/class-builtin.php:1319
4384
- msgid "Facebook URL"
4385
- msgstr ""
4386
-
4387
- #: includes/core/class-builtin.php:1320
4388
- msgid "Google+ URL"
4389
- msgstr ""
4390
-
4391
- #: includes/core/class-builtin.php:1321
4392
- msgid "Instagram URL"
4393
- msgstr ""
4394
-
4395
- #: includes/core/class-builtin.php:1322
4396
- msgid "LinkedIn URL"
4397
- msgstr ""
4398
-
4399
- #: includes/core/class-builtin.php:1323
4400
- msgid "VKontakte URL"
4401
- msgstr ""
4402
-
4403
- #: includes/core/class-builtin.php:1324
4404
- msgid "Lowercase only"
4405
- msgstr ""
4406
-
4407
- #: includes/core/class-builtin.php:1325
4408
- msgid "Numeric value only"
4409
- msgstr ""
4410
-
4411
- #: includes/core/class-builtin.php:1328
4412
- msgid "SoundCloud Profile"
4413
- msgstr ""
4414
-
4415
- #: includes/core/class-builtin.php:1329
4416
- msgid "Twitter URL"
4417
- msgstr ""
4418
-
4419
- #: includes/core/class-builtin.php:1330
4420
- msgid "Unique E-mail"
4421
- msgstr ""
4422
-
4423
- #: includes/core/class-builtin.php:1331
4424
- msgid "Unique Metakey value"
4425
- msgstr ""
4426
-
4427
- #: includes/core/class-builtin.php:1332
4428
- msgid "Unique Username"
4429
- msgstr ""
4430
-
4431
- #: includes/core/class-builtin.php:1333
4432
- msgid "Unique Username/E-mail"
4433
- msgstr ""
4434
-
4435
- #: includes/core/class-builtin.php:1335
4436
- msgid "YouTube Profile"
4437
- msgstr ""
4438
-
4439
- #: includes/core/class-builtin.php:1336
4440
- msgid "Custom Validation"
4441
- msgstr ""
4442
-
4443
- #: includes/core/class-builtin.php:1375
4444
- msgid "Afar"
4445
- msgstr ""
4446
-
4447
- #: includes/core/class-builtin.php:1376
4448
- msgid "Abkhazian"
4449
- msgstr ""
4450
-
4451
- #: includes/core/class-builtin.php:1377
4452
- msgid "Avestan"
4453
- msgstr ""
4454
-
4455
- #: includes/core/class-builtin.php:1378
4456
- msgid "Afrikaans"
4457
- msgstr ""
4458
-
4459
- #: includes/core/class-builtin.php:1379
4460
- msgid "Akan"
4461
- msgstr ""
4462
-
4463
- #: includes/core/class-builtin.php:1380
4464
- msgid "Amharic"
4465
- msgstr ""
4466
-
4467
- #: includes/core/class-builtin.php:1381
4468
- msgid "Aragonese"
4469
- msgstr ""
4470
-
4471
- #: includes/core/class-builtin.php:1382
4472
- msgid "Arabic"
4473
- msgstr ""
4474
-
4475
- #: includes/core/class-builtin.php:1383
4476
- msgid "Assamese"
4477
- msgstr ""
4478
-
4479
- #: includes/core/class-builtin.php:1384
4480
- msgid "Avaric"
4481
- msgstr ""
4482
-
4483
- #: includes/core/class-builtin.php:1385
4484
- msgid "Aymara"
4485
- msgstr ""
4486
-
4487
- #: includes/core/class-builtin.php:1386
4488
- msgid "Azerbaijani"
4489
- msgstr ""
4490
-
4491
- #: includes/core/class-builtin.php:1387
4492
- msgid "Bashkir"
4493
- msgstr ""
4494
-
4495
- #: includes/core/class-builtin.php:1388
4496
- msgid "Belarusian"
4497
- msgstr ""
4498
-
4499
- #: includes/core/class-builtin.php:1389
4500
- msgid "Bulgarian"
4501
- msgstr ""
4502
-
4503
- #: includes/core/class-builtin.php:1390
4504
- msgid "Bihari"
4505
- msgstr ""
4506
-
4507
- #: includes/core/class-builtin.php:1391
4508
- msgid "Bislama"
4509
- msgstr ""
4510
-
4511
- #: includes/core/class-builtin.php:1392
4512
- msgid "Bambara"
4513
- msgstr ""
4514
-
4515
- #: includes/core/class-builtin.php:1393
4516
- msgid "Bengali"
4517
- msgstr ""
4518
-
4519
- #: includes/core/class-builtin.php:1394
4520
- msgid "Tibetan"
4521
- msgstr ""
4522
-
4523
- #: includes/core/class-builtin.php:1395
4524
- msgid "Breton"
4525
- msgstr ""
4526
-
4527
- #: includes/core/class-builtin.php:1396
4528
- msgid "Bosnian"
4529
- msgstr ""
4530
-
4531
- #: includes/core/class-builtin.php:1397
4532
- msgid "Catalan"
4533
- msgstr ""
4534
-
4535
- #: includes/core/class-builtin.php:1398
4536
- msgid "Chechen"
4537
- msgstr ""
4538
-
4539
- #: includes/core/class-builtin.php:1399
4540
- msgid "Chamorro"
4541
- msgstr ""
4542
-
4543
- #: includes/core/class-builtin.php:1400
4544
- msgid "Corsican"
4545
- msgstr ""
4546
-
4547
- #: includes/core/class-builtin.php:1401
4548
- msgid "Cree"
4549
- msgstr ""
4550
-
4551
- #: includes/core/class-builtin.php:1402
4552
- msgid "Czech"
4553
- msgstr ""
4554
-
4555
- #: includes/core/class-builtin.php:1403
4556
- msgid "Church Slavic"
4557
- msgstr ""
4558
-
4559
- #: includes/core/class-builtin.php:1404
4560
- msgid "Chuvash"
4561
- msgstr ""
4562
-
4563
- #: includes/core/class-builtin.php:1405
4564
- msgid "Welsh"
4565
- msgstr ""
4566
-
4567
- #: includes/core/class-builtin.php:1406
4568
- msgid "Danish"
4569
- msgstr ""
4570
-
4571
- #: includes/core/class-builtin.php:1407
4572
- msgid "German"
4573
- msgstr ""
4574
-
4575
- #: includes/core/class-builtin.php:1408
4576
- msgid "Divehi"
4577
- msgstr ""
4578
-
4579
- #: includes/core/class-builtin.php:1409
4580
- msgid "Dzongkha"
4581
- msgstr ""
4582
-
4583
- #: includes/core/class-builtin.php:1410
4584
- msgid "Ewe"
4585
- msgstr ""
4586
-
4587
- #: includes/core/class-builtin.php:1411
4588
- msgid "Greek"
4589
- msgstr ""
4590
-
4591
- #: includes/core/class-builtin.php:1412
4592
- msgid "English"
4593
- msgstr ""
4594
-
4595
- #: includes/core/class-builtin.php:1413
4596
- msgid "Esperanto"
4597
- msgstr ""
4598
-
4599
- #: includes/core/class-builtin.php:1414
4600
- msgid "Spanish"
4601
- msgstr ""
4602
-
4603
- #: includes/core/class-builtin.php:1415
4604
- msgid "Estonian"
4605
- msgstr ""
4606
-
4607
- #: includes/core/class-builtin.php:1416
4608
- msgid "Basque"
4609
- msgstr ""
4610
-
4611
- #: includes/core/class-builtin.php:1417
4612
- msgid "Persian"
4613
- msgstr ""
4614
-
4615
- #: includes/core/class-builtin.php:1418
4616
- msgid "Fulah"
4617
- msgstr ""
4618
-
4619
- #: includes/core/class-builtin.php:1419
4620
- msgid "Finnish"
4621
- msgstr ""
4622
-
4623
- #: includes/core/class-builtin.php:1420
4624
- msgid "Fijian"
4625
- msgstr ""
4626
-
4627
- #: includes/core/class-builtin.php:1421
4628
- msgid "Faroese"
4629
- msgstr ""
4630
-
4631
- #: includes/core/class-builtin.php:1422
4632
- msgid "French"
4633
- msgstr ""
4634
-
4635
- #: includes/core/class-builtin.php:1423
4636
- msgid "Western Frisian"
4637
- msgstr ""
4638
-
4639
- #: includes/core/class-builtin.php:1424
4640
- msgid "Irish"
4641
- msgstr ""
4642
-
4643
- #: includes/core/class-builtin.php:1425
4644
- msgid "Scottish Gaelic"
4645
- msgstr ""
4646
-
4647
- #: includes/core/class-builtin.php:1426
4648
- msgid "Galician"
4649
- msgstr ""
4650
-
4651
- #: includes/core/class-builtin.php:1427
4652
- msgid "Guarani"
4653
- msgstr ""
4654
-
4655
- #: includes/core/class-builtin.php:1428
4656
- msgid "Gujarati"
4657
- msgstr ""
4658
-
4659
- #: includes/core/class-builtin.php:1429
4660
- msgid "Manx"
4661
- msgstr ""
4662
-
4663
- #: includes/core/class-builtin.php:1430
4664
- msgid "Hausa"
4665
- msgstr ""
4666
-
4667
- #: includes/core/class-builtin.php:1431
4668
- msgid "Hebrew"
4669
- msgstr ""
4670
-
4671
- #: includes/core/class-builtin.php:1432
4672
- msgid "Hindi"
4673
- msgstr ""
4674
-
4675
- #: includes/core/class-builtin.php:1433
4676
- msgid "Hiri Motu"
4677
- msgstr ""
4678
-
4679
- #: includes/core/class-builtin.php:1434
4680
- msgid "Croatian"
4681
- msgstr ""
4682
-
4683
- #: includes/core/class-builtin.php:1435
4684
- msgid "Haitian"
4685
- msgstr ""
4686
-
4687
- #: includes/core/class-builtin.php:1436
4688
- msgid "Hungarian"
4689
- msgstr ""
4690
-
4691
- #: includes/core/class-builtin.php:1437
4692
- msgid "Armenian"
4693
- msgstr ""
4694
-
4695
- #: includes/core/class-builtin.php:1438
4696
- msgid "Herero"
4697
- msgstr ""
4698
-
4699
- #: includes/core/class-builtin.php:1439
4700
- msgid "Interlingua (International Auxiliary Language Association)"
4701
- msgstr ""
4702
-
4703
- #: includes/core/class-builtin.php:1440
4704
- msgid "Indonesian"
4705
- msgstr ""
4706
-
4707
- #: includes/core/class-builtin.php:1441
4708
- msgid "Interlingue"
4709
- msgstr ""
4710
-
4711
- #: includes/core/class-builtin.php:1442
4712
- msgid "Igbo"
4713
- msgstr ""
4714
-
4715
- #: includes/core/class-builtin.php:1443
4716
- msgid "Sichuan Yi"
4717
- msgstr ""
4718
-
4719
- #: includes/core/class-builtin.php:1444
4720
- msgid "Inupiaq"
4721
- msgstr ""
4722
-
4723
- #: includes/core/class-builtin.php:1445
4724
- msgid "Ido"
4725
- msgstr ""
4726
-
4727
- #: includes/core/class-builtin.php:1446
4728
- msgid "Icelandic"
4729
- msgstr ""
4730
-
4731
- #: includes/core/class-builtin.php:1447
4732
- msgid "Italian"
4733
- msgstr ""
4734
-
4735
- #: includes/core/class-builtin.php:1448
4736
- msgid "Inuktitut"
4737
- msgstr ""
4738
-
4739
- #: includes/core/class-builtin.php:1449
4740
- msgid "Japanese"
4741
- msgstr ""
4742
-
4743
- #: includes/core/class-builtin.php:1450
4744
- msgid "Javanese"
4745
- msgstr ""
4746
-
4747
- #: includes/core/class-builtin.php:1451
4748
- msgid "Georgian"
4749
- msgstr ""
4750
-
4751
- #: includes/core/class-builtin.php:1452
4752
- msgid "Kongo"
4753
- msgstr ""
4754
-
4755
- #: includes/core/class-builtin.php:1453
4756
- msgid "Kikuyu"
4757
- msgstr ""
4758
-
4759
- #: includes/core/class-builtin.php:1454
4760
- msgid "Kwanyama"
4761
- msgstr ""
4762
-
4763
- #: includes/core/class-builtin.php:1455
4764
- msgid "Kazakh"
4765
- msgstr ""
4766
-
4767
- #: includes/core/class-builtin.php:1456
4768
- msgid "Kalaallisut"
4769
- msgstr ""
4770
-
4771
- #: includes/core/class-builtin.php:1457
4772
- msgid "Khmer"
4773
- msgstr ""
4774
-
4775
- #: includes/core/class-builtin.php:1458
4776
- msgid "Kannada"
4777
- msgstr ""
4778
-
4779
- #: includes/core/class-builtin.php:1459
4780
- msgid "Korean"
4781
- msgstr ""
4782
-
4783
- #: includes/core/class-builtin.php:1460
4784
- msgid "Kanuri"
4785
- msgstr ""
4786
-
4787
- #: includes/core/class-builtin.php:1461
4788
- msgid "Kashmiri"
4789
- msgstr ""
4790
-
4791
- #: includes/core/class-builtin.php:1462
4792
- msgid "Kurdish"
4793
- msgstr ""
4794
-
4795
- #: includes/core/class-builtin.php:1463
4796
- msgid "Komi"
4797
- msgstr ""
4798
-
4799
- #: includes/core/class-builtin.php:1464
4800
- msgid "Cornish"
4801
- msgstr ""
4802
-
4803
- #: includes/core/class-builtin.php:1465
4804
- msgid "Kirghiz"
4805
- msgstr ""
4806
-
4807
- #: includes/core/class-builtin.php:1466
4808
- msgid "Latin"
4809
- msgstr ""
4810
-
4811
- #: includes/core/class-builtin.php:1467
4812
- msgid "Luxembourgish"
4813
- msgstr ""
4814
-
4815
- #: includes/core/class-builtin.php:1468
4816
- msgid "Ganda"
4817
- msgstr ""
4818
-
4819
- #: includes/core/class-builtin.php:1469
4820
- msgid "Limburgish"
4821
- msgstr ""
4822
-
4823
- #: includes/core/class-builtin.php:1470
4824
- msgid "Lingala"
4825
- msgstr ""
4826
-
4827
- #: includes/core/class-builtin.php:1471
4828
- msgid "Lao"
4829
- msgstr ""
4830
-
4831
- #: includes/core/class-builtin.php:1472
4832
- msgid "Lithuanian"
4833
- msgstr ""
4834
-
4835
- #: includes/core/class-builtin.php:1473
4836
- msgid "Luba-Katanga"
4837
- msgstr ""
4838
-
4839
- #: includes/core/class-builtin.php:1474
4840
- msgid "Latvian"
4841
- msgstr ""
4842
-
4843
- #: includes/core/class-builtin.php:1475
4844
- msgid "Malagasy"
4845
- msgstr ""
4846
-
4847
- #: includes/core/class-builtin.php:1476
4848
- msgid "Marshallese"
4849
- msgstr ""
4850
-
4851
- #: includes/core/class-builtin.php:1477
4852
- msgid "Maori"
4853
- msgstr ""
4854
-
4855
- #: includes/core/class-builtin.php:1478
4856
- msgid "Macedonian"
4857
- msgstr ""
4858
-
4859
- #: includes/core/class-builtin.php:1479
4860
- msgid "Malayalam"
4861
- msgstr ""
4862
-
4863
- #: includes/core/class-builtin.php:1480
4864
- msgid "Mongolian"
4865
- msgstr ""
4866
-
4867
- #: includes/core/class-builtin.php:1481
4868
- msgid "Marathi"
4869
- msgstr ""
4870
-
4871
- #: includes/core/class-builtin.php:1482
4872
- msgid "Malay"
4873
- msgstr ""
4874
-
4875
- #: includes/core/class-builtin.php:1483
4876
- msgid "Maltese"
4877
- msgstr ""
4878
-
4879
- #: includes/core/class-builtin.php:1484
4880
- msgid "Burmese"
4881
- msgstr ""
4882
-
4883
- #: includes/core/class-builtin.php:1485 includes/core/class-builtin.php:1716
4884
- msgid "Nauru"
4885
- msgstr ""
4886
-
4887
- #: includes/core/class-builtin.php:1486
4888
- msgid "Norwegian Bokmal"
4889
- msgstr ""
4890
-
4891
- #: includes/core/class-builtin.php:1487
4892
- msgid "North Ndebele"
4893
- msgstr ""
4894
-
4895
- #: includes/core/class-builtin.php:1488
4896
- msgid "Nepali"
4897
- msgstr ""
4898
-
4899
- #: includes/core/class-builtin.php:1489
4900
- msgid "Ndonga"
4901
- msgstr ""
4902
-
4903
- #: includes/core/class-builtin.php:1490
4904
- msgid "Dutch"
4905
- msgstr ""
4906
-
4907
- #: includes/core/class-builtin.php:1491
4908
- msgid "Norwegian Nynorsk"
4909
- msgstr ""
4910
-
4911
- #: includes/core/class-builtin.php:1492
4912
- msgid "Norwegian"
4913
- msgstr ""
4914
-
4915
- #: includes/core/class-builtin.php:1493
4916
- msgid "South Ndebele"
4917
- msgstr ""
4918
-
4919
- #: includes/core/class-builtin.php:1494
4920
- msgid "Navajo"
4921
- msgstr ""
4922
-
4923
- #: includes/core/class-builtin.php:1495
4924
- msgid "Chichewa"
4925
- msgstr ""
4926
-
4927
- #: includes/core/class-builtin.php:1496
4928
- msgid "Occitan"
4929
- msgstr ""
4930
-
4931
- #: includes/core/class-builtin.php:1497
4932
- msgid "Ojibwa"
4933
- msgstr ""
4934
-
4935
- #: includes/core/class-builtin.php:1498
4936
- msgid "Oromo"
4937
- msgstr ""
4938
-
4939
- #: includes/core/class-builtin.php:1499
4940
- msgid "Oriya"
4941
- msgstr ""
4942
-
4943
- #: includes/core/class-builtin.php:1500
4944
- msgid "Ossetian"
4945
- msgstr ""
4946
-
4947
- #: includes/core/class-builtin.php:1501
4948
- msgid "Panjabi"
4949
- msgstr ""
4950
-
4951
- #: includes/core/class-builtin.php:1502
4952
- msgid "Pali"
4953
- msgstr ""
4954
-
4955
- #: includes/core/class-builtin.php:1503
4956
- msgid "Polish"
4957
- msgstr ""
4958
-
4959
- #: includes/core/class-builtin.php:1504
4960
- msgid "Pashto"
4961
- msgstr ""
4962
-
4963
- #: includes/core/class-builtin.php:1505
4964
- msgid "Portuguese"
4965
- msgstr ""
4966
-
4967
- #: includes/core/class-builtin.php:1506
4968
- msgid "Quechua"
4969
- msgstr ""
4970
-
4971
- #: includes/core/class-builtin.php:1507
4972
- msgid "Raeto-Romance"
4973
- msgstr ""
4974
-
4975
- #: includes/core/class-builtin.php:1508
4976
- msgid "Kirundi"
4977
- msgstr ""
4978
-
4979
- #: includes/core/class-builtin.php:1509
4980
- msgid "Romanian"
4981
- msgstr ""
4982
-
4983
- #: includes/core/class-builtin.php:1510
4984
- msgid "Russian"
4985
- msgstr ""
4986
-
4987
- #: includes/core/class-builtin.php:1511
4988
- msgid "Kinyarwanda"
4989
- msgstr ""
4990
-
4991
- #: includes/core/class-builtin.php:1512
4992
- msgid "Sanskrit"
4993
- msgstr ""
4994
-
4995
- #: includes/core/class-builtin.php:1513
4996
- msgid "Sardinian"
4997
- msgstr ""
4998
-
4999
- #: includes/core/class-builtin.php:1514
5000
- msgid "Sindhi"
5001
- msgstr ""
5002
-
5003
- #: includes/core/class-builtin.php:1515
5004
- msgid "Northern Sami"
5005
- msgstr ""
5006
-
5007
- #: includes/core/class-builtin.php:1516
5008
- msgid "Sango"
5009
- msgstr ""
5010
-
5011
- #: includes/core/class-builtin.php:1517
5012
- msgid "Sinhala"
5013
- msgstr ""
5014
-
5015
- #: includes/core/class-builtin.php:1518
5016
- msgid "Slovak"
5017
- msgstr ""
5018
-
5019
- #: includes/core/class-builtin.php:1519
5020
- msgid "Slovenian"
5021
- msgstr ""
5022
-
5023
- #: includes/core/class-builtin.php:1520
5024
- msgid "Samoan"
5025
- msgstr ""
5026
-
5027
- #: includes/core/class-builtin.php:1521
5028
- msgid "Shona"
5029
- msgstr ""
5030
-
5031
- #: includes/core/class-builtin.php:1522
5032
- msgid "Somali"
5033
- msgstr ""
5034
-
5035
- #: includes/core/class-builtin.php:1523
5036
- msgid "Albanian"
5037
- msgstr ""
5038
-
5039
- #: includes/core/class-builtin.php:1524
5040
- msgid "Serbian"
5041
- msgstr ""
5042
-
5043
- #: includes/core/class-builtin.php:1525
5044
- msgid "Swati"
5045
- msgstr ""
5046
-
5047
- #: includes/core/class-builtin.php:1526
5048
- msgid "Southern Sotho"
5049
- msgstr ""
5050
-
5051
- #: includes/core/class-builtin.php:1527
5052
- msgid "Sundanese"
5053
- msgstr ""
5054
-
5055
- #: includes/core/class-builtin.php:1528
5056
- msgid "Swedish"
5057
- msgstr ""
5058
-
5059
- #: includes/core/class-builtin.php:1529
5060
- msgid "Swahili"
5061
- msgstr ""
5062
-
5063
- #: includes/core/class-builtin.php:1530
5064
- msgid "Tamil"
5065
- msgstr ""
5066
-
5067
- #: includes/core/class-builtin.php:1531
5068
- msgid "Telugu"
5069
- msgstr ""
5070
-
5071
- #: includes/core/class-builtin.php:1532
5072
- msgid "Tajik"
5073
- msgstr ""
5074
-
5075
- #: includes/core/class-builtin.php:1533
5076
- msgid "Thai"
5077
- msgstr ""
5078
-
5079
- #: includes/core/class-builtin.php:1534
5080
- msgid "Tigrinya"
5081
- msgstr ""
5082
-
5083
- #: includes/core/class-builtin.php:1535
5084
- msgid "Turkmen"
5085
- msgstr ""
5086
-
5087
- #: includes/core/class-builtin.php:1536
5088
- msgid "Tagalog"
5089
- msgstr ""
5090
-
5091
- #: includes/core/class-builtin.php:1537
5092
- msgid "Tswana"
5093
- msgstr ""
5094
-
5095
- #: includes/core/class-builtin.php:1538 includes/core/class-builtin.php:1786
5096
- msgid "Tonga"
5097
- msgstr ""
5098
-
5099
- #: includes/core/class-builtin.php:1539
5100
- msgid "Turkish"
5101
- msgstr ""
5102
-
5103
- #: includes/core/class-builtin.php:1540
5104
- msgid "Tsonga"
5105
- msgstr ""
5106
-
5107
- #: includes/core/class-builtin.php:1541
5108
- msgid "Tatar"
5109
- msgstr ""
5110
-
5111
- #: includes/core/class-builtin.php:1542
5112
- msgid "Twi"
5113
- msgstr ""
5114
-
5115
- #: includes/core/class-builtin.php:1543
5116
- msgid "Tahitian"
5117
- msgstr ""
5118
-
5119
- #: includes/core/class-builtin.php:1544
5120
- msgid "Uighur"
5121
- msgstr ""
5122
-
5123
- #: includes/core/class-builtin.php:1545
5124
- msgid "Ukrainian"
5125
- msgstr ""
5126
-
5127
- #: includes/core/class-builtin.php:1546
5128
- msgid "Urdu"
5129
- msgstr ""
5130
-
5131
- #: includes/core/class-builtin.php:1547
5132
- msgid "Uzbek"
5133
- msgstr ""
5134
-
5135
- #: includes/core/class-builtin.php:1548
5136
- msgid "Venda"
5137
- msgstr ""
5138
-
5139
- #: includes/core/class-builtin.php:1549
5140
- msgid "Vietnamese"
5141
- msgstr ""
5142
-
5143
- #: includes/core/class-builtin.php:1550
5144
- msgid "Volapuk"
5145
- msgstr ""
5146
-
5147
- #: includes/core/class-builtin.php:1551
5148
- msgid "Walloon"
5149
- msgstr ""
5150
-
5151
- #: includes/core/class-builtin.php:1552
5152
- msgid "Wolof"
5153
- msgstr ""
5154
-
5155
- #: includes/core/class-builtin.php:1553
5156
- msgid "Xhosa"
5157
- msgstr ""
5158
-
5159
- #: includes/core/class-builtin.php:1554
5160
- msgid "Yiddish"
5161
- msgstr ""
5162
-
5163
- #: includes/core/class-builtin.php:1555
5164
- msgid "Yoruba"
5165
- msgstr ""
5166
-
5167
- #: includes/core/class-builtin.php:1556
5168
- msgid "Zhuang"
5169
- msgstr ""
5170
-
5171
- #: includes/core/class-builtin.php:1557
5172
- msgid "Chinese"
5173
- msgstr ""
5174
-
5175
- #: includes/core/class-builtin.php:1558
5176
- msgid "Zulu"
5177
- msgstr ""
5178
-
5179
- #: includes/core/class-builtin.php:1564
5180
- msgid "Afghanistan"
5181
- msgstr ""
5182
-
5183
- #: includes/core/class-builtin.php:1565
5184
- msgid "Åland Islands"
5185
- msgstr ""
5186
-
5187
- #: includes/core/class-builtin.php:1566
5188
- msgid "Albania"
5189
- msgstr ""
5190
-
5191
- #: includes/core/class-builtin.php:1567
5192
- msgid "Algeria"
5193
- msgstr ""
5194
-
5195
- #: includes/core/class-builtin.php:1568
5196
- msgid "American Samoa"
5197
- msgstr ""
5198
-
5199
- #: includes/core/class-builtin.php:1569
5200
- msgid "Andorra"
5201
- msgstr ""
5202
-
5203
- #: includes/core/class-builtin.php:1570
5204
- msgid "Angola"
5205
- msgstr ""
5206
-
5207
- #: includes/core/class-builtin.php:1571
5208
- msgid "Anguilla"
5209
- msgstr ""
5210
-
5211
- #: includes/core/class-builtin.php:1572
5212
- msgid "Antarctica"
5213
- msgstr ""
5214
-
5215
- #: includes/core/class-builtin.php:1573
5216
- msgid "Antigua and Barbuda"
5217
- msgstr ""
5218
-
5219
- #: includes/core/class-builtin.php:1574
5220
- msgid "Argentina"
5221
- msgstr ""
5222
-
5223
- #: includes/core/class-builtin.php:1575
5224
- msgid "Armenia"
5225
- msgstr ""
5226
-
5227
- #: includes/core/class-builtin.php:1576
5228
- msgid "Aruba"
5229
- msgstr ""
5230
-
5231
- #: includes/core/class-builtin.php:1577
5232
- msgid "Australia"
5233
- msgstr ""
5234
-
5235
- #: includes/core/class-builtin.php:1578
5236
- msgid "Austria"
5237
- msgstr ""
5238
-
5239
- #: includes/core/class-builtin.php:1579
5240
- msgid "Azerbaijan"
5241
- msgstr ""
5242
-
5243
- #: includes/core/class-builtin.php:1580
5244
- msgid "Bahamas"
5245
- msgstr ""
5246
-
5247
- #: includes/core/class-builtin.php:1581
5248
- msgid "Bahrain"
5249
- msgstr ""
5250
-
5251
- #: includes/core/class-builtin.php:1582
5252
- msgid "Bangladesh"
5253
- msgstr ""
5254
-
5255
- #: includes/core/class-builtin.php:1583
5256
- msgid "Barbados"
5257
- msgstr ""
5258
-
5259
- #: includes/core/class-builtin.php:1584
5260
- msgid "Belarus"
5261
- msgstr ""
5262
-
5263
- #: includes/core/class-builtin.php:1585
5264
- msgid "Belgium"
5265
- msgstr ""
5266
-
5267
- #: includes/core/class-builtin.php:1586
5268
- msgid "Belize"
5269
- msgstr ""
5270
-
5271
- #: includes/core/class-builtin.php:1587
5272
- msgid "Benin"
5273
- msgstr ""
5274
-
5275
- #: includes/core/class-builtin.php:1588
5276
- msgid "Bermuda"
5277
- msgstr ""
5278
-
5279
- #: includes/core/class-builtin.php:1589
5280
- msgid "Bhutan"
5281
- msgstr ""
5282
-
5283
- #: includes/core/class-builtin.php:1590
5284
- msgid "Bolivia, Plurinational State of"
5285
- msgstr ""
5286
-
5287
- #: includes/core/class-builtin.php:1591
5288
- msgid "Bosnia and Herzegovina"
5289
- msgstr ""
5290
-
5291
- #: includes/core/class-builtin.php:1592
5292
- msgid "Botswana"
5293
- msgstr ""
5294
-
5295
- #: includes/core/class-builtin.php:1593
5296
- msgid "Bouvet Island"
5297
- msgstr ""
5298
-
5299
- #: includes/core/class-builtin.php:1594
5300
- msgid "Brazil"
5301
- msgstr ""
5302
-
5303
- #: includes/core/class-builtin.php:1595
5304
- msgid "British Indian Ocean Territory"
5305
- msgstr ""
5306
-
5307
- #: includes/core/class-builtin.php:1596
5308
- msgid "Brunei Darussalam"
5309
- msgstr ""
5310
-
5311
- #: includes/core/class-builtin.php:1597
5312
- msgid "Bulgaria"
5313
- msgstr ""
5314
-
5315
- #: includes/core/class-builtin.php:1598
5316
- msgid "Burkina Faso"
5317
- msgstr ""
5318
-
5319
- #: includes/core/class-builtin.php:1599
5320
- msgid "Burundi"
5321
- msgstr ""
5322
-
5323
- #: includes/core/class-builtin.php:1600
5324
- msgid "Cambodia"
5325
- msgstr ""
5326
-
5327
- #: includes/core/class-builtin.php:1601
5328
- msgid "Cameroon"
5329
- msgstr ""
5330
-
5331
- #: includes/core/class-builtin.php:1602
5332
- msgid "Canada"
5333
- msgstr ""
5334
-
5335
- #: includes/core/class-builtin.php:1603
5336
- msgid "Cape Verde"
5337
- msgstr ""
5338
-
5339
- #: includes/core/class-builtin.php:1604
5340
- msgid "Cayman Islands"
5341
- msgstr ""
5342
-
5343
- #: includes/core/class-builtin.php:1605
5344
- msgid "Central African Republic"
5345
- msgstr ""
5346
-
5347
- #: includes/core/class-builtin.php:1606
5348
- msgid "Chad"
5349
- msgstr ""
5350
-
5351
- #: includes/core/class-builtin.php:1607
5352
- msgid "Chile"
5353
- msgstr ""
5354
-
5355
- #: includes/core/class-builtin.php:1608
5356
- msgid "China"
5357
- msgstr ""
5358
-
5359
- #: includes/core/class-builtin.php:1609
5360
- msgid "Christmas Island"
5361
- msgstr ""
5362
-
5363
- #: includes/core/class-builtin.php:1610
5364
- msgid "Cocos (Keeling) Islands"
5365
- msgstr ""
5366
-
5367
- #: includes/core/class-builtin.php:1611
5368
- msgid "Colombia"
5369
- msgstr ""
5370
-
5371
- #: includes/core/class-builtin.php:1612
5372
- msgid "Comoros"
5373
- msgstr ""
5374
-
5375
- #: includes/core/class-builtin.php:1613
5376
- msgid "Congo"
5377
- msgstr ""
5378
-
5379
- #: includes/core/class-builtin.php:1614
5380
- msgid "Congo, the Democratic Republic of the"
5381
- msgstr ""
5382
-
5383
- #: includes/core/class-builtin.php:1615
5384
- msgid "Cook Islands"
5385
- msgstr ""
5386
-
5387
- #: includes/core/class-builtin.php:1616
5388
- msgid "Costa Rica"
5389
- msgstr ""
5390
-
5391
- #: includes/core/class-builtin.php:1617
5392
- msgid "Côte d'Ivoire"
5393
- msgstr ""
5394
-
5395
- #: includes/core/class-builtin.php:1618
5396
- msgid "Croatia"
5397
- msgstr ""
5398
-
5399
- #: includes/core/class-builtin.php:1619
5400
- msgid "Cuba"
5401
- msgstr ""
5402
-
5403
- #: includes/core/class-builtin.php:1620
5404
- msgid "Cyprus"
5405
- msgstr ""
5406
-
5407
- #: includes/core/class-builtin.php:1621
5408
- msgid "Czech Republic"
5409
- msgstr ""
5410
-
5411
- #: includes/core/class-builtin.php:1622
5412
- msgid "Denmark"
5413
- msgstr ""
5414
-
5415
- #: includes/core/class-builtin.php:1623
5416
- msgid "Djibouti"
5417
- msgstr ""
5418
-
5419
- #: includes/core/class-builtin.php:1624
5420
- msgid "Dominica"
5421
- msgstr ""
5422
-
5423
- #: includes/core/class-builtin.php:1625
5424
- msgid "Dominican Republic"
5425
- msgstr ""
5426
-
5427
- #: includes/core/class-builtin.php:1626
5428
- msgid "Ecuador"
5429
- msgstr ""
5430
-
5431
- #: includes/core/class-builtin.php:1627
5432
- msgid "Egypt"
5433
- msgstr ""
5434
-
5435
- #: includes/core/class-builtin.php:1628
5436
- msgid "El Salvador"
5437
- msgstr ""
5438
-
5439
- #: includes/core/class-builtin.php:1629
5440
- msgid "Equatorial Guinea"
5441
- msgstr ""
5442
-
5443
- #: includes/core/class-builtin.php:1630
5444
- msgid "Eritrea"
5445
- msgstr ""
5446
-
5447
- #: includes/core/class-builtin.php:1631
5448
- msgid "Estonia"
5449
- msgstr ""
5450
-
5451
- #: includes/core/class-builtin.php:1632
5452
- msgid "Ethiopia"
5453
- msgstr ""
5454
-
5455
- #: includes/core/class-builtin.php:1633
5456
- msgid "Falkland Islands (Malvinas)"
5457
- msgstr ""
5458
-
5459
- #: includes/core/class-builtin.php:1634
5460
- msgid "Faroe Islands"
5461
- msgstr ""
5462
-
5463
- #: includes/core/class-builtin.php:1635
5464
- msgid "Fiji"
5465
- msgstr ""
5466
-
5467
- #: includes/core/class-builtin.php:1636
5468
- msgid "Finland"
5469
- msgstr ""
5470
-
5471
- #: includes/core/class-builtin.php:1637
5472
- msgid "France"
5473
- msgstr ""
5474
-
5475
- #: includes/core/class-builtin.php:1638
5476
- msgid "French Guiana"
5477
- msgstr ""
5478
-
5479
- #: includes/core/class-builtin.php:1639
5480
- msgid "French Polynesia"
5481
- msgstr ""
5482
-
5483
- #: includes/core/class-builtin.php:1640
5484
- msgid "French Southern Territories"
5485
- msgstr ""
5486
-
5487
- #: includes/core/class-builtin.php:1641
5488
- msgid "Gabon"
5489
- msgstr ""
5490
-
5491
- #: includes/core/class-builtin.php:1642
5492
- msgid "Gambia"
5493
- msgstr ""
5494
-
5495
- #: includes/core/class-builtin.php:1643
5496
- msgid "Georgia"
5497
- msgstr ""
5498
-
5499
- #: includes/core/class-builtin.php:1644
5500
- msgid "Germany"
5501
- msgstr ""
5502
-
5503
- #: includes/core/class-builtin.php:1645
5504
- msgid "Ghana"
5505
- msgstr ""
5506
-
5507
- #: includes/core/class-builtin.php:1646
5508
- msgid "Gibraltar"
5509
- msgstr ""
5510
-
5511
- #: includes/core/class-builtin.php:1647
5512
- msgid "Greece"
5513
- msgstr ""
5514
-
5515
- #: includes/core/class-builtin.php:1648
5516
- msgid "Greenland"
5517
- msgstr ""
5518
-
5519
- #: includes/core/class-builtin.php:1649
5520
- msgid "Grenada"
5521
- msgstr ""
5522
-
5523
- #: includes/core/class-builtin.php:1650
5524
- msgid "Guadeloupe"
5525
- msgstr ""
5526
-
5527
- #: includes/core/class-builtin.php:1651
5528
- msgid "Guam"
5529
- msgstr ""
5530
-
5531
- #: includes/core/class-builtin.php:1652
5532
- msgid "Guatemala"
5533
- msgstr ""
5534
-
5535
- #: includes/core/class-builtin.php:1653
5536
- msgid "Guernsey"
5537
- msgstr ""
5538
-
5539
- #: includes/core/class-builtin.php:1654
5540
- msgid "Guinea"
5541
- msgstr ""
5542
-
5543
- #: includes/core/class-builtin.php:1655
5544
- msgid "Guinea-Bissau"
5545
- msgstr ""
5546
-
5547
- #: includes/core/class-builtin.php:1656
5548
- msgid "Guyana"
5549
- msgstr ""
5550
-
5551
- #: includes/core/class-builtin.php:1657
5552
- msgid "Haiti"
5553
- msgstr ""
5554
-
5555
- #: includes/core/class-builtin.php:1658
5556
- msgid "Heard Island and McDonald Islands"
5557
- msgstr ""
5558
-
5559
- #: includes/core/class-builtin.php:1659
5560
- msgid "Holy See (Vatican City State)"
5561
- msgstr ""
5562
-
5563
- #: includes/core/class-builtin.php:1660
5564
- msgid "Honduras"
5565
- msgstr ""
5566
-
5567
- #: includes/core/class-builtin.php:1661
5568
- msgid "Hong Kong"
5569
- msgstr ""
5570
-
5571
- #: includes/core/class-builtin.php:1662
5572
- msgid "Hungary"
5573
- msgstr ""
5574
-
5575
- #: includes/core/class-builtin.php:1663
5576
- msgid "Iceland"
5577
- msgstr ""
5578
-
5579
- #: includes/core/class-builtin.php:1664
5580
- msgid "India"
5581
- msgstr ""
5582
-
5583
- #: includes/core/class-builtin.php:1665
5584
- msgid "Indonesia"
5585
- msgstr ""
5586
-
5587
- #: includes/core/class-builtin.php:1666
5588
- msgid "Iran, Islamic Republic of"
5589
- msgstr ""
5590
-
5591
- #: includes/core/class-builtin.php:1667
5592
- msgid "Iraq"
5593
- msgstr ""
5594
-
5595
- #: includes/core/class-builtin.php:1668
5596
- msgid "Ireland"
5597
- msgstr ""
5598
-
5599
- #: includes/core/class-builtin.php:1669
5600
- msgid "Isle of Man"
5601
- msgstr ""
5602
-
5603
- #: includes/core/class-builtin.php:1670
5604
- msgid "Israel"
5605
- msgstr ""
5606
-
5607
- #: includes/core/class-builtin.php:1671
5608
- msgid "Italy"
5609
- msgstr ""
5610
-
5611
- #: includes/core/class-builtin.php:1672
5612
- msgid "Jamaica"
5613
- msgstr ""
5614
-
5615
- #: includes/core/class-builtin.php:1673
5616
- msgid "Japan"
5617
- msgstr ""
5618
-
5619
- #: includes/core/class-builtin.php:1674
5620
- msgid "Jersey"
5621
- msgstr ""
5622
-
5623
- #: includes/core/class-builtin.php:1675
5624
- msgid "Jordan"
5625
- msgstr ""
5626
-
5627
- #: includes/core/class-builtin.php:1676
5628
- msgid "Kazakhstan"
5629
- msgstr ""
5630
-
5631
- #: includes/core/class-builtin.php:1677
5632
- msgid "Kenya"
5633
- msgstr ""
5634
-
5635
- #: includes/core/class-builtin.php:1678
5636
- msgid "Kiribati"
5637
- msgstr ""
5638
-
5639
- #: includes/core/class-builtin.php:1679
5640
- msgid "Korea, Democratic People's Republic of"
5641
- msgstr ""
5642
-
5643
- #: includes/core/class-builtin.php:1680
5644
- msgid "Korea, Republic of"
5645
- msgstr ""
5646
-
5647
- #: includes/core/class-builtin.php:1681
5648
- msgid "Kuwait"
5649
- msgstr ""
5650
-
5651
- #: includes/core/class-builtin.php:1682
5652
- msgid "Kyrgyzstan"
5653
- msgstr ""
5654
-
5655
- #: includes/core/class-builtin.php:1683
5656
- msgid "Lao People's Democratic Republic"
5657
- msgstr ""
5658
-
5659
- #: includes/core/class-builtin.php:1684
5660
- msgid "Latvia"
5661
- msgstr ""
5662
-
5663
- #: includes/core/class-builtin.php:1685
5664
- msgid "Lebanon"
5665
- msgstr ""
5666
-
5667
- #: includes/core/class-builtin.php:1686
5668
- msgid "Lesotho"
5669
- msgstr ""
5670
-
5671
- #: includes/core/class-builtin.php:1687
5672
- msgid "Liberia"
5673
- msgstr ""
5674
-
5675
- #: includes/core/class-builtin.php:1688
5676
- msgid "Libyan Arab Jamahiriya"
5677
- msgstr ""
5678
-
5679
- #: includes/core/class-builtin.php:1689
5680
- msgid "Liechtenstein"
5681
- msgstr ""
5682
-
5683
- #: includes/core/class-builtin.php:1690
5684
- msgid "Lithuania"
5685
- msgstr ""
5686
-
5687
- #: includes/core/class-builtin.php:1691
5688
- msgid "Luxembourg"
5689
- msgstr ""
5690
-
5691
- #: includes/core/class-builtin.php:1692
5692
- msgid "Macao"
5693
- msgstr ""
5694
-
5695
- #: includes/core/class-builtin.php:1693
5696
- msgid "Macedonia, the former Yugoslav Republic of"
5697
- msgstr ""
5698
-
5699
- #: includes/core/class-builtin.php:1694
5700
- msgid "Madagascar"
5701
- msgstr ""
5702
-
5703
- #: includes/core/class-builtin.php:1695
5704
- msgid "Malawi"
5705
- msgstr ""
5706
-
5707
- #: includes/core/class-builtin.php:1696
5708
- msgid "Malaysia"
5709
- msgstr ""
5710
-
5711
- #: includes/core/class-builtin.php:1697
5712
- msgid "Maldives"
5713
- msgstr ""
5714
-
5715
- #: includes/core/class-builtin.php:1698
5716
- msgid "Mali"
5717
- msgstr ""
5718
-
5719
- #: includes/core/class-builtin.php:1699
5720
- msgid "Malta"
5721
- msgstr ""
5722
-
5723
- #: includes/core/class-builtin.php:1700
5724
- msgid "Marshall Islands"
5725
- msgstr ""
5726
-
5727
- #: includes/core/class-builtin.php:1701
5728
- msgid "Martinique"
5729
- msgstr ""
5730
-
5731
- #: includes/core/class-builtin.php:1702
5732
- msgid "Mauritania"
5733
- msgstr ""
5734
-
5735
- #: includes/core/class-builtin.php:1703
5736
- msgid "Mauritius"
5737
- msgstr ""
5738
-
5739
- #: includes/core/class-builtin.php:1704
5740
- msgid "Mayotte"
5741
- msgstr ""
5742
-
5743
- #: includes/core/class-builtin.php:1705
5744
- msgid "Mexico"
5745
- msgstr ""
5746
-
5747
- #: includes/core/class-builtin.php:1706
5748
- msgid "Micronesia, Federated States of"
5749
- msgstr ""
5750
-
5751
- #: includes/core/class-builtin.php:1707
5752
- msgid "Moldova, Republic of"
5753
- msgstr ""
5754
-
5755
- #: includes/core/class-builtin.php:1708
5756
- msgid "Monaco"
5757
- msgstr ""
5758
-
5759
- #: includes/core/class-builtin.php:1709
5760
- msgid "Mongolia"
5761
- msgstr ""
5762
-
5763
- #: includes/core/class-builtin.php:1710
5764
- msgid "Montenegro"
5765
- msgstr ""
5766
-
5767
- #: includes/core/class-builtin.php:1711
5768
- msgid "Montserrat"
5769
- msgstr ""
5770
-
5771
- #: includes/core/class-builtin.php:1712
5772
- msgid "Morocco"
5773
- msgstr ""
5774
-
5775
- #: includes/core/class-builtin.php:1713
5776
- msgid "Mozambique"
5777
- msgstr ""
5778
-
5779
- #: includes/core/class-builtin.php:1714
5780
- msgid "Myanmar"
5781
- msgstr ""
5782
-
5783
- #: includes/core/class-builtin.php:1715
5784
- msgid "Namibia"
5785
- msgstr ""
5786
-
5787
- #: includes/core/class-builtin.php:1717
5788
- msgid "Nepal"
5789
- msgstr ""
5790
-
5791
- #: includes/core/class-builtin.php:1718
5792
- msgid "Netherlands"
5793
- msgstr ""
5794
-
5795
- #: includes/core/class-builtin.php:1719
5796
- msgid "Netherlands Antilles"
5797
- msgstr ""
5798
-
5799
- #: includes/core/class-builtin.php:1720
5800
- msgid "New Caledonia"
5801
- msgstr ""
5802
-
5803
- #: includes/core/class-builtin.php:1721
5804
- msgid "New Zealand"
5805
- msgstr ""
5806
-
5807
- #: includes/core/class-builtin.php:1722
5808
- msgid "Nicaragua"
5809
- msgstr ""
5810
-
5811
- #: includes/core/class-builtin.php:1723
5812
- msgid "Niger"
5813
- msgstr ""
5814
-
5815
- #: includes/core/class-builtin.php:1724
5816
- msgid "Nigeria"
5817
- msgstr ""
5818
-
5819
- #: includes/core/class-builtin.php:1725
5820
- msgid "Niue"
5821
- msgstr ""
5822
-
5823
- #: includes/core/class-builtin.php:1726
5824
- msgid "Norfolk Island"
5825
- msgstr ""
5826
-
5827
- #: includes/core/class-builtin.php:1727
5828
- msgid "Northern Mariana Islands"
5829
- msgstr ""
5830
-
5831
- #: includes/core/class-builtin.php:1728
5832
- msgid "Norway"
5833
- msgstr ""
5834
-
5835
- #: includes/core/class-builtin.php:1729
5836
- msgid "Oman"
5837
- msgstr ""
5838
-
5839
- #: includes/core/class-builtin.php:1730
5840
- msgid "Pakistan"
5841
- msgstr ""
5842
-
5843
- #: includes/core/class-builtin.php:1731
5844
- msgid "Palau"
5845
- msgstr ""
5846
-
5847
- #: includes/core/class-builtin.php:1732
5848
- msgid "Palestine"
5849
- msgstr ""
5850
-
5851
- #: includes/core/class-builtin.php:1733
5852
- msgid "Panama"
5853
- msgstr ""
5854
-
5855
- #: includes/core/class-builtin.php:1734
5856
- msgid "Papua New Guinea"
5857
- msgstr ""
5858
-
5859
- #: includes/core/class-builtin.php:1735
5860
- msgid "Paraguay"
5861
- msgstr ""
5862
-
5863
- #: includes/core/class-builtin.php:1736
5864
- msgid "Peru"
5865
- msgstr ""
5866
-
5867
- #: includes/core/class-builtin.php:1737
5868
- msgid "Philippines"
5869
- msgstr ""
5870
-
5871
- #: includes/core/class-builtin.php:1738
5872
- msgid "Pitcairn"
5873
- msgstr ""
5874
-
5875
- #: includes/core/class-builtin.php:1739
5876
- msgid "Poland"
5877
- msgstr ""
5878
-
5879
- #: includes/core/class-builtin.php:1740
5880
- msgid "Portugal"
5881
- msgstr ""
5882
-
5883
- #: includes/core/class-builtin.php:1741
5884
- msgid "Puerto Rico"
5885
- msgstr ""
5886
-
5887
- #: includes/core/class-builtin.php:1742
5888
- msgid "Qatar"
5889
- msgstr ""
5890
-
5891
- #: includes/core/class-builtin.php:1743
5892
- msgid "Réunion"
5893
- msgstr ""
5894
-
5895
- #: includes/core/class-builtin.php:1744
5896
- msgid "Romania"
5897
- msgstr ""
5898
-
5899
- #: includes/core/class-builtin.php:1745
5900
- msgid "Russian Federation"
5901
- msgstr ""
5902
-
5903
- #: includes/core/class-builtin.php:1746
5904
- msgid "Rwanda"
5905
- msgstr ""
5906
-
5907
- #: includes/core/class-builtin.php:1747
5908
- msgid "Saint Barthélemy"
5909
- msgstr ""
5910
-
5911
- #: includes/core/class-builtin.php:1748
5912
- msgid "Saint Helena"
5913
- msgstr ""
5914
-
5915
- #: includes/core/class-builtin.php:1749
5916
- msgid "Saint Kitts and Nevis"
5917
- msgstr ""
5918
-
5919
- #: includes/core/class-builtin.php:1750
5920
- msgid "Saint Lucia"
5921
- msgstr ""
5922
-
5923
- #: includes/core/class-builtin.php:1751
5924
- msgid "Saint Martin (French part)"
5925
- msgstr ""
5926
-
5927
- #: includes/core/class-builtin.php:1752
5928
- msgid "Saint Pierre and Miquelon"
5929
- msgstr ""
5930
-
5931
- #: includes/core/class-builtin.php:1753
5932
- msgid "Saint Vincent and the Grenadines"
5933
- msgstr ""
5934
-
5935
- #: includes/core/class-builtin.php:1754
5936
- msgid "Samoa"
5937
- msgstr ""
5938
-
5939
- #: includes/core/class-builtin.php:1755
5940
- msgid "San Marino"
5941
- msgstr ""
5942
-
5943
- #: includes/core/class-builtin.php:1756
5944
- msgid "Sao Tome and Principe"
5945
- msgstr ""
5946
-
5947
- #: includes/core/class-builtin.php:1757
5948
- msgid "Saudi Arabia"
5949
- msgstr ""
5950
-
5951
- #: includes/core/class-builtin.php:1758
5952
- msgid "Senegal"
5953
- msgstr ""
5954
-
5955
- #: includes/core/class-builtin.php:1759
5956
- msgid "Serbia"
5957
- msgstr ""
5958
-
5959
- #: includes/core/class-builtin.php:1760
5960
- msgid "Seychelles"
5961
- msgstr ""
5962
-
5963
- #: includes/core/class-builtin.php:1761
5964
- msgid "Sierra Leone"
5965
- msgstr ""
5966
-
5967
- #: includes/core/class-builtin.php:1762
5968
- msgid "Singapore"
5969
- msgstr ""
5970
-
5971
- #: includes/core/class-builtin.php:1763
5972
- msgid "Slovakia"
5973
- msgstr ""
5974
-
5975
- #: includes/core/class-builtin.php:1764
5976
- msgid "Slovenia"
5977
- msgstr ""
5978
-
5979
- #: includes/core/class-builtin.php:1765
5980
- msgid "Solomon Islands"
5981
- msgstr ""
5982
-
5983
- #: includes/core/class-builtin.php:1766
5984
- msgid "Somalia"
5985
- msgstr ""
5986
-
5987
- #: includes/core/class-builtin.php:1767
5988
- msgid "South Africa"
5989
- msgstr ""
5990
-
5991
- #: includes/core/class-builtin.php:1768
5992
- msgid "South Georgia and the South Sandwich Islands"
5993
- msgstr ""
5994
-
5995
- #: includes/core/class-builtin.php:1769
5996
- msgid "South Sudan"
5997
- msgstr ""
5998
-
5999
- #: includes/core/class-builtin.php:1770
6000
- msgid "Spain"
6001
- msgstr ""
6002
-
6003
- #: includes/core/class-builtin.php:1771
6004
- msgid "Sri Lanka"
6005
- msgstr ""
6006
-
6007
- #: includes/core/class-builtin.php:1772
6008
- msgid "Sudan"
6009
- msgstr ""
6010
-
6011
- #: includes/core/class-builtin.php:1773
6012
- msgid "Suriname"
6013
- msgstr ""
6014
-
6015
- #: includes/core/class-builtin.php:1774
6016
- msgid "Svalbard and Jan Mayen"
6017
- msgstr ""
6018
-
6019
- #: includes/core/class-builtin.php:1775
6020
- msgid "Swaziland"
6021
- msgstr ""
6022
-
6023
- #: includes/core/class-builtin.php:1776
6024
- msgid "Sweden"
6025
- msgstr ""
6026
-
6027
- #: includes/core/class-builtin.php:1777
6028
- msgid "Switzerland"
6029
- msgstr ""
6030
-
6031
- #: includes/core/class-builtin.php:1778
6032
- msgid "Syrian Arab Republic"
6033
- msgstr ""
6034
-
6035
- #: includes/core/class-builtin.php:1779
6036
- msgid "Taiwan, Province of China"
6037
- msgstr ""
6038
-
6039
- #: includes/core/class-builtin.php:1780
6040
- msgid "Tajikistan"
6041
- msgstr ""
6042
-
6043
- #: includes/core/class-builtin.php:1781
6044
- msgid "Tanzania, United Republic of"
6045
- msgstr ""
6046
-
6047
- #: includes/core/class-builtin.php:1782
6048
- msgid "Thailand"
6049
- msgstr ""
6050
-
6051
- #: includes/core/class-builtin.php:1783
6052
- msgid "Timor-Leste"
6053
- msgstr ""
6054
-
6055
- #: includes/core/class-builtin.php:1784
6056
- msgid "Togo"
6057
- msgstr ""
6058
-
6059
- #: includes/core/class-builtin.php:1785
6060
- msgid "Tokelau"
6061
- msgstr ""
6062
-
6063
- #: includes/core/class-builtin.php:1787
6064
- msgid "Trinidad and Tobago"
6065
- msgstr ""
6066
-
6067
- #: includes/core/class-builtin.php:1788
6068
- msgid "Tunisia"
6069
- msgstr ""
6070
-
6071
- #: includes/core/class-builtin.php:1789
6072
- msgid "Turkey"
6073
- msgstr ""
6074
-
6075
- #: includes/core/class-builtin.php:1790
6076
- msgid "Turkmenistan"
6077
- msgstr ""
6078
-
6079
- #: includes/core/class-builtin.php:1791
6080
- msgid "Turks and Caicos Islands"
6081
- msgstr ""
6082
-
6083
- #: includes/core/class-builtin.php:1792
6084
- msgid "Tuvalu"
6085
- msgstr ""
6086
-
6087
- #: includes/core/class-builtin.php:1793
6088
- msgid "Uganda"
6089
- msgstr ""
6090
-
6091
- #: includes/core/class-builtin.php:1794
6092
- msgid "Ukraine"
6093
- msgstr ""
6094
-
6095
- #: includes/core/class-builtin.php:1795
6096
- msgid "United Arab Emirates"
6097
- msgstr ""
6098
-
6099
- #: includes/core/class-builtin.php:1796
6100
- msgid "United Kingdom"
6101
- msgstr ""
6102
-
6103
- #: includes/core/class-builtin.php:1797
6104
- msgid "United States"
6105
- msgstr ""
6106
-
6107
- #: includes/core/class-builtin.php:1798
6108
- msgid "United States Minor Outlying Islands"
6109
- msgstr ""
6110
-
6111
- #: includes/core/class-builtin.php:1799
6112
- msgid "Uruguay"
6113
- msgstr ""
6114
-
6115
- #: includes/core/class-builtin.php:1800
6116
- msgid "Uzbekistan"
6117
- msgstr ""
6118
-
6119
- #: includes/core/class-builtin.php:1801
6120
- msgid "Vanuatu"
6121
- msgstr ""
6122
-
6123
- #: includes/core/class-builtin.php:1802
6124
- msgid "Venezuela, Bolivarian Republic of"
6125
- msgstr ""
6126
-
6127
- #: includes/core/class-builtin.php:1803
6128
- msgid "Viet Nam"
6129
- msgstr ""
6130
-
6131
- #: includes/core/class-builtin.php:1804
6132
- msgid "Virgin Islands, British"
6133
- msgstr ""
6134
-
6135
- #: includes/core/class-builtin.php:1805
6136
- msgid "Virgin Islands, U.S."
6137
- msgstr ""
6138
-
6139
- #: includes/core/class-builtin.php:1806
6140
- msgid "Wallis and Futuna"
6141
- msgstr ""
6142
-
6143
- #: includes/core/class-builtin.php:1807
6144
- msgid "Western Sahara"
6145
- msgstr ""
6146
-
6147
- #: includes/core/class-builtin.php:1808
6148
- msgid "Yemen"
6149
- msgstr ""
6150
-
6151
- #: includes/core/class-builtin.php:1809
6152
- msgid "Zambia"
6153
- msgstr ""
6154
-
6155
- #: includes/core/class-builtin.php:1810
6156
- msgid "Zimbabwe"
6157
- msgstr ""
6158
-
6159
- #: includes/core/class-common.php:57
6160
- msgid "Form"
6161
- msgstr ""
6162
-
6163
- #: includes/core/class-common.php:59
6164
- msgid "Add New Form"
6165
- msgstr ""
6166
-
6167
- #: includes/core/class-common.php:60
6168
- msgid "Edit Form"
6169
- msgstr ""
6170
-
6171
- #: includes/core/class-common.php:61
6172
- msgid "You did not create any forms yet"
6173
- msgstr ""
6174
-
6175
- #: includes/core/class-common.php:63
6176
- msgid "Search Forms"
6177
- msgstr ""
6178
-
6179
- #: includes/core/class-common.php:86
6180
- msgid "Member Directory"
6181
- msgstr ""
6182
-
6183
- #: includes/core/class-common.php:88
6184
- msgid "Add New Member Directory"
6185
- msgstr ""
6186
-
6187
- #: includes/core/class-common.php:89
6188
- msgid "Edit Member Directory"
6189
- msgstr ""
6190
-
6191
- #: includes/core/class-common.php:90
6192
- msgid "You did not create any member directories yet"
6193
- msgstr ""
6194
-
6195
- #: includes/core/class-common.php:92
6196
- msgid "Search Member Directories"
6197
- msgstr ""
6198
-
6199
- #: includes/core/class-cron.php:62
6200
- msgid "Once Weekly"
6201
- msgstr ""
6202
-
6203
- #: includes/core/class-date-time.php:54
6204
- msgid "just now"
6205
- msgstr ""
6206
-
6207
- #: includes/core/class-date-time.php:62
6208
- #, php-format
6209
- msgid "%s min"
6210
- msgstr ""
6211
-
6212
- #: includes/core/class-date-time.php:64
6213
- #, php-format
6214
- msgid "%s mins"
6215
- msgstr ""
6216
-
6217
- #: includes/core/class-date-time.php:73
6218
- #, php-format
6219
- msgid "%s hr"
6220
- msgstr ""
6221
-
6222
- #: includes/core/class-date-time.php:75
6223
- #, php-format
6224
- msgid "%s hrs"
6225
- msgstr ""
6226
-
6227
- #: includes/core/class-date-time.php:84
6228
- #, php-format
6229
- msgid "Yesterday at %s"
6230
- msgstr ""
6231
-
6232
- #: includes/core/class-date-time.php:86 includes/core/class-date-time.php:91
6233
- #: includes/core/class-date-time.php:95 includes/core/class-date-time.php:99
6234
- #, php-format
6235
- msgid "%s at %s"
6236
- msgstr ""
6237
-
6238
- #: includes/core/class-date-time.php:148
6239
- #, php-format
6240
- msgid "%s year old"
6241
- msgstr ""
6242
-
6243
- #: includes/core/class-date-time.php:151
6244
- #, php-format
6245
- msgid "%s years old"
6246
- msgstr ""
6247
-
6248
- #: includes/core/class-date-time.php:154
6249
- msgid "Less than 1 year old"
6250
- msgstr ""
6251
-
6252
- #: includes/core/class-external-integrations.php:367
6253
- #, php-format
6254
- msgid "Edit the %s translation"
6255
- msgstr ""
6256
-
6257
- #: includes/core/class-external-integrations.php:374
6258
- #, php-format
6259
- msgid "Add translation to %s"
6260
- msgstr ""
6261
-
6262
- #: includes/core/class-fields.php:1160
6263
- msgid "Custom Field"
6264
- msgstr ""
6265
-
6266
- #: includes/core/class-fields.php:1457
6267
- msgid "Please upload a valid image!"
6268
- msgstr ""
6269
-
6270
- #: includes/core/class-fields.php:1464 includes/core/class-fields.php:1485
6271
- msgid "Upload"
6272
- msgstr ""
6273
-
6274
- #: includes/core/class-fields.php:1465
6275
- msgid "Sorry this is not a valid image."
6276
- msgstr ""
6277
-
6278
- #: includes/core/class-fields.php:1466
6279
- msgid "This image is too large!"
6280
- msgstr ""
6281
-
6282
- #: includes/core/class-fields.php:1467
6283
- msgid "This image is too small!"
6284
- msgstr ""
6285
-
6286
- #: includes/core/class-fields.php:1468
6287
- msgid "You can only upload one image"
6288
- msgstr ""
6289
-
6290
- #: includes/core/class-fields.php:1935
6291
- msgid "Current Password"
6292
- msgstr ""
6293
-
6294
- #: includes/core/class-fields.php:1964
6295
- msgid "New Password"
6296
- msgstr ""
6297
-
6298
- #: includes/core/class-fields.php:1996
6299
- #, php-format
6300
- msgid "Confirm %s"
6301
- msgstr ""
6302
-
6303
- #: includes/core/class-fields.php:2231 includes/core/class-fields.php:2292
6304
- msgid "Upload Photo"
6305
- msgstr ""
6306
-
6307
- #: includes/core/class-fields.php:2246 includes/core/class-fields.php:2270
6308
- #: includes/core/um-actions-profile.php:724
6309
- msgid "Change photo"
6310
- msgstr ""
6311
-
6312
- #: includes/core/class-fields.php:2270 includes/core/class-fields.php:2353
6313
- msgid "Processing..."
6314
- msgstr ""
6315
-
6316
- #: includes/core/class-fields.php:2320 includes/core/um-filters-fields.php:230
6317
- msgid "This file has been removed."
6318
- msgstr ""
6319
-
6320
- #: includes/core/class-fields.php:2323 includes/core/class-fields.php:2353
6321
- msgid "Change file"
6322
- msgstr ""
6323
-
6324
- #: includes/core/class-fields.php:2353
6325
- msgid "Save"
6326
- msgstr ""
6327
-
6328
- #: includes/core/class-fields.php:3767
6329
- #, php-format
6330
- msgid ""
6331
- "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some "
6332
- "information!"
6333
- msgstr ""
6334
-
6335
- #: includes/core/class-fields.php:3769
6336
- msgid "This user has not added any information to their profile yet."
6337
- msgstr ""
6338
-
6339
- #: includes/core/class-files.php:100
6340
- msgid "Invalid parameters"
6341
- msgstr ""
6342
-
6343
- #: includes/core/class-files.php:105
6344
- msgid "Invalid coordinates"
6345
- msgstr ""
6346
-
6347
- #: includes/core/class-files.php:110
6348
- msgid "Invalid file ownership"
6349
- msgstr ""
6350
-
6351
- #: includes/core/class-files.php:186 includes/core/class-files.php:271
6352
- msgid "A theme or plugin compatibility issue"
6353
- msgstr ""
6354
-
6355
- #: includes/core/class-files.php:814
6356
- msgid "Ultimate Member: Not a valid temp file"
6357
- msgstr ""
6358
-
6359
- #: includes/core/class-files.php:942
6360
- msgid "Invalid user ID: "
6361
- msgstr ""
6362
-
6363
- #: includes/core/class-files.php:951 includes/core/class-files.php:979
6364
- msgid "Unauthorized to do this attempt."
6365
- msgstr ""
6366
-
6367
- #: includes/core/class-form.php:56 includes/core/class-profile.php:54
6368
- #: includes/core/class-profile.php:70
6369
- msgid "You can not edit this user"
6370
- msgstr ""
6371
-
6372
- #: includes/core/class-password.php:53
6373
- msgid "This is not a valid hash, or it has expired."
6374
- msgstr ""
6375
-
6376
- #: includes/core/class-permalinks.php:180
6377
- msgid "This activation link is expired or have already been used."
6378
- msgstr ""
6379
-
6380
- #: includes/core/class-plugin-updater.php:220
6381
- #, php-format
6382
- msgid ""
6383
- "An unexpected error occurred. Something may be wrong with https://"
6384
- "ultimatemember.com/ or this server&#8217;s configuration. If you continue to "
6385
- "have problems, please try the <a href=\"%s\">support forums</a>."
6386
- msgstr ""
6387
-
6388
- #: includes/core/class-plugin-updater.php:221
6389
- msgid "https://wordpress.org/support/"
6390
- msgstr ""
6391
-
6392
- #: includes/core/class-profile.php:106
6393
- msgid "About"
6394
- msgstr ""
6395
-
6396
- #: includes/core/class-profile.php:110
6397
- msgid "Posts"
6398
- msgstr ""
6399
-
6400
- #: includes/core/class-profile.php:114
6401
- msgid "Comments"
6402
- msgstr ""
6403
-
6404
- #: includes/core/class-profile.php:424 includes/core/class-mail.php:609
6405
- #: includes/core/class-password.php:701
6406
- msgid "Your set password"
6407
- msgstr ""
6408
-
6409
- #: includes/core/class-rest-api.php:217
6410
- msgid "You must specify both a token and API key!"
6411
- msgstr ""
6412
-
6413
- #: includes/core/class-rest-api.php:229
6414
- msgid "Your request could not be authenticated"
6415
- msgstr ""
6416
-
6417
- #: includes/core/class-rest-api.php:241
6418
- msgid "Invalid API key"
6419
- msgstr ""
6420
-
6421
- #: includes/core/class-rest-api.php:420 includes/core/class-rest-api.php:579
6422
- #: includes/core/class-rest-api.php:612
6423
- msgid "You must provide a user ID"
6424
- msgstr ""
6425
-
6426
- #: includes/core/class-rest-api.php:425
6427
- msgid "You need to provide data to update"
6428
- msgstr ""
6429
-
6430
- #: includes/core/class-rest-api.php:434
6431
- msgid "User status has been changed."
6432
- msgstr ""
6433
-
6434
- #: includes/core/class-rest-api.php:463
6435
- msgid "User role has been changed."
6436
- msgstr ""
6437
-
6438
- #: includes/core/class-rest-api.php:467
6439
- msgid "User meta has been changed."
6440
- msgstr ""
6441
-
6442
- #: includes/core/class-rest-api.php:585 includes/core/class-rest-api.php:618
6443
- msgid "Invalid user specified"
6444
- msgstr ""
6445
-
6446
- #: includes/core/class-rest-api.php:592
6447
- msgid "User has been successfully deleted."
6448
- msgstr ""
6449
-
6450
- #: includes/core/class-rest-api.php:798
6451
- msgid "Invalid query!"
6452
- msgstr ""
6453
-
6454
- #: includes/core/class-rest-api.php:1005
6455
- msgid "Ultimate Member REST API"
6456
- msgstr ""
6457
-
6458
- #: includes/core/class-rest-api.php:1010
6459
- msgid "Generate API Key"
6460
- msgstr ""
6461
-
6462
- #: includes/core/class-rest-api.php:1013
6463
- msgid "Public key:"
6464
- msgstr ""
6465
-
6466
- #: includes/core/class-rest-api.php:1014
6467
- msgid "Secret key:"
6468
- msgstr ""
6469
-
6470
- #: includes/core/class-rest-api.php:1015
6471
- msgid "Token:"
6472
- msgstr ""
6473
-
6474
- #: includes/core/class-rest-api.php:1018
6475
- msgid "Revoke API Keys"
6476
- msgstr ""
6477
-
6478
- #: includes/core/class-router.php:24 includes/core/class-router.php:93
6479
- msgid "Wrong action"
6480
- msgstr ""
6481
-
6482
- #: includes/core/class-router.php:27 includes/core/class-router.php:96
6483
- msgid "Wrong resource"
6484
- msgstr ""
6485
-
6486
- #: includes/core/class-router.php:35 includes/core/class-router.php:110
6487
- msgid "Wrong nonce"
6488
- msgstr ""
6489
-
6490
- #: includes/core/class-shortcodes.php:358
6491
- msgid ""
6492
- "This content has been restricted to logged in users only. Please <a href="
6493
- "\"{login_referrer}\">login</a> to view this content."
6494
- msgstr ""
6495
-
6496
- #: includes/core/class-shortcodes.php:518
6497
- msgid "You are already registered"
6498
- msgstr ""
6499
-
6500
- #: includes/core/class-shortcodes.php:759
6501
- msgid "Default Template"
6502
- msgstr ""
6503
-
6504
- #: includes/core/class-uploader.php:627
6505
- msgid "Your image is invalid!"
6506
- msgstr ""
6507
-
6508
- #: includes/core/class-uploader.php:669
6509
- msgid "This media type is not recognized."
6510
- msgstr ""
6511
-
6512
- #: includes/core/class-uploader.php:717
6513
- msgid "Your image is invalid or too large!"
6514
- msgstr ""
6515
-
6516
- #: includes/core/class-uploader.php:723 includes/core/class-uploader.php:725
6517
- #, php-format
6518
- msgid "Your photo is too small. It must be at least %spx wide."
6519
- msgstr ""
6520
-
6521
- #: includes/core/class-uploader.php:779
6522
- msgid "This file type is not recognized."
6523
- msgstr ""
6524
-
6525
- #: includes/core/class-uploader.php:1044
6526
- msgid "Maximum file size allowed: "
6527
- msgstr ""
6528
-
6529
- #: includes/core/class-user.php:828
6530
- msgid "Membership Rejected"
6531
- msgstr ""
6532
-
6533
- #: includes/core/class-user.php:832
6534
- msgid "Membership Inactive"
6535
- msgstr ""
6536
-
6537
- #: includes/core/um-actions-account.php:22
6538
- msgid "You must enter your password"
6539
- msgstr ""
6540
-
6541
- #: includes/core/um-actions-account.php:25
6542
- #: includes/core/um-actions-account.php:42
6543
- msgid "This is not your password"
6544
- msgstr ""
6545
-
6546
- #: includes/core/um-actions-account.php:47
6547
- msgid "Your new password does not match"
6548
- msgstr ""
6549
-
6550
- #: includes/core/um-actions-account.php:54
6551
- #: includes/core/um-actions-password.php:212
6552
- msgid "Your password must contain at least 8 characters"
6553
- msgstr ""
6554
-
6555
- #: includes/core/um-actions-account.php:58
6556
- #: includes/core/um-actions-password.php:216
6557
- msgid "Your password must contain less than 30 characters"
6558
- msgstr ""
6559
-
6560
- #: includes/core/um-actions-account.php:62
6561
- #: includes/core/um-actions-form.php:470
6562
- #: includes/core/um-actions-password.php:220
6563
- msgid ""
6564
- "Your password must contain at least one lowercase letter, one capital letter "
6565
- "and one number"
6566
- msgstr ""
6567
-
6568
- #: includes/core/um-actions-account.php:80
6569
- msgid "Your username is invalid"
6570
- msgstr ""
6571
-
6572
- #: includes/core/um-actions-account.php:85
6573
- msgid "You must provide your first name"
6574
- msgstr ""
6575
-
6576
- #: includes/core/um-actions-account.php:89
6577
- msgid "You must provide your last name"
6578
- msgstr ""
6579
-
6580
- #: includes/core/um-actions-account.php:94
6581
- msgid "You must provide your e-mail"
6582
- msgstr ""
6583
-
6584
- #: includes/core/um-actions-account.php:97
6585
- msgid "Please provide a valid e-mail"
6586
- msgstr ""
6587
-
6588
- #: includes/core/um-actions-account.php:100
6589
- msgid "Email already linked to another account"
6590
- msgstr ""
6591
-
6592
- #: includes/core/um-actions-account.php:390
6593
- msgid "Email me when"
6594
- msgstr ""
6595
-
6596
- #: includes/core/um-actions-core.php:27
6597
- msgid "Super administrators can not be modified."
6598
- msgstr ""
6599
-
6600
- #: includes/core/um-actions-core.php:89 includes/core/um-actions-core.php:100
6601
- #: includes/core/um-actions-core.php:110 includes/core/um-actions-core.php:120
6602
- #: includes/core/um-actions-core.php:130
6603
- msgid "You do not have permission to make this action."
6604
- msgstr ""
6605
-
6606
- #: includes/core/um-actions-core.php:140
6607
- msgid "You do not have permission to delete this user."
6608
- msgstr ""
6609
-
6610
- #: includes/core/um-actions-form.php:86
6611
- msgid "You are not allowed to use this word as your username."
6612
- msgstr ""
6613
-
6614
- #: includes/core/um-actions-form.php:276 includes/core/um-actions-form.php:388
6615
- #: includes/core/um-actions-form.php:392 includes/core/um-actions-form.php:396
6616
- #, php-format
6617
- msgid "%s is required."
6618
- msgstr ""
6619
-
6620
- #: includes/core/um-actions-form.php:401
6621
- msgid "Please specify account type."
6622
- msgstr ""
6623
-
6624
- #: includes/core/um-actions-form.php:433
6625
- msgid "This field is required"
6626
- msgstr ""
6627
-
6628
- #: includes/core/um-actions-form.php:435
6629
- #, php-format
6630
- msgid "%s is required"
6631
- msgstr ""
6632
-
6633
- #: includes/core/um-actions-form.php:442
6634
- #, php-format
6635
- msgid "You are only allowed to enter a maximum of %s words"
6636
- msgstr ""
6637
-
6638
- #: includes/core/um-actions-form.php:448
6639
- #, php-format
6640
- msgid "Your %s must contain at least %s characters"
6641
- msgstr ""
6642
-
6643
- #: includes/core/um-actions-form.php:454
6644
- #, php-format
6645
- msgid "Your %s must contain less than %s characters"
6646
- msgstr ""
6647
-
6648
- #: includes/core/um-actions-form.php:463
6649
- msgid "You can not use HTML tags here"
6650
- msgstr ""
6651
-
6652
- #: includes/core/um-actions-form.php:476
6653
- msgid "Please confirm your password"
6654
- msgstr ""
6655
-
6656
- #: includes/core/um-actions-form.php:479
6657
- #: includes/core/um-actions-password.php:230
6658
- msgid "Your passwords do not match"
6659
- msgstr ""
6660
-
6661
- #: includes/core/um-actions-form.php:485
6662
- #, php-format
6663
- msgid "Please select at least %s choices"
6664
- msgstr ""
6665
-
6666
- #: includes/core/um-actions-form.php:491
6667
- #, php-format
6668
- msgid "You can only select up to %s choices"
6669
- msgstr ""
6670
-
6671
- #: includes/core/um-actions-form.php:497
6672
- #, php-format
6673
- msgid "Minimum number limit is %s"
6674
- msgstr ""
6675
-
6676
- #: includes/core/um-actions-form.php:503
6677
- #, php-format
6678
- msgid "Maximum number limit is %s"
6679
- msgstr ""
6680
-
6681
- #: includes/core/um-actions-form.php:539
6682
- msgid "Please enter numbers only in this field"
6683
- msgstr ""
6684
-
6685
- #: includes/core/um-actions-form.php:545
6686
- msgid "Please enter a valid phone number"
6687
- msgstr ""
6688
-
6689
- #: includes/core/um-actions-form.php:551 includes/core/um-actions-form.php:557
6690
- #: includes/core/um-actions-form.php:563 includes/core/um-actions-form.php:569
6691
- #: includes/core/um-actions-form.php:575 includes/core/um-actions-form.php:581
6692
- #: includes/core/um-actions-form.php:587 includes/core/um-actions-form.php:593
6693
- #: includes/core/um-actions-form.php:605
6694
- #, php-format
6695
- msgid "Please enter a valid %s username or profile URL"
6696
- msgstr ""
6697
-
6698
- #: includes/core/um-actions-form.php:599
6699
- msgid "Please enter a valid URL"
6700
- msgstr ""
6701
-
6702
- #: includes/core/um-actions-form.php:612 includes/core/um-actions-form.php:626
6703
- msgid "You must provide a username"
6704
- msgstr ""
6705
-
6706
- #: includes/core/um-actions-form.php:614 includes/core/um-actions-form.php:628
6707
- msgid "Your username is already taken"
6708
- msgstr ""
6709
-
6710
- #: includes/core/um-actions-form.php:616
6711
- msgid "Username cannot be an email"
6712
- msgstr ""
6713
-
6714
- #: includes/core/um-actions-form.php:618 includes/core/um-actions-form.php:632
6715
- msgid "Your username contains invalid characters"
6716
- msgstr ""
6717
-
6718
- #: includes/core/um-actions-form.php:630 includes/core/um-actions-form.php:652
6719
- #: includes/core/um-actions-form.php:654 includes/core/um-actions-form.php:666
6720
- #: includes/core/um-actions-form.php:673
6721
- msgid "This email is already linked to an existing account"
6722
- msgstr ""
6723
-
6724
- #: includes/core/um-actions-form.php:650
6725
- msgid "You must provide your email"
6726
- msgstr ""
6727
-
6728
- #: includes/core/um-actions-form.php:656 includes/core/um-actions-form.php:664
6729
- msgid "This is not a valid email"
6730
- msgstr ""
6731
-
6732
- #: includes/core/um-actions-form.php:658
6733
- msgid "Your email contains invalid characters"
6734
- msgstr ""
6735
-
6736
- #: includes/core/um-actions-form.php:698
6737
- msgid "You must provide a unique value"
6738
- msgstr ""
6739
-
6740
- #: includes/core/um-actions-form.php:708
6741
- msgid "You must provide alphabetic letters"
6742
- msgstr ""
6743
-
6744
- #: includes/core/um-actions-form.php:718
6745
- msgid "You must provide lowercase letters."
6746
- msgstr ""
6747
-
6748
- #: includes/core/um-actions-form.php:737
6749
- #, php-format
6750
- msgid "Your user description must contain less than %s characters"
6751
- msgstr ""
6752
-
6753
- #: includes/core/um-actions-global.php:30
6754
- msgid "Only fill in if you are not human"
6755
- msgstr ""
6756
-
6757
- #: includes/core/um-actions-login.php:20
6758
- msgid "Please enter your username or email"
6759
- msgstr ""
6760
-
6761
- #: includes/core/um-actions-login.php:24
6762
- msgid "Please enter your username"
6763
- msgstr ""
6764
-
6765
- #: includes/core/um-actions-login.php:28
6766
- msgid "Please enter your email"
6767
- msgstr ""
6768
-
6769
- #: includes/core/um-actions-login.php:52
6770
- msgid " Sorry, we can't find an account with that email address"
6771
- msgstr ""
6772
-
6773
- #: includes/core/um-actions-login.php:54
6774
- msgid " Sorry, we can't find an account with that username"
6775
- msgstr ""
6776
-
6777
- #: includes/core/um-actions-login.php:58
6778
- msgid "Please enter your password"
6779
- msgstr ""
6780
-
6781
- #: includes/core/um-actions-login.php:66
6782
- msgid "Password is incorrect. Please try again."
6783
- msgstr ""
6784
-
6785
- #: includes/core/um-actions-login.php:194
6786
- msgid "This action has been prevented for security measures."
6787
- msgstr ""
6788
-
6789
- #: includes/core/um-actions-login.php:418
6790
- msgid "Keep me signed in"
6791
- msgstr ""
6792
-
6793
- #: includes/core/um-actions-login.php:453
6794
- msgid "Forgot your password?"
6795
- msgstr ""
6796
-
6797
- #: includes/core/um-actions-members.php:83
6798
- msgid "Search"
6799
- msgstr ""
6800
-
6801
- #: includes/core/um-actions-members.php:84
6802
- msgid "Reset"
6803
- msgstr ""
6804
-
6805
- #: includes/core/um-actions-members.php:159
6806
- msgid "Jump to page:"
6807
- msgstr ""
6808
-
6809
- #: includes/core/um-actions-members.php:164
6810
- #, php-format
6811
- msgid "%s of %d"
6812
- msgstr ""
6813
-
6814
- #: includes/core/um-actions-members.php:174
6815
- msgid "First Page"
6816
- msgstr ""
6817
-
6818
- #: includes/core/um-actions-members.php:180
6819
- msgid "Previous"
6820
- msgstr ""
6821
-
6822
- #: includes/core/um-actions-members.php:200
6823
- msgid "Next"
6824
- msgstr ""
6825
-
6826
- #: includes/core/um-actions-members.php:206
6827
- msgid "Last Page"
6828
- msgstr ""
6829
-
6830
- #: includes/core/um-actions-misc.php:115
6831
- msgid "Your account was updated successfully."
6832
- msgstr ""
6833
-
6834
- #: includes/core/um-actions-misc.php:119
6835
- msgid "You have successfully changed your password."
6836
- msgstr ""
6837
-
6838
- #: includes/core/um-actions-misc.php:123
6839
- msgid "Your account is now active! You can login."
6840
- msgstr ""
6841
-
6842
- #: includes/core/um-actions-misc.php:157
6843
- msgid "An error has been encountered"
6844
- msgstr ""
6845
-
6846
- #: includes/core/um-actions-misc.php:161
6847
- msgid "Registration is currently disabled"
6848
- msgstr ""
6849
-
6850
- #: includes/core/um-actions-misc.php:165 includes/core/um-filters-login.php:40
6851
- msgid "This email address has been blocked."
6852
- msgstr ""
6853
-
6854
- #: includes/core/um-actions-misc.php:169
6855
- msgid "We do not accept registrations from that domain."
6856
- msgstr ""
6857
-
6858
- #: includes/core/um-actions-misc.php:173 includes/core/um-filters-login.php:43
6859
- msgid "Your IP address has been blocked."
6860
- msgstr ""
6861
-
6862
- #: includes/core/um-actions-misc.php:177 includes/core/um-filters-login.php:136
6863
- msgid "Your account has been disabled."
6864
- msgstr ""
6865
-
6866
- #: includes/core/um-actions-misc.php:181 includes/core/um-filters-login.php:139
6867
- msgid "Your account has not been approved yet."
6868
- msgstr ""
6869
-
6870
- #: includes/core/um-actions-misc.php:185 includes/core/um-filters-login.php:142
6871
- msgid "Your account is awaiting e-mail verification."
6872
- msgstr ""
6873
-
6874
- #: includes/core/um-actions-misc.php:189 includes/core/um-filters-login.php:145
6875
- msgid "Your membership request has been rejected."
6876
- msgstr ""
6877
-
6878
- #: includes/core/um-actions-password.php:145
6879
- msgid "Please provide your username or email"
6880
- msgstr ""
6881
-
6882
- #: includes/core/um-actions-password.php:149
6883
- msgid "We can't find an account registered with that address or username"
6884
- msgstr ""
6885
-
6886
- #: includes/core/um-actions-password.php:168
6887
- msgid ""
6888
- "You have reached the limit for requesting password change for this user "
6889
- "already. Contact support if you cannot open the email"
6890
- msgstr ""
6891
-
6892
- #: includes/core/um-actions-password.php:206
6893
- msgid "You must enter a new password"
6894
- msgstr ""
6895
-
6896
- #: includes/core/um-actions-password.php:226
6897
- msgid "You must confirm your new password"
6898
- msgstr ""
6899
-
6900
- #: includes/core/um-actions-password.php:307
6901
- msgid "Reset my password"
6902
- msgstr ""
6903
-
6904
- #: includes/core/um-actions-password.php:333
6905
- msgid "Change my password"
6906
- msgstr ""
6907
-
6908
- #: includes/core/um-actions-profile.php:186
6909
- msgid "You are not allowed to edit this user."
6910
- msgstr ""
6911
-
6912
- #: includes/core/um-actions-profile.php:242
6913
- #, php-format
6914
- msgid "Your choosed %s"
6915
- msgstr ""
6916
-
6917
- #: includes/core/um-actions-profile.php:552
6918
- msgid "Change cover photo"
6919
- msgstr ""
6920
-
6921
- #: includes/core/um-actions-profile.php:595
6922
- msgid "Upload a cover photo"
6923
- msgstr ""
6924
-
6925
- #: includes/core/um-actions-profile.php:692
6926
- msgid "Upload photo"
6927
- msgstr ""
6928
-
6929
- #: includes/core/um-actions-profile.php:725
6930
- msgid "Remove photo"
6931
- msgstr ""
6932
-
6933
- #: includes/core/um-actions-profile.php:889
6934
- msgid "Tell us a bit about yourself..."
6935
- msgstr ""
6936
-
6937
- #: includes/core/um-actions-profile.php:907
6938
- #, php-format
6939
- msgid "This user account status is %s"
6940
- msgstr ""
6941
-
6942
- #: includes/core/um-actions-profile.php:1046
6943
- #: includes/core/um-actions-profile.php:1077
6944
- msgid "Edit Profile"
6945
- msgstr ""
6946
-
6947
- #: includes/core/um-actions-profile.php:1078
6948
- msgid "My Account"
6949
- msgstr ""
6950
-
6951
- #: includes/core/um-actions-user.php:14
6952
- msgid "Your account"
6953
- msgstr ""
6954
-
6955
- #: includes/core/um-filters-fields.php:16
6956
- msgid "Required"
6957
- msgstr ""
6958
-
6959
- #: includes/core/um-filters-fields.php:34
6960
- msgid "Invalid soundcloud track ID"
6961
- msgstr ""
6962
-
6963
- #: includes/core/um-filters-fields.php:118
6964
- #, php-format
6965
- msgid "Joined %s"
6966
- msgstr ""
6967
-
6968
- #: includes/core/um-filters-fields.php:133
6969
- #, php-format
6970
- msgid "Last login: %s"
6971
- msgstr ""
6972
-
6973
- #: includes/core/um-filters-fields.php:261
6974
- msgid "Untitled photo"
6975
- msgstr ""
6976
-
6977
- #: includes/core/um-filters-profile.php:82
6978
- #: includes/core/um-filters-profile.php:101
6979
- msgid "max"
6980
- msgstr ""
6981
-
6982
- #: includes/core/um-filters-user.php:37
6983
- msgid "Deactivate this account"
6984
- msgstr ""
6985
-
6986
- #: includes/core/um-filters-user.php:41
6987
- msgid "Reactivate this account"
6988
- msgstr ""
6989
-
6990
- #: includes/core/um-filters-user.php:47
6991
- msgid "Delete this user"
6992
- msgstr ""
6993
-
6994
- #: includes/core/um-filters-user.php:51
6995
- msgid "Login as this user"
6996
- msgstr ""
6997
-
6998
- #: includes/core/um-navmenu.php:25
6999
- msgid "Display Mode"
7000
- msgstr ""
7001
-
7002
- #: includes/core/um-navmenu.php:26
7003
- msgid "By Role"
7004
- msgstr ""
7005
-
7006
- #: includes/core/um-navmenu.php:134
7007
- msgid "Ultimate Member Menu Settings"
7008
- msgstr ""
7009
-
7010
- #: includes/core/um-navmenu.php:138
7011
- msgid "Who can see this menu link?"
7012
- msgstr ""
7013
-
7014
- #: includes/core/um-navmenu.php:145
7015
- msgid "Logged Out Users"
7016
- msgstr ""
7017
-
7018
- #: includes/core/um-navmenu.php:148
7019
- msgid "Logged In Users"
7020
- msgstr ""
7021
-
7022
- #: includes/core/um-navmenu.php:154
7023
- msgid "Select the member roles that can see this link"
7024
- msgstr ""
7025
-
7026
- #: includes/um-short-functions.php:566
7027
- msgid "date submitted"
7028
- msgstr ""
7029
-
7030
- #: includes/um-short-functions.php:572
7031
- msgid "(empty)"
7032
- msgstr ""
7033
-
7034
- #: includes/widgets/class-um-search-widget.php:26
7035
- msgid "Ultimate Member - Search"
7036
- msgstr ""
7037
-
7038
- #: includes/widgets/class-um-search-widget.php:29
7039
- msgid "Shows the search member form."
7040
- msgstr ""
7041
-
7042
- #: includes/widgets/class-um-search-widget.php:67
7043
- msgid "Search Users"
7044
- msgstr ""
7045
-
7046
- #: includes/widgets/class-um-search-widget.php:80
7047
- msgid "Title:"
7048
- msgstr ""
7049
-
7050
- #: templates/members-grid.php:65
7051
- msgid "Edit profile"
7052
- msgstr ""
7053
-
7054
- #: templates/password-reset.php:77
7055
- msgid ""
7056
- "We have sent you a password reset link to your e-mail. Please check your "
7057
- "inbox."
7058
- msgstr ""
7059
-
7060
- #: templates/profile/comments-single.php:6
7061
- #, php-format
7062
- msgid "On <a href=\"%1$s\">%2$s</a>"
7063
- msgstr ""
7064
-
7065
- #: templates/profile/comments-single.php:15 templates/profile/comments.php:14
7066
- msgid "load more comments"
7067
- msgstr ""
7068
-
7069
- #: templates/profile/comments.php:23
7070
- msgid "You have not made any comments."
7071
- msgstr ""
7072
-
7073
- #: templates/profile/comments.php:23
7074
- msgid "This user has not made any comments."
7075
- msgstr ""
7076
-
7077
- #: templates/profile/posts-single.php:16
7078
- #, php-format
7079
- msgid "%s ago"
7080
- msgstr ""
7081
-
7082
- #: templates/profile/posts-single.php:17
7083
- msgid "in"
7084
- msgstr ""
7085
-
7086
- #: templates/profile/posts-single.php:18
7087
- msgid "no comments"
7088
- msgstr ""
7089
-
7090
- #: templates/profile/posts-single.php:18
7091
- msgid "1 comment"
7092
- msgstr ""
7093
-
7094
- #: templates/profile/posts-single.php:18
7095
- #, php-format
7096
- msgid "% comments"
7097
- msgstr ""
7098
-
7099
- #: templates/profile/posts-single.php:27 templates/profile/posts.php:35
7100
- msgid "load more posts"
7101
- msgstr ""
7102
-
7103
- #: templates/profile/posts.php:43
7104
- msgid "You have not created any posts."
7105
- msgstr ""
7106
-
7107
- #: templates/profile/posts.php:43
7108
- msgid "This user has not created any posts."
7109
- msgstr ""
7110
-
7111
- #~ msgid "outdatedBrowser_page_message"
7112
- #~ msgstr ""
7113
- #~ "The site you are visiting can only be viewed using a modern browser. "
7114
- #~ "Please upgrade your browser to increase safety and your browsing "
7115
- #~ "experience. Choose one of the browsers above. If you don't care <a href="
7116
- #~ "\"?forwardOutdatedBrowser=1\">click here</a>"
7117
-
7118
- #~ msgid "404_page_message"
7119
- #~ msgstr ""
7120
- #~ "The Page you are looking for doesn't exist or an other error occurred. <a "
7121
- #~ "href=\"javascript:history.go(-1)\">Go back</a>, or head over to <a href="
7122
- #~ "\"%s\">%s</a> to choose a new direction."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,4 +1,4 @@
1
- === Ultimate Member - User Profile & Membership Plugin ===
2
  Author URI: https://ultimatemember.com/
3
  Plugin URI: https://ultimatemember.com/
4
  Contributors: ultimatemember, champsupertramp, nsinelnikov
@@ -6,8 +6,8 @@ Donate link:
6
  Tags: community, member, membership, user-profile, user-registration
7
  Requires PHP: 5.6
8
  Requires at least: 5.0
9
- Tested up to: 5.4.1
10
- Stable tag: 2.1.6
11
  License: GNU Version 2 or Any Later Version
12
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
13
 
@@ -67,6 +67,7 @@ Ultimate Member has a range of extensions that allow you to extend the power of
67
 
68
  = Free Extensions =
69
 
 
70
  * [ForumWP](https://ultimatemember.com/extensions/forumwp/) - This free extension integrates Ultimate Member with the forum plugin [ForumWP](https://forumwpplugin.com).
71
  * [Terms & Conditions](https://ultimatemember.com/extensions/terms-conditions/) - Add a terms and condition checkbox to your registration forms & require users to agree to your T&Cs before registering on your site.
72
  * [Google reCAPTCHA](https://ultimatemember.com/extensions/google-recaptcha/) - Stop bots on your registration & login forms with Google reCAPTCHA
@@ -76,9 +77,17 @@ Ultimate Member has a range of extensions that allow you to extend the power of
76
 
77
  Our official [theme](https://ultimatemember.com/theme/) is purpose built for websites that have logged in and out users. The [theme](https://ultimatemember.com/theme/) has deep integration with Ultimate Member plugin and the extensions, different header designs for logged-in/out users and works alongside the Beaver Builder and Elementor page builders.
78
 
 
 
 
 
79
  = ForumWP =
80
 
81
- In addition to Ultimate Member we also have another plugin called [ForumWP](https://forumwpplugin.com/). ForumWP is a forum plugin which adds an online forum to your website, allowing users to create topics and write replies. Forums are a great way to build and grow an online community.
 
 
 
 
82
 
83
  = Development * Translations =
84
 
@@ -142,9 +151,41 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
142
 
143
  = Important: =
144
 
145
- * To learn more about version 2.1 please see this [topic](https://wordpress.org/support/topic/version-2-1-4/)
146
  * UM2.1+ is a significant update to the Member Directories' code base from 2.0.x. Please make sure you take a full-site backup with restore point before updating the plugin
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  = 2.1.6: June 1, 2020 =
149
 
150
  * Enhancements:
1
+ === Ultimate Member - User Profile, Registration & Membership Plugin ===
2
  Author URI: https://ultimatemember.com/
3
  Plugin URI: https://ultimatemember.com/
4
  Contributors: ultimatemember, champsupertramp, nsinelnikov
6
  Tags: community, member, membership, user-profile, user-registration
7
  Requires PHP: 5.6
8
  Requires at least: 5.0
9
+ Tested up to: 5.5
10
+ Stable tag: 2.1.7
11
  License: GNU Version 2 or Any Later Version
12
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
13
 
67
 
68
  = Free Extensions =
69
 
70
+ * [JobsBoardWP](https://wordpress.org/plugins/um-jobboardwp) - This free extension integrates Ultimate Member with the job board plugin [JobBoardWP](https://wordpress.org/plugins/jobboardwp).
71
  * [ForumWP](https://ultimatemember.com/extensions/forumwp/) - This free extension integrates Ultimate Member with the forum plugin [ForumWP](https://forumwpplugin.com).
72
  * [Terms & Conditions](https://ultimatemember.com/extensions/terms-conditions/) - Add a terms and condition checkbox to your registration forms & require users to agree to your T&Cs before registering on your site.
73
  * [Google reCAPTCHA](https://ultimatemember.com/extensions/google-recaptcha/) - Stop bots on your registration & login forms with Google reCAPTCHA
77
 
78
  Our official [theme](https://ultimatemember.com/theme/) is purpose built for websites that have logged in and out users. The [theme](https://ultimatemember.com/theme/) has deep integration with Ultimate Member plugin and the extensions, different header designs for logged-in/out users and works alongside the Beaver Builder and Elementor page builders.
79
 
80
+ = Our other plugins =
81
+
82
+ In addition to Ultimate Member, we also have two other plugins: [ForumWP](https://forumwpplugin.com/) and [JobBoardWP](https://wordpress.org/plugins/jobboardwp).
83
+
84
  = ForumWP =
85
 
86
+ [ForumWP](https://forumwpplugin.com/) is a forum plugin which adds an online forum to your website, allowing users to create topics and write replies. Forums are a great way to build and grow an online community.
87
+
88
+ = JobBoardWP =
89
+
90
+ [JobBoardWP](https://wordpress.org/plugins/jobboardwp) is a job board plugin which adds a modern job board to your website. Display job listings and allow employers to submit and manage jobs all from the front-end.
91
 
92
  = Development * Translations =
93
 
151
 
152
  = Important: =
153
 
154
+ * To learn more about version 2.1 please see this [docs](https://docs.ultimatemember.com/article/1512-upgrade-2-1-0)
155
  * UM2.1+ is a significant update to the Member Directories' code base from 2.0.x. Please make sure you take a full-site backup with restore point before updating the plugin
156
 
157
+ = 2.1.7: August 12, 2020 =
158
+
159
+ * Enhancements:
160
+
161
+ - Added dependency functions for plugins: [Ultimate Member - JobBoardWP integration](https://wordpress.org/plugins/um-jobboardwp) & [JobBoardWP](https://wordpress.org/plugins/jobboardwp)
162
+ - Added account privacy setting for the avoiding profile indexation
163
+ - Added setting "Change image orientation" based on image EXIF data
164
+ - Added setting "Account Deletion without password Custom Text"
165
+
166
+ * Bugfixes:
167
+
168
+ - Fixed security lacks for 'redirect_to' attributes
169
+ - Fixed account submission when change a password
170
+ - Fixed updating UM roles metadata (WP capabilities section) when 3rd-party plugins update the caps for the UM roles
171
+ - Fixed member directory roles in query (the case when selected some roles, but current user can see another only)
172
+ - Fixed member directory sorting
173
+ - Fixed member directory list dropdown init after changing view type
174
+ - Fixed member directory admin filtering by the 'user_registered' field
175
+ - Fixed validation when using HTML in textarea
176
+ - Fixed cleaning user old uploads
177
+ - Fixed conditional logic for file/image-type fields
178
+ - Fixed "get_profile_photo_size" function (avoid PHP notice with array_combine)
179
+ - Fixed password reset/change form when other forms are initialized at the same page
180
+ - Fixed getting extension updates on multisites
181
+ - Fixed the 'wp_authenticate_user' filter's variables (changed username string to WP_User object)
182
+ - Fixed SEO link canonical for the profile page
183
+ - Fixed displaying error & notice when the text is empty
184
+
185
+ * Deprecated:
186
+
187
+ - Deprecated JS event 'um_before_modal_removed', use wp.hooks action 'um_before_modal_removed' instead
188
+
189
  = 2.1.6: June 1, 2020 =
190
 
191
  * Enhancements:
templates/members.php CHANGED
@@ -79,7 +79,7 @@ if ( ! empty( $args['enable_sorting'] ) ) {
79
  $sorting_options_prepared[] = $default_sorting;
80
 
81
  $label = $default_sorting;
82
- if ( ! empty( $args['sortby_custom_label'] ) ) {
83
  $label = $args['sortby_custom_label'];
84
  } elseif ( ! empty( $all_sorting_options[ $default_sorting ] ) ) {
85
  $label = $all_sorting_options[ $default_sorting ];
79
  $sorting_options_prepared[] = $default_sorting;
80
 
81
  $label = $default_sorting;
82
+ if ( ! empty( $args['sortby_custom_label'] ) && 'other' == $args['sortby'] ) {
83
  $label = $args['sortby_custom_label'];
84
  } elseif ( ! empty( $all_sorting_options[ $default_sorting ] ) ) {
85
  $label = $all_sorting_options[ $default_sorting ];
templates/modal/um_view_photo.php CHANGED
@@ -2,7 +2,10 @@
2
 
3
  <div id="um_view_photo" style="display:none">
4
 
5
- <a href="javascript:void(0);" data-action="um_remove_modal" class="um-modal-close"><i class="um-faicon-times"></i></a>
 
 
 
6
 
7
  <div class="um-modal-body photo">
8
  <div class="um-modal-photo"></div>
2
 
3
  <div id="um_view_photo" style="display:none">
4
 
5
+ <a href="javascript:void(0);" data-action="um_remove_modal" class="um-modal-close"
6
+ aria-label="<?php esc_attr_e( 'Close view photo modal', 'ultimate-member' ) ?>">
7
+ <i class="um-faicon-times"></i>
8
+ </a>
9
 
10
  <div class="um-modal-body photo">
11
  <div class="um-modal-photo"></div>
templates/password-change.php CHANGED
@@ -3,11 +3,11 @@
3
  <div class="um <?php echo esc_attr( $this->get_class( $mode ) ); ?> um-<?php echo esc_attr( $form_id ); ?>">
4
 
5
  <div class="um-form">
6
-
7
  <form method="post" action="">
8
  <input type="hidden" name="_um_password_change" id="_um_password_change" value="1" />
9
  <input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr( $args['user_id'] ); ?>" />
10
- <input type="hidden" name="rp_key" value="<?php echo esc_attr( $rp_key ); ?>">
11
 
12
  <?php
13
  /**
@@ -33,6 +33,8 @@
33
 
34
  $fields = UM()->builtin()->get_specific_fields( 'user_password' );
35
 
 
 
36
  $output = null;
37
  foreach ( $fields as $key => $data ) {
38
  $output .= UM()->fields()->edit_field( $key, $data );
3
  <div class="um <?php echo esc_attr( $this->get_class( $mode ) ); ?> um-<?php echo esc_attr( $form_id ); ?>">
4
 
5
  <div class="um-form">
6
+
7
  <form method="post" action="">
8
  <input type="hidden" name="_um_password_change" id="_um_password_change" value="1" />
9
  <input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr( $args['user_id'] ); ?>" />
10
+ <input type="hidden" name="rp_key" value="<?php echo esc_attr( $rp_key ); ?>" />
11
 
12
  <?php
13
  /**
33
 
34
  $fields = UM()->builtin()->get_specific_fields( 'user_password' );
35
 
36
+ UM()->fields()->set_mode = 'password';
37
+
38
  $output = null;
39
  foreach ( $fields as $key => $data ) {
40
  $output .= UM()->fields()->edit_field( $key, $data );
templates/register.php CHANGED
@@ -1,4 +1,8 @@
1
- <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
 
 
 
 
2
 
3
  <div class="um <?php echo esc_attr( $this->get_class( $mode ) ); ?> um-<?php echo esc_attr( $form_id ); ?>">
4
 
1
+ <?php if ( ! defined( 'ABSPATH' ) ) exit;
2
+
3
+ if ( ! is_user_logged_in() ) {
4
+ um_reset_user();
5
+ } ?>
6
 
7
  <div class="um <?php echo esc_attr( $this->get_class( $mode ) ); ?> um-<?php echo esc_attr( $form_id ); ?>">
8
 
ultimate-member.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
- Version: 2.1.6
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimate-member
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
+ Version: 2.1.7
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimate-member