Version Description
Download this release
Release Info
Developer | ultimatemember |
Plugin | ![]() |
Version | 1.0.24 |
Comparing to | |
See all releases |
Code changes from version 1.0.23 to 1.0.24
- admin/core/um-admin-access.php +6 -1
- core/um-actions-access.php +12 -1
- core/um-builtin.php +68 -68
- core/um-fields.php +6 -1
- core/um-filters-avatars.php +6 -2
- index.php +1 -1
- languages/ultimatemember-en_US.mo +0 -0
- languages/ultimatemember-en_US.po +388 -217
- readme.txt +7 -1
admin/core/um-admin-access.php
CHANGED
@@ -34,8 +34,13 @@ class UM_Admin_Access {
|
|
34 |
*** @Checks core post type
|
35 |
***/
|
36 |
function core_post_type( $post_type ){
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
return true;
|
|
|
39 |
return false;
|
40 |
}
|
41 |
|
34 |
*** @Checks core post type
|
35 |
***/
|
36 |
function core_post_type( $post_type ){
|
37 |
+
|
38 |
+
if ( strstr($post_type, 'um_') )
|
39 |
+
return true;
|
40 |
+
|
41 |
+
if ( !class_exists('UM_bbPress_API') && in_array($post_type,array('forum','topic','reply')) )
|
42 |
return true;
|
43 |
+
|
44 |
return false;
|
45 |
}
|
46 |
|
core/um-actions-access.php
CHANGED
@@ -73,7 +73,18 @@
|
|
73 |
$args = $ultimatemember->access->get_meta( $post_id );
|
74 |
extract($args);
|
75 |
|
76 |
-
if ( !isset( $args['custom_access_settings'] ) || $args['custom_access_settings'] == 0 )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
$redirect_to = null;
|
79 |
|
73 |
$args = $ultimatemember->access->get_meta( $post_id );
|
74 |
extract($args);
|
75 |
|
76 |
+
if ( !isset( $args['custom_access_settings'] ) || $args['custom_access_settings'] == 0 ) {
|
77 |
+
|
78 |
+
$post_id = apply_filters('um_access_control_for_parent_posts', $post_id );
|
79 |
+
|
80 |
+
$args = $ultimatemember->access->get_meta( $post_id );
|
81 |
+
extract($args);
|
82 |
+
|
83 |
+
if ( !isset( $args['custom_access_settings'] ) || $args['custom_access_settings'] == 0 ) {
|
84 |
+
return;
|
85 |
+
}
|
86 |
+
|
87 |
+
}
|
88 |
|
89 |
$redirect_to = null;
|
90 |
|
core/um-builtin.php
CHANGED
@@ -442,10 +442,10 @@ class UM_Builtin {
|
|
442 |
$this->predefined_fields = array(
|
443 |
|
444 |
'user_login' => array(
|
445 |
-
'title' => 'Username',
|
446 |
'metakey' => 'user_login',
|
447 |
'type' => 'text',
|
448 |
-
'label' => 'Username',
|
449 |
'required' => 1,
|
450 |
'public' => 1,
|
451 |
'editable' => 0,
|
@@ -455,10 +455,10 @@ class UM_Builtin {
|
|
455 |
),
|
456 |
|
457 |
'username' => array(
|
458 |
-
'title' => 'Username or E-mail',
|
459 |
'metakey' => 'username',
|
460 |
'type' => 'text',
|
461 |
-
'label' => 'Username or E-mail',
|
462 |
'required' => 1,
|
463 |
'public' => 1,
|
464 |
'editable' => 0,
|
@@ -466,10 +466,10 @@ class UM_Builtin {
|
|
466 |
),
|
467 |
|
468 |
'user_password' => array(
|
469 |
-
'title' => 'Password',
|
470 |
'metakey' => 'user_password',
|
471 |
'type' => 'password',
|
472 |
-
'label' => 'Password',
|
473 |
'required' => 1,
|
474 |
'public' => 1,
|
475 |
'editable' => 1,
|
@@ -480,40 +480,40 @@ class UM_Builtin {
|
|
480 |
),
|
481 |
|
482 |
'first_name' => array(
|
483 |
-
'title' => 'First Name',
|
484 |
'metakey' => 'first_name',
|
485 |
'type' => 'text',
|
486 |
-
'label' => 'First Name',
|
487 |
'required' => 0,
|
488 |
'public' => 1,
|
489 |
'editable' => 1,
|
490 |
),
|
491 |
|
492 |
'last_name' => array(
|
493 |
-
'title' => 'Last Name',
|
494 |
'metakey' => 'last_name',
|
495 |
'type' => 'text',
|
496 |
-
'label' => 'Last Name',
|
497 |
'required' => 0,
|
498 |
'public' => 1,
|
499 |
'editable' => 1,
|
500 |
),
|
501 |
|
502 |
'display_name' => array(
|
503 |
-
'title' => 'Display Name',
|
504 |
'metakey' => 'display_name',
|
505 |
'type' => 'text',
|
506 |
-
'label' => 'Display Name',
|
507 |
'required' => 0,
|
508 |
'public' => 1,
|
509 |
'editable' => 1,
|
510 |
),
|
511 |
|
512 |
'user_email' => array(
|
513 |
-
'title' => 'E-mail Address',
|
514 |
'metakey' => 'user_email',
|
515 |
'type' => 'text',
|
516 |
-
'label' => 'E-mail Address',
|
517 |
'required' => 0,
|
518 |
'public' => 1,
|
519 |
'editable' => 1,
|
@@ -521,10 +521,10 @@ class UM_Builtin {
|
|
521 |
),
|
522 |
|
523 |
'description' => array(
|
524 |
-
'title' => 'Biography',
|
525 |
'metakey' => 'description',
|
526 |
'type' => 'textarea',
|
527 |
-
'label' => 'Biography',
|
528 |
'html' => 0,
|
529 |
'required' => 0,
|
530 |
'public' => 1,
|
@@ -534,10 +534,10 @@ class UM_Builtin {
|
|
534 |
),
|
535 |
|
536 |
'birth_date' => array(
|
537 |
-
'title' => 'Birth Date',
|
538 |
'metakey' => 'birth_date',
|
539 |
'type' => 'date',
|
540 |
-
'label' => 'Birth Date',
|
541 |
'required' => 0,
|
542 |
'public' => 1,
|
543 |
'editable' => 1,
|
@@ -548,10 +548,10 @@ class UM_Builtin {
|
|
548 |
),
|
549 |
|
550 |
'gender' => array(
|
551 |
-
'title' => 'Gender',
|
552 |
'metakey' => 'gender',
|
553 |
'type' => 'radio',
|
554 |
-
'label' => 'Gender',
|
555 |
'required' => 0,
|
556 |
'public' => 1,
|
557 |
'editable' => 1,
|
@@ -559,10 +559,10 @@ class UM_Builtin {
|
|
559 |
),
|
560 |
|
561 |
'country' => array(
|
562 |
-
'title' => 'Countries',
|
563 |
'metakey' => 'country',
|
564 |
'type' => 'select',
|
565 |
-
'label' => 'Country',
|
566 |
'placeholder' => 'Choose a Country',
|
567 |
'required' => 0,
|
568 |
'public' => 1,
|
@@ -571,10 +571,10 @@ class UM_Builtin {
|
|
571 |
),
|
572 |
|
573 |
'facebook' => array(
|
574 |
-
'title' => 'Facebook',
|
575 |
'metakey' => 'facebook',
|
576 |
'type' => 'url',
|
577 |
-
'label' => 'Facebook',
|
578 |
'required' => 0,
|
579 |
'public' => 1,
|
580 |
'editable' => 1,
|
@@ -589,10 +589,10 @@ class UM_Builtin {
|
|
589 |
),
|
590 |
|
591 |
'twitter' => array(
|
592 |
-
'title' => 'Twitter',
|
593 |
'metakey' => 'twitter',
|
594 |
'type' => 'url',
|
595 |
-
'label' => 'Twitter',
|
596 |
'required' => 0,
|
597 |
'public' => 1,
|
598 |
'editable' => 1,
|
@@ -607,10 +607,10 @@ class UM_Builtin {
|
|
607 |
),
|
608 |
|
609 |
'linkedin' => array(
|
610 |
-
'title' => 'LinkedIn',
|
611 |
'metakey' => 'linkedin',
|
612 |
'type' => 'url',
|
613 |
-
'label' => 'LinkedIn',
|
614 |
'required' => 0,
|
615 |
'public' => 1,
|
616 |
'editable' => 1,
|
@@ -625,10 +625,10 @@ class UM_Builtin {
|
|
625 |
),
|
626 |
|
627 |
'googleplus' => array(
|
628 |
-
'title' => 'Google+',
|
629 |
'metakey' => 'googleplus',
|
630 |
'type' => 'url',
|
631 |
-
'label' => 'Google+',
|
632 |
'required' => 0,
|
633 |
'public' => 1,
|
634 |
'editable' => 1,
|
@@ -643,10 +643,10 @@ class UM_Builtin {
|
|
643 |
),
|
644 |
|
645 |
'instagram' => array(
|
646 |
-
'title' => 'Instagram',
|
647 |
'metakey' => 'instagram',
|
648 |
'type' => 'url',
|
649 |
-
'label' => 'Instagram',
|
650 |
'required' => 0,
|
651 |
'public' => 1,
|
652 |
'editable' => 1,
|
@@ -661,10 +661,10 @@ class UM_Builtin {
|
|
661 |
),
|
662 |
|
663 |
'skype' => array(
|
664 |
-
'title' => 'Skype ID',
|
665 |
'metakey' => 'skype',
|
666 |
'type' => 'url',
|
667 |
-
'label' => 'Skype ID',
|
668 |
'required' => 0,
|
669 |
'public' => 1,
|
670 |
'editable' => 1,
|
@@ -676,10 +676,10 @@ class UM_Builtin {
|
|
676 |
),
|
677 |
|
678 |
'role_select' => array(
|
679 |
-
'title' => 'Roles (Dropdown)',
|
680 |
'metakey' => 'role_select',
|
681 |
'type' => 'select',
|
682 |
-
'label' => 'Account Type',
|
683 |
'placeholder' => 'Choose account type',
|
684 |
'required' => 0,
|
685 |
'public' => 1,
|
@@ -688,10 +688,10 @@ class UM_Builtin {
|
|
688 |
),
|
689 |
|
690 |
'role_radio' => array(
|
691 |
-
'title' => 'Roles (Radio)',
|
692 |
'metakey' => 'role_radio',
|
693 |
'type' => 'radio',
|
694 |
-
'label' => 'Account Type',
|
695 |
'required' => 0,
|
696 |
'public' => 1,
|
697 |
'editable' => 1,
|
@@ -699,11 +699,11 @@ class UM_Builtin {
|
|
699 |
),
|
700 |
|
701 |
'languages' => array(
|
702 |
-
'title' => 'Languages',
|
703 |
'metakey' => 'languages',
|
704 |
'type' => 'multiselect',
|
705 |
-
'label' => 'Languages Spoken',
|
706 |
-
'placeholder' => 'Select languages',
|
707 |
'required' => 0,
|
708 |
'public' => 1,
|
709 |
'editable' => 1,
|
@@ -711,10 +711,10 @@ class UM_Builtin {
|
|
711 |
),
|
712 |
|
713 |
'phone_number' => array(
|
714 |
-
'title' => 'Phone Number',
|
715 |
'metakey' => 'phone_number',
|
716 |
'type' => 'text',
|
717 |
-
'label' => 'Phone Number',
|
718 |
'required' => 0,
|
719 |
'public' => 1,
|
720 |
'editable' => 1,
|
@@ -723,10 +723,10 @@ class UM_Builtin {
|
|
723 |
),
|
724 |
|
725 |
'mobile_number' => array(
|
726 |
-
'title' => 'Mobile Number',
|
727 |
'metakey' => 'mobile_number',
|
728 |
'type' => 'text',
|
729 |
-
'label' => 'Mobile Number',
|
730 |
'required' => 0,
|
731 |
'public' => 1,
|
732 |
'editable' => 1,
|
@@ -737,11 +737,11 @@ class UM_Builtin {
|
|
737 |
// private use ( not public list )
|
738 |
|
739 |
'profile_photo' => array(
|
740 |
-
'title' => 'Profile Photo',
|
741 |
'metakey' => 'profile_photo',
|
742 |
'type' => 'image',
|
743 |
-
'label' => 'Change your profile photo',
|
744 |
-
'upload_text' => 'Upload your photo here',
|
745 |
'icon' => 'um-faicon-camera',
|
746 |
'crop' => 1,
|
747 |
'min_width' => str_replace('px','',um_get_option('profile_photosize')),
|
@@ -750,11 +750,11 @@ class UM_Builtin {
|
|
750 |
),
|
751 |
|
752 |
'cover_photo' => array(
|
753 |
-
'title' => 'Cover Photo',
|
754 |
'metakey' => 'cover_photo',
|
755 |
'type' => 'image',
|
756 |
-
'label' => 'Change your cover photo',
|
757 |
-
'upload_text' => 'Upload profile cover here',
|
758 |
'icon' => 'um-faicon-picture-o',
|
759 |
'crop' => 2,
|
760 |
'modal_size' => 'large',
|
@@ -764,14 +764,14 @@ class UM_Builtin {
|
|
764 |
),
|
765 |
|
766 |
'password_reset_text' => array(
|
767 |
-
'title' => 'Password Reset',
|
768 |
'type' => 'block',
|
769 |
-
'content' => '<div style="text-align:center">To reset your password, please enter your email address or username below</div>',
|
770 |
'private_use' => true,
|
771 |
),
|
772 |
|
773 |
'username_b' => array(
|
774 |
-
'title' => 'Username or E-mail',
|
775 |
'metakey' => 'username_b',
|
776 |
'type' => 'text',
|
777 |
'placeholder' => __('Enter your username or email','ultimatemember'),
|
@@ -784,16 +784,16 @@ class UM_Builtin {
|
|
784 |
// account page use ( not public )
|
785 |
|
786 |
'profile_privacy' => array(
|
787 |
-
'title' => 'Profile Privacy',
|
788 |
'metakey' => 'profile_privacy',
|
789 |
'type' => 'select',
|
790 |
-
'label' => 'Profile Privacy',
|
791 |
-
'help' => 'Who can see your public profile?',
|
792 |
'required' => 0,
|
793 |
'public' => 1,
|
794 |
'editable' => 1,
|
795 |
-
'default' => __('Everyone'),
|
796 |
-
'options' => array( __('Everyone'), __('Only me') ),
|
797 |
'allowclear' => 0,
|
798 |
'account_only' => true,
|
799 |
'required_perm' => 'can_make_private_profile',
|
@@ -808,31 +808,31 @@ class UM_Builtin {
|
|
808 |
'required' => 0,
|
809 |
'public' => 1,
|
810 |
'editable' => 1,
|
811 |
-
'default' => 'No',
|
812 |
-
'options' => array('No','Yes'),
|
813 |
'account_only' => true,
|
814 |
'required_opt' => array( 'members_page', 1 ),
|
815 |
),
|
816 |
|
817 |
'delete_account' => array(
|
818 |
-
'title' => 'Delete Account',
|
819 |
'metakey' => 'delete_account',
|
820 |
'type' => 'radio',
|
821 |
-
'label' => 'Delete Account',
|
822 |
-
'help' => 'If you confirm, everything related to your profile will be deleted permanently from the site',
|
823 |
'required' => 0,
|
824 |
'public' => 1,
|
825 |
'editable' => 1,
|
826 |
-
'default' => 'No',
|
827 |
-
'options' => array('Yes','No'),
|
828 |
'account_only' => true,
|
829 |
),
|
830 |
|
831 |
'single_user_password' => array(
|
832 |
-
'title' => 'Password',
|
833 |
'metakey' => 'single_user_password',
|
834 |
'type' => 'password',
|
835 |
-
'label' => 'Password',
|
836 |
'required' => 1,
|
837 |
'public' => 1,
|
838 |
'editable' => 1,
|
442 |
$this->predefined_fields = array(
|
443 |
|
444 |
'user_login' => array(
|
445 |
+
'title' => __('Username','ultimatemember'),
|
446 |
'metakey' => 'user_login',
|
447 |
'type' => 'text',
|
448 |
+
'label' => __('Username','ultimatemember'),
|
449 |
'required' => 1,
|
450 |
'public' => 1,
|
451 |
'editable' => 0,
|
455 |
),
|
456 |
|
457 |
'username' => array(
|
458 |
+
'title' => __('Username or E-mail','ultimatemember'),
|
459 |
'metakey' => 'username',
|
460 |
'type' => 'text',
|
461 |
+
'label' => __('Username or E-mail','ultimatemember'),
|
462 |
'required' => 1,
|
463 |
'public' => 1,
|
464 |
'editable' => 0,
|
466 |
),
|
467 |
|
468 |
'user_password' => array(
|
469 |
+
'title' => __('Password','ultimatemember'),
|
470 |
'metakey' => 'user_password',
|
471 |
'type' => 'password',
|
472 |
+
'label' => __('Password','ultimatemember'),
|
473 |
'required' => 1,
|
474 |
'public' => 1,
|
475 |
'editable' => 1,
|
480 |
),
|
481 |
|
482 |
'first_name' => array(
|
483 |
+
'title' => __('First Name','ultimatemember'),
|
484 |
'metakey' => 'first_name',
|
485 |
'type' => 'text',
|
486 |
+
'label' => __('First Name','ultimatemember'),
|
487 |
'required' => 0,
|
488 |
'public' => 1,
|
489 |
'editable' => 1,
|
490 |
),
|
491 |
|
492 |
'last_name' => array(
|
493 |
+
'title' => __('Last Name','ultimatemember'),
|
494 |
'metakey' => 'last_name',
|
495 |
'type' => 'text',
|
496 |
+
'label' => __('Last Name','ultimatemember'),
|
497 |
'required' => 0,
|
498 |
'public' => 1,
|
499 |
'editable' => 1,
|
500 |
),
|
501 |
|
502 |
'display_name' => array(
|
503 |
+
'title' => __('Display Name','ultimatemember'),
|
504 |
'metakey' => 'display_name',
|
505 |
'type' => 'text',
|
506 |
+
'label' => __('Display Name','ultimatemember'),
|
507 |
'required' => 0,
|
508 |
'public' => 1,
|
509 |
'editable' => 1,
|
510 |
),
|
511 |
|
512 |
'user_email' => array(
|
513 |
+
'title' => __('E-mail Address','ultimatemember'),
|
514 |
'metakey' => 'user_email',
|
515 |
'type' => 'text',
|
516 |
+
'label' => __('E-mail Address','ultimatemember'),
|
517 |
'required' => 0,
|
518 |
'public' => 1,
|
519 |
'editable' => 1,
|
521 |
),
|
522 |
|
523 |
'description' => array(
|
524 |
+
'title' => __('Biography','ultimatemember'),
|
525 |
'metakey' => 'description',
|
526 |
'type' => 'textarea',
|
527 |
+
'label' => __('Biography','ultimatemember'),
|
528 |
'html' => 0,
|
529 |
'required' => 0,
|
530 |
'public' => 1,
|
534 |
),
|
535 |
|
536 |
'birth_date' => array(
|
537 |
+
'title' => __('Birth Date','ultimatemember'),
|
538 |
'metakey' => 'birth_date',
|
539 |
'type' => 'date',
|
540 |
+
'label' => __('Birth Date','ultimatemember'),
|
541 |
'required' => 0,
|
542 |
'public' => 1,
|
543 |
'editable' => 1,
|
548 |
),
|
549 |
|
550 |
'gender' => array(
|
551 |
+
'title' => __('Gender','ultimatemember'),
|
552 |
'metakey' => 'gender',
|
553 |
'type' => 'radio',
|
554 |
+
'label' => __('Gender','ultimatemember'),
|
555 |
'required' => 0,
|
556 |
'public' => 1,
|
557 |
'editable' => 1,
|
559 |
),
|
560 |
|
561 |
'country' => array(
|
562 |
+
'title' => __('Countries','ultimatemember'),
|
563 |
'metakey' => 'country',
|
564 |
'type' => 'select',
|
565 |
+
'label' => __('Country','ultimatemember'),
|
566 |
'placeholder' => 'Choose a Country',
|
567 |
'required' => 0,
|
568 |
'public' => 1,
|
571 |
),
|
572 |
|
573 |
'facebook' => array(
|
574 |
+
'title' => __('Facebook','ultimatemember'),
|
575 |
'metakey' => 'facebook',
|
576 |
'type' => 'url',
|
577 |
+
'label' => __('Facebook','ultimatemember'),
|
578 |
'required' => 0,
|
579 |
'public' => 1,
|
580 |
'editable' => 1,
|
589 |
),
|
590 |
|
591 |
'twitter' => array(
|
592 |
+
'title' => __('Twitter','ultimatemember'),
|
593 |
'metakey' => 'twitter',
|
594 |
'type' => 'url',
|
595 |
+
'label' => __('Twitter','ultimatemember'),
|
596 |
'required' => 0,
|
597 |
'public' => 1,
|
598 |
'editable' => 1,
|
607 |
),
|
608 |
|
609 |
'linkedin' => array(
|
610 |
+
'title' => __('LinkedIn','ultimatemember'),
|
611 |
'metakey' => 'linkedin',
|
612 |
'type' => 'url',
|
613 |
+
'label' => __('LinkedIn','ultimatemember'),
|
614 |
'required' => 0,
|
615 |
'public' => 1,
|
616 |
'editable' => 1,
|
625 |
),
|
626 |
|
627 |
'googleplus' => array(
|
628 |
+
'title' => __('Google+','ultimatemember'),
|
629 |
'metakey' => 'googleplus',
|
630 |
'type' => 'url',
|
631 |
+
'label' => __('Google+','ultimatemember'),
|
632 |
'required' => 0,
|
633 |
'public' => 1,
|
634 |
'editable' => 1,
|
643 |
),
|
644 |
|
645 |
'instagram' => array(
|
646 |
+
'title' => __('Instagram','ultimatemember'),
|
647 |
'metakey' => 'instagram',
|
648 |
'type' => 'url',
|
649 |
+
'label' => __('Instagram','ultimatemember'),
|
650 |
'required' => 0,
|
651 |
'public' => 1,
|
652 |
'editable' => 1,
|
661 |
),
|
662 |
|
663 |
'skype' => array(
|
664 |
+
'title' => __('Skype ID','ultimatemember'),
|
665 |
'metakey' => 'skype',
|
666 |
'type' => 'url',
|
667 |
+
'label' => __('Skype ID','ultimatemember'),
|
668 |
'required' => 0,
|
669 |
'public' => 1,
|
670 |
'editable' => 1,
|
676 |
),
|
677 |
|
678 |
'role_select' => array(
|
679 |
+
'title' => __('Roles (Dropdown)','ultimatemember'),
|
680 |
'metakey' => 'role_select',
|
681 |
'type' => 'select',
|
682 |
+
'label' => __('Account Type','ultimatemember'),
|
683 |
'placeholder' => 'Choose account type',
|
684 |
'required' => 0,
|
685 |
'public' => 1,
|
688 |
),
|
689 |
|
690 |
'role_radio' => array(
|
691 |
+
'title' => __('Roles (Radio)','ultimatemember'),
|
692 |
'metakey' => 'role_radio',
|
693 |
'type' => 'radio',
|
694 |
+
'label' => __('Account Type','ultimatemember'),
|
695 |
'required' => 0,
|
696 |
'public' => 1,
|
697 |
'editable' => 1,
|
699 |
),
|
700 |
|
701 |
'languages' => array(
|
702 |
+
'title' => __('Languages','ultimatemember'),
|
703 |
'metakey' => 'languages',
|
704 |
'type' => 'multiselect',
|
705 |
+
'label' => __('Languages Spoken','ultimatemember'),
|
706 |
+
'placeholder' => __('Select languages','ultimatemember'),
|
707 |
'required' => 0,
|
708 |
'public' => 1,
|
709 |
'editable' => 1,
|
711 |
),
|
712 |
|
713 |
'phone_number' => array(
|
714 |
+
'title' => __('Phone Number','ultimatemember'),
|
715 |
'metakey' => 'phone_number',
|
716 |
'type' => 'text',
|
717 |
+
'label' => __('Phone Number','ultimatemember'),
|
718 |
'required' => 0,
|
719 |
'public' => 1,
|
720 |
'editable' => 1,
|
723 |
),
|
724 |
|
725 |
'mobile_number' => array(
|
726 |
+
'title' => __('Mobile Number','ultimatemember'),
|
727 |
'metakey' => 'mobile_number',
|
728 |
'type' => 'text',
|
729 |
+
'label' => __('Mobile Number','ultimatemember'),
|
730 |
'required' => 0,
|
731 |
'public' => 1,
|
732 |
'editable' => 1,
|
737 |
// private use ( not public list )
|
738 |
|
739 |
'profile_photo' => array(
|
740 |
+
'title' => __('Profile Photo','ultimatemember'),
|
741 |
'metakey' => 'profile_photo',
|
742 |
'type' => 'image',
|
743 |
+
'label' => __('Change your profile photo','ultimatemember'),
|
744 |
+
'upload_text' => __('Upload your photo here','ultimatemember'),
|
745 |
'icon' => 'um-faicon-camera',
|
746 |
'crop' => 1,
|
747 |
'min_width' => str_replace('px','',um_get_option('profile_photosize')),
|
750 |
),
|
751 |
|
752 |
'cover_photo' => array(
|
753 |
+
'title' => __('Cover Photo','ultimatemember'),
|
754 |
'metakey' => 'cover_photo',
|
755 |
'type' => 'image',
|
756 |
+
'label' => __('Change your cover photo','ultimatemember'),
|
757 |
+
'upload_text' => __('Upload profile cover here','ultimatemember'),
|
758 |
'icon' => 'um-faicon-picture-o',
|
759 |
'crop' => 2,
|
760 |
'modal_size' => 'large',
|
764 |
),
|
765 |
|
766 |
'password_reset_text' => array(
|
767 |
+
'title' => __('Password Reset','ultimatemember'),
|
768 |
'type' => 'block',
|
769 |
+
'content' => '<div style="text-align:center">' . __('To reset your password, please enter your email address or username below','ultimatemember'). '</div>',
|
770 |
'private_use' => true,
|
771 |
),
|
772 |
|
773 |
'username_b' => array(
|
774 |
+
'title' => __('Username or E-mail','ultimatemember'),
|
775 |
'metakey' => 'username_b',
|
776 |
'type' => 'text',
|
777 |
'placeholder' => __('Enter your username or email','ultimatemember'),
|
784 |
// account page use ( not public )
|
785 |
|
786 |
'profile_privacy' => array(
|
787 |
+
'title' => __('Profile Privacy','ultimatemember'),
|
788 |
'metakey' => 'profile_privacy',
|
789 |
'type' => 'select',
|
790 |
+
'label' => __('Profile Privacy','ultimatemember'),
|
791 |
+
'help' => __('Who can see your public profile?','ultimatemember'),
|
792 |
'required' => 0,
|
793 |
'public' => 1,
|
794 |
'editable' => 1,
|
795 |
+
'default' => __('Everyone','ultimatemember'),
|
796 |
+
'options' => array( __('Everyone','ultimatemember'), __('Only me','ultimatemember') ),
|
797 |
'allowclear' => 0,
|
798 |
'account_only' => true,
|
799 |
'required_perm' => 'can_make_private_profile',
|
808 |
'required' => 0,
|
809 |
'public' => 1,
|
810 |
'editable' => 1,
|
811 |
+
'default' => __('No','ultimatemember'),
|
812 |
+
'options' => array( __('No','ultimatemember'), __('Yes','ultimatemember') ),
|
813 |
'account_only' => true,
|
814 |
'required_opt' => array( 'members_page', 1 ),
|
815 |
),
|
816 |
|
817 |
'delete_account' => array(
|
818 |
+
'title' => __('Delete Account','ultimatemember'),
|
819 |
'metakey' => 'delete_account',
|
820 |
'type' => 'radio',
|
821 |
+
'label' => __('Delete Account','ultimatemember'),
|
822 |
+
'help' => __('If you confirm, everything related to your profile will be deleted permanently from the site','ultimatemember'),
|
823 |
'required' => 0,
|
824 |
'public' => 1,
|
825 |
'editable' => 1,
|
826 |
+
'default' => __('No','ultimatemember'),
|
827 |
+
'options' => array( __('Yes','ultimatemember') , __('No','ultimatemember') ),
|
828 |
'account_only' => true,
|
829 |
),
|
830 |
|
831 |
'single_user_password' => array(
|
832 |
+
'title' => __('Password','ultimatemember'),
|
833 |
'metakey' => 'single_user_password',
|
834 |
'type' => 'password',
|
835 |
+
'label' => __('Password','ultimatemember'),
|
836 |
'required' => 1,
|
837 |
'public' => 1,
|
838 |
'editable' => 1,
|
core/um-fields.php
CHANGED
@@ -816,7 +816,7 @@ class UM_Fields {
|
|
816 |
if ( !um_can_edit_field( $data ) ) return;
|
817 |
|
818 |
// disable these fields in profile edit only
|
819 |
-
if ( in_array( $key, array('user_email','username','user_login') ) && $this->editing == true && $this->set_mode == 'profile' ) {
|
820 |
return;
|
821 |
}
|
822 |
|
@@ -1810,6 +1810,11 @@ class UM_Fields {
|
|
1810 |
|
1811 |
if ( !um_can_view_field( $data ) ) return;
|
1812 |
|
|
|
|
|
|
|
|
|
|
|
1813 |
if ( !um_field_conditions_are_met( $data ) ) return;
|
1814 |
|
1815 |
switch( $type ) {
|
816 |
if ( !um_can_edit_field( $data ) ) return;
|
817 |
|
818 |
// disable these fields in profile edit only
|
819 |
+
if ( in_array( $key, array('user_email','username','user_login','user_password') ) && $this->editing == true && $this->set_mode == 'profile' ) {
|
820 |
return;
|
821 |
}
|
822 |
|
1810 |
|
1811 |
if ( !um_can_view_field( $data ) ) return;
|
1812 |
|
1813 |
+
// disable these fields in profile view only
|
1814 |
+
if ( in_array( $key, array('user_password') ) && $this->set_mode == 'profile' ) {
|
1815 |
+
return;
|
1816 |
+
}
|
1817 |
+
|
1818 |
if ( !um_field_conditions_are_met( $data ) ) return;
|
1819 |
|
1820 |
switch( $type ) {
|
core/um-filters-avatars.php
CHANGED
@@ -5,10 +5,14 @@
|
|
5 |
***/
|
6 |
function um_get_avatar($content, $id='', $size = '96', $avatar_class = '', $default = '', $alt = '') {
|
7 |
|
8 |
-
if ( is_email( $id ) )
|
9 |
$id = email_exists( $id );
|
10 |
-
|
|
|
|
|
|
|
11 |
um_fetch_user( $id );
|
|
|
12 |
$avatar = um_user('profile_photo', $size);
|
13 |
um_reset_user();
|
14 |
return $avatar;
|
5 |
***/
|
6 |
function um_get_avatar($content, $id='', $size = '96', $avatar_class = '', $default = '', $alt = '') {
|
7 |
|
8 |
+
if ( !is_object( $id ) && is_email( $id ) ) {
|
9 |
$id = email_exists( $id );
|
10 |
+
} else if ( is_object( $id ) ) {
|
11 |
+
$id = $id->user_id;
|
12 |
+
}
|
13 |
+
|
14 |
um_fetch_user( $id );
|
15 |
+
|
16 |
$avatar = um_user('profile_photo', $size);
|
17 |
um_reset_user();
|
18 |
return $avatar;
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate Member
|
4 |
Plugin URI: http://ultimatemember.com/
|
5 |
Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
|
6 |
-
Version: 1.0.
|
7 |
Author: Ultimate Member
|
8 |
Author URI: http://ultimatemember.com/
|
9 |
*/
|
3 |
Plugin Name: Ultimate Member
|
4 |
Plugin URI: http://ultimatemember.com/
|
5 |
Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
|
6 |
+
Version: 1.0.24
|
7 |
Author: Ultimate Member
|
8 |
Author URI: http://ultimatemember.com/
|
9 |
*/
|
languages/ultimatemember-en_US.mo
CHANGED
Binary file
|
languages/ultimatemember-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Ultimate Member\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-01-
|
6 |
-
"PO-Revision-Date: 2015-01-
|
7 |
"Last-Translator: Calum Allison <umplugin@gmail.com>\n"
|
8 |
"Language-Team: Ultimate Member <umplugin@gmail.com>\n"
|
9 |
"Language: en_US\n"
|
@@ -240,8 +240,8 @@ msgstr ""
|
|
240 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
|
241 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
|
242 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
|
243 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:
|
244 |
-
#: core/um-fields.php:
|
245 |
msgid "Upload"
|
246 |
msgstr ""
|
247 |
|
@@ -252,7 +252,7 @@ msgstr ""
|
|
252 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:76
|
253 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:133
|
254 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:190
|
255 |
-
#: core/um-actions-profile.php:
|
256 |
msgid "Remove"
|
257 |
msgstr ""
|
258 |
|
@@ -338,11 +338,13 @@ msgstr ""
|
|
338 |
msgid "Add More"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:62
|
|
|
342 |
msgid "Password"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:63
|
|
|
346 |
msgid "Username"
|
347 |
msgstr ""
|
348 |
|
@@ -576,12 +578,12 @@ msgid ""
|
|
576 |
"configurations, plugins and themes to test to ensure compatibility."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:
|
580 |
-
#: um-config.php:
|
581 |
msgid "Allow tracking"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:140 admin/core/um-admin-tracking.php:
|
585 |
msgid "Do not allow tracking"
|
586 |
msgstr ""
|
587 |
|
@@ -2013,7 +2015,7 @@ msgid "Access Control"
|
|
2013 |
msgstr ""
|
2014 |
|
2015 |
#: admin/core/um-admin-actions-ajax.php:11 admin/core/um-admin-actions-fields.php:11
|
2016 |
-
#: admin/core/um-admin-actions-modal.php:
|
2017 |
msgid "Please login as administrator"
|
2018 |
msgstr ""
|
2019 |
|
@@ -2025,31 +2027,35 @@ msgstr ""
|
|
2025 |
msgid "Add conditional fields support"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: admin/core/um-admin-actions-modal.php:
|
|
|
|
|
|
|
|
|
2029 |
msgid "Search Icons..."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: admin/core/um-admin-actions-modal.php:
|
2033 |
msgid "Setup New Field"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: admin/core/um-admin-actions-modal.php:
|
2037 |
msgid "Predefined Fields"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: admin/core/um-admin-actions-modal.php:
|
2041 |
msgid "None"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: admin/core/um-admin-actions-modal.php:
|
2045 |
msgid "Custom Fields"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: admin/core/um-admin-actions-modal.php:
|
2049 |
msgid "You did not create any custom fields"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: admin/core/um-admin-actions-modal.php:
|
2053 |
msgid "This field type is not setup correcty."
|
2054 |
msgstr ""
|
2055 |
|
@@ -2147,11 +2153,13 @@ msgstr ""
|
|
2147 |
msgid "Role draft updated."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: admin/core/um-admin-metabox.php:112 um-
|
|
|
2151 |
msgid "Yes"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 um-
|
|
|
2155 |
msgid "No"
|
2156 |
msgstr ""
|
2157 |
|
@@ -2227,6 +2235,12 @@ msgstr ""
|
|
2227 |
msgid "User Meta"
|
2228 |
msgstr ""
|
2229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2230 |
#: admin/core/um-admin-metabox.php:455
|
2231 |
msgid "If"
|
2232 |
msgstr ""
|
@@ -2310,7 +2324,7 @@ msgstr ""
|
|
2310 |
msgid "Core"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: admin/core/um-admin-tracking.php:
|
2314 |
msgid ""
|
2315 |
"Help us improve Ultimate Member’s compatibility with other plugins and themes by allowing us to track non-"
|
2316 |
"sensitive data on your site. Click <a href=\"https://ultimatemember.com/tracking/\" target=\"_blank\">here</"
|
@@ -2333,7 +2347,7 @@ msgstr ""
|
|
2333 |
msgid "Take Action"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: admin/core/um-admin-users.php:199 core/um-fields.php:
|
2337 |
msgid "Apply"
|
2338 |
msgstr ""
|
2339 |
|
@@ -2410,7 +2424,7 @@ msgid "Select the member roles that can see this content?"
|
|
2410 |
msgstr ""
|
2411 |
|
2412 |
#: admin/templates/access/settings.php:38
|
2413 |
-
msgid "If you do not select any role, all members
|
2414 |
msgstr ""
|
2415 |
|
2416 |
#: admin/templates/dashboard/overview.php:83
|
@@ -2510,6 +2524,10 @@ msgstr ""
|
|
2510 |
msgid "Profile photo border color"
|
2511 |
msgstr ""
|
2512 |
|
|
|
|
|
|
|
|
|
2513 |
#: admin/templates/directory/search.php:6
|
2514 |
msgid "Enable Search feature"
|
2515 |
msgstr ""
|
@@ -2553,7 +2571,7 @@ msgstr ""
|
|
2553 |
|
2554 |
#: admin/templates/form/login_customize.php:26 admin/templates/form/profile_customize.php:38
|
2555 |
#: admin/templates/form/register_customize.php:38
|
2556 |
-
msgid "Max. Width (px
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:42
|
@@ -2611,6 +2629,10 @@ msgstr ""
|
|
2611 |
msgid "Secondary Button Text Color"
|
2612 |
msgstr ""
|
2613 |
|
|
|
|
|
|
|
|
|
2614 |
#: admin/templates/form/login_settings.php:3
|
2615 |
msgid "Redirection after Login"
|
2616 |
msgstr ""
|
@@ -2625,7 +2647,7 @@ msgstr ""
|
|
2625 |
msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: admin/templates/form/mode.php:9 um-config.php:
|
2629 |
msgid "Registration Form"
|
2630 |
msgstr ""
|
2631 |
|
@@ -2633,7 +2655,7 @@ msgstr ""
|
|
2633 |
msgid "Profile Form"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: admin/templates/form/mode.php:13 um-config.php:
|
2637 |
msgid "Login Form"
|
2638 |
msgstr ""
|
2639 |
|
@@ -2653,23 +2675,23 @@ msgstr ""
|
|
2653 |
msgid "Cover photo ratio"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: admin/templates/form/profile_customize.php:125 um-config.php:
|
2657 |
msgid "Profile Photo Size"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: admin/templates/form/profile_customize.php:129 um-config.php:
|
2661 |
msgid "Profile Photo Style"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: admin/templates/form/profile_customize.php:132 um-config.php:
|
2665 |
msgid "Circle"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: admin/templates/form/profile_customize.php:133 um-config.php:
|
2669 |
msgid "Rounded Corners"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: admin/templates/form/profile_customize.php:134 um-config.php:
|
2673 |
msgid "Square"
|
2674 |
msgstr ""
|
2675 |
|
@@ -2717,11 +2739,7 @@ msgstr ""
|
|
2717 |
msgid "Assign role to form"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: admin/templates/form/register_customize.php:
|
2721 |
-
msgid "The maximum width of shortcode in pixels or percentage relative to its parent, e.g. 600px or 70%"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: admin/templates/form/register_customize.php:42 um-config.php:1001 um-config.php:1250 um-config.php:1341
|
2725 |
msgid "The shortcode is centered by default unless you specify otherwise here"
|
2726 |
msgstr ""
|
2727 |
|
@@ -2767,9 +2785,9 @@ msgstr ""
|
|
2767 |
|
2768 |
#: admin/templates/modal/dynamic_edit_field.php:15 admin/templates/modal/dynamic_edit_row.php:15
|
2769 |
#: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
|
2770 |
-
#: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:
|
2771 |
-
#: core/um-actions-profile.php:
|
2772 |
-
#: core/um-fields.php:
|
2773 |
msgid "Cancel"
|
2774 |
msgstr ""
|
2775 |
|
@@ -3038,60 +3056,61 @@ msgid ""
|
|
3038 |
"you know whether your application has been successful or not."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: admin/um-admin-init.php:
|
3042 |
msgid "Ultimate Member"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: admin/um-admin-init.php:
|
3046 |
msgid "Dashboard"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: admin/um-admin-init.php:
|
3050 |
#, php-format
|
3051 |
msgid "%s | Ultimate Member"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: admin/um-admin-init.php:
|
3055 |
msgid "Forms"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: admin/um-admin-init.php:
|
3059 |
msgid "User Roles"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: admin/um-admin-init.php:
|
3063 |
msgid "Member Directories"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: admin/um-admin-init.php:
|
3067 |
msgid "Please create a team.php template in admin templates."
|
3068 |
msgstr ""
|
3069 |
|
3070 |
#: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
|
|
|
3071 |
msgid "Delete Account"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: core/um-actions-account.php:82 core/um-actions-password.php:
|
3075 |
msgid "Your password must contain at least 8 characters"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: core/um-actions-account.php:86 core/um-actions-password.php:
|
3079 |
msgid "Your password must contain less than 30 characters"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: core/um-actions-ajax.php:
|
3083 |
msgid "You can not edit this user"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: core/um-actions-ajax.php:
|
3087 |
msgid "Invalid parameters"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: core/um-actions-ajax.php:
|
3091 |
msgid "Invalid coordinates"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: core/um-actions-ajax.php:
|
3095 |
msgid "Invalid Image file"
|
3096 |
msgstr ""
|
3097 |
|
@@ -3099,99 +3118,99 @@ msgstr ""
|
|
3099 |
msgid "You do not have permission to delete this user."
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: core/um-actions-form.php:
|
3103 |
msgid "You are not allowed to use this word as your username."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: core/um-actions-form.php:
|
3107 |
#, php-format
|
3108 |
msgid "%s is required"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: core/um-actions-form.php:
|
3112 |
#, php-format
|
3113 |
msgid "You are only allowed to enter a maximum of %s words"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: core/um-actions-form.php:
|
3117 |
#, php-format
|
3118 |
msgid "Your %s must contain at least %s characters"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: core/um-actions-form.php:
|
3122 |
#, php-format
|
3123 |
msgid "Your %s must contain less than %s characters"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: core/um-actions-form.php:
|
3127 |
msgid "You can not use HTML tags here"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: core/um-actions-form.php:
|
3131 |
msgid "Your password must contain at least one capital letter and one number"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: core/um-actions-form.php:
|
3135 |
msgid "Please confirm your password"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: core/um-actions-form.php:
|
3139 |
msgid "Your passwords do not match"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: core/um-actions-form.php:
|
3143 |
#, php-format
|
3144 |
msgid "Please select at least %s choices"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: core/um-actions-form.php:
|
3148 |
#, php-format
|
3149 |
msgid "You can only select up to %s choices"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: core/um-actions-form.php:
|
3153 |
msgid "Please enter a valid phone number"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: core/um-actions-form.php:
|
3157 |
-
#: core/um-actions-form.php:
|
3158 |
#, php-format
|
3159 |
msgid "Please enter a valid %s username or profile URL"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: core/um-actions-form.php:
|
3163 |
msgid "You must provide a username"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: core/um-actions-form.php:
|
3167 |
msgid "Your username is already taken"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: core/um-actions-form.php:
|
3171 |
msgid "Username cannot be an email"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: core/um-actions-form.php:
|
3175 |
msgid "Your username contains invalid characters"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: core/um-actions-form.php:
|
3179 |
msgid "This email is already linked to an existing account"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: core/um-actions-form.php:
|
3183 |
msgid "You must provide your email"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: core/um-actions-form.php:
|
3187 |
msgid "This is not a valid email"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: core/um-actions-form.php:
|
3191 |
msgid "Your email contains invalid characters"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: core/um-actions-form.php:
|
3195 |
#, php-format
|
3196 |
msgid "Your user description must contain less than %s characters"
|
3197 |
msgstr ""
|
@@ -3228,7 +3247,7 @@ msgstr ""
|
|
3228 |
msgid "Password is incorrect. Please try again."
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: core/um-actions-login.php:
|
3232 |
msgid "Forgot your password?"
|
3233 |
msgstr ""
|
3234 |
|
@@ -3285,91 +3304,223 @@ msgstr ""
|
|
3285 |
msgid "Your membership request has been rejected."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: core/um-actions-password.php:
|
3289 |
msgid "Hello, spam bot!"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: core/um-actions-password.php:
|
3293 |
msgid ""
|
3294 |
"Whoa, slow down! You're seeing this message because you tried to submit a form too fast and we think you "
|
3295 |
"might be a spam bot. If you are a real human being please wait a few seconds before submitting the form. "
|
3296 |
"Thanks!"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: core/um-actions-password.php:
|
3300 |
msgid "Please provide your username or email"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: core/um-actions-password.php:
|
3304 |
msgid " We can't find an account registered with that address or username "
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: core/um-actions-password.php:
|
3308 |
msgid "Reset my password"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: core/um-actions-password.php:
|
3312 |
msgid "Change my password"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: core/um-actions-profile.php:
|
3316 |
msgid "You are not allowed to edit this user."
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: core/um-actions-profile.php:
|
3320 |
msgid "Change your cover photo"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: core/um-actions-profile.php:
|
3324 |
msgid "Change cover photo"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: core/um-actions-profile.php:
|
3328 |
msgid "Upload a cover photo"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: core/um-actions-profile.php:
|
3332 |
msgid "Upload photo"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: core/um-actions-profile.php:
|
3336 |
msgid "Change photo"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#: core/um-actions-profile.php:
|
3340 |
msgid "Remove photo"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: core/um-actions-profile.php:
|
3344 |
msgid "Tell us a bit about yourself..."
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: core/um-actions-profile.php:
|
3348 |
#, php-format
|
3349 |
msgid "This user account status is %s"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: core/um-actions-profile.php:
|
3353 |
msgid "Edit Profile"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: core/um-actions-profile.php:
|
3357 |
msgid "My Account"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: core/um-actions-profile.php:
|
3361 |
msgid "Logout"
|
3362 |
msgstr ""
|
3363 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3364 |
#: core/um-builtin.php:777
|
3365 |
msgid "Enter your username or email"
|
3366 |
msgstr ""
|
3367 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3368 |
#: core/um-builtin.php:795 core/um-builtin.php:796
|
3369 |
msgid "Everyone"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: core/um-builtin.php:796 core/um-user.php:
|
3373 |
msgid "Only me"
|
3374 |
msgstr ""
|
3375 |
|
@@ -3381,6 +3532,10 @@ msgstr ""
|
|
3381 |
msgid "Here you can hide yourself from appearing in public directory"
|
3382 |
msgstr ""
|
3383 |
|
|
|
|
|
|
|
|
|
3384 |
#: core/um-cron.php:15
|
3385 |
msgid "Once Weekly"
|
3386 |
msgstr ""
|
@@ -3399,45 +3554,45 @@ msgstr ""
|
|
3399 |
msgid "Less than 1 year old"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: core/um-fields.php:
|
3403 |
msgid "Current Password"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: core/um-fields.php:
|
3407 |
#, php-format
|
3408 |
msgid "Confirm New %s"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: core/um-fields.php:
|
3412 |
msgid "Upload Photo"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: core/um-fields.php:
|
3416 |
msgid "Processing..."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: core/um-fields.php:
|
3420 |
msgid "Change file"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: core/um-fields.php:
|
3424 |
msgid "Save"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: core/um-fields.php:
|
3428 |
#, php-format
|
3429 |
msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: core/um-fields.php:
|
3433 |
msgid "This user has not added any information to their profile yet."
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: core/um-files.php:
|
3437 |
msgid "Your image is invalid or too large!"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: core/um-files.php:
|
3441 |
#, php-format
|
3442 |
msgid "Your photo is too small. It must be at least %spx wide."
|
3443 |
msgstr ""
|
@@ -3454,6 +3609,10 @@ msgstr ""
|
|
3454 |
msgid "Untitled photo"
|
3455 |
msgstr ""
|
3456 |
|
|
|
|
|
|
|
|
|
3457 |
#: core/um-filters-user.php:11 core/um-filters-user.php:33 core/um-filters-user.php:38
|
3458 |
msgid "Approve Membership"
|
3459 |
msgstr ""
|
@@ -3782,7 +3941,7 @@ msgstr ""
|
|
3782 |
msgid "Mail appears from address"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: um-config.php:317 um-config.php:
|
3786 |
msgid "e.g. admin@companyname.com"
|
3787 |
msgstr ""
|
3788 |
|
@@ -3791,12 +3950,12 @@ msgid "Account Welcome Email"
|
|
3791 |
msgstr ""
|
3792 |
|
3793 |
#: um-config.php:333 um-config.php:369 um-config.php:401 um-config.php:433 um-config.php:469 um-config.php:500
|
3794 |
-
#: um-config.php:531 um-config.php:562 um-config.php:
|
3795 |
msgid "Subject Line"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
#: um-config.php:343 um-config.php:379 um-config.php:411 um-config.php:443 um-config.php:479 um-config.php:510
|
3799 |
-
#: um-config.php:541 um-config.php:572 um-config.php:
|
3800 |
msgid "Message Body"
|
3801 |
msgstr ""
|
3802 |
|
@@ -3828,441 +3987,453 @@ msgstr ""
|
|
3828 |
msgid "Password Reset Email"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: um-config.php:593
|
|
|
|
|
|
|
|
|
3832 |
msgid "Notifications"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
-
#: um-config.php:
|
3836 |
msgid "Admin E-mail Address"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: um-config.php:
|
3840 |
msgid "New User Notification"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: um-config.php:
|
3844 |
msgid "Account Needs Review Notification"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
-
#: um-config.php:
|
3848 |
msgid "Account Deletion Notification"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: um-config.php:
|
3852 |
msgid "Uploads"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: um-config.php:
|
3856 |
msgid "Profile Photo Thumbnail Sizes"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: um-config.php:
|
3860 |
msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: um-config.php:
|
3864 |
msgid "Add New Size"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: um-config.php:
|
3868 |
msgid "Cover Photo Thumbnail Sizes"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#: um-config.php:
|
3872 |
msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
|
3873 |
msgstr ""
|
3874 |
|
3875 |
-
#: um-config.php:
|
3876 |
msgid "Image Quality"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: um-config.php:
|
3880 |
msgid ""
|
3881 |
"Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
|
3882 |
-
"100 (best quality, biggest file). The default range is
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: um-config.php:
|
3886 |
msgid "Image Upload Maximum Width"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: um-config.php:
|
3890 |
msgid "Any image upload above this width will be resized to this limit automatically."
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: um-config.php:
|
3894 |
msgid "Cover Photo Minimum Width"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: um-config.php:
|
3898 |
msgid "This will be the minimum width for cover photo uploads"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: um-config.php:
|
3902 |
msgid "SEO"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: um-config.php:
|
3906 |
msgid "User Profile Title"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: um-config.php:
|
3910 |
msgid "User Profile Dynamic Meta Description"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: um-config.php:
|
3914 |
msgid "You can use dynamic tags to display dynamic user profile data in this field."
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: um-config.php:
|
3918 |
msgid "This will be used in the meta description that is available for search-engines."
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: um-config.php:
|
3922 |
msgid "Appearance"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: um-config.php:
|
3926 |
msgid "General"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: um-config.php:
|
3930 |
msgid "Members Default Template"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: um-config.php:
|
3934 |
msgid "This will be the default template to output member directory"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: um-config.php:
|
3938 |
msgid "General Active Color"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: um-config.php:
|
3942 |
msgid ""
|
3943 |
"Active color is used commonly with many plugin elements as highlighted color or active selection for "
|
3944 |
"example. This color demonstrates the primary active color of the plugin"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: um-config.php:
|
3948 |
msgid "General Secondary Color"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: um-config.php:
|
3952 |
msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: um-config.php:
|
3956 |
msgid "Default Primary Button Color"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: um-config.php:
|
3960 |
msgid "Default Primary Button Hover Color"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: um-config.php:
|
3964 |
msgid "Default Primary Button Text Color"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: um-config.php:
|
3968 |
msgid "Default Secondary Button Color"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: um-config.php:
|
3972 |
msgid "Default Secondary Button Hover Color"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: um-config.php:
|
3976 |
msgid "Default Secondary Button Text Color"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: um-config.php:
|
3980 |
msgid "Default Help Icon Color"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: um-config.php:
|
3984 |
msgid "Form Inputs"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: um-config.php:
|
3988 |
msgid "Field Label Color"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: um-config.php:
|
3992 |
msgid "Field Border Style"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: um-config.php:
|
3996 |
msgid "Field Background Color"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: um-config.php:
|
4000 |
msgid "Field Text Color"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: um-config.php:
|
4004 |
msgid "Field Placeholder Color"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: um-config.php:
|
4008 |
msgid "Field Font Icon Color"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
-
#: um-config.php:
|
4012 |
msgid "Profile"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#: um-config.php:
|
4016 |
msgid "Profile Default Template"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: um-config.php:
|
4020 |
msgid "This will be the default template to output profile"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: um-config.php:
|
4024 |
msgid "Profile Maximum Width"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: um-config.php:
|
|
|
|
|
|
|
|
|
4028 |
msgid "Profile Shortcode Alignment"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: um-config.php:
|
4032 |
msgid "Centered"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: um-config.php:
|
4036 |
msgid "Left aligned"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: um-config.php:
|
4040 |
msgid "Right aligned"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: um-config.php:
|
4044 |
msgid "Profile Field Icons"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: um-config.php:
|
4048 |
msgid "This is applicable for edit mode only"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: um-config.php:
|
4052 |
msgid "Show inside text field"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: um-config.php:
|
4056 |
msgid "Show with label"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: um-config.php:
|
4060 |
msgid "Turn off"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: um-config.php:
|
4064 |
msgid "Profile Primary Button Text"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: um-config.php:
|
4068 |
msgid "Profile Secondary Button"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: um-config.php:
|
4072 |
msgid "Profile Secondary Button Text"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: um-config.php:
|
4076 |
msgid "Profile Associated Role"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: um-config.php:
|
4080 |
msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: um-config.php:
|
4084 |
msgid "Profile Base Background Color"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: um-config.php:
|
4088 |
msgid "Profile Header Background Color"
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: um-config.php:
|
4092 |
msgid "Default Profile Photo"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: um-config.php:
|
4096 |
msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: um-config.php:
|
4100 |
msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: um-config.php:
|
4104 |
msgid "Profile Cover Photos"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: um-config.php:
|
4108 |
msgid "Profile Cover Ratio"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: um-config.php:
|
4112 |
msgid "Choose global ratio for cover photos of profiles"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: um-config.php:
|
4116 |
msgid "Profile Header Meta Text Color"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: um-config.php:
|
4120 |
msgid "Profile Header Link Color"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: um-config.php:
|
4124 |
msgid "Profile Header Link Hover"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#: um-config.php:
|
4128 |
msgid "Profile Header Icon Link Color"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: um-config.php:
|
4132 |
msgid "Profile Header Icon Link Hover"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
-
#: um-config.php:
|
4136 |
msgid "Show display name in profile header"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: um-config.php:
|
4140 |
msgid "Show user description in header"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: um-config.php:
|
4144 |
msgid "User description maximum chars"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: um-config.php:
|
4148 |
msgid "Profile Header Menu Position"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
#: um-config.php:
|
4152 |
msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
|
4153 |
msgstr ""
|
4154 |
|
4155 |
-
#: um-config.php:
|
4156 |
msgid "Registration Default Template"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
-
#: um-config.php:
|
4160 |
msgid "This will be the default template to output registration"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: um-config.php:
|
4164 |
msgid "Registration Maximum Width"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: um-config.php:
|
4168 |
msgid "Registration Shortcode Alignment"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: um-config.php:
|
4172 |
msgid "Registration Field Icons"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: um-config.php:
|
4176 |
msgid "This controls the display of field icons in the registration form"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
-
#: um-config.php:
|
4180 |
msgid "Registration Primary Button Text"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
#: um-config.php:
|
4184 |
msgid "Registration Secondary Button"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: um-config.php:
|
4188 |
msgid "Registration Secondary Button Text"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: um-config.php:
|
4192 |
msgid "Registration Default Role"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: um-config.php:
|
4196 |
msgid "This will be the default role assigned to users registering thru registration form"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: um-config.php:
|
4200 |
msgid "Login Default Template"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: um-config.php:
|
4204 |
msgid "This will be the default template to output login"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: um-config.php:
|
4208 |
msgid "Login Maximum Width"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: um-config.php:
|
4212 |
msgid "Login Shortcode Alignment"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: um-config.php:
|
4216 |
msgid "Login Field Icons"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: um-config.php:
|
4220 |
msgid "This controls the display of field icons in the login form"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: um-config.php:
|
4224 |
msgid "Login Primary Button Text"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: um-config.php:
|
4228 |
msgid "Login Secondary Button"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: um-config.php:
|
4232 |
msgid "Login Secondary Button Text"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: um-config.php:
|
|
|
|
|
|
|
|
|
4236 |
msgid "Advanced"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: um-config.php:
|
4240 |
msgid "Disable JS/CSS Compression"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: um-config.php:
|
4244 |
msgid ""
|
4245 |
"Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
|
4246 |
"this setting for development or debugging purposes only."
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: um-config.php:
|
4250 |
msgid "Never load plugin JS and CSS on the following pages"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: um-config.php:
|
4254 |
msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: um-config.php:
|
4258 |
msgid "Add New Page"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: um-config.php:
|
4262 |
msgid "Allow Tracking"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: um-config.php:
|
4266 |
msgid "Do not allow"
|
4267 |
msgstr ""
|
4268 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Ultimate Member\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-25 21:57+0200\n"
|
6 |
+
"PO-Revision-Date: 2015-01-25 21:57+0200\n"
|
7 |
"Last-Translator: Calum Allison <umplugin@gmail.com>\n"
|
8 |
"Language-Team: Ultimate Member <umplugin@gmail.com>\n"
|
9 |
"Language: en_US\n"
|
240 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
|
241 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
|
242 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
|
243 |
+
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:742
|
244 |
+
#: core/um-fields.php:763
|
245 |
msgid "Upload"
|
246 |
msgstr ""
|
247 |
|
252 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:76
|
253 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:133
|
254 |
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:190
|
255 |
+
#: core/um-actions-profile.php:166
|
256 |
msgid "Remove"
|
257 |
msgstr ""
|
258 |
|
338 |
msgid "Add More"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:62 core/um-builtin.php:469
|
342 |
+
#: core/um-builtin.php:472 core/um-builtin.php:832 core/um-builtin.php:835
|
343 |
msgid "Password"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:63 core/um-builtin.php:445
|
347 |
+
#: core/um-builtin.php:448
|
348 |
msgid "Username"
|
349 |
msgstr ""
|
350 |
|
578 |
"configurations, plugins and themes to test to ensure compatibility."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
|
582 |
+
#: um-config.php:1473
|
583 |
msgid "Allow tracking"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:140 admin/core/um-admin-tracking.php:154
|
587 |
msgid "Do not allow tracking"
|
588 |
msgstr ""
|
589 |
|
2015 |
msgstr ""
|
2016 |
|
2017 |
#: admin/core/um-admin-actions-ajax.php:11 admin/core/um-admin-actions-fields.php:11
|
2018 |
+
#: admin/core/um-admin-actions-modal.php:98
|
2019 |
msgid "Please login as administrator"
|
2020 |
msgstr ""
|
2021 |
|
2027 |
msgid "Add conditional fields support"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: admin/core/um-admin-actions-modal.php:30
|
2031 |
+
msgid "Reset all rules"
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: admin/core/um-admin-actions-modal.php:123
|
2035 |
msgid "Search Icons..."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: admin/core/um-admin-actions-modal.php:144
|
2039 |
msgid "Setup New Field"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: admin/core/um-admin-actions-modal.php:160
|
2043 |
msgid "Predefined Fields"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: admin/core/um-admin-actions-modal.php:172
|
2047 |
msgid "None"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: admin/core/um-admin-actions-modal.php:176
|
2051 |
msgid "Custom Fields"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: admin/core/um-admin-actions-modal.php:187
|
2055 |
msgid "You did not create any custom fields"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: admin/core/um-admin-actions-modal.php:221 admin/core/um-admin-actions-modal.php:291
|
2059 |
msgid "This field type is not setup correcty."
|
2060 |
msgstr ""
|
2061 |
|
2153 |
msgid "Role draft updated."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:208
|
2157 |
+
#: um-config.php:240
|
2158 |
msgid "Yes"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
|
2162 |
+
#: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:209 um-config.php:241
|
2163 |
msgid "No"
|
2164 |
msgstr ""
|
2165 |
|
2235 |
msgid "User Meta"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: admin/core/um-admin-metabox.php:421
|
2239 |
+
msgid ""
|
2240 |
+
"Select where this field should appear. This option should only be changed on the profile form and allows you "
|
2241 |
+
"to show a field in one mode only (edit or view) or in both modes."
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
#: admin/core/um-admin-metabox.php:455
|
2245 |
msgid "If"
|
2246 |
msgstr ""
|
2324 |
msgid "Core"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: admin/core/um-admin-tracking.php:149
|
2328 |
msgid ""
|
2329 |
"Help us improve Ultimate Member’s compatibility with other plugins and themes by allowing us to track non-"
|
2330 |
"sensitive data on your site. Click <a href=\"https://ultimatemember.com/tracking/\" target=\"_blank\">here</"
|
2347 |
msgid "Take Action"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: admin/core/um-admin-users.php:199 core/um-fields.php:1193
|
2351 |
msgid "Apply"
|
2352 |
msgstr ""
|
2353 |
|
2424 |
msgstr ""
|
2425 |
|
2426 |
#: admin/templates/access/settings.php:38
|
2427 |
+
msgid "If you do not select any role, all members will be able to view this content"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
#: admin/templates/dashboard/overview.php:83
|
2524 |
msgid "Profile photo border color"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: admin/templates/directory/profile_card.php:19
|
2528 |
+
msgid "Profile card border thickness"
|
2529 |
+
msgstr ""
|
2530 |
+
|
2531 |
#: admin/templates/directory/search.php:6
|
2532 |
msgid "Enable Search feature"
|
2533 |
msgstr ""
|
2571 |
|
2572 |
#: admin/templates/form/login_customize.php:26 admin/templates/form/profile_customize.php:38
|
2573 |
#: admin/templates/form/register_customize.php:38
|
2574 |
+
msgid "Max. Width (px)"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
#: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:42
|
2629 |
msgid "Secondary Button Text Color"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: admin/templates/form/login_customize.php:92
|
2633 |
+
msgid "Show Forgot Password Link?"
|
2634 |
+
msgstr ""
|
2635 |
+
|
2636 |
#: admin/templates/form/login_settings.php:3
|
2637 |
msgid "Redirection after Login"
|
2638 |
msgstr ""
|
2647 |
msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: admin/templates/form/mode.php:9 um-config.php:1263
|
2651 |
msgid "Registration Form"
|
2652 |
msgstr ""
|
2653 |
|
2655 |
msgid "Profile Form"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: admin/templates/form/mode.php:13 um-config.php:1354
|
2659 |
msgid "Login Form"
|
2660 |
msgstr ""
|
2661 |
|
2675 |
msgid "Cover photo ratio"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: admin/templates/form/profile_customize.php:125 um-config.php:1131
|
2679 |
msgid "Profile Photo Size"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: admin/templates/form/profile_customize.php:129 um-config.php:1140
|
2683 |
msgid "Profile Photo Style"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: admin/templates/form/profile_customize.php:132 um-config.php:1144
|
2687 |
msgid "Circle"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: admin/templates/form/profile_customize.php:133 um-config.php:1145
|
2691 |
msgid "Rounded Corners"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: admin/templates/form/profile_customize.php:134 um-config.php:1146
|
2695 |
msgid "Square"
|
2696 |
msgstr ""
|
2697 |
|
2739 |
msgid "Assign role to form"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: admin/templates/form/register_customize.php:42 um-config.php:1040 um-config.php:1289 um-config.php:1380
|
|
|
|
|
|
|
|
|
2743 |
msgid "The shortcode is centered by default unless you specify otherwise here"
|
2744 |
msgstr ""
|
2745 |
|
2785 |
|
2786 |
#: admin/templates/modal/dynamic_edit_field.php:15 admin/templates/modal/dynamic_edit_row.php:15
|
2787 |
#: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
|
2788 |
+
#: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:167
|
2789 |
+
#: core/um-actions-profile.php:259 core/um-actions-profile.php:269 core/um-actions-profile.php:394
|
2790 |
+
#: core/um-fields.php:1194 core/um-fields.php:1279
|
2791 |
msgid "Cancel"
|
2792 |
msgstr ""
|
2793 |
|
3056 |
"you know whether your application has been successful or not."
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: admin/um-admin-init.php:36
|
3060 |
msgid "Ultimate Member"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: admin/um-admin-init.php:38
|
3064 |
msgid "Dashboard"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: admin/um-admin-init.php:41
|
3068 |
#, php-format
|
3069 |
msgid "%s | Ultimate Member"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: admin/um-admin-init.php:51 core/um-taxonomies.php:18
|
3073 |
msgid "Forms"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: admin/um-admin-init.php:53 core/um-taxonomies.php:36
|
3077 |
msgid "User Roles"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: admin/um-admin-init.php:56 core/um-taxonomies.php:56
|
3081 |
msgid "Member Directories"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: admin/um-admin-init.php:80
|
3085 |
msgid "Please create a team.php template in admin templates."
|
3086 |
msgstr ""
|
3087 |
|
3088 |
#: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
|
3089 |
+
#: core/um-builtin.php:818 core/um-builtin.php:821
|
3090 |
msgid "Delete Account"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: core/um-actions-account.php:82 core/um-actions-password.php:121
|
3094 |
msgid "Your password must contain at least 8 characters"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: core/um-actions-account.php:86 core/um-actions-password.php:125
|
3098 |
msgid "Your password must contain less than 30 characters"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
|
3102 |
msgid "You can not edit this user"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: core/um-actions-ajax.php:73
|
3106 |
msgid "Invalid parameters"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: core/um-actions-ajax.php:76
|
3110 |
msgid "Invalid coordinates"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: core/um-actions-ajax.php:79
|
3114 |
msgid "Invalid Image file"
|
3115 |
msgstr ""
|
3116 |
|
3118 |
msgid "You do not have permission to delete this user."
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: core/um-actions-form.php:83
|
3122 |
msgid "You are not allowed to use this word as your username."
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: core/um-actions-form.php:146
|
3126 |
#, php-format
|
3127 |
msgid "%s is required"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: core/um-actions-form.php:152
|
3131 |
#, php-format
|
3132 |
msgid "You are only allowed to enter a maximum of %s words"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: core/um-actions-form.php:158
|
3136 |
#, php-format
|
3137 |
msgid "Your %s must contain at least %s characters"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: core/um-actions-form.php:164
|
3141 |
#, php-format
|
3142 |
msgid "Your %s must contain less than %s characters"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: core/um-actions-form.php:170
|
3146 |
msgid "You can not use HTML tags here"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: core/um-actions-form.php:176
|
3150 |
msgid "Your password must contain at least one capital letter and one number"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: core/um-actions-form.php:182
|
3154 |
msgid "Please confirm your password"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: core/um-actions-form.php:185
|
3158 |
msgid "Your passwords do not match"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: core/um-actions-form.php:191
|
3162 |
#, php-format
|
3163 |
msgid "Please select at least %s choices"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: core/um-actions-form.php:197
|
3167 |
#, php-format
|
3168 |
msgid "You can only select up to %s choices"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: core/um-actions-form.php:207
|
3172 |
msgid "Please enter a valid phone number"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: core/um-actions-form.php:213 core/um-actions-form.php:219 core/um-actions-form.php:225
|
3176 |
+
#: core/um-actions-form.php:231 core/um-actions-form.php:237 core/um-actions-form.php:243
|
3177 |
#, php-format
|
3178 |
msgid "Please enter a valid %s username or profile URL"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: core/um-actions-form.php:250 core/um-actions-form.php:264
|
3182 |
msgid "You must provide a username"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: core/um-actions-form.php:252 core/um-actions-form.php:266
|
3186 |
msgid "Your username is already taken"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: core/um-actions-form.php:254
|
3190 |
msgid "Username cannot be an email"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: core/um-actions-form.php:256 core/um-actions-form.php:270
|
3194 |
msgid "Your username contains invalid characters"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: core/um-actions-form.php:268 core/um-actions-form.php:280
|
3198 |
msgid "This email is already linked to an existing account"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: core/um-actions-form.php:278
|
3202 |
msgid "You must provide your email"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: core/um-actions-form.php:282
|
3206 |
msgid "This is not a valid email"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: core/um-actions-form.php:284
|
3210 |
msgid "Your email contains invalid characters"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: core/um-actions-form.php:298
|
3214 |
#, php-format
|
3215 |
msgid "Your user description must contain less than %s characters"
|
3216 |
msgstr ""
|
3247 |
msgid "Password is incorrect. Please try again."
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: core/um-actions-login.php:207
|
3251 |
msgid "Forgot your password?"
|
3252 |
msgstr ""
|
3253 |
|
3304 |
msgid "Your membership request has been rejected."
|
3305 |
msgstr ""
|
3306 |
|
3307 |
+
#: core/um-actions-password.php:80 core/um-actions-password.php:111 core/um-form.php:80
|
3308 |
msgid "Hello, spam bot!"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: core/um-actions-password.php:83 core/um-actions-password.php:114 core/um-form.php:83
|
3312 |
msgid ""
|
3313 |
"Whoa, slow down! You're seeing this message because you tried to submit a form too fast and we think you "
|
3314 |
"might be a spam bot. If you are a real human being please wait a few seconds before submitting the form. "
|
3315 |
"Thanks!"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: core/um-actions-password.php:86
|
3319 |
msgid "Please provide your username or email"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: core/um-actions-password.php:92
|
3323 |
msgid " We can't find an account registered with that address or username "
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: core/um-actions-password.php:189
|
3327 |
msgid "Reset my password"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: core/um-actions-password.php:216
|
3331 |
msgid "Change my password"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: core/um-actions-profile.php:40
|
3335 |
msgid "You are not allowed to edit this user."
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: core/um-actions-profile.php:151 core/um-builtin.php:756
|
3339 |
msgid "Change your cover photo"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: core/um-actions-profile.php:165
|
3343 |
msgid "Change cover photo"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: core/um-actions-profile.php:201
|
3347 |
msgid "Upload a cover photo"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: core/um-actions-profile.php:258
|
3351 |
msgid "Upload photo"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: core/um-actions-profile.php:267 core/um-fields.php:1160 core/um-fields.php:1193
|
3355 |
msgid "Change photo"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: core/um-actions-profile.php:268
|
3359 |
msgid "Remove photo"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: core/um-actions-profile.php:306
|
3363 |
msgid "Tell us a bit about yourself..."
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: core/um-actions-profile.php:316
|
3367 |
#, php-format
|
3368 |
msgid "This user account status is %s"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: core/um-actions-profile.php:391
|
3372 |
msgid "Edit Profile"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: core/um-actions-profile.php:392
|
3376 |
msgid "My Account"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: core/um-actions-profile.php:393
|
3380 |
msgid "Logout"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: core/um-builtin.php:458 core/um-builtin.php:461 core/um-builtin.php:774
|
3384 |
+
msgid "Username or E-mail"
|
3385 |
+
msgstr ""
|
3386 |
+
|
3387 |
+
#: core/um-builtin.php:483 core/um-builtin.php:486
|
3388 |
+
msgid "First Name"
|
3389 |
+
msgstr ""
|
3390 |
+
|
3391 |
+
#: core/um-builtin.php:493 core/um-builtin.php:496
|
3392 |
+
msgid "Last Name"
|
3393 |
+
msgstr ""
|
3394 |
+
|
3395 |
+
#: core/um-builtin.php:503 core/um-builtin.php:506
|
3396 |
+
msgid "Display Name"
|
3397 |
+
msgstr ""
|
3398 |
+
|
3399 |
+
#: core/um-builtin.php:513 core/um-builtin.php:516
|
3400 |
+
msgid "E-mail Address"
|
3401 |
+
msgstr ""
|
3402 |
+
|
3403 |
+
#: core/um-builtin.php:524 core/um-builtin.php:527
|
3404 |
+
msgid "Biography"
|
3405 |
+
msgstr ""
|
3406 |
+
|
3407 |
+
#: core/um-builtin.php:537 core/um-builtin.php:540
|
3408 |
+
msgid "Birth Date"
|
3409 |
+
msgstr ""
|
3410 |
+
|
3411 |
+
#: core/um-builtin.php:551 core/um-builtin.php:554
|
3412 |
+
msgid "Gender"
|
3413 |
+
msgstr ""
|
3414 |
+
|
3415 |
+
#: core/um-builtin.php:562
|
3416 |
+
msgid "Countries"
|
3417 |
+
msgstr ""
|
3418 |
+
|
3419 |
+
#: core/um-builtin.php:565
|
3420 |
+
msgid "Country"
|
3421 |
+
msgstr ""
|
3422 |
+
|
3423 |
+
#: core/um-builtin.php:574 core/um-builtin.php:577
|
3424 |
+
msgid "Facebook"
|
3425 |
+
msgstr ""
|
3426 |
+
|
3427 |
+
#: core/um-builtin.php:592 core/um-builtin.php:595
|
3428 |
+
msgid "Twitter"
|
3429 |
+
msgstr ""
|
3430 |
+
|
3431 |
+
#: core/um-builtin.php:610 core/um-builtin.php:613
|
3432 |
+
msgid "LinkedIn"
|
3433 |
+
msgstr ""
|
3434 |
+
|
3435 |
+
#: core/um-builtin.php:628 core/um-builtin.php:631
|
3436 |
+
msgid "Google+"
|
3437 |
+
msgstr ""
|
3438 |
+
|
3439 |
+
#: core/um-builtin.php:646 core/um-builtin.php:649
|
3440 |
+
msgid "Instagram"
|
3441 |
+
msgstr ""
|
3442 |
+
|
3443 |
+
#: core/um-builtin.php:664 core/um-builtin.php:667
|
3444 |
+
msgid "Skype ID"
|
3445 |
+
msgstr ""
|
3446 |
+
|
3447 |
+
#: core/um-builtin.php:679
|
3448 |
+
msgid "Roles (Dropdown)"
|
3449 |
+
msgstr ""
|
3450 |
+
|
3451 |
+
#: core/um-builtin.php:682 core/um-builtin.php:694
|
3452 |
+
msgid "Account Type"
|
3453 |
+
msgstr ""
|
3454 |
+
|
3455 |
+
#: core/um-builtin.php:691
|
3456 |
+
msgid "Roles (Radio)"
|
3457 |
+
msgstr ""
|
3458 |
+
|
3459 |
+
#: core/um-builtin.php:702
|
3460 |
+
msgid "Languages"
|
3461 |
+
msgstr ""
|
3462 |
+
|
3463 |
+
#: core/um-builtin.php:705
|
3464 |
+
msgid "Languages Spoken"
|
3465 |
+
msgstr ""
|
3466 |
+
|
3467 |
+
#: core/um-builtin.php:706
|
3468 |
+
msgid "Select languages"
|
3469 |
+
msgstr ""
|
3470 |
+
|
3471 |
+
#: core/um-builtin.php:714 core/um-builtin.php:717
|
3472 |
+
msgid "Phone Number"
|
3473 |
+
msgstr ""
|
3474 |
+
|
3475 |
+
#: core/um-builtin.php:726 core/um-builtin.php:729
|
3476 |
+
msgid "Mobile Number"
|
3477 |
+
msgstr ""
|
3478 |
+
|
3479 |
+
#: core/um-builtin.php:740
|
3480 |
+
msgid "Profile Photo"
|
3481 |
+
msgstr ""
|
3482 |
+
|
3483 |
+
#: core/um-builtin.php:743
|
3484 |
+
msgid "Change your profile photo"
|
3485 |
+
msgstr ""
|
3486 |
+
|
3487 |
+
#: core/um-builtin.php:744
|
3488 |
+
msgid "Upload your photo here"
|
3489 |
+
msgstr ""
|
3490 |
+
|
3491 |
+
#: core/um-builtin.php:753
|
3492 |
+
msgid "Cover Photo"
|
3493 |
+
msgstr ""
|
3494 |
+
|
3495 |
+
#: core/um-builtin.php:757
|
3496 |
+
msgid "Upload profile cover here"
|
3497 |
+
msgstr ""
|
3498 |
+
|
3499 |
+
#: core/um-builtin.php:767
|
3500 |
+
msgid "Password Reset"
|
3501 |
+
msgstr ""
|
3502 |
+
|
3503 |
+
#: core/um-builtin.php:769
|
3504 |
+
msgid "To reset your password, please enter your email address or username below"
|
3505 |
+
msgstr ""
|
3506 |
+
|
3507 |
#: core/um-builtin.php:777
|
3508 |
msgid "Enter your username or email"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: core/um-builtin.php:787 core/um-builtin.php:790
|
3512 |
+
msgid "Profile Privacy"
|
3513 |
+
msgstr ""
|
3514 |
+
|
3515 |
+
#: core/um-builtin.php:791
|
3516 |
+
msgid "Who can see your public profile?"
|
3517 |
+
msgstr ""
|
3518 |
+
|
3519 |
#: core/um-builtin.php:795 core/um-builtin.php:796
|
3520 |
msgid "Everyone"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: core/um-builtin.php:796 core/um-user.php:405
|
3524 |
msgid "Only me"
|
3525 |
msgstr ""
|
3526 |
|
3532 |
msgid "Here you can hide yourself from appearing in public directory"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: core/um-builtin.php:822
|
3536 |
+
msgid "If you confirm, everything related to your profile will be deleted permanently from the site"
|
3537 |
+
msgstr ""
|
3538 |
+
|
3539 |
#: core/um-cron.php:15
|
3540 |
msgid "Once Weekly"
|
3541 |
msgstr ""
|
3554 |
msgid "Less than 1 year old"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: core/um-fields.php:915
|
3558 |
msgid "Current Password"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: core/um-fields.php:976
|
3562 |
#, php-format
|
3563 |
msgid "Confirm New %s"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: core/um-fields.php:1151 core/um-fields.php:1223
|
3567 |
msgid "Upload Photo"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: core/um-fields.php:1193 core/um-fields.php:1278
|
3571 |
msgid "Processing..."
|
3572 |
msgstr ""
|
3573 |
|
3574 |
+
#: core/um-fields.php:1239 core/um-fields.php:1278
|
3575 |
msgid "Change file"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: core/um-fields.php:1278
|
3579 |
msgid "Save"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: core/um-fields.php:1912
|
3583 |
#, php-format
|
3584 |
msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: core/um-fields.php:1914
|
3588 |
msgid "This user has not added any information to their profile yet."
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: core/um-files.php:306
|
3592 |
msgid "Your image is invalid or too large!"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: core/um-files.php:312 core/um-files.php:314
|
3596 |
#, php-format
|
3597 |
msgid "Your photo is too small. It must be at least %spx wide."
|
3598 |
msgstr ""
|
3609 |
msgid "Untitled photo"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: core/um-filters-profile.php:10
|
3613 |
+
msgid "About"
|
3614 |
+
msgstr ""
|
3615 |
+
|
3616 |
#: core/um-filters-user.php:11 core/um-filters-user.php:33 core/um-filters-user.php:38
|
3617 |
msgid "Approve Membership"
|
3618 |
msgstr ""
|
3941 |
msgid "Mail appears from address"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: um-config.php:317 um-config.php:632
|
3945 |
msgid "e.g. admin@companyname.com"
|
3946 |
msgstr ""
|
3947 |
|
3950 |
msgstr ""
|
3951 |
|
3952 |
#: um-config.php:333 um-config.php:369 um-config.php:401 um-config.php:433 um-config.php:469 um-config.php:500
|
3953 |
+
#: um-config.php:531 um-config.php:562 um-config.php:594 um-config.php:647 um-config.php:678 um-config.php:710
|
3954 |
msgid "Subject Line"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
#: um-config.php:343 um-config.php:379 um-config.php:411 um-config.php:443 um-config.php:479 um-config.php:510
|
3958 |
+
#: um-config.php:541 um-config.php:572 um-config.php:604 um-config.php:657 um-config.php:688 um-config.php:720
|
3959 |
msgid "Message Body"
|
3960 |
msgstr ""
|
3961 |
|
3987 |
msgid "Password Reset Email"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: um-config.php:585 um-config.php:593 um-config.php:603
|
3991 |
+
msgid "Password Changed Email"
|
3992 |
+
msgstr ""
|
3993 |
+
|
3994 |
+
#: um-config.php:624
|
3995 |
msgid "Notifications"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: um-config.php:630
|
3999 |
msgid "Admin E-mail Address"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: um-config.php:638 um-config.php:646 um-config.php:656
|
4003 |
msgid "New User Notification"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: um-config.php:669 um-config.php:677 um-config.php:687
|
4007 |
msgid "Account Needs Review Notification"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: um-config.php:701 um-config.php:709 um-config.php:719
|
4011 |
msgid "Account Deletion Notification"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: um-config.php:737
|
4015 |
msgid "Uploads"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: um-config.php:743
|
4019 |
msgid "Profile Photo Thumbnail Sizes"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: um-config.php:744
|
4023 |
msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: um-config.php:747 um-config.php:757
|
4027 |
msgid "Add New Size"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: um-config.php:753
|
4031 |
msgid "Cover Photo Thumbnail Sizes"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: um-config.php:754
|
4035 |
msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: um-config.php:763
|
4039 |
msgid "Image Quality"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: um-config.php:764
|
4043 |
msgid ""
|
4044 |
"Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
|
4045 |
+
"100 (best quality, biggest file). The default range is 60."
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: um-config.php:772
|
4049 |
msgid "Image Upload Maximum Width"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: um-config.php:773
|
4053 |
msgid "Any image upload above this width will be resized to this limit automatically."
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: um-config.php:781
|
4057 |
msgid "Cover Photo Minimum Width"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: um-config.php:782
|
4061 |
msgid "This will be the minimum width for cover photo uploads"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: um-config.php:798
|
4065 |
msgid "SEO"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: um-config.php:804
|
4069 |
msgid "User Profile Title"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: um-config.php:813
|
4073 |
msgid "User Profile Dynamic Meta Description"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: um-config.php:814
|
4077 |
msgid "You can use dynamic tags to display dynamic user profile data in this field."
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: um-config.php:815
|
4081 |
msgid "This will be used in the meta description that is available for search-engines."
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: um-config.php:829
|
4085 |
msgid "Appearance"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: um-config.php:839
|
4089 |
msgid "General"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: um-config.php:846
|
4093 |
msgid "Members Default Template"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: um-config.php:847
|
4097 |
msgid "This will be the default template to output member directory"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: um-config.php:857
|
4101 |
msgid "General Active Color"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: um-config.php:859
|
4105 |
msgid ""
|
4106 |
"Active color is used commonly with many plugin elements as highlighted color or active selection for "
|
4107 |
"example. This color demonstrates the primary active color of the plugin"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: um-config.php:867
|
4111 |
msgid "General Secondary Color"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: um-config.php:869
|
4115 |
msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: um-config.php:877
|
4119 |
msgid "Default Primary Button Color"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: um-config.php:886
|
4123 |
msgid "Default Primary Button Hover Color"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: um-config.php:895
|
4127 |
msgid "Default Primary Button Text Color"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: um-config.php:904
|
4131 |
msgid "Default Secondary Button Color"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: um-config.php:913
|
4135 |
msgid "Default Secondary Button Hover Color"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: um-config.php:922
|
4139 |
msgid "Default Secondary Button Text Color"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: um-config.php:931
|
4143 |
msgid "Default Help Icon Color"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: um-config.php:943
|
4147 |
msgid "Form Inputs"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: um-config.php:950
|
4151 |
msgid "Field Label Color"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: um-config.php:958
|
4155 |
msgid "Field Border Style"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: um-config.php:967
|
4159 |
msgid "Field Background Color"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: um-config.php:976
|
4163 |
msgid "Field Text Color"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: um-config.php:985
|
4167 |
msgid "Field Placeholder Color"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: um-config.php:994
|
4171 |
msgid "Field Font Icon Color"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: um-config.php:1006
|
4175 |
msgid "Profile"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: um-config.php:1013
|
4179 |
msgid "Profile Default Template"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: um-config.php:1014
|
4183 |
msgid "This will be the default template to output profile"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: um-config.php:1022
|
4187 |
msgid "Profile Maximum Width"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: um-config.php:1030
|
4191 |
+
msgid "Profile Area Maximum Width"
|
4192 |
+
msgstr ""
|
4193 |
+
|
4194 |
+
#: um-config.php:1039
|
4195 |
msgid "Profile Shortcode Alignment"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: um-config.php:1043 um-config.php:1292 um-config.php:1383
|
4199 |
msgid "Centered"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: um-config.php:1044 um-config.php:1293 um-config.php:1384
|
4203 |
msgid "Left aligned"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: um-config.php:1045 um-config.php:1294 um-config.php:1385
|
4207 |
msgid "Right aligned"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: um-config.php:1053
|
4211 |
msgid "Profile Field Icons"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: um-config.php:1054
|
4215 |
msgid "This is applicable for edit mode only"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: um-config.php:1057 um-config.php:1306 um-config.php:1397
|
4219 |
msgid "Show inside text field"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
+
#: um-config.php:1058 um-config.php:1307 um-config.php:1398
|
4223 |
msgid "Show with label"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
+
#: um-config.php:1059 um-config.php:1308 um-config.php:1399
|
4227 |
msgid "Turn off"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: um-config.php:1066
|
4231 |
msgid "Profile Primary Button Text"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: um-config.php:1074
|
4235 |
msgid "Profile Secondary Button"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: um-config.php:1082
|
4239 |
msgid "Profile Secondary Button Text"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: um-config.php:1092
|
4243 |
msgid "Profile Associated Role"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: um-config.php:1093
|
4247 |
msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: um-config.php:1102
|
4251 |
msgid "Profile Base Background Color"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: um-config.php:1111
|
4255 |
msgid "Profile Header Background Color"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: um-config.php:1121
|
4259 |
msgid "Default Profile Photo"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: um-config.php:1122
|
4263 |
msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: um-config.php:1141
|
4267 |
msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: um-config.php:1153
|
4271 |
msgid "Profile Cover Photos"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: um-config.php:1162
|
4275 |
msgid "Profile Cover Ratio"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: um-config.php:1163
|
4279 |
msgid "Choose global ratio for cover photos of profiles"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: um-config.php:1177
|
4283 |
msgid "Profile Header Meta Text Color"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: um-config.php:1186
|
4287 |
msgid "Profile Header Link Color"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: um-config.php:1195
|
4291 |
msgid "Profile Header Link Hover"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: um-config.php:1204
|
4295 |
msgid "Profile Header Icon Link Color"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: um-config.php:1213
|
4299 |
msgid "Profile Header Icon Link Hover"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: um-config.php:1221
|
4303 |
msgid "Show display name in profile header"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: um-config.php:1229
|
4307 |
msgid "Show user description in header"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: um-config.php:1237
|
4311 |
|