Version Description
- We now have the capability to show Select User Role field on edit profile forms
- Small css modification
- Changed the logo icons inside the plugin
- Added an icon to the update screen for PB pro
- Fixed an issue with Query monitor plugin not working on Roles Editor page
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.1.4 |
Comparing to | |
See all releases |
Code changes from version 3.1.3 to 3.1.4
- admin/manage-fields.php +1 -0
- assets/css/style-back-end.css +1 -1
- assets/images/pb-logo-free.png +0 -0
- assets/images/pb-logo-hobbyist.png +0 -0
- assets/images/pb-logo-pro.png +0 -0
- assets/js/jquery-manage-fields-live-change.js +1 -0
- assets/lib/wck-api/assets/js/select2/select2.min.css +1 -0
- assets/lib/wck-api/assets/js/select2/select2.min.js +3 -0
- assets/lib/wck-api/fields/select-2.php +56 -0
- assets/lib/wck-api/wordpress-creation-kit.css +1 -1
- assets/lib/wck-api/wordpress-creation-kit.php +7 -1
- features/functions.php +19 -0
- features/roles-editor/roles-editor.php +2 -2
- front-end/class-formbuilder.php +3 -2
- front-end/default-fields/user-role/user-role.php +19 -8
- index.php +2 -2
- readme.txt +8 -1
- translation/profile-builder.catalog.php +4 -1
- translation/profile-builder.pot +585 -573
admin/manage-fields.php
CHANGED
@@ -193,6 +193,7 @@ function wppb_populate_manage_fields(){
|
|
193 |
array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ),
|
194 |
array( 'type' => 'checkbox', 'slug' => 'captcha-wp-forms', 'title' => __( 'Display on default WP forms', 'profile-builder' ), 'options' => array( '%'.__('Default WP Login', 'profile-builder').'%'.'default_wp_login', '%'.__('Default WP Register', 'profile-builder').'%'.'default_wp_register', '%'.__('Default WP Recover Password', 'profile-builder').'%'.'default_wp_recover_password'), 'default' => 'default_wp_register', 'description' => __( "Select on which default WP forms to display reCAPTCHA", 'profile-builder' ) ),
|
195 |
array( 'type' => 'checkbox', 'slug' => 'user-roles', 'title' => __( 'User Roles', 'profile-builder' ), 'options' => $user_roles, 'description' => __( "Select which user roles to show to the user ( drag and drop to re-order )", 'profile-builder' ) ),
|
|
|
196 |
array( 'type' => 'text', 'slug' => 'user-roles-sort-order', 'title' => __( 'User Roles Order', 'profile-builder' ), 'description' => __( "Save the user role order from the user roles checkboxes", 'profile-builder' ) ),
|
197 |
array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profile-builder' ), 'description' => __( "Default value of the field", 'profile-builder' ) ),
|
198 |
array( 'type' => 'text', 'slug' => 'default-option', 'title' => __( 'Default Option', 'profile-builder' ), 'description' => __( "Specify the option which should be selected by default", 'profile-builder' ) ),
|
193 |
array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ),
|
194 |
array( 'type' => 'checkbox', 'slug' => 'captcha-wp-forms', 'title' => __( 'Display on default WP forms', 'profile-builder' ), 'options' => array( '%'.__('Default WP Login', 'profile-builder').'%'.'default_wp_login', '%'.__('Default WP Register', 'profile-builder').'%'.'default_wp_register', '%'.__('Default WP Recover Password', 'profile-builder').'%'.'default_wp_recover_password'), 'default' => 'default_wp_register', 'description' => __( "Select on which default WP forms to display reCAPTCHA", 'profile-builder' ) ),
|
195 |
array( 'type' => 'checkbox', 'slug' => 'user-roles', 'title' => __( 'User Roles', 'profile-builder' ), 'options' => $user_roles, 'description' => __( "Select which user roles to show to the user ( drag and drop to re-order )", 'profile-builder' ) ),
|
196 |
+
array( 'type' => 'checkbox', 'slug' => 'user-roles-on-edit-profile', 'title' => __( 'Display on Edit Profile', 'profile-builder' ), 'options' => array('%Yes%yes'), 'description' => __( "Check if you want the select user role field to appear on Edit Profile forms", 'profile-builder' ) ),
|
197 |
array( 'type' => 'text', 'slug' => 'user-roles-sort-order', 'title' => __( 'User Roles Order', 'profile-builder' ), 'description' => __( "Save the user role order from the user roles checkboxes", 'profile-builder' ) ),
|
198 |
array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profile-builder' ), 'description' => __( "Default value of the field", 'profile-builder' ) ),
|
199 |
array( 'type' => 'text', 'slug' => 'default-option', 'title' => __( 'Default Option', 'profile-builder' ), 'description' => __( "Specify the option which should be selected by default", 'profile-builder' ) ),
|
assets/css/style-back-end.css
CHANGED
@@ -85,7 +85,7 @@
|
|
85 |
display: inline-block;
|
86 |
text-transform: uppercase;
|
87 |
color: #fff;
|
88 |
-
margin-top:
|
89 |
font-size: 90%;
|
90 |
}
|
91 |
|
85 |
display: inline-block;
|
86 |
text-transform: uppercase;
|
87 |
color: #fff;
|
88 |
+
margin-top: 115px;
|
89 |
font-size: 90%;
|
90 |
}
|
91 |
|
assets/images/pb-logo-free.png
CHANGED
Binary file
|
assets/images/pb-logo-hobbyist.png
CHANGED
Binary file
|
assets/images/pb-logo-pro.png
CHANGED
Binary file
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
@@ -501,6 +501,7 @@ var fields = {
|
|
501 |
'.row-field-title',
|
502 |
'.row-description',
|
503 |
'.row-user-roles',
|
|
|
504 |
'.row-required'
|
505 |
],
|
506 |
'properties': {
|
501 |
'.row-field-title',
|
502 |
'.row-description',
|
503 |
'.row-user-roles',
|
504 |
+
'.row-user-roles-on-edit-profile',
|
505 |
'.row-required'
|
506 |
],
|
507 |
'properties': {
|
assets/lib/wck-api/assets/js/select2/select2.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
|
assets/lib/wck-api/assets/js/select2/select2.min.js
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):jQuery)}(function(a){var b=function(){if(a&&a.fn&&a.fn.select2&&a.fn.select2.amd)var b=a.fn.select2.amd;var b;return function(){if(!b||!b.requirejs){b?c=b:b={};var a,c,d;!function(b){function e(a,b){return u.call(a,b)}function f(a,b){var c,d,e,f,g,h,i,j,k,l,m,n=b&&b.split("/"),o=s.map,p=o&&o["*"]||{};if(a&&"."===a.charAt(0))if(b){for(a=a.split("/"),g=a.length-1,s.nodeIdCompat&&w.test(a[g])&&(a[g]=a[g].replace(w,"")),a=n.slice(0,n.length-1).concat(a),k=0;k<a.length;k+=1)if(m=a[k],"."===m)a.splice(k,1),k-=1;else if(".."===m){if(1===k&&(".."===a[2]||".."===a[0]))break;k>0&&(a.splice(k-1,2),k-=2)}a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((n||p)&&o){for(c=a.split("/"),k=c.length;k>0;k-=1){if(d=c.slice(0,k).join("/"),n)for(l=n.length;l>0;l-=1)if(e=o[n.slice(0,l).join("/")],e&&(e=e[d])){f=e,h=k;break}if(f)break;!i&&p&&p[d]&&(i=p[d],j=k)}!f&&i&&(f=i,h=j),f&&(c.splice(0,h,f),a=c.join("/"))}return a}function g(a,c){return function(){var d=v.call(arguments,0);return"string"!=typeof d[0]&&1===d.length&&d.push(null),n.apply(b,d.concat([a,c]))}}function h(a){return function(b){return f(b,a)}}function i(a){return function(b){q[a]=b}}function j(a){if(e(r,a)){var c=r[a];delete r[a],t[a]=!0,m.apply(b,c)}if(!e(q,a)&&!e(t,a))throw new Error("No "+a);return q[a]}function k(a){var b,c=a?a.indexOf("!"):-1;return c>-1&&(b=a.substring(0,c),a=a.substring(c+1,a.length)),[b,a]}function l(a){return function(){return s&&s.config&&s.config[a]||{}}}var m,n,o,p,q={},r={},s={},t={},u=Object.prototype.hasOwnProperty,v=[].slice,w=/\.js$/;o=function(a,b){var c,d=k(a),e=d[0];return a=d[1],e&&(e=f(e,b),c=j(e)),e?a=c&&c.normalize?c.normalize(a,h(b)):f(a,b):(a=f(a,b),d=k(a),e=d[0],a=d[1],e&&(c=j(e))),{f:e?e+"!"+a:a,n:a,pr:e,p:c}},p={require:function(a){return g(a)},exports:function(a){var b=q[a];return"undefined"!=typeof b?b:q[a]={}},module:function(a){return{id:a,uri:"",exports:q[a],config:l(a)}}},m=function(a,c,d,f){var h,k,l,m,n,s,u=[],v=typeof d;if(f=f||a,"undefined"===v||"function"===v){for(c=!c.length&&d.length?["require","exports","module"]:c,n=0;n<c.length;n+=1)if(m=o(c[n],f),k=m.f,"require"===k)u[n]=p.require(a);else if("exports"===k)u[n]=p.exports(a),s=!0;else if("module"===k)h=u[n]=p.module(a);else if(e(q,k)||e(r,k)||e(t,k))u[n]=j(k);else{if(!m.p)throw new Error(a+" missing "+k);m.p.load(m.n,g(f,!0),i(k),{}),u[n]=q[k]}l=d?d.apply(q[a],u):void 0,a&&(h&&h.exports!==b&&h.exports!==q[a]?q[a]=h.exports:l===b&&s||(q[a]=l))}else a&&(q[a]=d)},a=c=n=function(a,c,d,e,f){if("string"==typeof a)return p[a]?p[a](c):j(o(a,c).f);if(!a.splice){if(s=a,s.deps&&n(s.deps,s.callback),!c)return;c.splice?(a=c,c=d,d=null):a=b}return c=c||function(){},"function"==typeof d&&(d=e,e=f),e?m(b,a,c,d):setTimeout(function(){m(b,a,c,d)},4),n},n.config=function(a){return n(a)},a._defined=q,d=function(a,b,c){if("string"!=typeof a)throw new Error("See almond README: incorrect module build, no module name");b.splice||(c=b,b=[]),e(q,a)||e(r,a)||(r[a]=[a,b,c])},d.amd={jQuery:!0}}(),b.requirejs=a,b.require=c,b.define=d}}(),b.define("almond",function(){}),b.define("jquery",[],function(){var b=a||$;return null==b&&console&&console.error&&console.error("Select2: An instance of jQuery or a jQuery-compatible library was not found. Make sure that you are including jQuery before Select2 on your web page."),b}),b.define("select2/utils",["jquery"],function(a){function b(a){var b=a.prototype,c=[];for(var d in b){var e=b[d];"function"==typeof e&&"constructor"!==d&&c.push(d)}return c}var c={};c.Extend=function(a,b){function c(){this.constructor=a}var d={}.hasOwnProperty;for(var e in b)d.call(b,e)&&(a[e]=b[e]);return c.prototype=b.prototype,a.prototype=new c,a.__super__=b.prototype,a},c.Decorate=function(a,c){function d(){var b=Array.prototype.unshift,d=c.prototype.constructor.length,e=a.prototype.constructor;d>0&&(b.call(arguments,a.prototype.constructor),e=c.prototype.constructor),e.apply(this,arguments)}function e(){this.constructor=d}var f=b(c),g=b(a);c.displayName=a.displayName,d.prototype=new e;for(var h=0;h<g.length;h++){var i=g[h];d.prototype[i]=a.prototype[i]}for(var j=(function(a){var b=function(){};a in d.prototype&&(b=d.prototype[a]);var e=c.prototype[a];return function(){var a=Array.prototype.unshift;return a.call(arguments,b),e.apply(this,arguments)}}),k=0;k<f.length;k++){var l=f[k];d.prototype[l]=j(l)}return d};var d=function(){this.listeners={}};return d.prototype.on=function(a,b){this.listeners=this.listeners||{},a in this.listeners?this.listeners[a].push(b):this.listeners[a]=[b]},d.prototype.trigger=function(a){var b=Array.prototype.slice,c=b.call(arguments,1);this.listeners=this.listeners||{},null==c&&(c=[]),0===c.length&&c.push({}),c[0]._type=a,a in this.listeners&&this.invoke(this.listeners[a],b.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},d.prototype.invoke=function(a,b){for(var c=0,d=a.length;d>c;c++)a[c].apply(this,b)},c.Observable=d,c.generateChars=function(a){for(var b="",c=0;a>c;c++){var d=Math.floor(36*Math.random());b+=d.toString(36)}return b},c.bind=function(a,b){return function(){a.apply(b,arguments)}},c._convertData=function(a){for(var b in a){var c=b.split("-"),d=a;if(1!==c.length){for(var e=0;e<c.length;e++){var f=c[e];f=f.substring(0,1).toLowerCase()+f.substring(1),f in d||(d[f]={}),e==c.length-1&&(d[f]=a[b]),d=d[f]}delete a[b]}}return a},c.hasScroll=function(b,c){var d=a(c),e=c.style.overflowX,f=c.style.overflowY;return e!==f||"hidden"!==f&&"visible"!==f?"scroll"===e||"scroll"===f?!0:d.innerHeight()<c.scrollHeight||d.innerWidth()<c.scrollWidth:!1},c.escapeMarkup=function(a){var b={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return"string"!=typeof a?a:String(a).replace(/[&<>"'\/\\]/g,function(a){return b[a]})},c.appendMany=function(b,c){if("1.7"===a.fn.jquery.substr(0,3)){var d=a();a.map(c,function(a){d=d.add(a)}),c=d}b.append(c)},c}),b.define("select2/results",["jquery","./utils"],function(a,b){function c(a,b,d){this.$element=a,this.data=d,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('<ul class="select2-results__options" role="tree"></ul>');return this.options.get("multiple")&&b.attr("aria-multiselectable","true"),this.$results=b,b},c.prototype.clear=function(){this.$results.empty()},c.prototype.displayMessage=function(b){var c=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var d=a('<li role="treeitem" aria-live="assertive" class="select2-results__option"></li>'),e=this.options.get("translations").get(b.message);d.append(c(e(b.args))),d[0].className+=" select2-results__message",this.$results.append(d)},c.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()},c.prototype.append=function(a){this.hideLoading();var b=[];if(null==a.results||0===a.results.length)return void(0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"}));a.results=this.sort(a.results);for(var c=0;c<a.results.length;c++){var d=a.results[c],e=this.option(d);b.push(e)}this.$results.append(b)},c.prototype.position=function(a,b){var c=b.find(".select2-results");c.append(a)},c.prototype.sort=function(a){var b=this.options.get("sorter");return b(a)},c.prototype.highlightFirstItem=function(){var a=this.$results.find(".select2-results__option[aria-selected]"),b=a.filter("[aria-selected=true]");b.length>0?b.first().trigger("mouseenter"):a.first().trigger("mouseenter"),this.ensureHighlightVisible()},c.prototype.setClasses=function(){var b=this;this.data.current(function(c){var d=a.map(c,function(a){return a.id.toString()}),e=b.$results.find(".select2-results__option[aria-selected]");e.each(function(){var b=a(this),c=a.data(this,"data"),e=""+c.id;null!=c.element&&c.element.selected||null==c.element&&a.inArray(e,d)>-1?b.attr("aria-selected","true"):b.attr("aria-selected","false")})})},c.prototype.showLoading=function(a){this.hideLoading();var b=this.options.get("translations").get("searching"),c={disabled:!0,loading:!0,text:b(a)},d=this.option(c);d.className+=" loading-results",this.$results.prepend(d)},c.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},c.prototype.option=function(b){var c=document.createElement("li");c.className="select2-results__option";var d={role:"treeitem","aria-selected":"false"};b.disabled&&(delete d["aria-selected"],d["aria-disabled"]="true"),null==b.id&&delete d["aria-selected"],null!=b._resultId&&(c.id=b._resultId),b.title&&(c.title=b.title),b.children&&(d.role="group",d["aria-label"]=b.text,delete d["aria-selected"]);for(var e in d){var f=d[e];c.setAttribute(e,f)}if(b.children){var g=a(c),h=document.createElement("strong");h.className="select2-results__group";a(h);this.template(b,h);for(var i=[],j=0;j<b.children.length;j++){var k=b.children[j],l=this.option(k);i.push(l)}var m=a("<ul></ul>",{"class":"select2-results__options select2-results__options--nested"});m.append(i),g.append(h),g.append(m)}else this.template(b,c);return a.data(c,"data",b),c},c.prototype.bind=function(b,c){var d=this,e=b.id+"-results";this.$results.attr("id",e),b.on("results:all",function(a){d.clear(),d.append(a.data),b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("results:append",function(a){d.append(a.data),b.isOpen()&&d.setClasses()}),b.on("query",function(a){d.hideMessages(),d.showLoading(a)}),b.on("select",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("unselect",function(){b.isOpen()&&(d.setClasses(),d.highlightFirstItem())}),b.on("open",function(){d.$results.attr("aria-expanded","true"),d.$results.attr("aria-hidden","false"),d.setClasses(),d.ensureHighlightVisible()}),b.on("close",function(){d.$results.attr("aria-expanded","false"),d.$results.attr("aria-hidden","true"),d.$results.removeAttr("aria-activedescendant")}),b.on("results:toggle",function(){var a=d.getHighlightedResults();0!==a.length&&a.trigger("mouseup")}),b.on("results:select",function(){var a=d.getHighlightedResults();if(0!==a.length){var b=a.data("data");"true"==a.attr("aria-selected")?d.trigger("close",{}):d.trigger("select",{data:b})}}),b.on("results:previous",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a);if(0!==c){var e=c-1;0===a.length&&(e=0);var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top,h=f.offset().top,i=d.$results.scrollTop()+(h-g);0===e?d.$results.scrollTop(0):0>h-g&&d.$results.scrollTop(i)}}),b.on("results:next",function(){var a=d.getHighlightedResults(),b=d.$results.find("[aria-selected]"),c=b.index(a),e=c+1;if(!(e>=b.length)){var f=b.eq(e);f.trigger("mouseenter");var g=d.$results.offset().top+d.$results.outerHeight(!1),h=f.offset().top+f.outerHeight(!1),i=d.$results.scrollTop()+h-g;0===e?d.$results.scrollTop(0):h>g&&d.$results.scrollTop(i)}}),b.on("results:focus",function(a){a.element.addClass("select2-results__option--highlighted")}),b.on("results:message",function(a){d.displayMessage(a)}),a.fn.mousewheel&&this.$results.on("mousewheel",function(a){var b=d.$results.scrollTop(),c=d.$results.get(0).scrollHeight-b+a.deltaY,e=a.deltaY>0&&b-a.deltaY<=0,f=a.deltaY<0&&c<=d.$results.height();e?(d.$results.scrollTop(0),a.preventDefault(),a.stopPropagation()):f&&(d.$results.scrollTop(d.$results.get(0).scrollHeight-d.$results.height()),a.preventDefault(),a.stopPropagation())}),this.$results.on("mouseup",".select2-results__option[aria-selected]",function(b){var c=a(this),e=c.data("data");return"true"===c.attr("aria-selected")?void(d.options.get("multiple")?d.trigger("unselect",{originalEvent:b,data:e}):d.trigger("close",{})):void d.trigger("select",{originalEvent:b,data:e})}),this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(b){var c=a(this).data("data");d.getHighlightedResults().removeClass("select2-results__option--highlighted"),d.trigger("results:focus",{data:c,element:a(this)})})},c.prototype.getHighlightedResults=function(){var a=this.$results.find(".select2-results__option--highlighted");return a},c.prototype.destroy=function(){this.$results.remove()},c.prototype.ensureHighlightVisible=function(){var a=this.getHighlightedResults();if(0!==a.length){var b=this.$results.find("[aria-selected]"),c=b.index(a),d=this.$results.offset().top,e=a.offset().top,f=this.$results.scrollTop()+(e-d),g=e-d;f-=2*a.outerHeight(!1),2>=c?this.$results.scrollTop(0):(g>this.$results.outerHeight()||0>g)&&this.$results.scrollTop(f)}},c.prototype.template=function(b,c){var d=this.options.get("templateResult"),e=this.options.get("escapeMarkup"),f=d(b,c);null==f?c.style.display="none":"string"==typeof f?c.innerHTML=e(f):a(c).append(f)},c}),b.define("select2/keys",[],function(){var a={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46};return a}),b.define("select2/selection/base",["jquery","../utils","../keys"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,b.Observable),d.prototype.render=function(){var b=a('<span class="select2-selection" role="combobox" aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),b.attr("title",this.$element.attr("title")),b.attr("tabindex",this._tabindex),this.$selection=b,b},d.prototype.bind=function(a,b){var d=this,e=(a.id+"-container",a.id+"-results");this.container=a,this.$selection.on("focus",function(a){d.trigger("focus",a)}),this.$selection.on("blur",function(a){d._handleBlur(a)}),this.$selection.on("keydown",function(a){d.trigger("keypress",a),a.which===c.SPACE&&a.preventDefault()}),a.on("results:focus",function(a){d.$selection.attr("aria-activedescendant",a.data._resultId)}),a.on("selection:update",function(a){d.update(a.data)}),a.on("open",function(){d.$selection.attr("aria-expanded","true"),d.$selection.attr("aria-owns",e),d._attachCloseHandler(a)}),a.on("close",function(){d.$selection.attr("aria-expanded","false"),d.$selection.removeAttr("aria-activedescendant"),d.$selection.removeAttr("aria-owns"),d.$selection.focus(),d._detachCloseHandler(a)}),a.on("enable",function(){d.$selection.attr("tabindex",d._tabindex)}),a.on("disable",function(){d.$selection.attr("tabindex","-1")})},d.prototype._handleBlur=function(b){var c=this;window.setTimeout(function(){document.activeElement==c.$selection[0]||a.contains(c.$selection[0],document.activeElement)||c.trigger("blur",b)},1)},d.prototype._attachCloseHandler=function(b){a(document.body).on("mousedown.select2."+b.id,function(b){var c=a(b.target),d=c.closest(".select2"),e=a(".select2.select2-container--open");e.each(function(){var b=a(this);if(this!=d[0]){var c=b.data("element");c.select2("close")}})})},d.prototype._detachCloseHandler=function(b){a(document.body).off("mousedown.select2."+b.id)},d.prototype.position=function(a,b){var c=b.find(".selection");c.append(a)},d.prototype.destroy=function(){this._detachCloseHandler(this.container)},d.prototype.update=function(a){throw new Error("The `update` method must be defined in child classes.")},d}),b.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(a,b,c,d){function e(){e.__super__.constructor.apply(this,arguments)}return c.Extend(e,b),e.prototype.render=function(){var a=e.__super__.render.call(this);return a.addClass("select2-selection--single"),a.html('<span class="select2-selection__rendered"></span><span class="select2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),a},e.prototype.bind=function(a,b){var c=this;e.__super__.bind.apply(this,arguments);var d=a.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",d),this.$selection.attr("aria-labelledby",d),this.$selection.on("mousedown",function(a){1===a.which&&c.trigger("toggle",{originalEvent:a})}),this.$selection.on("focus",function(a){}),this.$selection.on("blur",function(a){}),a.on("focus",function(b){a.isOpen()||c.$selection.focus()}),a.on("selection:update",function(a){c.update(a.data)})},e.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},e.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},e.prototype.selectionContainer=function(){return a("<span></span>")},e.prototype.update=function(a){if(0===a.length)return void this.clear();var b=a[0],c=this.$selection.find(".select2-selection__rendered"),d=this.display(b,c);c.empty().append(d),c.prop("title",b.title||b.text)},e}),b.define("select2/selection/multiple",["jquery","./base","../utils"],function(a,b,c){function d(a,b){d.__super__.constructor.apply(this,arguments)}return c.Extend(d,b),d.prototype.render=function(){var a=d.__super__.render.call(this);return a.addClass("select2-selection--multiple"),a.html('<ul class="select2-selection__rendered"></ul>'),a},d.prototype.bind=function(b,c){var e=this;d.__super__.bind.apply(this,arguments),this.$selection.on("click",function(a){e.trigger("toggle",{originalEvent:a})}),this.$selection.on("click",".select2-selection__choice__remove",function(b){if(!e.options.get("disabled")){var c=a(this),d=c.parent(),f=d.data("data");e.trigger("unselect",{originalEvent:b,data:f})}})},d.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},d.prototype.display=function(a,b){var c=this.options.get("templateSelection"),d=this.options.get("escapeMarkup");return d(c(a,b))},d.prototype.selectionContainer=function(){var b=a('<li class="select2-selection__choice"><span class="select2-selection__choice__remove" role="presentation">×</span></li>');return b},d.prototype.update=function(a){if(this.clear(),0!==a.length){for(var b=[],d=0;d<a.length;d++){var e=a[d],f=this.selectionContainer(),g=this.display(e,f);f.append(g),f.prop("title",e.title||e.text),f.data("data",e),b.push(f)}var h=this.$selection.find(".select2-selection__rendered");c.appendMany(h,b)}},d}),b.define("select2/selection/placeholder",["../utils"],function(a){function b(a,b,c){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c)}return b.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},b.prototype.createPlaceholder=function(a,b){var c=this.selectionContainer();return c.html(this.display(b)),c.addClass("select2-selection__placeholder").removeClass("select2-selection__choice"),c},b.prototype.update=function(a,b){var c=1==b.length&&b[0].id!=this.placeholder.id,d=b.length>1;if(d||c)return a.call(this,b);this.clear();var e=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append(e)},b}),b.define("select2/selection/allowClear",["jquery","../keys"],function(a,b){function c(){}return c.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),null==this.placeholder&&this.options.get("debug")&&window.console&&console.error&&console.error("Select2: The `allowClear` option should be used in combination with the `placeholder` option."),this.$selection.on("mousedown",".select2-selection__clear",function(a){d._handleClear(a)}),b.on("keypress",function(a){d._handleKeyboardClear(a,b)})},c.prototype._handleClear=function(a,b){if(!this.options.get("disabled")){var c=this.$selection.find(".select2-selection__clear");if(0!==c.length){b.stopPropagation();for(var d=c.data("data"),e=0;e<d.length;e++){var f={data:d[e]};if(this.trigger("unselect",f),f.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},c.prototype._handleKeyboardClear=function(a,c,d){d.isOpen()||(c.which==b.DELETE||c.which==b.BACKSPACE)&&this._handleClear(c)},c.prototype.update=function(b,c){if(b.call(this,c),!(this.$selection.find(".select2-selection__placeholder").length>0||0===c.length)){var d=a('<span class="select2-selection__clear">×</span>');d.data("data",c),this.$selection.find(".select2-selection__rendered").prepend(d)}},c}),b.define("select2/selection/search",["jquery","../utils","../keys"],function(a,b,c){function d(a,b,c){a.call(this,b,c)}return d.prototype.render=function(b){var c=a('<li class="select2-search select2-search--inline"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=c,this.$search=c.find("input");var d=b.call(this);return this._transferTabIndex(),d},d.prototype.bind=function(a,b,d){var e=this;a.call(this,b,d),b.on("open",function(){e.$search.trigger("focus")}),b.on("close",function(){e.$search.val(""),e.$search.removeAttr("aria-activedescendant"),e.$search.trigger("focus")}),b.on("enable",function(){e.$search.prop("disabled",!1),e._transferTabIndex()}),b.on("disable",function(){e.$search.prop("disabled",!0)}),b.on("focus",function(a){e.$search.trigger("focus")}),b.on("results:focus",function(a){e.$search.attr("aria-activedescendant",a.id)}),this.$selection.on("focusin",".select2-search--inline",function(a){e.trigger("focus",a)}),this.$selection.on("focusout",".select2-search--inline",function(a){e._handleBlur(a)}),this.$selection.on("keydown",".select2-search--inline",function(a){a.stopPropagation(),e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented();var b=a.which;if(b===c.BACKSPACE&&""===e.$search.val()){var d=e.$searchContainer.prev(".select2-selection__choice");if(d.length>0){var f=d.data("data");e.searchRemoveChoice(f),a.preventDefault()}}});var f=document.documentMode,g=f&&11>=f;this.$selection.on("input.searchcheck",".select2-search--inline",function(a){return g?void e.$selection.off("input.search input.searchcheck"):void e.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(a){if(g&&"input"===a.type)return void e.$selection.off("input.search input.searchcheck");var b=a.which;b!=c.SHIFT&&b!=c.CTRL&&b!=c.ALT&&b!=c.TAB&&e.handleSearch(a)})},d.prototype._transferTabIndex=function(a){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},d.prototype.createPlaceholder=function(a,b){this.$search.attr("placeholder",b.text)},d.prototype.update=function(a,b){var c=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),a.call(this,b),this.$selection.find(".select2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),c&&this.$search.focus()},d.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var a=this.$search.val();this.trigger("query",{term:a})}this._keyUpPrevented=!1},d.prototype.searchRemoveChoice=function(a,b){this.trigger("unselect",{data:b}),this.$search.val(b.text),this.handleSearch()},d.prototype.resizeSearch=function(){this.$search.css("width","25px");var a="";if(""!==this.$search.attr("placeholder"))a=this.$selection.find(".select2-selection__rendered").innerWidth();else{var b=this.$search.val().length+1;a=.75*b+"em"}this.$search.css("width",a)},d}),b.define("select2/selection/eventRelay",["jquery"],function(a){function b(){}return b.prototype.bind=function(b,c,d){var e=this,f=["open","opening","close","closing","select","selecting","unselect","unselecting"],g=["opening","closing","selecting","unselecting"];b.call(this,c,d),c.on("*",function(b,c){if(-1!==a.inArray(b,f)){c=c||{};var d=a.Event("select2:"+b,{params:c});e.$element.trigger(d),-1!==a.inArray(b,g)&&(c.prevented=d.isDefaultPrevented())}})},b}),b.define("select2/translation",["jquery","require"],function(a,b){function c(a){this.dict=a||{}}return c.prototype.all=function(){return this.dict},c.prototype.get=function(a){return this.dict[a]},c.prototype.extend=function(b){this.dict=a.extend({},b.all(),this.dict)},c._cache={},c.loadPath=function(a){if(!(a in c._cache)){var d=b(a);c._cache[a]=d}return new c(c._cache[a])},c}),b.define("select2/diacritics",[],function(){var a={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};return a}),b.define("select2/data/base",["../utils"],function(a){function b(a,c){b.__super__.constructor.call(this)}return a.Extend(b,a.Observable),b.prototype.current=function(a){throw new Error("The `current` method must be defined in child classes.")},b.prototype.query=function(a,b){throw new Error("The `query` method must be defined in child classes.")},b.prototype.bind=function(a,b){},b.prototype.destroy=function(){},b.prototype.generateResultId=function(b,c){var d=b.id+"-result-";return d+=a.generateChars(4),d+=null!=c.id?"-"+c.id.toString():"-"+a.generateChars(4)},b}),b.define("select2/data/select",["./base","../utils","jquery"],function(a,b,c){function d(a,b){this.$element=a,this.options=b,d.__super__.constructor.call(this)}return b.Extend(d,a),d.prototype.current=function(a){var b=[],d=this;this.$element.find(":selected").each(function(){var a=c(this),e=d.item(a);b.push(e)}),a(b)},d.prototype.select=function(a){var b=this;if(a.selected=!0,c(a.element).is("option"))return a.element.selected=!0,void this.$element.trigger("change");
|
2 |
+
if(this.$element.prop("multiple"))this.current(function(d){var e=[];a=[a],a.push.apply(a,d);for(var f=0;f<a.length;f++){var g=a[f].id;-1===c.inArray(g,e)&&e.push(g)}b.$element.val(e),b.$element.trigger("change")});else{var d=a.id;this.$element.val(d),this.$element.trigger("change")}},d.prototype.unselect=function(a){var b=this;if(this.$element.prop("multiple"))return a.selected=!1,c(a.element).is("option")?(a.element.selected=!1,void this.$element.trigger("change")):void this.current(function(d){for(var e=[],f=0;f<d.length;f++){var g=d[f].id;g!==a.id&&-1===c.inArray(g,e)&&e.push(g)}b.$element.val(e),b.$element.trigger("change")})},d.prototype.bind=function(a,b){var c=this;this.container=a,a.on("select",function(a){c.select(a.data)}),a.on("unselect",function(a){c.unselect(a.data)})},d.prototype.destroy=function(){this.$element.find("*").each(function(){c.removeData(this,"data")})},d.prototype.query=function(a,b){var d=[],e=this,f=this.$element.children();f.each(function(){var b=c(this);if(b.is("option")||b.is("optgroup")){var f=e.item(b),g=e.matches(a,f);null!==g&&d.push(g)}}),b({results:d})},d.prototype.addOptions=function(a){b.appendMany(this.$element,a)},d.prototype.option=function(a){var b;a.children?(b=document.createElement("optgroup"),b.label=a.text):(b=document.createElement("option"),void 0!==b.textContent?b.textContent=a.text:b.innerText=a.text),a.id&&(b.value=a.id),a.disabled&&(b.disabled=!0),a.selected&&(b.selected=!0),a.title&&(b.title=a.title);var d=c(b),e=this._normalizeItem(a);return e.element=b,c.data(b,"data",e),d},d.prototype.item=function(a){var b={};if(b=c.data(a[0],"data"),null!=b)return b;if(a.is("option"))b={id:a.val(),text:a.text(),disabled:a.prop("disabled"),selected:a.prop("selected"),title:a.prop("title")};else if(a.is("optgroup")){b={text:a.prop("label"),children:[],title:a.prop("title")};for(var d=a.children("option"),e=[],f=0;f<d.length;f++){var g=c(d[f]),h=this.item(g);e.push(h)}b.children=e}return b=this._normalizeItem(b),b.element=a[0],c.data(a[0],"data",b),b},d.prototype._normalizeItem=function(a){c.isPlainObject(a)||(a={id:a,text:a}),a=c.extend({},{text:""},a);var b={selected:!1,disabled:!1};return null!=a.id&&(a.id=a.id.toString()),null!=a.text&&(a.text=a.text.toString()),null==a._resultId&&a.id&&null!=this.container&&(a._resultId=this.generateResultId(this.container,a)),c.extend({},b,a)},d.prototype.matches=function(a,b){var c=this.options.get("matcher");return c(a,b)},d}),b.define("select2/data/array",["./select","../utils","jquery"],function(a,b,c){function d(a,b){var c=b.get("data")||[];d.__super__.constructor.call(this,a,b),this.addOptions(this.convertToOptions(c))}return b.Extend(d,a),d.prototype.select=function(a){var b=this.$element.find("option").filter(function(b,c){return c.value==a.id.toString()});0===b.length&&(b=this.option(a),this.addOptions(b)),d.__super__.select.call(this,a)},d.prototype.convertToOptions=function(a){function d(a){return function(){return c(this).val()==a.id}}for(var e=this,f=this.$element.find("option"),g=f.map(function(){return e.item(c(this)).id}).get(),h=[],i=0;i<a.length;i++){var j=this._normalizeItem(a[i]);if(c.inArray(j.id,g)>=0){var k=f.filter(d(j)),l=this.item(k),m=c.extend(!0,{},j,l),n=this.option(m);k.replaceWith(n)}else{var o=this.option(j);if(j.children){var p=this.convertToOptions(j.children);b.appendMany(o,p)}h.push(o)}}return h},d}),b.define("select2/data/ajax",["./array","../utils","jquery"],function(a,b,c){function d(a,b){this.ajaxOptions=this._applyDefaults(b.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),d.__super__.constructor.call(this,a,b)}return b.Extend(d,a),d.prototype._applyDefaults=function(a){var b={data:function(a){return c.extend({},a,{q:a.term})},transport:function(a,b,d){var e=c.ajax(a);return e.then(b),e.fail(d),e}};return c.extend({},b,a,!0)},d.prototype.processResults=function(a){return a},d.prototype.query=function(a,b){function d(){var d=f.transport(f,function(d){var f=e.processResults(d,a);e.options.get("debug")&&window.console&&console.error&&(f&&f.results&&c.isArray(f.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),b(f)},function(){d.status&&"0"===d.status||e.trigger("results:message",{message:"errorLoading"})});e._request=d}var e=this;null!=this._request&&(c.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var f=c.extend({type:"GET"},this.ajaxOptions);"function"==typeof f.url&&(f.url=f.url.call(this.$element,a)),"function"==typeof f.data&&(f.data=f.data.call(this.$element,a)),this.ajaxOptions.delay&&null!=a.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(d,this.ajaxOptions.delay)):d()},d}),b.define("select2/data/tags",["jquery"],function(a){function b(b,c,d){var e=d.get("tags"),f=d.get("createTag");void 0!==f&&(this.createTag=f);var g=d.get("insertTag");if(void 0!==g&&(this.insertTag=g),b.call(this,c,d),a.isArray(e))for(var h=0;h<e.length;h++){var i=e[h],j=this._normalizeItem(i),k=this.option(j);this.$element.append(k)}}return b.prototype.query=function(a,b,c){function d(a,f){for(var g=a.results,h=0;h<g.length;h++){var i=g[h],j=null!=i.children&&!d({results:i.children},!0),k=i.text===b.term;if(k||j)return f?!1:(a.data=g,void c(a))}if(f)return!0;var l=e.createTag(b);if(null!=l){var m=e.option(l);m.attr("data-select2-tag",!0),e.addOptions([m]),e.insertTag(g,l)}a.results=g,c(a)}var e=this;return this._removeOldTags(),null==b.term||null!=b.page?void a.call(this,b,c):void a.call(this,b,d)},b.prototype.createTag=function(b,c){var d=a.trim(c.term);return""===d?null:{id:d,text:d}},b.prototype.insertTag=function(a,b,c){b.unshift(c)},b.prototype._removeOldTags=function(b){var c=(this._lastTag,this.$element.find("option[data-select2-tag]"));c.each(function(){this.selected||a(this).remove()})},b}),b.define("select2/data/tokenizer",["jquery"],function(a){function b(a,b,c){var d=c.get("tokenizer");void 0!==d&&(this.tokenizer=d),a.call(this,b,c)}return b.prototype.bind=function(a,b,c){a.call(this,b,c),this.$search=b.dropdown.$search||b.selection.$search||c.find(".select2-search__field")},b.prototype.query=function(b,c,d){function e(b){var c=g._normalizeItem(b),d=g.$element.find("option").filter(function(){return a(this).val()===c.id});if(!d.length){var e=g.option(c);e.attr("data-select2-tag",!0),g._removeOldTags(),g.addOptions([e])}f(c)}function f(a){g.trigger("select",{data:a})}var g=this;c.term=c.term||"";var h=this.tokenizer(c,this.options,e);h.term!==c.term&&(this.$search.length&&(this.$search.val(h.term),this.$search.focus()),c.term=h.term),b.call(this,c,d)},b.prototype.tokenizer=function(b,c,d,e){for(var f=d.get("tokenSeparators")||[],g=c.term,h=0,i=this.createTag||function(a){return{id:a.term,text:a.term}};h<g.length;){var j=g[h];if(-1!==a.inArray(j,f)){var k=g.substr(0,h),l=a.extend({},c,{term:k}),m=i(l);null!=m?(e(m),g=g.substr(h+1)||"",h=0):h++}else h++}return{term:g}},b}),b.define("select2/data/minimumInputLength",[],function(){function a(a,b,c){this.minimumInputLength=c.get("minimumInputLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){return b.term=b.term||"",b.term.length<this.minimumInputLength?void this.trigger("results:message",{message:"inputTooShort",args:{minimum:this.minimumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumInputLength",[],function(){function a(a,b,c){this.maximumInputLength=c.get("maximumInputLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){return b.term=b.term||"",this.maximumInputLength>0&&b.term.length>this.maximumInputLength?void this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:b.term,params:b}}):void a.call(this,b,c)},a}),b.define("select2/data/maximumSelectionLength",[],function(){function a(a,b,c){this.maximumSelectionLength=c.get("maximumSelectionLength"),a.call(this,b,c)}return a.prototype.query=function(a,b,c){var d=this;this.current(function(e){var f=null!=e?e.length:0;return d.maximumSelectionLength>0&&f>=d.maximumSelectionLength?void d.trigger("results:message",{message:"maximumSelected",args:{maximum:d.maximumSelectionLength}}):void a.call(d,b,c)})},a}),b.define("select2/dropdown",["jquery","./utils"],function(a,b){function c(a,b){this.$element=a,this.options=b,c.__super__.constructor.call(this)}return b.Extend(c,b.Observable),c.prototype.render=function(){var b=a('<span class="select2-dropdown"><span class="select2-results"></span></span>');return b.attr("dir",this.options.get("dir")),this.$dropdown=b,b},c.prototype.bind=function(){},c.prototype.position=function(a,b){},c.prototype.destroy=function(){this.$dropdown.remove()},c}),b.define("select2/dropdown/search",["jquery","../utils"],function(a,b){function c(){}return c.prototype.render=function(b){var c=b.call(this),d=a('<span class="select2-search select2-search--dropdown"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" /></span>');return this.$searchContainer=d,this.$search=d.find("input"),c.prepend(d),c},c.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),this.$search.on("keydown",function(a){e.trigger("keypress",a),e._keyUpPrevented=a.isDefaultPrevented()}),this.$search.on("input",function(b){a(this).off("keyup")}),this.$search.on("keyup input",function(a){e.handleSearch(a)}),c.on("open",function(){e.$search.attr("tabindex",0),e.$search.focus(),window.setTimeout(function(){e.$search.focus()},0)}),c.on("close",function(){e.$search.attr("tabindex",-1),e.$search.val("")}),c.on("focus",function(){c.isOpen()&&e.$search.focus()}),c.on("results:all",function(a){if(null==a.query.term||""===a.query.term){var b=e.showSearch(a);b?e.$searchContainer.removeClass("select2-search--hide"):e.$searchContainer.addClass("select2-search--hide")}})},c.prototype.handleSearch=function(a){if(!this._keyUpPrevented){var b=this.$search.val();this.trigger("query",{term:b})}this._keyUpPrevented=!1},c.prototype.showSearch=function(a,b){return!0},c}),b.define("select2/dropdown/hidePlaceholder",[],function(){function a(a,b,c,d){this.placeholder=this.normalizePlaceholder(c.get("placeholder")),a.call(this,b,c,d)}return a.prototype.append=function(a,b){b.results=this.removePlaceholder(b.results),a.call(this,b)},a.prototype.normalizePlaceholder=function(a,b){return"string"==typeof b&&(b={id:"",text:b}),b},a.prototype.removePlaceholder=function(a,b){for(var c=b.slice(0),d=b.length-1;d>=0;d--){var e=b[d];this.placeholder.id===e.id&&c.splice(d,1)}return c},a}),b.define("select2/dropdown/infiniteScroll",["jquery"],function(a){function b(a,b,c,d){this.lastParams={},a.call(this,b,c,d),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return b.prototype.append=function(a,b){this.$loadingMore.remove(),this.loading=!1,a.call(this,b),this.showLoadingMore(b)&&this.$results.append(this.$loadingMore)},b.prototype.bind=function(b,c,d){var e=this;b.call(this,c,d),c.on("query",function(a){e.lastParams=a,e.loading=!0}),c.on("query:append",function(a){e.lastParams=a,e.loading=!0}),this.$results.on("scroll",function(){var b=a.contains(document.documentElement,e.$loadingMore[0]);if(!e.loading&&b){var c=e.$results.offset().top+e.$results.outerHeight(!1),d=e.$loadingMore.offset().top+e.$loadingMore.outerHeight(!1);c+50>=d&&e.loadMore()}})},b.prototype.loadMore=function(){this.loading=!0;var b=a.extend({},{page:1},this.lastParams);b.page++,this.trigger("query:append",b)},b.prototype.showLoadingMore=function(a,b){return b.pagination&&b.pagination.more},b.prototype.createLoadingMore=function(){var b=a('<li class="select2-results__option select2-results__option--load-more"role="treeitem" aria-disabled="true"></li>'),c=this.options.get("translations").get("loadingMore");return b.html(c(this.lastParams)),b},b}),b.define("select2/dropdown/attachBody",["jquery","../utils"],function(a,b){function c(b,c,d){this.$dropdownParent=d.get("dropdownParent")||a(document.body),b.call(this,c,d)}return c.prototype.bind=function(a,b,c){var d=this,e=!1;a.call(this,b,c),b.on("open",function(){d._showDropdown(),d._attachPositioningHandler(b),e||(e=!0,b.on("results:all",function(){d._positionDropdown(),d._resizeDropdown()}),b.on("results:append",function(){d._positionDropdown(),d._resizeDropdown()}))}),b.on("close",function(){d._hideDropdown(),d._detachPositioningHandler(b)}),this.$dropdownContainer.on("mousedown",function(a){a.stopPropagation()})},c.prototype.destroy=function(a){a.call(this),this.$dropdownContainer.remove()},c.prototype.position=function(a,b,c){b.attr("class",c.attr("class")),b.removeClass("select2"),b.addClass("select2-container--open"),b.css({position:"absolute",top:-999999}),this.$container=c},c.prototype.render=function(b){var c=a("<span></span>"),d=b.call(this);return c.append(d),this.$dropdownContainer=c,c},c.prototype._hideDropdown=function(a){this.$dropdownContainer.detach()},c.prototype._attachPositioningHandler=function(c,d){var e=this,f="scroll.select2."+d.id,g="resize.select2."+d.id,h="orientationchange.select2."+d.id,i=this.$container.parents().filter(b.hasScroll);i.each(function(){a(this).data("select2-scroll-position",{x:a(this).scrollLeft(),y:a(this).scrollTop()})}),i.on(f,function(b){var c=a(this).data("select2-scroll-position");a(this).scrollTop(c.y)}),a(window).on(f+" "+g+" "+h,function(a){e._positionDropdown(),e._resizeDropdown()})},c.prototype._detachPositioningHandler=function(c,d){var e="scroll.select2."+d.id,f="resize.select2."+d.id,g="orientationchange.select2."+d.id,h=this.$container.parents().filter(b.hasScroll);h.off(e),a(window).off(e+" "+f+" "+g)},c.prototype._positionDropdown=function(){var b=a(window),c=this.$dropdown.hasClass("select2-dropdown--above"),d=this.$dropdown.hasClass("select2-dropdown--below"),e=null,f=this.$container.offset();f.bottom=f.top+this.$container.outerHeight(!1);var g={height:this.$container.outerHeight(!1)};g.top=f.top,g.bottom=f.top+g.height;var h={height:this.$dropdown.outerHeight(!1)},i={top:b.scrollTop(),bottom:b.scrollTop()+b.height()},j=i.top<f.top-h.height,k=i.bottom>f.bottom+h.height,l={left:f.left,top:g.bottom},m=this.$dropdownParent;"static"===m.css("position")&&(m=m.offsetParent());var n=m.offset();l.top-=n.top,l.left-=n.left,c||d||(e="below"),k||!j||c?!j&&k&&c&&(e="below"):e="above",("above"==e||c&&"below"!==e)&&(l.top=g.top-n.top-h.height),null!=e&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+e),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+e)),this.$dropdownContainer.css(l)},c.prototype._resizeDropdown=function(){var a={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(a.minWidth=a.width,a.position="relative",a.width="auto"),this.$dropdown.css(a)},c.prototype._showDropdown=function(a){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},c}),b.define("select2/dropdown/minimumResultsForSearch",[],function(){function a(b){for(var c=0,d=0;d<b.length;d++){var e=b[d];e.children?c+=a(e.children):c++}return c}function b(a,b,c,d){this.minimumResultsForSearch=c.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),a.call(this,b,c,d)}return b.prototype.showSearch=function(b,c){return a(c.data.results)<this.minimumResultsForSearch?!1:b.call(this,c)},b}),b.define("select2/dropdown/selectOnClose",[],function(){function a(){}return a.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),b.on("close",function(a){d._handleSelectOnClose(a)})},a.prototype._handleSelectOnClose=function(a,b){if(b&&null!=b.originalSelect2Event){var c=b.originalSelect2Event;if("select"===c._type||"unselect"===c._type)return}var d=this.getHighlightedResults();if(!(d.length<1)){var e=d.data("data");null!=e.element&&e.element.selected||null==e.element&&e.selected||this.trigger("select",{data:e})}},a}),b.define("select2/dropdown/closeOnSelect",[],function(){function a(){}return a.prototype.bind=function(a,b,c){var d=this;a.call(this,b,c),b.on("select",function(a){d._selectTriggered(a)}),b.on("unselect",function(a){d._selectTriggered(a)})},a.prototype._selectTriggered=function(a,b){var c=b.originalEvent;c&&c.ctrlKey||this.trigger("close",{originalEvent:c,originalSelect2Event:b})},a}),b.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(a){var b=a.input.length-a.maximum,c="Please delete "+b+" character";return 1!=b&&(c+="s"),c},inputTooShort:function(a){var b=a.minimum-a.input.length,c="Please enter "+b+" or more characters";return c},loadingMore:function(){return"Loading more results…"},maximumSelected:function(a){var b="You can only select "+a.maximum+" item";return 1!=a.maximum&&(b+="s"),b},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),b.define("select2/defaults",["jquery","require","./results","./selection/single","./selection/multiple","./selection/placeholder","./selection/allowClear","./selection/search","./selection/eventRelay","./utils","./translation","./diacritics","./data/select","./data/array","./data/ajax","./data/tags","./data/tokenizer","./data/minimumInputLength","./data/maximumInputLength","./data/maximumSelectionLength","./dropdown","./dropdown/search","./dropdown/hidePlaceholder","./dropdown/infiniteScroll","./dropdown/attachBody","./dropdown/minimumResultsForSearch","./dropdown/selectOnClose","./dropdown/closeOnSelect","./i18n/en"],function(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C){function D(){this.reset()}D.prototype.apply=function(l){if(l=a.extend(!0,{},this.defaults,l),null==l.dataAdapter){if(null!=l.ajax?l.dataAdapter=o:null!=l.data?l.dataAdapter=n:l.dataAdapter=m,l.minimumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,r)),l.maximumInputLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,s)),l.maximumSelectionLength>0&&(l.dataAdapter=j.Decorate(l.dataAdapter,t)),l.tags&&(l.dataAdapter=j.Decorate(l.dataAdapter,p)),(null!=l.tokenSeparators||null!=l.tokenizer)&&(l.dataAdapter=j.Decorate(l.dataAdapter,q)),null!=l.query){var C=b(l.amdBase+"compat/query");l.dataAdapter=j.Decorate(l.dataAdapter,C)}if(null!=l.initSelection){var D=b(l.amdBase+"compat/initSelection");l.dataAdapter=j.Decorate(l.dataAdapter,D)}}if(null==l.resultsAdapter&&(l.resultsAdapter=c,null!=l.ajax&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,x)),null!=l.placeholder&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,w)),l.selectOnClose&&(l.resultsAdapter=j.Decorate(l.resultsAdapter,A))),null==l.dropdownAdapter){if(l.multiple)l.dropdownAdapter=u;else{var E=j.Decorate(u,v);l.dropdownAdapter=E}if(0!==l.minimumResultsForSearch&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,z)),l.closeOnSelect&&(l.dropdownAdapter=j.Decorate(l.dropdownAdapter,B)),null!=l.dropdownCssClass||null!=l.dropdownCss||null!=l.adaptDropdownCssClass){var F=b(l.amdBase+"compat/dropdownCss");l.dropdownAdapter=j.Decorate(l.dropdownAdapter,F)}l.dropdownAdapter=j.Decorate(l.dropdownAdapter,y)}if(null==l.selectionAdapter){if(l.multiple?l.selectionAdapter=e:l.selectionAdapter=d,null!=l.placeholder&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,f)),l.allowClear&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,g)),l.multiple&&(l.selectionAdapter=j.Decorate(l.selectionAdapter,h)),null!=l.containerCssClass||null!=l.containerCss||null!=l.adaptContainerCssClass){var G=b(l.amdBase+"compat/containerCss");l.selectionAdapter=j.Decorate(l.selectionAdapter,G)}l.selectionAdapter=j.Decorate(l.selectionAdapter,i)}if("string"==typeof l.language)if(l.language.indexOf("-")>0){var H=l.language.split("-"),I=H[0];l.language=[l.language,I]}else l.language=[l.language];if(a.isArray(l.language)){var J=new k;l.language.push("en");for(var K=l.language,L=0;L<K.length;L++){var M=K[L],N={};try{N=k.loadPath(M)}catch(O){try{M=this.defaults.amdLanguageBase+M,N=k.loadPath(M)}catch(P){l.debug&&window.console&&console.warn&&console.warn('Select2: The language file for "'+M+'" could not be automatically loaded. A fallback will be used instead.');continue}}J.extend(N)}l.translations=J}else{var Q=k.loadPath(this.defaults.amdLanguageBase+"en"),R=new k(l.language);R.extend(Q),l.translations=R}return l},D.prototype.reset=function(){function b(a){function b(a){return l[a]||a}return a.replace(/[^\u0000-\u007E]/g,b)}function c(d,e){if(""===a.trim(d.term))return e;if(e.children&&e.children.length>0){for(var f=a.extend(!0,{},e),g=e.children.length-1;g>=0;g--){var h=e.children[g],i=c(d,h);null==i&&f.children.splice(g,1)}return f.children.length>0?f:c(d,f)}var j=b(e.text).toUpperCase(),k=b(d.term).toUpperCase();return j.indexOf(k)>-1?e:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:j.escapeMarkup,language:C,matcher:c,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(a){return a},templateResult:function(a){return a.text},templateSelection:function(a){return a.text},theme:"default",width:"resolve"}},D.prototype.set=function(b,c){var d=a.camelCase(b),e={};e[d]=c;var f=j._convertData(e);a.extend(this.defaults,f)};var E=new D;return E}),b.define("select2/options",["require","jquery","./defaults","./utils"],function(a,b,c,d){function e(b,e){if(this.options=b,null!=e&&this.fromElement(e),this.options=c.apply(this.options),e&&e.is("input")){var f=a(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=d.Decorate(this.options.dataAdapter,f)}}return e.prototype.fromElement=function(a){var c=["select2"];null==this.options.multiple&&(this.options.multiple=a.prop("multiple")),null==this.options.disabled&&(this.options.disabled=a.prop("disabled")),null==this.options.language&&(a.prop("lang")?this.options.language=a.prop("lang").toLowerCase():a.closest("[lang]").prop("lang")&&(this.options.language=a.closest("[lang]").prop("lang"))),null==this.options.dir&&(a.prop("dir")?this.options.dir=a.prop("dir"):a.closest("[dir]").prop("dir")?this.options.dir=a.closest("[dir]").prop("dir"):this.options.dir="ltr"),a.prop("disabled",this.options.disabled),a.prop("multiple",this.options.multiple),a.data("select2Tags")&&(this.options.debug&&window.console&&console.warn&&console.warn('Select2: The `data-select2-tags` attribute has been changed to use the `data-data` and `data-tags="true"` attributes and will be removed in future versions of Select2.'),a.data("data",a.data("select2Tags")),a.data("tags",!0)),a.data("ajaxUrl")&&(this.options.debug&&window.console&&console.warn&&console.warn("Select2: The `data-ajax-url` attribute has been changed to `data-ajax--url` and support for the old attribute will be removed in future versions of Select2."),a.attr("ajax--url",a.data("ajaxUrl")),a.data("ajax--url",a.data("ajaxUrl")));var e={};e=b.fn.jquery&&"1."==b.fn.jquery.substr(0,2)&&a[0].dataset?b.extend(!0,{},a[0].dataset,a.data()):a.data();var f=b.extend(!0,{},e);f=d._convertData(f);for(var g in f)b.inArray(g,c)>-1||(b.isPlainObject(this.options[g])?b.extend(this.options[g],f[g]):this.options[g]=f[g]);return this},e.prototype.get=function(a){return this.options[a]},e.prototype.set=function(a,b){this.options[a]=b},e}),b.define("select2/core",["jquery","./options","./utils","./keys"],function(a,b,c,d){var e=function(a,c){null!=a.data("select2")&&a.data("select2").destroy(),this.$element=a,this.id=this._generateId(a),c=c||{},this.options=new b(c,a),e.__super__.constructor.call(this);var d=a.attr("tabindex")||0;a.data("old-tabindex",d),a.attr("tabindex","-1");var f=this.options.get("dataAdapter");this.dataAdapter=new f(a,this.options);var g=this.render();this._placeContainer(g);var h=this.options.get("selectionAdapter");this.selection=new h(a,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,g);var i=this.options.get("dropdownAdapter");this.dropdown=new i(a,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,g);var j=this.options.get("resultsAdapter");this.results=new j(a,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var k=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(a){k.trigger("selection:update",{data:a})}),a.addClass("select2-hidden-accessible"),a.attr("aria-hidden","true"),this._syncAttributes(),a.data("select2",this)};return c.Extend(e,c.Observable),e.prototype._generateId=function(a){var b="";return b=null!=a.attr("id")?a.attr("id"):null!=a.attr("name")?a.attr("name")+"-"+c.generateChars(2):c.generateChars(4),b=b.replace(/(:|\.|\[|\]|,)/g,""),b="select2-"+b},e.prototype._placeContainer=function(a){a.insertAfter(this.$element);var b=this._resolveWidth(this.$element,this.options.get("width"));null!=b&&a.css("width",b)},e.prototype._resolveWidth=function(a,b){var c=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==b){var d=this._resolveWidth(a,"style");return null!=d?d:this._resolveWidth(a,"element")}if("element"==b){var e=a.outerWidth(!1);return 0>=e?"auto":e+"px"}if("style"==b){var f=a.attr("style");if("string"!=typeof f)return null;for(var g=f.split(";"),h=0,i=g.length;i>h;h+=1){var j=g[h].replace(/\s/g,""),k=j.match(c);if(null!==k&&k.length>=1)return k[1]}return null}return b},e.prototype._bindAdapters=function(){this.dataAdapter.bind(this,this.$container),this.selection.bind(this,this.$container),this.dropdown.bind(this,this.$container),this.results.bind(this,this.$container)},e.prototype._registerDomEvents=function(){var b=this;this.$element.on("change.select2",function(){b.dataAdapter.current(function(a){b.trigger("selection:update",{data:a})})}),this.$element.on("focus.select2",function(a){b.trigger("focus",a)}),this._syncA=c.bind(this._syncAttributes,this),this._syncS=c.bind(this._syncSubtree,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._syncA);var d=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=d?(this._observer=new d(function(c){a.each(c,b._syncA),a.each(c,b._syncS)}),this._observer.observe(this.$element[0],{attributes:!0,childList:!0,subtree:!1})):this.$element[0].addEventListener&&(this.$element[0].addEventListener("DOMAttrModified",b._syncA,!1),this.$element[0].addEventListener("DOMNodeInserted",b._syncS,!1),this.$element[0].addEventListener("DOMNodeRemoved",b._syncS,!1))},e.prototype._registerDataEvents=function(){var a=this;this.dataAdapter.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerSelectionEvents=function(){var b=this,c=["toggle","focus"];this.selection.on("toggle",function(){b.toggleDropdown()}),this.selection.on("focus",function(a){b.focus(a)}),this.selection.on("*",function(d,e){-1===a.inArray(d,c)&&b.trigger(d,e)})},e.prototype._registerDropdownEvents=function(){var a=this;this.dropdown.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerResultsEvents=function(){var a=this;this.results.on("*",function(b,c){a.trigger(b,c)})},e.prototype._registerEvents=function(){var a=this;this.on("open",function(){a.$container.addClass("select2-container--open")}),this.on("close",function(){a.$container.removeClass("select2-container--open")}),this.on("enable",function(){a.$container.removeClass("select2-container--disabled")}),this.on("disable",function(){a.$container.addClass("select2-container--disabled")}),this.on("blur",function(){a.$container.removeClass("select2-container--focus")}),this.on("query",function(b){a.isOpen()||a.trigger("open",{}),this.dataAdapter.query(b,function(c){a.trigger("results:all",{data:c,query:b})})}),this.on("query:append",function(b){this.dataAdapter.query(b,function(c){a.trigger("results:append",{data:c,query:b})})}),this.on("keypress",function(b){var c=b.which;a.isOpen()?c===d.ESC||c===d.TAB||c===d.UP&&b.altKey?(a.close(),b.preventDefault()):c===d.ENTER?(a.trigger("results:select",{}),b.preventDefault()):c===d.SPACE&&b.ctrlKey?(a.trigger("results:toggle",{}),b.preventDefault()):c===d.UP?(a.trigger("results:previous",{}),b.preventDefault()):c===d.DOWN&&(a.trigger("results:next",{}),b.preventDefault()):(c===d.ENTER||c===d.SPACE||c===d.DOWN&&b.altKey)&&(a.open(),b.preventDefault())})},e.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},e.prototype._syncSubtree=function(a,b){var c=!1,d=this;if(!a||!a.target||"OPTION"===a.target.nodeName||"OPTGROUP"===a.target.nodeName){if(b)if(b.addedNodes&&b.addedNodes.length>0)for(var e=0;e<b.addedNodes.length;e++){var f=b.addedNodes[e];f.selected&&(c=!0)}else b.removedNodes&&b.removedNodes.length>0&&(c=!0);else c=!0;c&&this.dataAdapter.current(function(a){d.trigger("selection:update",{data:a})})}},e.prototype.trigger=function(a,b){var c=e.__super__.trigger,d={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(void 0===b&&(b={}),a in d){var f=d[a],g={prevented:!1,name:a,args:b};if(c.call(this,f,g),g.prevented)return void(b.prevented=!0)}c.call(this,a,b)},e.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},e.prototype.open=function(){this.isOpen()||this.trigger("query",{})},e.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},e.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")},e.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")},e.prototype.focus=function(a){this.hasFocus()||(this.$container.addClass("select2-container--focus"),this.trigger("focus",{}))},e.prototype.enable=function(a){this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("enable")` method has been deprecated and will be removed in later Select2 versions. Use $element.prop("disabled") instead.'),(null==a||0===a.length)&&(a=[!0]);var b=!a[0];this.$element.prop("disabled",b)},e.prototype.data=function(){this.options.get("debug")&&arguments.length>0&&window.console&&console.warn&&console.warn('Select2: Data can no longer be set using `select2("data")`. You should consider setting the value instead using `$element.val()`.');var a=[];return this.dataAdapter.current(function(b){a=b}),a},e.prototype.val=function(b){if(this.options.get("debug")&&window.console&&console.warn&&console.warn('Select2: The `select2("val")` method has been deprecated and will be removed in later Select2 versions. Use $element.val() instead.'),null==b||0===b.length)return this.$element.val();var c=b[0];a.isArray(c)&&(c=a.map(c,function(a){return a.toString()})),this.$element.val(c).trigger("change")},e.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._syncA),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&(this.$element[0].removeEventListener("DOMAttrModified",this._syncA,!1),this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,!1),this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,!1)),this._syncA=null,this._syncS=null,this.$element.off(".select2"),this.$element.attr("tabindex",this.$element.data("old-tabindex")),this.$element.removeClass("select2-hidden-accessible"),this.$element.attr("aria-hidden","false"),this.$element.removeData("select2"),this.dataAdapter.destroy(),this.selection.destroy(),this.dropdown.destroy(),this.results.destroy(),this.dataAdapter=null,this.selection=null,this.dropdown=null,this.results=null;
|
3 |
+
},e.prototype.render=function(){var b=a('<span class="select2 select2-container"><span class="selection"></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>');return b.attr("dir",this.options.get("dir")),this.$container=b,this.$container.addClass("select2-container--"+this.options.get("theme")),b.data("element",this.$element),b},e}),b.define("jquery-mousewheel",["jquery"],function(a){return a}),b.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults"],function(a,b,c,d){if(null==a.fn.select2){var e=["open","close","destroy"];a.fn.select2=function(b){if(b=b||{},"object"==typeof b)return this.each(function(){var d=a.extend(!0,{},b);new c(a(this),d)}),this;if("string"==typeof b){var d,f=Array.prototype.slice.call(arguments,1);return this.each(function(){var c=a(this).data("select2");null==c&&window.console&&console.error&&console.error("The select2('"+b+"') method was called on an element that is not using Select2."),d=c[b].apply(c,f)}),a.inArray(b,e)>-1?this:d}throw new Error("Invalid arguments for Select2: "+b)}}return null==a.fn.select2.defaults&&(a.fn.select2.defaults=d),c}),{define:b.define,require:b.require}}(),c=b.require("jquery.select2");return a.fn.select2.amd=b,c});
|
assets/lib/wck-api/fields/select-2.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/* @param string $meta Meta name.
|
3 |
+
* @param array $details Contains the details for the field.
|
4 |
+
* @param string $value Contains input value;
|
5 |
+
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
+
* @return string $element input element html string. */
|
7 |
+
|
8 |
+
$id = esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) );
|
9 |
+
if( !empty( $frontend_prefix ) )
|
10 |
+
$id = $frontend_prefix.$id;
|
11 |
+
|
12 |
+
$element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="'.$id.'"';
|
13 |
+
$element .= '" class="mb-select-2 mb-field" >';
|
14 |
+
|
15 |
+
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
16 |
+
$element .= '<option value="">'. __('Select or type in an option', 'profile-builder') .'</option>';
|
17 |
+
|
18 |
+
$field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details );
|
19 |
+
|
20 |
+
// we're passing this further to a function. Need to make sure it exists so we don't get a notice.
|
21 |
+
if( empty( $details['value'] ) ){
|
22 |
+
$details['value'] = false;
|
23 |
+
}
|
24 |
+
|
25 |
+
$options = '';
|
26 |
+
if( !empty( $details['options'] ) ){
|
27 |
+
|
28 |
+
$new_nonexisting_value = true;
|
29 |
+
|
30 |
+
$i = 0;
|
31 |
+
foreach( $details['options'] as $option ){
|
32 |
+
$optionOutput = Wordpress_Creation_Kit_PB::wck_generate_select_option($option, $details['value'], $i, $value);
|
33 |
+
$options .= apply_filters("wck_select_{$meta}_{$field_name}_option_{$i}", $optionOutput, $i);
|
34 |
+
|
35 |
+
$i++;
|
36 |
+
|
37 |
+
if( !empty( $value ) && ( $option === $value || strpos( $option, '%'.$value, -(strlen($value) + 1) ) !== false ) )//it is not a custom value because it is present in the options
|
38 |
+
$new_nonexisting_value = false;
|
39 |
+
}
|
40 |
+
|
41 |
+
//display the custom value that was inserted with select 2 that was not present in options
|
42 |
+
if( $new_nonexisting_value )
|
43 |
+
$options .= '<option value="'. esc_attr( $value ) .'" '. selected( $value, $value, false ) .' >'. esc_html( $value ) .'</option>';
|
44 |
+
}
|
45 |
+
|
46 |
+
$element .= apply_filters( "wck_select_{$meta}_{$field_name}_options", $options );
|
47 |
+
$element .= '</select>';
|
48 |
+
$element .= '<script type="text/javascript">
|
49 |
+
if(typeof jQuery.fn.select2 === "undefined"){jQuery( function() {jQuery( ".mb-select-2").select2({ tags: true, placeholder: "Select or type in an option" });});}
|
50 |
+
else{jQuery( ".mb-select-2").select2({ tags: true, placeholder: "Select or type in an option" });}
|
51 |
+
</script>';
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
assets/lib/wck-api/wordpress-creation-kit.css
CHANGED
@@ -135,7 +135,7 @@ td.wck-number{
|
|
135 |
max-width:600px;
|
136 |
}
|
137 |
|
138 |
-
.mb-select{
|
139 |
min-width:250px;
|
140 |
}
|
141 |
|
135 |
max-width:600px;
|
136 |
}
|
137 |
|
138 |
+
.mb-select, .mb-select-2{
|
139 |
min-width:250px;
|
140 |
}
|
141 |
|
assets/lib/wck-api/wordpress-creation-kit.php
CHANGED
@@ -497,7 +497,7 @@ class Wordpress_Creation_Kit_PB{
|
|
497 |
$display_value = self::wck_get_entry_field_cpt_select( $value ) . '</pre>';
|
498 |
} elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
|
499 |
$display_value = implode( ', ', $value );
|
500 |
-
} elseif ( $details['type'] == 'select' ){
|
501 |
$display_value = '<pre>' . __(self::wck_get_entry_field_select( $value, $details ), 'profilebuilder') . '</pre>';
|
502 |
} else {
|
503 |
$display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
|
@@ -583,6 +583,8 @@ class Wordpress_Creation_Kit_PB{
|
|
583 |
}
|
584 |
}
|
585 |
}
|
|
|
|
|
586 |
}
|
587 |
|
588 |
/* function to generate output for upload field */
|
@@ -694,6 +696,10 @@ class Wordpress_Creation_Kit_PB{
|
|
694 |
// wp_register_script( 'wck-tinymce-init', plugins_url( '/assets/js/tiny_mce/wck_tiny_mce_init.js', __FILE__ ), array(), '1.0', true );
|
695 |
// wp_enqueue_script( 'wck-tinymce-init' );
|
696 |
|
|
|
|
|
|
|
|
|
697 |
//datepicker
|
698 |
wp_enqueue_script('jquery-ui-datepicker');
|
699 |
wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );
|
497 |
$display_value = self::wck_get_entry_field_cpt_select( $value ) . '</pre>';
|
498 |
} elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
|
499 |
$display_value = implode( ', ', $value );
|
500 |
+
} elseif ( $details['type'] == 'select' || $details['type'] === 'select-2' ){
|
501 |
$display_value = '<pre>' . __(self::wck_get_entry_field_select( $value, $details ), 'profilebuilder') . '</pre>';
|
502 |
} else {
|
503 |
$display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
|
583 |
}
|
584 |
}
|
585 |
}
|
586 |
+
//this was added for select-2 custom values that do not exist in the defined options
|
587 |
+
return $value;
|
588 |
}
|
589 |
|
590 |
/* function to generate output for upload field */
|
696 |
// wp_register_script( 'wck-tinymce-init', plugins_url( '/assets/js/tiny_mce/wck_tiny_mce_init.js', __FILE__ ), array(), '1.0', true );
|
697 |
// wp_enqueue_script( 'wck-tinymce-init' );
|
698 |
|
699 |
+
//select 2 KEEP the wppb-select2 handle so we don't include it multiple times, seeing we include it from PB as well
|
700 |
+
wp_enqueue_script( 'wppb-select2', plugins_url( '/assets/js/select2/select2.min.js', __FILE__ ), array(), PROFILE_BUILDER_VERSION, true );
|
701 |
+
wp_enqueue_style( 'wppb-select2-style', plugins_url( '/assets/js/select2/select2.min.css', __FILE__ ), false, PROFILE_BUILDER_VERSION );
|
702 |
+
|
703 |
//datepicker
|
704 |
wp_enqueue_script('jquery-ui-datepicker');
|
705 |
wp_enqueue_style( 'jquery-style', plugins_url( '/assets/datepicker/datepicker.css', __FILE__ ) );
|
features/functions.php
CHANGED
@@ -824,9 +824,28 @@ function wppb_phone_field_error( $field_title = '' ) {
|
|
824 |
|
825 |
/* Create a wrapper function for get_query_var */
|
826 |
function wppb_get_query_var( $varname ){
|
|
|
|
|
|
|
|
|
|
|
827 |
return apply_filters( 'wppb_get_query_var_'.$varname, get_query_var( $varname ) );
|
828 |
}
|
829 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
/* Filter the "Save Changes" button text, to make it translatable */
|
831 |
function wppb_change_save_changes_button($value){
|
832 |
$value = __('Save Changes','profile-builder');
|
824 |
|
825 |
/* Create a wrapper function for get_query_var */
|
826 |
function wppb_get_query_var( $varname ){
|
827 |
+
//if we want the userlisting on front page ( is_front_page() ) apparently the way we register query vars does not work so we will just use a simple GET var
|
828 |
+
if($varname === 'username' && !get_query_var( $varname ) && isset($_GET['wppb_username'])){
|
829 |
+
return apply_filters( 'wppb_get_query_var_'.$varname, $_GET['wppb_username'] );
|
830 |
+
}
|
831 |
+
|
832 |
return apply_filters( 'wppb_get_query_var_'.$varname, get_query_var( $varname ) );
|
833 |
}
|
834 |
|
835 |
+
/** @param string|array $key Query key or keys to remove.
|
836 |
+
*/
|
837 |
+
function wppb_remove_query_arg( $key, $url = false ){
|
838 |
+
$striped_url = remove_query_arg( $key, $url);
|
839 |
+
|
840 |
+
//treat page key on frontpage case where it is transformed into a pretty permalink
|
841 |
+
if( ( is_array($key) && in_array('page', $key) ) || ( !is_array($key) && 'page' === $key ) ){
|
842 |
+
$striped_url = preg_replace( '/\/page\/\d\//', '/', $striped_url );
|
843 |
+
$striped_url = preg_replace( '/\/page\//', '/', $striped_url );
|
844 |
+
}
|
845 |
+
|
846 |
+
return $striped_url;
|
847 |
+
}
|
848 |
+
|
849 |
/* Filter the "Save Changes" button text, to make it translatable */
|
850 |
function wppb_change_save_changes_button($value){
|
851 |
$value = __('Save Changes','profile-builder');
|
features/roles-editor/roles-editor.php
CHANGED
@@ -59,7 +59,7 @@ class WPPB_Roles_Editor {
|
|
59 |
|
60 |
if( $post_type == 'wppb-roles-editor' ) {
|
61 |
$wp_default_scripts = $this->wp_default_scripts();
|
62 |
-
$scripts_exceptions = array( 'wppb-sitewide', 'acf-field-group', 'acf-pro-field-group', 'acf-input', 'acf-pro-input' );
|
63 |
foreach( $wp_scripts->registered as $key => $value ) {
|
64 |
if( ! in_array( $key, $wp_default_scripts ) && ! in_array( $key, $scripts_exceptions ) ) {
|
65 |
wp_deregister_script( $key );
|
@@ -67,7 +67,7 @@ class WPPB_Roles_Editor {
|
|
67 |
}
|
68 |
|
69 |
$wp_default_styles = $this->wp_default_styles();
|
70 |
-
$styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global', 'wppb-back-end-style' );
|
71 |
foreach( $wp_styles->registered as $key => $value ) {
|
72 |
if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) {
|
73 |
wp_deregister_style( $key );
|
59 |
|
60 |
if( $post_type == 'wppb-roles-editor' ) {
|
61 |
$wp_default_scripts = $this->wp_default_scripts();
|
62 |
+
$scripts_exceptions = array( 'wppb-sitewide', 'acf-field-group', 'acf-pro-field-group', 'acf-input', 'acf-pro-input', 'query-monitor' );
|
63 |
foreach( $wp_scripts->registered as $key => $value ) {
|
64 |
if( ! in_array( $key, $wp_default_scripts ) && ! in_array( $key, $scripts_exceptions ) ) {
|
65 |
wp_deregister_script( $key );
|
67 |
}
|
68 |
|
69 |
$wp_default_styles = $this->wp_default_styles();
|
70 |
+
$styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global', 'wppb-back-end-style', 'query-monitor' );
|
71 |
foreach( $wp_styles->registered as $key => $value ) {
|
72 |
if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) {
|
73 |
wp_deregister_style( $key );
|
front-end/class-formbuilder.php
CHANGED
@@ -560,12 +560,13 @@ class Profile_Builder_Form_Creator{
|
|
560 |
unset($userdata['user_pass']);
|
561 |
}
|
562 |
|
563 |
-
if(
|
564 |
$user_data = get_userdata( $user_id );
|
565 |
$user_data->remove_all_caps();
|
566 |
|
567 |
foreach( $userdata['role'] as $role ) {
|
568 |
-
|
|
|
569 |
}
|
570 |
|
571 |
unset( $userdata['role'] );
|
560 |
unset($userdata['user_pass']);
|
561 |
}
|
562 |
|
563 |
+
if( isset( $userdata['role'] ) && is_array( $userdata['role'] ) ) {
|
564 |
$user_data = get_userdata( $user_id );
|
565 |
$user_data->remove_all_caps();
|
566 |
|
567 |
foreach( $userdata['role'] as $role ) {
|
568 |
+
if( $role !== 'administrator' || $role !== 'super-admin' )//make sure this doesn't happen for any reason
|
569 |
+
$user_data->add_role( $role );
|
570 |
}
|
571 |
|
572 |
unset( $userdata['role'] );
|
front-end/default-fields/user-role/user-role.php
CHANGED
@@ -6,7 +6,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
6 |
$roles_editor_active = false;
|
7 |
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
8 |
if( $wppb_generalSettings != 'not_found' ) {
|
9 |
-
if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' ) {
|
10 |
$roles_editor_active = true;
|
11 |
}
|
12 |
}
|
@@ -15,6 +15,11 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
15 |
$user_roles = '';
|
16 |
$user_can_manage_options = false;
|
17 |
|
|
|
|
|
|
|
|
|
|
|
18 |
// Get user data, set user's role and check to see if user can manage options
|
19 |
if( $user_id != 0 ) {
|
20 |
$user_data = get_userdata( $user_id );
|
@@ -55,7 +60,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
55 |
|
56 |
$extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
|
57 |
|
58 |
-
if( $form_location == 'register' || ( $form_location == 'edit_profile' && current_user_can('manage_options') && $user_can_manage_options == false ) ) {
|
59 |
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
60 |
|
61 |
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
@@ -88,7 +93,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
88 |
|
89 |
$output .= '</select>';
|
90 |
|
91 |
-
if( $form_location == 'edit_profile' )
|
92 |
$output .= '<span class="wppb-description-delimiter">'. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .'</span>';
|
93 |
|
94 |
if( !empty( $item_description ) )
|
@@ -102,7 +107,8 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
102 |
|
103 |
$output .= '</select>';
|
104 |
|
105 |
-
|
|
|
106 |
|
107 |
if( !empty( $item_description ) )
|
108 |
$output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
|
@@ -128,25 +134,30 @@ add_filter( 'wppb_output_form_field_select-user-role', 'wppb_user_role_handler',
|
|
128 |
/* handle field validation */
|
129 |
function wppb_check_user_role_value( $message, $field, $request_data, $form_location ) {
|
130 |
|
|
|
|
|
|
|
|
|
|
|
131 |
$field['meta-name'] = 'custom_field_user_role';
|
132 |
|
133 |
if( $form_location == 'back_end' )
|
134 |
return $message;
|
135 |
|
136 |
-
if( $form_location == 'edit_profile' && !current_user_can( 'manage_options' ) && ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ) )
|
137 |
return __( 'You cannot register this user role', 'profile-builder');
|
138 |
|
139 |
$roles_editor_active = false;
|
140 |
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
141 |
if( $wppb_generalSettings != 'not_found' ) {
|
142 |
-
if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' ) {
|
143 |
$roles_editor_active = true;
|
144 |
}
|
145 |
}
|
146 |
|
147 |
if( $field['field'] == 'Select (User Role)' ){
|
148 |
|
149 |
-
if( $form_location == 'register' && $field['required'] == 'Yes' && current_user_can( 'manage_options' ) === false ) {
|
150 |
if( ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( trim( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) == '' ) ) || !isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ){
|
151 |
return wppb_required_field_error($field["field-title"]);
|
152 |
}
|
@@ -183,7 +194,7 @@ function wppb_userdata_add_user_role( $userdata, $global_request, $form_args ){
|
|
183 |
$roles_editor_active = false;
|
184 |
$wppb_generalSettings = get_option('wppb_general_settings', 'not_found');
|
185 |
if ($wppb_generalSettings != 'not_found') {
|
186 |
-
if (!empty($wppb_generalSettings['rolesEditor']) &&
|
187 |
$roles_editor_active = true;
|
188 |
}
|
189 |
}
|
6 |
$roles_editor_active = false;
|
7 |
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
8 |
if( $wppb_generalSettings != 'not_found' ) {
|
9 |
+
if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' && current_user_can('manage_options') ) {
|
10 |
$roles_editor_active = true;
|
11 |
}
|
12 |
}
|
15 |
$user_roles = '';
|
16 |
$user_can_manage_options = false;
|
17 |
|
18 |
+
if( $form_location == 'edit_profile' && isset($field['user-roles-on-edit-profile']) && $field['user-roles-on-edit-profile'] === 'yes' )
|
19 |
+
$show_user_role_on_edit_profile = true;
|
20 |
+
else
|
21 |
+
$show_user_role_on_edit_profile = false;
|
22 |
+
|
23 |
// Get user data, set user's role and check to see if user can manage options
|
24 |
if( $user_id != 0 ) {
|
25 |
$user_data = get_userdata( $user_id );
|
60 |
|
61 |
$extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
|
62 |
|
63 |
+
if( $form_location == 'register' || ( $form_location == 'edit_profile' && current_user_can('manage_options') && $user_can_manage_options == false ) || ( $show_user_role_on_edit_profile && !current_user_can('manage_options') ) ) {
|
64 |
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
65 |
|
66 |
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
93 |
|
94 |
$output .= '</select>';
|
95 |
|
96 |
+
if( $form_location == 'edit_profile' && !$show_user_role_on_edit_profile )
|
97 |
$output .= '<span class="wppb-description-delimiter">'. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .'</span>';
|
98 |
|
99 |
if( !empty( $item_description ) )
|
107 |
|
108 |
$output .= '</select>';
|
109 |
|
110 |
+
if( !$show_user_role_on_edit_profile )
|
111 |
+
$output .= '<span class="wppb-description-delimiter">'. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .'</span>';
|
112 |
|
113 |
if( !empty( $item_description ) )
|
114 |
$output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
|
134 |
/* handle field validation */
|
135 |
function wppb_check_user_role_value( $message, $field, $request_data, $form_location ) {
|
136 |
|
137 |
+
if( $form_location == 'edit_profile' && isset($field['user-roles-on-edit-profile']) && $field['user-roles-on-edit-profile'] === 'yes' )
|
138 |
+
$show_user_role_on_edit_profile = true;
|
139 |
+
else
|
140 |
+
$show_user_role_on_edit_profile = false;
|
141 |
+
|
142 |
$field['meta-name'] = 'custom_field_user_role';
|
143 |
|
144 |
if( $form_location == 'back_end' )
|
145 |
return $message;
|
146 |
|
147 |
+
if( $form_location == 'edit_profile' && ( ( !current_user_can( 'manage_options' ) && ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ) ) && !$show_user_role_on_edit_profile ) )
|
148 |
return __( 'You cannot register this user role', 'profile-builder');
|
149 |
|
150 |
$roles_editor_active = false;
|
151 |
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
152 |
if( $wppb_generalSettings != 'not_found' ) {
|
153 |
+
if( ! empty( $wppb_generalSettings['rolesEditor'] ) && ( $wppb_generalSettings['rolesEditor'] == 'yes' ) && $form_location == 'edit_profile' && current_user_can('manage_options') ) {
|
154 |
$roles_editor_active = true;
|
155 |
}
|
156 |
}
|
157 |
|
158 |
if( $field['field'] == 'Select (User Role)' ){
|
159 |
|
160 |
+
if( ( $form_location == 'register' || $show_user_role_on_edit_profile ) && $field['required'] == 'Yes' && current_user_can( 'manage_options' ) === false ) {
|
161 |
if( ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( trim( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) == '' ) ) || !isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ){
|
162 |
return wppb_required_field_error($field["field-title"]);
|
163 |
}
|
194 |
$roles_editor_active = false;
|
195 |
$wppb_generalSettings = get_option('wppb_general_settings', 'not_found');
|
196 |
if ($wppb_generalSettings != 'not_found') {
|
197 |
+
if (!empty($wppb_generalSettings['rolesEditor']) && $wppb_generalSettings['rolesEditor'] === 'yes' && current_user_can('manage_options')) {
|
198 |
$roles_editor_active = true;
|
199 |
}
|
200 |
}
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.1.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
-
define('PROFILE_BUILDER_VERSION', '3.1.
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.1.4
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.1.4' );
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.3.2
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.1.3 =
|
173 |
* Fixed a potential php notice on recover password form
|
174 |
* Added filters over the submit button classes of the login and password reset form.
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.3.2
|
7 |
+
Stable tag: 3.1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.1.4 =
|
173 |
+
* We now have the capability to show Select User Role field on edit profile forms
|
174 |
+
* Small css modification
|
175 |
+
* Changed the logo icons inside the plugin
|
176 |
+
* Added an icon to the update screen for PB pro
|
177 |
+
* Fixed an issue with Query monitor plugin not working on Roles Editor page
|
178 |
+
|
179 |
= 3.1.3 =
|
180 |
* Fixed a potential php notice on recover password form
|
181 |
* Added filters over the submit button classes of the login and password reset form.
|
translation/profile-builder.catalog.php
CHANGED
@@ -615,6 +615,8 @@
|
|
615 |
<?php __("Select on which default WP forms to display reCAPTCHA", "profile-builder"); ?>
|
616 |
<?php __("User Roles", "profile-builder"); ?>
|
617 |
<?php __("Select which user roles to show to the user ( drag and drop to re-order )", "profile-builder"); ?>
|
|
|
|
|
618 |
<?php __("User Roles Order", "profile-builder"); ?>
|
619 |
<?php __("Save the user role order from the user roles checkboxes", "profile-builder"); ?>
|
620 |
<?php __("Default Value", "profile-builder"); ?>
|
@@ -1681,7 +1683,7 @@
|
|
1681 |
<?php __("Facet Type", "profile-builder"); ?>
|
1682 |
<?php __("Choose the facet menu type", "profile-builder"); ?>
|
1683 |
<?php __("Facet Meta", "profile-builder"); ?>
|
1684 |
-
<?php __("Choose the meta field for the facet menu", "profile-builder"); ?>
|
1685 |
<?php __("Behaviour", "profile-builder"); ?>
|
1686 |
<?php __("Narrow the results", "profile-builder"); ?>
|
1687 |
<?php __("Expand the results", "profile-builder"); ?>
|
@@ -1750,3 +1752,4 @@
|
|
1750 |
<?php __("Repeatable fields saved!", "profile-builder"); ?>
|
1751 |
<?php __("Please enter a unique field title.", "profile-builder"); ?>
|
1752 |
<?php __("Please enter a unique field title.\n", "profile-builder"); ?>
|
|
615 |
<?php __("Select on which default WP forms to display reCAPTCHA", "profile-builder"); ?>
|
616 |
<?php __("User Roles", "profile-builder"); ?>
|
617 |
<?php __("Select which user roles to show to the user ( drag and drop to re-order )", "profile-builder"); ?>
|
618 |
+
<?php __("Display on Edit Profile", "profile-builder"); ?>
|
619 |
+
<?php __("Check if you want the select user role field to appear on Edit Profile forms", "profile-builder"); ?>
|
620 |
<?php __("User Roles Order", "profile-builder"); ?>
|
621 |
<?php __("Save the user role order from the user roles checkboxes", "profile-builder"); ?>
|
622 |
<?php __("Default Value", "profile-builder"); ?>
|
1683 |
<?php __("Facet Type", "profile-builder"); ?>
|
1684 |
<?php __("Choose the facet menu type", "profile-builder"); ?>
|
1685 |
<?php __("Facet Meta", "profile-builder"); ?>
|
1686 |
+
<?php __("Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter.", "profile-builder"); ?>
|
1687 |
<?php __("Behaviour", "profile-builder"); ?>
|
1688 |
<?php __("Narrow the results", "profile-builder"); ?>
|
1689 |
<?php __("Expand the results", "profile-builder"); ?>
|
1752 |
<?php __("Repeatable fields saved!", "profile-builder"); ?>
|
1753 |
<?php __("Please enter a unique field title.", "profile-builder"); ?>
|
1754 |
<?php __("Please enter a unique field title.\n", "profile-builder"); ?>
|
1755 |
+
<?php __("Select or type in an option", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, admin/manage-fields.php:
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
@@ -233,7 +233,7 @@ msgstr ""
|
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../pb-add-on-buddypress/index.php:531, admin/manage-fields.php:
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
@@ -241,7 +241,7 @@ msgstr ""
|
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../pb-add-on-buddypress/index.php:538, admin/manage-fields.php:
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
@@ -453,11 +453,11 @@ msgstr ""
|
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:235, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:235, admin/manage-fields.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
@@ -683,7 +683,7 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -883,7 +883,7 @@ msgstr ""
|
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
@@ -943,11 +943,11 @@ msgstr ""
|
|
943 |
msgid "Country"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:
|
947 |
msgid "First Name"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:
|
951 |
msgid "Last Name"
|
952 |
msgstr ""
|
953 |
|
@@ -1055,7 +1055,7 @@ msgstr ""
|
|
1055 |
msgid "Field Name"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:
|
1059 |
msgid "Required"
|
1060 |
msgstr ""
|
1061 |
|
@@ -1195,7 +1195,7 @@ msgstr ""
|
|
1195 |
msgid "Click to edit"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1199 |
msgid "Cancel"
|
1200 |
msgstr ""
|
1201 |
|
@@ -1329,7 +1329,7 @@ msgstr ""
|
|
1329 |
msgid "Communication Preferences"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:
|
1333 |
msgid "E-mail"
|
1334 |
msgstr ""
|
1335 |
|
@@ -1745,7 +1745,7 @@ msgstr ""
|
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
@@ -2253,11 +2253,11 @@ msgstr ""
|
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: admin/general-settings.php:251, admin/manage-fields.php:
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:801, modules/user-listing/userlisting.php:
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
@@ -2486,1894 +2486,1902 @@ msgid "Select which user roles to show to the user ( drag and drop to re-order )
|
|
2486 |
msgstr ""
|
2487 |
|
2488 |
#: admin/manage-fields.php:196
|
2489 |
-
msgid "
|
2490 |
msgstr ""
|
2491 |
|
2492 |
#: admin/manage-fields.php:196
|
2493 |
-
msgid "
|
2494 |
msgstr ""
|
2495 |
|
2496 |
#: admin/manage-fields.php:197
|
2497 |
-
msgid "
|
2498 |
msgstr ""
|
2499 |
|
2500 |
#: admin/manage-fields.php:197
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2501 |
msgid "Default value of the field"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: admin/manage-fields.php:
|
2505 |
msgid "Default Option"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: admin/manage-fields.php:
|
2509 |
msgid "Specify the option which should be selected by default"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: admin/manage-fields.php:
|
2513 |
msgid "Default Option(s)"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: admin/manage-fields.php:
|
2517 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: admin/manage-fields.php:
|
2521 |
msgid "Default option of the field"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: admin/manage-fields.php:
|
2525 |
msgid "Show Currency Symbol"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: admin/manage-fields.php:
|
2529 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: admin/manage-fields.php:
|
2533 |
msgid "Show Post Type"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: admin/manage-fields.php:
|
2537 |
msgid "Posts from what post type will be displayed in the select."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: admin/manage-fields.php:
|
2541 |
msgid "Allowable Values"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: admin/manage-fields.php:
|
2545 |
msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: admin/manage-fields.php:
|
2549 |
msgid "Error Message"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: admin/manage-fields.php:
|
2553 |
msgid "Set a custom error message that will be displayed to the user."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: admin/manage-fields.php:
|
2557 |
msgid "Time Format"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: admin/manage-fields.php:
|
2561 |
msgid "Specify the time format."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: admin/manage-fields.php:
|
2565 |
msgid "Google Maps API Key"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: admin/manage-fields.php:
|
2569 |
msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: admin/manage-fields.php:
|
2573 |
msgid "Default Latitude"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: admin/manage-fields.php:
|
2577 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: admin/manage-fields.php:
|
2581 |
msgid "Default Longitude"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: admin/manage-fields.php:
|
2585 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: admin/manage-fields.php:
|
2589 |
msgid "Default Zoom Level"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: admin/manage-fields.php:
|
2593 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: admin/manage-fields.php:
|
2597 |
msgid "Map Height"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: admin/manage-fields.php:
|
2601 |
msgid "The height of the map."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: admin/manage-fields.php:
|
2605 |
msgid "Default Content"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: admin/manage-fields.php:
|
2609 |
msgid "Default value of the textarea"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: admin/manage-fields.php:
|
2613 |
msgid "HTML Content"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: admin/manage-fields.php:
|
2617 |
msgid "Add your HTML (or text) content"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: admin/manage-fields.php:
|
2621 |
msgid "Phone Format"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: admin/manage-fields.php:
|
2625 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: admin/manage-fields.php:
|
2629 |
msgid "Eg. (###) ###-####"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: admin/manage-fields.php:
|
2633 |
msgid "Empty field won't check for correct phone number."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: admin/manage-fields.php:
|
2637 |
msgid "Heading Tag"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: admin/manage-fields.php:
|
2641 |
msgid "Change heading field size on front-end forms"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: admin/manage-fields.php:
|
2645 |
msgid "Min Number Value"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: admin/manage-fields.php:
|
2649 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: admin/manage-fields.php:
|
2653 |
msgid "Leave it empty for no min value"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: admin/manage-fields.php:
|
2657 |
msgid "Max Number Value"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: admin/manage-fields.php:
|
2661 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: admin/manage-fields.php:
|
2665 |
msgid "Leave it empty for no max value"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: admin/manage-fields.php:
|
2669 |
msgid "Number Step Value"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: admin/manage-fields.php:
|
2673 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: admin/manage-fields.php:
|
2677 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: admin/manage-fields.php:
|
2681 |
msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: admin/manage-fields.php:
|
2685 |
msgid "Leave it empty for no restriction"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: admin/manage-fields.php:
|
2689 |
msgid "Whether the field is required or not"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: admin/manage-fields.php:
|
2693 |
msgid "Overwrite Existing"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: admin/manage-fields.php:
|
2697 |
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: admin/manage-fields.php:
|
2701 |
msgid "POIs Load Type"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: admin/manage-fields.php:
|
2705 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: admin/manage-fields.php:
|
2709 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: admin/manage-fields.php:
|
2713 |
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: admin/manage-fields.php:
|
2717 |
msgid "POI Bubble Info"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: admin/manage-fields.php:
|
2721 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: admin/manage-fields.php:
|
2725 |
msgid "Number of Users per Map Iteration"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: admin/manage-fields.php:
|
2729 |
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: admin/manage-fields.php:
|
2733 |
msgid "Form Field Properties"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: admin/manage-fields.php:
|
2737 |
msgid "Registration & Edit Profile Forms"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: admin/manage-fields.php:
|
2741 |
msgid "Usernames cannot be changed."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: admin/manage-fields.php:
|
2745 |
msgid "Nickname"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: admin/manage-fields.php:
|
2749 |
msgid "Display name publicly as"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: admin/manage-fields.php:
|
2753 |
msgid "Website"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: admin/manage-fields.php:
|
2757 |
msgid "AIM"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: admin/manage-fields.php:
|
2761 |
msgid "Yahoo IM"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: admin/manage-fields.php:
|
2765 |
msgid "Jabber / Google Talk"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: admin/manage-fields.php:
|
2769 |
msgid "Biographical Info"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: admin/manage-fields.php:
|
2773 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: admin/manage-fields.php:
|
2777 |
msgid "Password"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: admin/manage-fields.php:
|
2781 |
msgid "Type your password."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: admin/manage-fields.php:
|
2785 |
msgid "Repeat Password"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: admin/manage-fields.php:
|
2789 |
msgid "Type your password again. "
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: admin/manage-fields.php:
|
2793 |
msgid "Blog Details"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: admin/manage-fields.php:
|
2797 |
msgid "Select a Country"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: admin/manage-fields.php:
|
2801 |
msgid "Afghanistan"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: admin/manage-fields.php:
|
2805 |
msgid "Aland Islands"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: admin/manage-fields.php:
|
2809 |
msgid "Albania"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: admin/manage-fields.php:
|
2813 |
msgid "Algeria"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: admin/manage-fields.php:
|
2817 |
msgid "American Samoa"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: admin/manage-fields.php:
|
2821 |
msgid "Andorra"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: admin/manage-fields.php:
|
2825 |
msgid "Angola"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: admin/manage-fields.php:
|
2829 |
msgid "Anguilla"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: admin/manage-fields.php:
|
2833 |
msgid "Antarctica"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: admin/manage-fields.php:
|
2837 |
msgid "Antigua and Barbuda"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: admin/manage-fields.php:
|
2841 |
msgid "Argentina"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: admin/manage-fields.php:
|
2845 |
msgid "Armenia"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: admin/manage-fields.php:
|
2849 |
msgid "Aruba"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: admin/manage-fields.php:
|
2853 |
msgid "Australia"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: admin/manage-fields.php:
|
2857 |
msgid "Austria"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: admin/manage-fields.php:
|
2861 |
msgid "Azerbaijan"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: admin/manage-fields.php:
|
2865 |
msgid "Bahamas"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: admin/manage-fields.php:
|
2869 |
msgid "Bahrain"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: admin/manage-fields.php:
|
2873 |
msgid "Bangladesh"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: admin/manage-fields.php:
|
2877 |
msgid "Barbados"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: admin/manage-fields.php:
|
2881 |
msgid "Belarus"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: admin/manage-fields.php:
|
2885 |
msgid "Belgium"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: admin/manage-fields.php:
|
2889 |
msgid "Belize"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: admin/manage-fields.php:
|
2893 |
msgid "Benin"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: admin/manage-fields.php:
|
2897 |
msgid "Bermuda"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: admin/manage-fields.php:
|
2901 |
msgid "Bhutan"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: admin/manage-fields.php:
|
2905 |
msgid "Bolivia"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: admin/manage-fields.php:
|
2909 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
-
#: admin/manage-fields.php:
|
2913 |
msgid "Bosnia and Herzegovina"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: admin/manage-fields.php:
|
2917 |
msgid "Botswana"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: admin/manage-fields.php:
|
2921 |
msgid "Bouvet Island"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: admin/manage-fields.php:
|
2925 |
msgid "Brazil"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: admin/manage-fields.php:
|
2929 |
msgid "British Indian Ocean Territory"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: admin/manage-fields.php:
|
2933 |
msgid "British Virgin Islands"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: admin/manage-fields.php:
|
2937 |
msgid "Brunei"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: admin/manage-fields.php:
|
2941 |
msgid "Bulgaria"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: admin/manage-fields.php:
|
2945 |
msgid "Burkina Faso"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: admin/manage-fields.php:
|
2949 |
msgid "Burundi"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: admin/manage-fields.php:
|
2953 |
msgid "Cambodia"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: admin/manage-fields.php:
|
2957 |
msgid "Cameroon"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: admin/manage-fields.php:
|
2961 |
msgid "Canada"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: admin/manage-fields.php:
|
2965 |
msgid "Cape Verde"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: admin/manage-fields.php:
|
2969 |
msgid "Cayman Islands"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: admin/manage-fields.php:
|
2973 |
msgid "Central African Republic"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
#: admin/manage-fields.php:
|
2977 |
msgid "Chad"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: admin/manage-fields.php:
|
2981 |
msgid "Chile"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: admin/manage-fields.php:
|
2985 |
msgid "China"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: admin/manage-fields.php:
|
2989 |
msgid "Christmas Island"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: admin/manage-fields.php:
|
2993 |
msgid "Cocos Islands"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: admin/manage-fields.php:
|
2997 |
msgid "Colombia"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: admin/manage-fields.php:
|
3001 |
msgid "Comoros"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: admin/manage-fields.php:
|
3005 |
msgid "Cook Islands"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: admin/manage-fields.php:
|
3009 |
msgid "Costa Rica"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: admin/manage-fields.php:
|
3013 |
msgid "Croatia"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: admin/manage-fields.php:
|
3017 |
msgid "Cuba"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: admin/manage-fields.php:
|
3021 |
msgid "Curacao"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: admin/manage-fields.php:
|
3025 |
msgid "Cyprus"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: admin/manage-fields.php:
|
3029 |
msgid "Czech Republic"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: admin/manage-fields.php:
|
3033 |
msgid "Democratic Republic of the Congo"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: admin/manage-fields.php:
|
3037 |
msgid "Denmark"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: admin/manage-fields.php:
|
3041 |
msgid "Djibouti"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: admin/manage-fields.php:
|
3045 |
msgid "Dominica"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: admin/manage-fields.php:
|
3049 |
msgid "Dominican Republic"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: admin/manage-fields.php:
|
3053 |
msgid "East Timor"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: admin/manage-fields.php:
|
3057 |
msgid "Ecuador"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: admin/manage-fields.php:
|
3061 |
msgid "Egypt"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: admin/manage-fields.php:
|
3065 |
msgid "El Salvador"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#: admin/manage-fields.php:
|
3069 |
msgid "Equatorial Guinea"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: admin/manage-fields.php:
|
3073 |
msgid "Eritrea"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: admin/manage-fields.php:
|
3077 |
msgid "Estonia"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: admin/manage-fields.php:
|
3081 |
msgid "Ethiopia"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#: admin/manage-fields.php:
|
3085 |
msgid "Falkland Islands"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: admin/manage-fields.php:
|
3089 |
msgid "Faroe Islands"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: admin/manage-fields.php:
|
3093 |
msgid "Fiji"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: admin/manage-fields.php:
|
3097 |
msgid "Finland"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: admin/manage-fields.php:
|
3101 |
msgid "France"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: admin/manage-fields.php:
|
3105 |
msgid "French Guiana"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: admin/manage-fields.php:
|
3109 |
msgid "French Polynesia"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: admin/manage-fields.php:
|
3113 |
msgid "French Southern Territories"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: admin/manage-fields.php:
|
3117 |
msgid "Gabon"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: admin/manage-fields.php:
|
3121 |
msgid "Gambia"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: admin/manage-fields.php:
|
3125 |
msgid "Georgia"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: admin/manage-fields.php:
|
3129 |
msgid "Germany"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: admin/manage-fields.php:
|
3133 |
msgid "Ghana"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: admin/manage-fields.php:
|
3137 |
msgid "Gibraltar"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: admin/manage-fields.php:
|
3141 |
msgid "Greece"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: admin/manage-fields.php:
|
3145 |
msgid "Greenland"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: admin/manage-fields.php:
|
3149 |
msgid "Grenada"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: admin/manage-fields.php:
|
3153 |
msgid "Guadeloupe"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: admin/manage-fields.php:
|
3157 |
msgid "Guam"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: admin/manage-fields.php:
|
3161 |
msgid "Guatemala"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: admin/manage-fields.php:
|
3165 |
msgid "Guernsey"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: admin/manage-fields.php:
|
3169 |
msgid "Guinea"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: admin/manage-fields.php:
|
3173 |
msgid "Guinea-Bissau"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: admin/manage-fields.php:
|
3177 |
msgid "Guyana"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: admin/manage-fields.php:
|
3181 |
msgid "Haiti"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: admin/manage-fields.php:
|
3185 |
msgid "Heard Island and McDonald Islands"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: admin/manage-fields.php:
|
3189 |
msgid "Honduras"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: admin/manage-fields.php:
|
3193 |
msgid "Hong Kong"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: admin/manage-fields.php:
|
3197 |
msgid "Hungary"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: admin/manage-fields.php:
|
3201 |
msgid "Iceland"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: admin/manage-fields.php:
|
3205 |
msgid "India"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: admin/manage-fields.php:
|
3209 |
msgid "Indonesia"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
-
#: admin/manage-fields.php:
|
3213 |
msgid "Iran"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: admin/manage-fields.php:
|
3217 |
msgid "Iraq"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: admin/manage-fields.php:
|
3221 |
msgid "Ireland"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: admin/manage-fields.php:
|
3225 |
msgid "Isle of Man"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: admin/manage-fields.php:
|
3229 |
msgid "Israel"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: admin/manage-fields.php:
|
3233 |
msgid "Italy"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: admin/manage-fields.php:
|
3237 |
msgid "Ivory Coast"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
-
#: admin/manage-fields.php:
|
3241 |
msgid "Jamaica"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: admin/manage-fields.php:
|
3245 |
msgid "Japan"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: admin/manage-fields.php:
|
3249 |
msgid "Jersey"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: admin/manage-fields.php:
|
3253 |
msgid "Jordan"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: admin/manage-fields.php:
|
3257 |
msgid "Kazakhstan"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: admin/manage-fields.php:
|
3261 |
msgid "Kenya"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: admin/manage-fields.php:
|
3265 |
msgid "Kiribati"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: admin/manage-fields.php:
|
3269 |
msgid "Kosovo"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: admin/manage-fields.php:
|
3273 |
msgid "Kuwait"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: admin/manage-fields.php:
|
3277 |
msgid "Kyrgyzstan"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: admin/manage-fields.php:
|
3281 |
msgid "Laos"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: admin/manage-fields.php:
|
3285 |
msgid "Latvia"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: admin/manage-fields.php:
|
3289 |
msgid "Lebanon"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: admin/manage-fields.php:
|
3293 |
msgid "Lesotho"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: admin/manage-fields.php:
|
3297 |
msgid "Liberia"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: admin/manage-fields.php:
|
3301 |
msgid "Libya"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: admin/manage-fields.php:
|
3305 |
msgid "Liechtenstein"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: admin/manage-fields.php:
|
3309 |
msgid "Lithuania"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: admin/manage-fields.php:
|
3313 |
msgid "Luxembourg"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: admin/manage-fields.php:
|
3317 |
msgid "Macao"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: admin/manage-fields.php:
|
3321 |
msgid "Macedonia"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: admin/manage-fields.php:
|
3325 |
msgid "Madagascar"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: admin/manage-fields.php:
|
3329 |
msgid "Malawi"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: admin/manage-fields.php:
|
3333 |
msgid "Malaysia"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: admin/manage-fields.php:
|
3337 |
msgid "Maldives"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: admin/manage-fields.php:
|
3341 |
msgid "Mali"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: admin/manage-fields.php:
|
3345 |
msgid "Malta"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: admin/manage-fields.php:
|
3349 |
msgid "Marshall Islands"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: admin/manage-fields.php:
|
3353 |
msgid "Martinique"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: admin/manage-fields.php:
|
3357 |
msgid "Mauritania"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: admin/manage-fields.php:
|
3361 |
msgid "Mauritius"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: admin/manage-fields.php:
|
3365 |
msgid "Mayotte"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: admin/manage-fields.php:
|
3369 |
msgid "Mexico"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: admin/manage-fields.php:
|
3373 |
msgid "Micronesia"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: admin/manage-fields.php:
|
3377 |
msgid "Moldova"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: admin/manage-fields.php:
|
3381 |
msgid "Monaco"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
#: admin/manage-fields.php:
|
3385 |
msgid "Mongolia"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: admin/manage-fields.php:
|
3389 |
msgid "Montenegro"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: admin/manage-fields.php:
|
3393 |
msgid "Montserrat"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: admin/manage-fields.php:
|
3397 |
msgid "Morocco"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: admin/manage-fields.php:
|
3401 |
msgid "Mozambique"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: admin/manage-fields.php:
|
3405 |
msgid "Myanmar"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: admin/manage-fields.php:
|
3409 |
msgid "Namibia"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#: admin/manage-fields.php:
|
3413 |
msgid "Nauru"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: admin/manage-fields.php:
|
3417 |
msgid "Nepal"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: admin/manage-fields.php:
|
3421 |
msgid "Netherlands"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: admin/manage-fields.php:
|
3425 |
msgid "New Caledonia"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: admin/manage-fields.php:
|
3429 |
msgid "New Zealand"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: admin/manage-fields.php:
|
3433 |
msgid "Nicaragua"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: admin/manage-fields.php:
|
3437 |
msgid "Niger"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: admin/manage-fields.php:
|
3441 |
msgid "Nigeria"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: admin/manage-fields.php:
|
3445 |
msgid "Niue"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: admin/manage-fields.php:
|
3449 |
msgid "Norfolk Island"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: admin/manage-fields.php:
|
3453 |
msgid "North Korea"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: admin/manage-fields.php:
|
3457 |
msgid "Northern Mariana Islands"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: admin/manage-fields.php:
|
3461 |
msgid "Norway"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: admin/manage-fields.php:
|
3465 |
msgid "Oman"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: admin/manage-fields.php:
|
3469 |
msgid "Pakistan"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: admin/manage-fields.php:
|
3473 |
msgid "Palau"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: admin/manage-fields.php:
|
3477 |
msgid "Palestinian Territory"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: admin/manage-fields.php:
|
3481 |
msgid "Panama"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: admin/manage-fields.php:
|
3485 |
msgid "Papua New Guinea"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: admin/manage-fields.php:
|
3489 |
msgid "Paraguay"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: admin/manage-fields.php:
|
3493 |
msgid "Peru"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: admin/manage-fields.php:
|
3497 |
msgid "Philippines"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: admin/manage-fields.php:
|
3501 |
msgid "Pitcairn"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: admin/manage-fields.php:
|
3505 |
msgid "Poland"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: admin/manage-fields.php:
|
3509 |
msgid "Portugal"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: admin/manage-fields.php:
|
3513 |
msgid "Puerto Rico"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: admin/manage-fields.php:
|
3517 |
msgid "Qatar"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: admin/manage-fields.php:
|
3521 |
msgid "Republic of the Congo"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: admin/manage-fields.php:
|
3525 |
msgid "Reunion"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: admin/manage-fields.php:
|
3529 |
msgid "Romania"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: admin/manage-fields.php:
|
3533 |
msgid "Russia"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: admin/manage-fields.php:
|
3537 |
msgid "Rwanda"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: admin/manage-fields.php:
|
3541 |
msgid "Saint Barthelemy"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: admin/manage-fields.php:
|
3545 |
msgid "Saint Helena"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: admin/manage-fields.php:
|
3549 |
msgid "Saint Kitts and Nevis"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: admin/manage-fields.php:
|
3553 |
msgid "Saint Lucia"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: admin/manage-fields.php:
|
3557 |
msgid "Saint Martin"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: admin/manage-fields.php:
|
3561 |
msgid "Saint Pierre and Miquelon"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
-
#: admin/manage-fields.php:
|
3565 |
msgid "Saint Vincent and the Grenadines"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: admin/manage-fields.php:
|
3569 |
msgid "Samoa"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: admin/manage-fields.php:
|
3573 |
msgid "San Marino"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: admin/manage-fields.php:
|
3577 |
msgid "Sao Tome and Principe"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: admin/manage-fields.php:
|
3581 |
msgid "Saudi Arabia"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: admin/manage-fields.php:
|
3585 |
msgid "Senegal"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: admin/manage-fields.php:
|
3589 |
msgid "Serbia"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: admin/manage-fields.php:
|
3593 |
msgid "Seychelles"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: admin/manage-fields.php:
|
3597 |
msgid "Sierra Leone"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: admin/manage-fields.php:
|
3601 |
msgid "Singapore"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: admin/manage-fields.php:
|
3605 |
msgid "Sint Maarten"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: admin/manage-fields.php:
|
3609 |
msgid "Slovakia"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: admin/manage-fields.php:
|
3613 |
msgid "Slovenia"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: admin/manage-fields.php:
|
3617 |
msgid "Solomon Islands"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: admin/manage-fields.php:
|
3621 |
msgid "Somalia"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: admin/manage-fields.php:
|
3625 |
msgid "South Africa"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: admin/manage-fields.php:
|
3629 |
msgid "South Georgia and the South Sandwich Islands"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: admin/manage-fields.php:
|
3633 |
msgid "South Korea"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: admin/manage-fields.php:
|
3637 |
msgid "South Sudan"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: admin/manage-fields.php:
|
3641 |
msgid "Spain"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: admin/manage-fields.php:
|
3645 |
msgid "Sri Lanka"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: admin/manage-fields.php:
|
3649 |
msgid "Sudan"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: admin/manage-fields.php:
|
3653 |
msgid "Suriname"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: admin/manage-fields.php:
|
3657 |
msgid "Svalbard and Jan Mayen"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: admin/manage-fields.php:
|
3661 |
msgid "Swaziland"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: admin/manage-fields.php:
|
3665 |
msgid "Sweden"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: admin/manage-fields.php:
|
3669 |
msgid "Switzerland"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: admin/manage-fields.php:
|
3673 |
msgid "Syria"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: admin/manage-fields.php:
|
3677 |
msgid "Taiwan"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: admin/manage-fields.php:
|
3681 |
msgid "Tajikistan"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: admin/manage-fields.php:
|
3685 |
msgid "Tanzania"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: admin/manage-fields.php:
|
3689 |
msgid "Thailand"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
-
#: admin/manage-fields.php:
|
3693 |
msgid "Togo"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
#: admin/manage-fields.php:
|
3697 |
msgid "Tokelau"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: admin/manage-fields.php:
|
3701 |
msgid "Tonga"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
-
#: admin/manage-fields.php:
|
3705 |
msgid "Trinidad and Tobago"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#: admin/manage-fields.php:
|
3709 |
msgid "Tunisia"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: admin/manage-fields.php:
|
3713 |
msgid "Turkey"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: admin/manage-fields.php:
|
3717 |
msgid "Turkmenistan"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: admin/manage-fields.php:
|
3721 |
msgid "Turks and Caicos Islands"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
#: admin/manage-fields.php:
|
3725 |
msgid "Tuvalu"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: admin/manage-fields.php:
|
3729 |
msgid "U.S. Virgin Islands"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: admin/manage-fields.php:
|
3733 |
msgid "Uganda"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
-
#: admin/manage-fields.php:
|
3737 |
msgid "Ukraine"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: admin/manage-fields.php:
|
3741 |
msgid "United Arab Emirates"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: admin/manage-fields.php:
|
3745 |
msgid "United Kingdom"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: admin/manage-fields.php:
|
3749 |
msgid "United States"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: admin/manage-fields.php:
|
3753 |
msgid "United States Minor Outlying Islands"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
-
#: admin/manage-fields.php:
|
3757 |
msgid "Uruguay"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#: admin/manage-fields.php:
|
3761 |
msgid "Uzbekistan"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: admin/manage-fields.php:
|
3765 |
msgid "Vanuatu"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
-
#: admin/manage-fields.php:
|
3769 |
msgid "Vatican"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
-
#: admin/manage-fields.php:
|
3773 |
msgid "Venezuela"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: admin/manage-fields.php:
|
3777 |
msgid "Vietnam"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: admin/manage-fields.php:
|
3781 |
msgid "Wallis and Futuna"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: admin/manage-fields.php:
|
3785 |
msgid "Western Sahara"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: admin/manage-fields.php:
|
3789 |
msgid "Yemen"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: admin/manage-fields.php:
|
3793 |
msgid "Zambia"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: admin/manage-fields.php:
|
3797 |
msgid "Zimbabwe"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: admin/manage-fields.php:
|
3801 |
msgid "Albania Lek"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: admin/manage-fields.php:
|
3805 |
msgid "Afghanistan Afghani"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: admin/manage-fields.php:
|
3809 |
msgid "Argentina Peso"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: admin/manage-fields.php:
|
3813 |
msgid "Australia Dollar"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: admin/manage-fields.php:
|
3817 |
msgid "Azerbaijan New Manat"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: admin/manage-fields.php:
|
3821 |
msgid "Bahamas Dollar"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: admin/manage-fields.php:
|
3825 |
msgid "Barbados Dollar"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: admin/manage-fields.php:
|
3829 |
msgid "Bangladeshi taka"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: admin/manage-fields.php:
|
3833 |
msgid "Belarus Ruble"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: admin/manage-fields.php:
|
3837 |
msgid "Belize Dollar"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: admin/manage-fields.php:
|
3841 |
msgid "Bermuda Dollar"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: admin/manage-fields.php:
|
3845 |
msgid "Bolivia Boliviano"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: admin/manage-fields.php:
|
3849 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: admin/manage-fields.php:
|
3853 |
msgid "Botswana Pula"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: admin/manage-fields.php:
|
3857 |
msgid "Bulgaria Lev"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: admin/manage-fields.php:
|
3861 |
msgid "Brazil Real"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: admin/manage-fields.php:
|
3865 |
msgid "Brunei Darussalam Dollar"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: admin/manage-fields.php:
|
3869 |
msgid "Cambodia Riel"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: admin/manage-fields.php:
|
3873 |
msgid "Canada Dollar"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: admin/manage-fields.php:
|
3877 |
msgid "Cayman Islands Dollar"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: admin/manage-fields.php:
|
3881 |
msgid "Chile Peso"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: admin/manage-fields.php:
|
3885 |
msgid "China Yuan Renminbi"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: admin/manage-fields.php:
|
3889 |
msgid "Colombia Peso"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: admin/manage-fields.php:
|
3893 |
msgid "Costa Rica Colon"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: admin/manage-fields.php:
|
3897 |
msgid "Croatia Kuna"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: admin/manage-fields.php:
|
3901 |
msgid "Cuba Peso"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: admin/manage-fields.php:
|
3905 |
msgid "Czech Republic Koruna"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: admin/manage-fields.php:
|
3909 |
msgid "Denmark Krone"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
-
#: admin/manage-fields.php:
|
3913 |
msgid "Dominican Republic Peso"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#: admin/manage-fields.php:
|
3917 |
msgid "East Caribbean Dollar"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: admin/manage-fields.php:
|
3921 |
msgid "Egypt Pound"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: admin/manage-fields.php:
|
3925 |
msgid "El Salvador Colon"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: admin/manage-fields.php:
|
3929 |
msgid "Estonia Kroon"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: admin/manage-fields.php:
|
3933 |
msgid "Euro"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: admin/manage-fields.php:
|
3937 |
msgid "Falkland Islands (Malvinas) Pound"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: admin/manage-fields.php:
|
3941 |
msgid "Fiji Dollar"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: admin/manage-fields.php:
|
3945 |
msgid "Ghana Cedis"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: admin/manage-fields.php:
|
3949 |
msgid "Gibraltar Pound"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: admin/manage-fields.php:
|
3953 |
msgid "Guatemala Quetzal"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: admin/manage-fields.php:
|
3957 |
msgid "Guernsey Pound"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: admin/manage-fields.php:
|
3961 |
msgid "Guyana Dollar"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: admin/manage-fields.php:
|
3965 |
msgid "Honduras Lempira"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: admin/manage-fields.php:
|
3969 |
msgid "Hong Kong Dollar"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: admin/manage-fields.php:
|
3973 |
msgid "Hungary Forint"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: admin/manage-fields.php:
|
3977 |
msgid "Iceland Krona"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: admin/manage-fields.php:
|
3981 |
msgid "India Rupee"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: admin/manage-fields.php:
|
3985 |
msgid "Indonesia Rupiah"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: admin/manage-fields.php:
|
3989 |
msgid "Iran Rial"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: admin/manage-fields.php:
|
3993 |
msgid "Isle of Man Pound"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: admin/manage-fields.php:
|
3997 |
msgid "Israel Shekel"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: admin/manage-fields.php:
|
4001 |
msgid "Jamaica Dollar"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: admin/manage-fields.php:
|
4005 |
msgid "Japan Yen"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: admin/manage-fields.php:
|
4009 |
msgid "Jersey Pound"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
#: admin/manage-fields.php:
|
4013 |
msgid "Kazakhstan Tenge"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: admin/manage-fields.php:
|
4017 |
msgid "Korea (North) Won"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: admin/manage-fields.php:
|
4021 |
msgid "Korea (South) Won"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: admin/manage-fields.php:
|
4025 |
msgid "Kyrgyzstan Som"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: admin/manage-fields.php:
|
4029 |
msgid "Laos Kip"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: admin/manage-fields.php:
|
4033 |
msgid "Latvia Lat"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: admin/manage-fields.php:
|
4037 |
msgid "Lebanon Pound"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: admin/manage-fields.php:
|
4041 |
msgid "Liberia Dollar"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: admin/manage-fields.php:
|
4045 |
msgid "Lithuania Litas"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: admin/manage-fields.php:
|
4049 |
msgid "Macedonia Denar"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: admin/manage-fields.php:
|
4053 |
msgid "Malaysia Ringgit"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: admin/manage-fields.php:
|
4057 |
msgid "Mauritius Rupee"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: admin/manage-fields.php:
|
4061 |
msgid "Mexico Peso"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: admin/manage-fields.php:
|
4065 |
msgid "Mongolia Tughrik"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: admin/manage-fields.php:
|
4069 |
msgid "Mozambique Metical"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: admin/manage-fields.php:
|
4073 |
msgid "Namibia Dollar"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: admin/manage-fields.php:
|
4077 |
msgid "Nepal Rupee"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: admin/manage-fields.php:
|
4081 |
msgid "Netherlands Antilles Guilder"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: admin/manage-fields.php:
|
4085 |
msgid "New Zealand Dollar"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: admin/manage-fields.php:
|
4089 |
msgid "Nicaragua Cordoba"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: admin/manage-fields.php:
|
4093 |
msgid "Nigeria Naira"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: admin/manage-fields.php:
|
4097 |
msgid "Norway Krone"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: admin/manage-fields.php:
|
4101 |
msgid "Oman Rial"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: admin/manage-fields.php:
|
4105 |
msgid "Pakistan Rupee"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: admin/manage-fields.php:
|
4109 |
msgid "Panama Balboa"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: admin/manage-fields.php:
|
4113 |
msgid "Paraguay Guarani"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: admin/manage-fields.php:
|
4117 |
msgid "Peru Nuevo Sol"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: admin/manage-fields.php:
|
4121 |
msgid "Philippines Peso"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: admin/manage-fields.php:
|
4125 |
msgid "Poland Zloty"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: admin/manage-fields.php:
|
4129 |
msgid "Qatar Riyal"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: admin/manage-fields.php:
|
4133 |
msgid "Romania New Leu"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: admin/manage-fields.php:
|
4137 |
msgid "Russia Ruble"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: admin/manage-fields.php:
|
4141 |
msgid "Saint Helena Pound"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: admin/manage-fields.php:
|
4145 |
msgid "Saudi Arabia Riyal"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: admin/manage-fields.php:
|
4149 |
msgid "Serbia Dinar"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: admin/manage-fields.php:
|
4153 |
msgid "Seychelles Rupee"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: admin/manage-fields.php:
|
4157 |
msgid "Singapore Dollar"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: admin/manage-fields.php:
|
4161 |
msgid "Solomon Islands Dollar"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: admin/manage-fields.php:
|
4165 |
msgid "Somalia Shilling"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: admin/manage-fields.php:
|
4169 |
msgid "South Africa Rand"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: admin/manage-fields.php:
|
4173 |
msgid "Sri Lanka Rupee"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: admin/manage-fields.php:
|
4177 |
msgid "Sweden Krona"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: admin/manage-fields.php:
|
4181 |
msgid "Switzerland Franc"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: admin/manage-fields.php:
|
4185 |
msgid "Suriname Dollar"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: admin/manage-fields.php:
|
4189 |
msgid "Syria Pound"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: admin/manage-fields.php:
|
4193 |
msgid "Taiwan New Dollar"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: admin/manage-fields.php:
|
4197 |
msgid "Thailand Baht"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: admin/manage-fields.php:
|
4201 |
msgid "Trinidad and Tobago Dollar"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: admin/manage-fields.php:
|
4205 |
msgid "Turkey Lira"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: admin/manage-fields.php:
|
4209 |
msgid "Tuvalu Dollar"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: admin/manage-fields.php:
|
4213 |
msgid "Ukraine Hryvna"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: admin/manage-fields.php:
|
4217 |
msgid "United Kingdom Pound"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: admin/manage-fields.php:
|
4221 |
msgid "Uganda Shilling"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: admin/manage-fields.php:
|
4225 |
msgid "US Dollar"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: admin/manage-fields.php:
|
4229 |
msgid "Uruguay Peso"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
-
#: admin/manage-fields.php:
|
4233 |
msgid "Uzbekistan Som"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
#: admin/manage-fields.php:
|
4237 |
msgid "Venezuela Bolivar"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: admin/manage-fields.php:
|
4241 |
msgid "Viet Nam Dong"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: admin/manage-fields.php:
|
4245 |
msgid "Yemen Rial"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: admin/manage-fields.php:
|
4249 |
msgid "Zimbabwe Dollar"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: admin/manage-fields.php:
|
4253 |
msgid ""
|
4254 |
"You must select a field\n"
|
4255 |
""
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: admin/manage-fields.php:
|
4259 |
msgid ""
|
4260 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4261 |
""
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: admin/manage-fields.php:
|
4265 |
msgid ""
|
4266 |
"The entered avatar size is not between 20 and 200\n"
|
4267 |
""
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: admin/manage-fields.php:
|
4271 |
msgid ""
|
4272 |
"The entered avatar size is not numerical\n"
|
4273 |
""
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: admin/manage-fields.php:
|
4277 |
msgid ""
|
4278 |
"The entered row number is not numerical\n"
|
4279 |
""
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: admin/manage-fields.php:
|
4283 |
msgid ""
|
4284 |
"You must enter a value for the row number\n"
|
4285 |
""
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: admin/manage-fields.php:
|
4289 |
msgid ""
|
4290 |
"You must enter the site key\n"
|
4291 |
""
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: admin/manage-fields.php:
|
4295 |
msgid ""
|
4296 |
"You must enter the secret key\n"
|
4297 |
""
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: admin/manage-fields.php:
|
4301 |
msgid ""
|
4302 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4303 |
""
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: admin/manage-fields.php:
|
4307 |
msgid ""
|
4308 |
"You must enter a value for the date-format\n"
|
4309 |
""
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: admin/manage-fields.php:
|
4313 |
msgid ""
|
4314 |
"The meta-name cannot be empty\n"
|
4315 |
""
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: admin/manage-fields.php:
|
4319 |
msgid ""
|
4320 |
"That meta-name can't be used, please choose another\n"
|
4321 |
""
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: admin/manage-fields.php:
|
4325 |
msgid ""
|
4326 |
"That meta-name is already in use\n"
|
4327 |
""
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: admin/manage-fields.php:
|
4331 |
msgid ""
|
4332 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4333 |
""
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: admin/manage-fields.php:
|
4337 |
msgid ""
|
4338 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4339 |
""
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: admin/manage-fields.php:
|
4343 |
msgid ""
|
4344 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4345 |
""
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: admin/manage-fields.php:
|
4349 |
msgid ""
|
4350 |
"Please select at least one user role\n"
|
4351 |
""
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: admin/manage-fields.php:
|
4355 |
msgid ""
|
4356 |
"That field is already added in this form\n"
|
4357 |
""
|
4358 |
msgstr ""
|
4359 |
|
4360 |
-
#: admin/manage-fields.php:
|
4361 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
-
#: admin/manage-fields.php:
|
4365 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: admin/manage-fields.php:
|
4369 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: admin/manage-fields.php:
|
4373 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4374 |
msgstr ""
|
4375 |
|
4376 |
-
#: admin/manage-fields.php:
|
4377 |
msgid "Search Location"
|
4378 |
msgstr ""
|
4379 |
|
@@ -4489,7 +4497,7 @@ msgstr ""
|
|
4489 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4490 |
msgstr ""
|
4491 |
|
4492 |
-
#: admin/private-website.php:129, features/functions.php:
|
4493 |
msgid "Save Changes"
|
4494 |
msgstr ""
|
4495 |
|
@@ -4605,27 +4613,27 @@ msgstr ""
|
|
4605 |
msgid "Incorrect phone number"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: features/functions.php:
|
4609 |
msgid "Content"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: features/functions.php:
|
4613 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: features/functions.php:
|
4617 |
msgid "<br><br>You can visit your site at "
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: features/functions.php:
|
4621 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: features/functions.php:
|
4625 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: features/functions.php:
|
4629 |
msgid "You are not currently logged in."
|
4630 |
msgstr ""
|
4631 |
|
@@ -4693,19 +4701,19 @@ msgstr ""
|
|
4693 |
msgid "Send these credentials via email."
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: front-end/class-formbuilder.php:
|
4697 |
msgid "User to edit:"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: front-end/class-formbuilder.php:
|
4701 |
msgid "Select User"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: front-end/class-formbuilder.php:
|
4705 |
msgid "There are no other users to edit"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: front-end/class-formbuilder.php:
|
4709 |
msgid "Something went wrong. Please try again!"
|
4710 |
msgstr ""
|
4711 |
|
@@ -5393,15 +5401,15 @@ msgstr ""
|
|
5393 |
msgid "Approve"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:
|
5397 |
msgid "Firstname"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:
|
5401 |
msgid "Lastname"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:
|
5405 |
msgid "Role"
|
5406 |
msgstr ""
|
5407 |
|
@@ -5449,7 +5457,7 @@ msgstr ""
|
|
5449 |
msgid "Conditional Rules"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: features/conditional-fields/conditional-fields.php:
|
5453 |
msgid "This field has conditional logic enabled."
|
5454 |
msgstr ""
|
5455 |
|
@@ -6341,27 +6349,27 @@ msgstr ""
|
|
6341 |
msgid "No Edit-profile Forms found in trash"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6345 |
msgid "Shortcode"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6349 |
msgid "(no title)"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6353 |
msgid "The shortcode will be available after you publish this form."
|
6354 |
msgstr ""
|
6355 |
|
6356 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6357 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6361 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6362 |
msgstr ""
|
6363 |
|
6364 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6365 |
msgid "Form Shortcode"
|
6366 |
msgstr ""
|
6367 |
|
@@ -6517,11 +6525,11 @@ msgstr ""
|
|
6517 |
msgid "Display name as"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:
|
6521 |
msgid "Registration Date"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6525 |
msgid "Number of Posts"
|
6526 |
msgstr ""
|
6527 |
|
@@ -6557,7 +6565,7 @@ msgstr ""
|
|
6557 |
msgid "Search all Fields"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
-
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:
|
6561 |
msgid "Faceted Menus"
|
6562 |
msgstr ""
|
6563 |
|
@@ -6613,271 +6621,271 @@ msgstr ""
|
|
6613 |
msgid "First/Lastname"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
-
#: modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:
|
6617 |
msgid "Display Name"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
-
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:
|
6621 |
msgid "Aim"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:
|
6625 |
msgid "Yim"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
-
#: modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:
|
6629 |
msgid "Jabber"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
-
#: modules/user-listing/userlisting.php:
|
6633 |
msgid "Search Users by All Fields"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: modules/user-listing/userlisting.php:
|
6637 |
msgid "Click here to see more information about this user"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: modules/user-listing/userlisting.php:
|
6641 |
msgid "More..."
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: modules/user-listing/userlisting.php:
|
6645 |
msgid "Click here to see more information about this user."
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: modules/user-listing/userlisting.php:
|
6649 |
msgid "View Map"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: modules/user-listing/userlisting.php:
|
6653 |
msgid "Click here to go back"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: modules/user-listing/userlisting.php:
|
6657 |
msgid "Back"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: modules/user-listing/userlisting.php:
|
6661 |
msgid "«« First"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
-
#: modules/user-listing/userlisting.php:
|
6665 |
msgid "« Prev"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: modules/user-listing/userlisting.php:
|
6669 |
msgid "Next » "
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: modules/user-listing/userlisting.php:
|
6673 |
msgid "Last »»"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: modules/user-listing/userlisting.php:
|
6677 |
msgid "You don't have any pagination settings on this userlisting!"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
-
#: modules/user-listing/userlisting.php:
|
6681 |
msgid "Show All"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: modules/user-listing/userlisting.php:
|
6685 |
msgid "Choose..."
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: modules/user-listing/userlisting.php:
|
6689 |
msgid "No options available"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: modules/user-listing/userlisting.php:
|
6693 |
msgid "Remove All Filters"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: modules/user-listing/userlisting.php:
|
6697 |
msgid "Search"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: modules/user-listing/userlisting.php:
|
6701 |
msgid "Clear Results"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: modules/user-listing/userlisting.php:
|
6705 |
msgid "Extra shortcode parameters"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: modules/user-listing/userlisting.php:
|
6709 |
msgid "View all extra shortcode parameters"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: modules/user-listing/userlisting.php:
|
6713 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: modules/user-listing/userlisting.php:
|
6717 |
msgid "Example:"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: modules/user-listing/userlisting.php:
|
6721 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: modules/user-listing/userlisting.php:
|
6725 |
msgid "displays only the users that you specified the user_id for"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: modules/user-listing/userlisting.php:
|
6729 |
msgid "displays all users except the ones you specified the user_id for"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: modules/user-listing/userlisting.php:
|
6733 |
msgid "Random (very slow on large databases > 10K user)"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#: modules/user-listing/userlisting.php:
|
6737 |
msgid "Ascending"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: modules/user-listing/userlisting.php:
|
6741 |
msgid "Descending"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: modules/user-listing/userlisting.php:
|
6745 |
msgid "Roles to Display"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: modules/user-listing/userlisting.php:
|
6749 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: modules/user-listing/userlisting.php:
|
6753 |
msgid "Number of Users/Page"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: modules/user-listing/userlisting.php:
|
6757 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: modules/user-listing/userlisting.php:
|
6761 |
msgid "Default Sorting Criteria"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: modules/user-listing/userlisting.php:
|
6765 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: modules/user-listing/userlisting.php:
|
6769 |
msgid "Default Sorting Order"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: modules/user-listing/userlisting.php:
|
6773 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: modules/user-listing/userlisting.php:
|
6777 |
msgid "Avatar Size (All-userlisting)"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: modules/user-listing/userlisting.php:
|
6781 |
msgid "Set the avatar size on the all-userlisting only"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: modules/user-listing/userlisting.php:
|
6785 |
msgid "Avatar Size (Single-userlisting)"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: modules/user-listing/userlisting.php:
|
6789 |
msgid "Set the avatar size on the single-userlisting only"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#: modules/user-listing/userlisting.php:
|
6793 |
msgid "Visible only to logged in users?"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: modules/user-listing/userlisting.php:
|
6797 |
msgid "The userlisting will only be visible only to the logged in users"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: modules/user-listing/userlisting.php:
|
6801 |
msgid "Visible to following Roles"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: modules/user-listing/userlisting.php:
|
6805 |
msgid "The userlisting will only be visible to the following roles"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: modules/user-listing/userlisting.php:
|
6809 |
msgid "Userlisting Settings"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: modules/user-listing/userlisting.php:
|
6813 |
msgid "Label"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: modules/user-listing/userlisting.php:
|
6817 |
msgid "Choose the facet name that appears on the frontend"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
-
#: modules/user-listing/userlisting.php:
|
6821 |
msgid "Facet Type"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: modules/user-listing/userlisting.php:
|
6825 |
msgid "Choose the facet menu type"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: modules/user-listing/userlisting.php:
|
6829 |
msgid "Facet Meta"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: modules/user-listing/userlisting.php:
|
6833 |
-
msgid "Choose the meta field for the facet menu"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: modules/user-listing/userlisting.php:
|
6837 |
msgid "Behaviour"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#: modules/user-listing/userlisting.php:
|
6841 |
msgid "Narrow the results"
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#: modules/user-listing/userlisting.php:
|
6845 |
msgid "Expand the results"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: modules/user-listing/userlisting.php:
|
6849 |
msgid "Choose how multiple selections affect the results"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: modules/user-listing/userlisting.php:
|
6853 |
msgid "Visible choices"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: modules/user-listing/userlisting.php:
|
6857 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: modules/user-listing/userlisting.php:
|
6861 |
msgid "Search Fields"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#: modules/user-listing/userlisting.php:
|
6865 |
msgid "Choose the fields in which the Search Field will look in"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
-
#: modules/user-listing/userlisting.php:
|
6869 |
msgid "Search Settings"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
-
#: modules/user-listing/userlisting.php:
|
6873 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: modules/user-listing/userlisting.php:
|
6877 |
msgid "You can find it in the Profile Builder menu."
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: modules/user-listing/userlisting.php:
|
6881 |
msgid "No results found!"
|
6882 |
msgstr ""
|
6883 |
|
@@ -6957,15 +6965,15 @@ msgstr ""
|
|
6957 |
msgid "Click the BACK button on your browser, and try again."
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#: front-end/default-fields/user-role/user-role.php:
|
6961 |
msgid "Only administrators can see this field on edit profile forms."
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: front-end/default-fields/user-role/user-role.php:
|
6965 |
msgid "As an administrator you cannot change your role."
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#: front-end/default-fields/user-role/user-role.php:
|
6969 |
msgid "You cannot register this user role"
|
6970 |
msgstr ""
|
6971 |
|
@@ -7106,3 +7114,7 @@ msgid ""
|
|
7106 |
"Please enter a unique field title.\n"
|
7107 |
""
|
7108 |
msgstr ""
|
|
|
|
|
|
|
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, admin/manage-fields.php:317
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../pb-add-on-buddypress/index.php:531, admin/manage-fields.php:323
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../pb-add-on-buddypress/index.php:538, admin/manage-fields.php:334
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:235, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1308, features/functions.php:872, features/functions.php:879, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:235, admin/manage-fields.php:1308, features/functions.php:865, features/functions.php:879, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:179, features/roles-editor/roles-editor.php:884, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:904, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2391
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1159
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
943 |
msgid "Country"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:319, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:127
|
947 |
msgid "First Name"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:320, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:133
|
951 |
msgid "Last Name"
|
952 |
msgstr ""
|
953 |
|
1055 |
msgid "Field Name"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:241
|
1059 |
msgid "Required"
|
1060 |
msgstr ""
|
1061 |
|
1195 |
msgid "Click to edit"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:858, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1199 |
msgid "Cancel"
|
1200 |
msgstr ""
|
1201 |
|
1329 |
msgid "Communication Preferences"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:324, front-end/recover.php:116, ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:9, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, modules/user-listing/userlisting.php:117
|
1333 |
msgid "E-mail"
|
1334 |
msgstr ""
|
1335 |
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1667
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:795, modules/user-listing/userlisting.php:2345
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:801, modules/user-listing/userlisting.php:2346
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
2486 |
msgstr ""
|
2487 |
|
2488 |
#: admin/manage-fields.php:196
|
2489 |
+
msgid "Display on Edit Profile"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
#: admin/manage-fields.php:196
|
2493 |
+
msgid "Check if you want the select user role field to appear on Edit Profile forms"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
#: admin/manage-fields.php:197
|
2497 |
+
msgid "User Roles Order"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
#: admin/manage-fields.php:197
|
2501 |
+
msgid "Save the user role order from the user roles checkboxes"
|
2502 |
+
msgstr ""
|
2503 |
+
|
2504 |
+
#: admin/manage-fields.php:198
|
2505 |
+
msgid "Default Value"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: admin/manage-fields.php:198
|
2509 |
msgid "Default value of the field"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: admin/manage-fields.php:199, admin/manage-fields.php:201, admin/manage-fields.php:202, admin/manage-fields.php:203
|
2513 |
msgid "Default Option"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: admin/manage-fields.php:199
|
2517 |
msgid "Specify the option which should be selected by default"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: admin/manage-fields.php:200
|
2521 |
msgid "Default Option(s)"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: admin/manage-fields.php:200
|
2525 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: admin/manage-fields.php:201, admin/manage-fields.php:202, admin/manage-fields.php:203
|
2529 |
msgid "Default option of the field"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: admin/manage-fields.php:204
|
2533 |
msgid "Show Currency Symbol"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: admin/manage-fields.php:204
|
2537 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: admin/manage-fields.php:205
|
2541 |
msgid "Show Post Type"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: admin/manage-fields.php:205
|
2545 |
msgid "Posts from what post type will be displayed in the select."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: admin/manage-fields.php:206
|
2549 |
msgid "Allowable Values"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: admin/manage-fields.php:206
|
2553 |
msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: admin/manage-fields.php:207
|
2557 |
msgid "Error Message"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: admin/manage-fields.php:207
|
2561 |
msgid "Set a custom error message that will be displayed to the user."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: admin/manage-fields.php:208
|
2565 |
msgid "Time Format"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: admin/manage-fields.php:208
|
2569 |
msgid "Specify the time format."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: admin/manage-fields.php:209
|
2573 |
msgid "Google Maps API Key"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: admin/manage-fields.php:209
|
2577 |
msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: admin/manage-fields.php:214
|
2581 |
msgid "Default Latitude"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: admin/manage-fields.php:215
|
2585 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: admin/manage-fields.php:221
|
2589 |
msgid "Default Longitude"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: admin/manage-fields.php:222
|
2593 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: admin/manage-fields.php:228
|
2597 |
msgid "Default Zoom Level"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: admin/manage-fields.php:229
|
2601 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: admin/manage-fields.php:233
|
2605 |
msgid "Map Height"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: admin/manage-fields.php:233
|
2609 |
msgid "The height of the map."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: admin/manage-fields.php:234
|
2613 |
msgid "Default Content"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: admin/manage-fields.php:234
|
2617 |
msgid "Default value of the textarea"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: admin/manage-fields.php:235
|
2621 |
msgid "HTML Content"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: admin/manage-fields.php:235
|
2625 |
msgid "Add your HTML (or text) content"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: admin/manage-fields.php:236
|
2629 |
msgid "Phone Format"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: admin/manage-fields.php:236
|
2633 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: admin/manage-fields.php:236
|
2637 |
msgid "Eg. (###) ###-####"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: admin/manage-fields.php:236
|
2641 |
msgid "Empty field won't check for correct phone number."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: admin/manage-fields.php:237
|
2645 |
msgid "Heading Tag"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: admin/manage-fields.php:237
|
2649 |
msgid "Change heading field size on front-end forms"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: admin/manage-fields.php:238
|
2653 |
msgid "Min Number Value"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: admin/manage-fields.php:238
|
2657 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: admin/manage-fields.php:238
|
2661 |
msgid "Leave it empty for no min value"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: admin/manage-fields.php:239
|
2665 |
msgid "Max Number Value"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: admin/manage-fields.php:239
|
2669 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: admin/manage-fields.php:239
|
2673 |
msgid "Leave it empty for no max value"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: admin/manage-fields.php:240
|
2677 |
msgid "Number Step Value"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: admin/manage-fields.php:240
|
2681 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: admin/manage-fields.php:240
|
2685 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: admin/manage-fields.php:240
|
2689 |
msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: admin/manage-fields.php:240
|
2693 |
msgid "Leave it empty for no restriction"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: admin/manage-fields.php:241
|
2697 |
msgid "Whether the field is required or not"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: admin/manage-fields.php:242
|
2701 |
msgid "Overwrite Existing"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: admin/manage-fields.php:242
|
2705 |
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: admin/manage-fields.php:248
|
2709 |
msgid "POIs Load Type"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: admin/manage-fields.php:250
|
2713 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: admin/manage-fields.php:251
|
2717 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: admin/manage-fields.php:254
|
2721 |
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: admin/manage-fields.php:261
|
2725 |
msgid "POI Bubble Info"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: admin/manage-fields.php:264
|
2729 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: admin/manage-fields.php:275
|
2733 |
msgid "Number of Users per Map Iteration"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: admin/manage-fields.php:276
|
2737 |
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: admin/manage-fields.php:284
|
2741 |
msgid "Form Field Properties"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: admin/manage-fields.php:298
|
2745 |
msgid "Registration & Edit Profile Forms"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: admin/manage-fields.php:318
|
2749 |
msgid "Usernames cannot be changed."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2353
|
2753 |
msgid "Nickname"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: admin/manage-fields.php:322
|
2757 |
msgid "Display name publicly as"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2347
|
2761 |
msgid "Website"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: admin/manage-fields.php:329
|
2765 |
msgid "AIM"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: admin/manage-fields.php:330
|
2769 |
msgid "Yahoo IM"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: admin/manage-fields.php:331
|
2773 |
msgid "Jabber / Google Talk"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2348
|
2777 |
msgid "Biographical Info"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: admin/manage-fields.php:335
|
2781 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: admin/manage-fields.php:336, front-end/recover.php:70, modules/email-customizer/email-customizer.php:30
|
2785 |
msgid "Password"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: admin/manage-fields.php:336
|
2789 |
msgid "Type your password."
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: admin/manage-fields.php:337, front-end/recover.php:71
|
2793 |
msgid "Repeat Password"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: admin/manage-fields.php:337
|
2797 |
msgid "Type your password again. "
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: admin/manage-fields.php:339
|
2801 |
msgid "Blog Details"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: admin/manage-fields.php:398
|
2805 |
msgid "Select a Country"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: admin/manage-fields.php:399
|
2809 |
msgid "Afghanistan"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: admin/manage-fields.php:400
|
2813 |
msgid "Aland Islands"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: admin/manage-fields.php:401
|
2817 |
msgid "Albania"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: admin/manage-fields.php:402
|
2821 |
msgid "Algeria"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: admin/manage-fields.php:403
|
2825 |
msgid "American Samoa"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: admin/manage-fields.php:404
|
2829 |
msgid "Andorra"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: admin/manage-fields.php:405
|
2833 |
msgid "Angola"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: admin/manage-fields.php:406
|
2837 |
msgid "Anguilla"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: admin/manage-fields.php:407
|
2841 |
msgid "Antarctica"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: admin/manage-fields.php:408
|
2845 |
msgid "Antigua and Barbuda"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: admin/manage-fields.php:409
|
2849 |
msgid "Argentina"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: admin/manage-fields.php:410
|
2853 |
msgid "Armenia"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: admin/manage-fields.php:411
|
2857 |
msgid "Aruba"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: admin/manage-fields.php:412
|
2861 |
msgid "Australia"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: admin/manage-fields.php:413
|
2865 |
msgid "Austria"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: admin/manage-fields.php:414
|
2869 |
msgid "Azerbaijan"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: admin/manage-fields.php:415
|
2873 |
msgid "Bahamas"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: admin/manage-fields.php:416
|
2877 |
msgid "Bahrain"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: admin/manage-fields.php:417
|
2881 |
msgid "Bangladesh"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: admin/manage-fields.php:418
|
2885 |
msgid "Barbados"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: admin/manage-fields.php:419
|
2889 |
msgid "Belarus"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: admin/manage-fields.php:420
|
2893 |
msgid "Belgium"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: admin/manage-fields.php:421
|
2897 |
msgid "Belize"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: admin/manage-fields.php:422
|
2901 |
msgid "Benin"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: admin/manage-fields.php:423
|
2905 |
msgid "Bermuda"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: admin/manage-fields.php:424
|
2909 |
msgid "Bhutan"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: admin/manage-fields.php:425
|
2913 |
msgid "Bolivia"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: admin/manage-fields.php:426
|
2917 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: admin/manage-fields.php:427
|
2921 |
msgid "Bosnia and Herzegovina"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: admin/manage-fields.php:428
|
2925 |
msgid "Botswana"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: admin/manage-fields.php:429
|
2929 |
msgid "Bouvet Island"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: admin/manage-fields.php:430
|
2933 |
msgid "Brazil"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: admin/manage-fields.php:431
|
2937 |
msgid "British Indian Ocean Territory"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: admin/manage-fields.php:432
|
2941 |
msgid "British Virgin Islands"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: admin/manage-fields.php:433
|
2945 |
msgid "Brunei"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: admin/manage-fields.php:434
|
2949 |
msgid "Bulgaria"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: admin/manage-fields.php:435
|
2953 |
msgid "Burkina Faso"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: admin/manage-fields.php:436
|
2957 |
msgid "Burundi"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: admin/manage-fields.php:437
|
2961 |
msgid "Cambodia"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: admin/manage-fields.php:438
|
2965 |
msgid "Cameroon"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: admin/manage-fields.php:439
|
2969 |
msgid "Canada"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: admin/manage-fields.php:440
|
2973 |
msgid "Cape Verde"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: admin/manage-fields.php:441
|
2977 |
msgid "Cayman Islands"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: admin/manage-fields.php:442
|
2981 |
msgid "Central African Republic"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: admin/manage-fields.php:443
|
2985 |
msgid "Chad"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: admin/manage-fields.php:444
|
2989 |
msgid "Chile"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: admin/manage-fields.php:445
|
2993 |
msgid "China"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: admin/manage-fields.php:446
|
2997 |
msgid "Christmas Island"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: admin/manage-fields.php:447
|
3001 |
msgid "Cocos Islands"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: admin/manage-fields.php:448
|
3005 |
msgid "Colombia"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: admin/manage-fields.php:449
|
3009 |
msgid "Comoros"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: admin/manage-fields.php:450
|
3013 |
msgid "Cook Islands"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: admin/manage-fields.php:451
|
3017 |
msgid "Costa Rica"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: admin/manage-fields.php:452
|
3021 |
msgid "Croatia"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: admin/manage-fields.php:453
|
3025 |
msgid "Cuba"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: admin/manage-fields.php:454
|
3029 |
msgid "Curacao"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: admin/manage-fields.php:455
|
3033 |
msgid "Cyprus"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: admin/manage-fields.php:456
|
3037 |
msgid "Czech Republic"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: admin/manage-fields.php:457
|
3041 |
msgid "Democratic Republic of the Congo"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: admin/manage-fields.php:458
|
3045 |
msgid "Denmark"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: admin/manage-fields.php:459
|
3049 |
msgid "Djibouti"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: admin/manage-fields.php:460
|
3053 |
msgid "Dominica"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: admin/manage-fields.php:461
|
3057 |
msgid "Dominican Republic"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: admin/manage-fields.php:462
|
3061 |
msgid "East Timor"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: admin/manage-fields.php:463
|
3065 |
msgid "Ecuador"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: admin/manage-fields.php:464
|
3069 |
msgid "Egypt"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: admin/manage-fields.php:465
|
3073 |
msgid "El Salvador"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: admin/manage-fields.php:466
|
3077 |
msgid "Equatorial Guinea"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: admin/manage-fields.php:467
|
3081 |
msgid "Eritrea"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: admin/manage-fields.php:468
|
3085 |
msgid "Estonia"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: admin/manage-fields.php:469
|
3089 |
msgid "Ethiopia"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: admin/manage-fields.php:470
|
3093 |
msgid "Falkland Islands"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: admin/manage-fields.php:471
|
3097 |
msgid "Faroe Islands"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: admin/manage-fields.php:472
|
3101 |
msgid "Fiji"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: admin/manage-fields.php:473
|
3105 |
msgid "Finland"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: admin/manage-fields.php:474
|
3109 |
msgid "France"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: admin/manage-fields.php:475
|
3113 |
msgid "French Guiana"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: admin/manage-fields.php:476
|
3117 |
msgid "French Polynesia"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: admin/manage-fields.php:477
|
3121 |
msgid "French Southern Territories"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: admin/manage-fields.php:478
|
3125 |
msgid "Gabon"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: admin/manage-fields.php:479
|
3129 |
msgid "Gambia"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: admin/manage-fields.php:480
|
3133 |
msgid "Georgia"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: admin/manage-fields.php:481
|
3137 |
msgid "Germany"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: admin/manage-fields.php:482
|
3141 |
msgid "Ghana"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: admin/manage-fields.php:483
|
3145 |
msgid "Gibraltar"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: admin/manage-fields.php:484
|
3149 |
msgid "Greece"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: admin/manage-fields.php:485
|
3153 |
msgid "Greenland"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: admin/manage-fields.php:486
|
3157 |
msgid "Grenada"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: admin/manage-fields.php:487
|
3161 |
msgid "Guadeloupe"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: admin/manage-fields.php:488
|
3165 |
msgid "Guam"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: admin/manage-fields.php:489
|
3169 |
msgid "Guatemala"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: admin/manage-fields.php:490
|
3173 |
msgid "Guernsey"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: admin/manage-fields.php:491
|
3177 |
msgid "Guinea"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: admin/manage-fields.php:492
|
3181 |
msgid "Guinea-Bissau"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: admin/manage-fields.php:493
|
3185 |
msgid "Guyana"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: admin/manage-fields.php:494
|
3189 |
msgid "Haiti"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: admin/manage-fields.php:495
|
3193 |
msgid "Heard Island and McDonald Islands"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: admin/manage-fields.php:496
|
3197 |
msgid "Honduras"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: admin/manage-fields.php:497
|
3201 |
msgid "Hong Kong"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: admin/manage-fields.php:498
|
3205 |
msgid "Hungary"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: admin/manage-fields.php:499
|
3209 |
msgid "Iceland"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: admin/manage-fields.php:500
|
3213 |
msgid "India"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: admin/manage-fields.php:501
|
3217 |
msgid "Indonesia"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: admin/manage-fields.php:502
|
3221 |
msgid "Iran"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: admin/manage-fields.php:503
|
3225 |
msgid "Iraq"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: admin/manage-fields.php:504
|
3229 |
msgid "Ireland"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: admin/manage-fields.php:505
|
3233 |
msgid "Isle of Man"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: admin/manage-fields.php:506
|
3237 |
msgid "Israel"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: admin/manage-fields.php:507
|
3241 |
msgid "Italy"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: admin/manage-fields.php:508
|
3245 |
msgid "Ivory Coast"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: admin/manage-fields.php:509
|
3249 |
msgid "Jamaica"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: admin/manage-fields.php:510
|
3253 |
msgid "Japan"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: admin/manage-fields.php:511
|
3257 |
msgid "Jersey"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: admin/manage-fields.php:512
|
3261 |
msgid "Jordan"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: admin/manage-fields.php:513
|
3265 |
msgid "Kazakhstan"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: admin/manage-fields.php:514
|
3269 |
msgid "Kenya"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: admin/manage-fields.php:515
|
3273 |
msgid "Kiribati"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: admin/manage-fields.php:516
|
3277 |
msgid "Kosovo"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: admin/manage-fields.php:517
|
3281 |
msgid "Kuwait"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: admin/manage-fields.php:518
|
3285 |
msgid "Kyrgyzstan"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: admin/manage-fields.php:519
|
3289 |
msgid "Laos"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: admin/manage-fields.php:520
|
3293 |
msgid "Latvia"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: admin/manage-fields.php:521
|
3297 |
msgid "Lebanon"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: admin/manage-fields.php:522
|
3301 |
msgid "Lesotho"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: admin/manage-fields.php:523
|
3305 |
msgid "Liberia"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: admin/manage-fields.php:524
|
3309 |
msgid "Libya"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: admin/manage-fields.php:525
|
3313 |
msgid "Liechtenstein"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: admin/manage-fields.php:526
|
3317 |
msgid "Lithuania"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: admin/manage-fields.php:527
|
3321 |
msgid "Luxembourg"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: admin/manage-fields.php:528
|
3325 |
msgid "Macao"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: admin/manage-fields.php:529
|
3329 |
msgid "Macedonia"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: admin/manage-fields.php:530
|
3333 |
msgid "Madagascar"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: admin/manage-fields.php:531
|
3337 |
msgid "Malawi"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: admin/manage-fields.php:532
|
3341 |
msgid "Malaysia"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: admin/manage-fields.php:533
|
3345 |
msgid "Maldives"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: admin/manage-fields.php:534
|
3349 |
msgid "Mali"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: admin/manage-fields.php:535
|
3353 |
msgid "Malta"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: admin/manage-fields.php:536
|
3357 |
msgid "Marshall Islands"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: admin/manage-fields.php:537
|
3361 |
msgid "Martinique"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: admin/manage-fields.php:538
|
3365 |
msgid "Mauritania"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: admin/manage-fields.php:539
|
3369 |
msgid "Mauritius"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: admin/manage-fields.php:540
|
3373 |
msgid "Mayotte"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: admin/manage-fields.php:541
|
3377 |
msgid "Mexico"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: admin/manage-fields.php:542
|
3381 |
msgid "Micronesia"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: admin/manage-fields.php:543
|
3385 |
msgid "Moldova"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: admin/manage-fields.php:544
|
3389 |
msgid "Monaco"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: admin/manage-fields.php:545
|
3393 |
msgid "Mongolia"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: admin/manage-fields.php:546
|
3397 |
msgid "Montenegro"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: admin/manage-fields.php:547
|
3401 |
msgid "Montserrat"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: admin/manage-fields.php:548
|
3405 |
msgid "Morocco"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: admin/manage-fields.php:549
|
3409 |
msgid "Mozambique"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: admin/manage-fields.php:550
|
3413 |
msgid "Myanmar"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: admin/manage-fields.php:551
|
3417 |
msgid "Namibia"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: admin/manage-fields.php:552
|
3421 |
msgid "Nauru"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: admin/manage-fields.php:553
|
3425 |
msgid "Nepal"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: admin/manage-fields.php:554
|
3429 |
msgid "Netherlands"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: admin/manage-fields.php:555
|
3433 |
msgid "New Caledonia"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: admin/manage-fields.php:556
|
3437 |
msgid "New Zealand"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: admin/manage-fields.php:557
|
3441 |
msgid "Nicaragua"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: admin/manage-fields.php:558
|
3445 |
msgid "Niger"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: admin/manage-fields.php:559
|
3449 |
msgid "Nigeria"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: admin/manage-fields.php:560
|
3453 |
msgid "Niue"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: admin/manage-fields.php:561
|
3457 |
msgid "Norfolk Island"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: admin/manage-fields.php:562
|
3461 |
msgid "North Korea"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: admin/manage-fields.php:563
|
3465 |
msgid "Northern Mariana Islands"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: admin/manage-fields.php:564
|
3469 |
msgid "Norway"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: admin/manage-fields.php:565
|
3473 |
msgid "Oman"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: admin/manage-fields.php:566
|
3477 |
msgid "Pakistan"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: admin/manage-fields.php:567
|
3481 |
msgid "Palau"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: admin/manage-fields.php:568
|
3485 |
msgid "Palestinian Territory"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: admin/manage-fields.php:569
|
3489 |
msgid "Panama"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: admin/manage-fields.php:570
|
3493 |
msgid "Papua New Guinea"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: admin/manage-fields.php:571
|
3497 |
msgid "Paraguay"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: admin/manage-fields.php:572
|
3501 |
msgid "Peru"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: admin/manage-fields.php:573
|
3505 |
msgid "Philippines"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: admin/manage-fields.php:574
|
3509 |
msgid "Pitcairn"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: admin/manage-fields.php:575
|
3513 |
msgid "Poland"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: admin/manage-fields.php:576
|
3517 |
msgid "Portugal"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: admin/manage-fields.php:577
|
3521 |
msgid "Puerto Rico"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: admin/manage-fields.php:578
|
3525 |
msgid "Qatar"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: admin/manage-fields.php:579
|
3529 |
msgid "Republic of the Congo"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: admin/manage-fields.php:580
|
3533 |
msgid "Reunion"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: admin/manage-fields.php:581
|
3537 |
msgid "Romania"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: admin/manage-fields.php:582
|
3541 |
msgid "Russia"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: admin/manage-fields.php:583
|
3545 |
msgid "Rwanda"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: admin/manage-fields.php:584
|
3549 |
msgid "Saint Barthelemy"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: admin/manage-fields.php:585
|
3553 |
msgid "Saint Helena"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: admin/manage-fields.php:586
|
3557 |
msgid "Saint Kitts and Nevis"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: admin/manage-fields.php:587
|
3561 |
msgid "Saint Lucia"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: admin/manage-fields.php:588
|
3565 |
msgid "Saint Martin"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: admin/manage-fields.php:589
|
3569 |
msgid "Saint Pierre and Miquelon"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: admin/manage-fields.php:590
|
3573 |
msgid "Saint Vincent and the Grenadines"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: admin/manage-fields.php:591
|
3577 |
msgid "Samoa"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: admin/manage-fields.php:592
|
3581 |
msgid "San Marino"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: admin/manage-fields.php:593
|
3585 |
msgid "Sao Tome and Principe"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: admin/manage-fields.php:594
|
3589 |
msgid "Saudi Arabia"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: admin/manage-fields.php:595
|
3593 |
msgid "Senegal"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: admin/manage-fields.php:596
|
3597 |
msgid "Serbia"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: admin/manage-fields.php:597
|
3601 |
msgid "Seychelles"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: admin/manage-fields.php:598
|
3605 |
msgid "Sierra Leone"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: admin/manage-fields.php:599
|
3609 |
msgid "Singapore"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: admin/manage-fields.php:600
|
3613 |
msgid "Sint Maarten"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: admin/manage-fields.php:601
|
3617 |
msgid "Slovakia"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: admin/manage-fields.php:602
|
3621 |
msgid "Slovenia"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: admin/manage-fields.php:603
|
3625 |
msgid "Solomon Islands"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: admin/manage-fields.php:604
|
3629 |
msgid "Somalia"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: admin/manage-fields.php:605
|
3633 |
msgid "South Africa"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: admin/manage-fields.php:606
|
3637 |
msgid "South Georgia and the South Sandwich Islands"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: admin/manage-fields.php:607
|
3641 |
msgid "South Korea"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: admin/manage-fields.php:608
|
3645 |
msgid "South Sudan"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: admin/manage-fields.php:609
|
3649 |
msgid "Spain"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: admin/manage-fields.php:610
|
3653 |
msgid "Sri Lanka"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: admin/manage-fields.php:611
|
3657 |
msgid "Sudan"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: admin/manage-fields.php:612
|
3661 |
msgid "Suriname"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: admin/manage-fields.php:613
|
3665 |
msgid "Svalbard and Jan Mayen"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: admin/manage-fields.php:614
|
3669 |
msgid "Swaziland"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: admin/manage-fields.php:615
|
3673 |
msgid "Sweden"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: admin/manage-fields.php:616
|
3677 |
msgid "Switzerland"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: admin/manage-fields.php:617
|
3681 |
msgid "Syria"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: admin/manage-fields.php:618
|
3685 |
msgid "Taiwan"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: admin/manage-fields.php:619
|
3689 |
msgid "Tajikistan"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: admin/manage-fields.php:620
|
3693 |
msgid "Tanzania"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: admin/manage-fields.php:621
|
3697 |
msgid "Thailand"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: admin/manage-fields.php:622
|
3701 |
msgid "Togo"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: admin/manage-fields.php:623
|
3705 |
msgid "Tokelau"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: admin/manage-fields.php:624
|
3709 |
msgid "Tonga"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: admin/manage-fields.php:625
|
3713 |
msgid "Trinidad and Tobago"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: admin/manage-fields.php:626
|
3717 |
msgid "Tunisia"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: admin/manage-fields.php:627
|
3721 |
msgid "Turkey"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: admin/manage-fields.php:628
|
3725 |
msgid "Turkmenistan"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: admin/manage-fields.php:629
|
3729 |
msgid "Turks and Caicos Islands"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: admin/manage-fields.php:630
|
3733 |
msgid "Tuvalu"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: admin/manage-fields.php:631
|
3737 |
msgid "U.S. Virgin Islands"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: admin/manage-fields.php:632
|
3741 |
msgid "Uganda"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: admin/manage-fields.php:633
|
3745 |
msgid "Ukraine"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: admin/manage-fields.php:634
|
3749 |
msgid "United Arab Emirates"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: admin/manage-fields.php:635
|
3753 |
msgid "United Kingdom"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: admin/manage-fields.php:636
|
3757 |
msgid "United States"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: admin/manage-fields.php:637
|
3761 |
msgid "United States Minor Outlying Islands"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: admin/manage-fields.php:638
|
3765 |
msgid "Uruguay"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
+
#: admin/manage-fields.php:639
|
3769 |
msgid "Uzbekistan"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
#: admin/manage-fields.php:640
|
3773 |
msgid "Vanuatu"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
+
#: admin/manage-fields.php:641
|
3777 |
msgid "Vatican"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: admin/manage-fields.php:642
|
3781 |
msgid "Venezuela"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: admin/manage-fields.php:643
|
3785 |
msgid "Vietnam"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
+
#: admin/manage-fields.php:644
|
3789 |
msgid "Wallis and Futuna"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: admin/manage-fields.php:645
|
3793 |
msgid "Western Sahara"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: admin/manage-fields.php:646
|
3797 |
msgid "Yemen"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: admin/manage-fields.php:647
|
3801 |
msgid "Zambia"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: admin/manage-fields.php:648
|
3805 |
msgid "Zimbabwe"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: admin/manage-fields.php:681
|
3809 |
msgid "Albania Lek"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: admin/manage-fields.php:682
|
3813 |
msgid "Afghanistan Afghani"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: admin/manage-fields.php:683
|
3817 |
msgid "Argentina Peso"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: admin/manage-fields.php:685
|
3821 |
msgid "Australia Dollar"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: admin/manage-fields.php:686
|
3825 |
msgid "Azerbaijan New Manat"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: admin/manage-fields.php:687
|
3829 |
msgid "Bahamas Dollar"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: admin/manage-fields.php:688
|
3833 |
msgid "Barbados Dollar"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: admin/manage-fields.php:689
|
3837 |
msgid "Bangladeshi taka"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: admin/manage-fields.php:690
|
3841 |
msgid "Belarus Ruble"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: admin/manage-fields.php:691
|
3845 |
msgid "Belize Dollar"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: admin/manage-fields.php:692
|
3849 |
msgid "Bermuda Dollar"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: admin/manage-fields.php:693
|
3853 |
msgid "Bolivia Boliviano"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: admin/manage-fields.php:694
|
3857 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: admin/manage-fields.php:695
|
3861 |
msgid "Botswana Pula"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: admin/manage-fields.php:696
|
3865 |
msgid "Bulgaria Lev"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: admin/manage-fields.php:697
|
3869 |
msgid "Brazil Real"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: admin/manage-fields.php:698
|
3873 |
msgid "Brunei Darussalam Dollar"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: admin/manage-fields.php:699
|
3877 |
msgid "Cambodia Riel"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: admin/manage-fields.php:700
|
3881 |
msgid "Canada Dollar"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: admin/manage-fields.php:701
|
3885 |
msgid "Cayman Islands Dollar"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: admin/manage-fields.php:702
|
3889 |
msgid "Chile Peso"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: admin/manage-fields.php:703
|
3893 |
msgid "China Yuan Renminbi"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: admin/manage-fields.php:704
|
3897 |
msgid "Colombia Peso"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: admin/manage-fields.php:705
|
3901 |
msgid "Costa Rica Colon"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: admin/manage-fields.php:706
|
3905 |
msgid "Croatia Kuna"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: admin/manage-fields.php:707
|
3909 |
msgid "Cuba Peso"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: admin/manage-fields.php:708
|
3913 |
msgid "Czech Republic Koruna"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: admin/manage-fields.php:709
|
3917 |
msgid "Denmark Krone"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: admin/manage-fields.php:710
|
3921 |
msgid "Dominican Republic Peso"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: admin/manage-fields.php:711
|
3925 |
msgid "East Caribbean Dollar"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: admin/manage-fields.php:712
|
3929 |
msgid "Egypt Pound"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: admin/manage-fields.php:713
|
3933 |
msgid "El Salvador Colon"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: admin/manage-fields.php:714
|
3937 |
msgid "Estonia Kroon"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: admin/manage-fields.php:715
|
3941 |
msgid "Euro"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: admin/manage-fields.php:716
|
3945 |
msgid "Falkland Islands (Malvinas) Pound"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: admin/manage-fields.php:717
|
3949 |
msgid "Fiji Dollar"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: admin/manage-fields.php:718
|
3953 |
msgid "Ghana Cedis"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: admin/manage-fields.php:719
|
3957 |
msgid "Gibraltar Pound"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: admin/manage-fields.php:720
|
3961 |
msgid "Guatemala Quetzal"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: admin/manage-fields.php:721
|
3965 |
msgid "Guernsey Pound"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: admin/manage-fields.php:722
|
3969 |
msgid "Guyana Dollar"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: admin/manage-fields.php:723
|
3973 |
msgid "Honduras Lempira"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: admin/manage-fields.php:724
|
3977 |
msgid "Hong Kong Dollar"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: admin/manage-fields.php:725
|
3981 |
msgid "Hungary Forint"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: admin/manage-fields.php:726
|
3985 |
msgid "Iceland Krona"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: admin/manage-fields.php:727
|
3989 |
msgid "India Rupee"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: admin/manage-fields.php:728
|
3993 |
msgid "Indonesia Rupiah"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: admin/manage-fields.php:729
|
3997 |
msgid "Iran Rial"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: admin/manage-fields.php:730
|
4001 |
msgid "Isle of Man Pound"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: admin/manage-fields.php:731
|
4005 |
msgid "Israel Shekel"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: admin/manage-fields.php:732
|
4009 |
msgid "Jamaica Dollar"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: admin/manage-fields.php:733
|
4013 |
msgid "Japan Yen"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: admin/manage-fields.php:734
|
4017 |
msgid "Jersey Pound"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: admin/manage-fields.php:735
|
4021 |
msgid "Kazakhstan Tenge"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: admin/manage-fields.php:736
|
4025 |
msgid "Korea (North) Won"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: admin/manage-fields.php:737
|
4029 |
msgid "Korea (South) Won"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: admin/manage-fields.php:738
|
4033 |
msgid "Kyrgyzstan Som"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: admin/manage-fields.php:739
|
4037 |
msgid "Laos Kip"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: admin/manage-fields.php:740
|
4041 |
msgid "Latvia Lat"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: admin/manage-fields.php:741
|
4045 |
msgid "Lebanon Pound"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: admin/manage-fields.php:742
|
4049 |
msgid "Liberia Dollar"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: admin/manage-fields.php:743
|
4053 |
msgid "Lithuania Litas"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: admin/manage-fields.php:744
|
4057 |
msgid "Macedonia Denar"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: admin/manage-fields.php:745
|
4061 |
msgid "Malaysia Ringgit"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: admin/manage-fields.php:746
|
4065 |
msgid "Mauritius Rupee"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: admin/manage-fields.php:747
|
4069 |
msgid "Mexico Peso"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: admin/manage-fields.php:748
|
4073 |
msgid "Mongolia Tughrik"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: admin/manage-fields.php:749
|
4077 |
msgid "Mozambique Metical"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: admin/manage-fields.php:750
|
4081 |
msgid "Namibia Dollar"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: admin/manage-fields.php:751
|
4085 |
msgid "Nepal Rupee"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: admin/manage-fields.php:752
|
4089 |
msgid "Netherlands Antilles Guilder"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: admin/manage-fields.php:753
|
4093 |
msgid "New Zealand Dollar"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: admin/manage-fields.php:754
|
4097 |
msgid "Nicaragua Cordoba"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: admin/manage-fields.php:755
|
4101 |
msgid "Nigeria Naira"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: admin/manage-fields.php:756
|
4105 |
msgid "Norway Krone"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: admin/manage-fields.php:757
|
4109 |
msgid "Oman Rial"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: admin/manage-fields.php:758
|
4113 |
msgid "Pakistan Rupee"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: admin/manage-fields.php:759
|
4117 |
msgid "Panama Balboa"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: admin/manage-fields.php:760
|
4121 |
msgid "Paraguay Guarani"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: admin/manage-fields.php:761
|
4125 |
msgid "Peru Nuevo Sol"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: admin/manage-fields.php:762
|
4129 |
msgid "Philippines Peso"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: admin/manage-fields.php:763
|
4133 |
msgid "Poland Zloty"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
+
#: admin/manage-fields.php:764
|
4137 |
msgid "Qatar Riyal"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: admin/manage-fields.php:765
|
4141 |
msgid "Romania New Leu"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: admin/manage-fields.php:766
|
4145 |
msgid "Russia Ruble"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: admin/manage-fields.php:767
|
4149 |
msgid "Saint Helena Pound"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: admin/manage-fields.php:768
|
4153 |
msgid "Saudi Arabia Riyal"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: admin/manage-fields.php:769
|
4157 |
msgid "Serbia Dinar"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: admin/manage-fields.php:770
|
4161 |
msgid "Seychelles Rupee"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: admin/manage-fields.php:771
|
4165 |
msgid "Singapore Dollar"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: admin/manage-fields.php:772
|
4169 |
msgid "Solomon Islands Dollar"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: admin/manage-fields.php:773
|
4173 |
msgid "Somalia Shilling"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: admin/manage-fields.php:774
|
4177 |
msgid "South Africa Rand"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: admin/manage-fields.php:775
|
4181 |
msgid "Sri Lanka Rupee"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: admin/manage-fields.php:776
|
4185 |
msgid "Sweden Krona"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: admin/manage-fields.php:777
|
4189 |
msgid "Switzerland Franc"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: admin/manage-fields.php:778
|
4193 |
msgid "Suriname Dollar"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: admin/manage-fields.php:779
|
4197 |
msgid "Syria Pound"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: admin/manage-fields.php:780
|
4201 |
msgid "Taiwan New Dollar"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: admin/manage-fields.php:781
|
4205 |
msgid "Thailand Baht"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: admin/manage-fields.php:782
|
4209 |
msgid "Trinidad and Tobago Dollar"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: admin/manage-fields.php:783, admin/manage-fields.php:784
|
4213 |
msgid "Turkey Lira"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: admin/manage-fields.php:785
|
4217 |
msgid "Tuvalu Dollar"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: admin/manage-fields.php:786
|
4221 |
msgid "Ukraine Hryvna"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: admin/manage-fields.php:787
|
4225 |
msgid "United Kingdom Pound"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: admin/manage-fields.php:788
|
4229 |
msgid "Uganda Shilling"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: admin/manage-fields.php:789
|
4233 |
msgid "US Dollar"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: admin/manage-fields.php:790
|
4237 |
msgid "Uruguay Peso"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: admin/manage-fields.php:791
|
4241 |
msgid "Uzbekistan Som"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: admin/manage-fields.php:792
|
4245 |
msgid "Venezuela Bolivar"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: admin/manage-fields.php:793
|
4249 |
msgid "Viet Nam Dong"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: admin/manage-fields.php:794
|
4253 |
msgid "Yemen Rial"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: admin/manage-fields.php:795
|
4257 |
msgid "Zimbabwe Dollar"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: admin/manage-fields.php:1098, admin/manage-fields.php:1250
|
4261 |
msgid ""
|
4262 |
"You must select a field\n"
|
4263 |
""
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: admin/manage-fields.php:1108
|
4267 |
msgid ""
|
4268 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4269 |
""
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: admin/manage-fields.php:1119
|
4273 |
msgid ""
|
4274 |
"The entered avatar size is not between 20 and 200\n"
|
4275 |
""
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: admin/manage-fields.php:1122
|
4279 |
msgid ""
|
4280 |
"The entered avatar size is not numerical\n"
|
4281 |
""
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: admin/manage-fields.php:1130
|
4285 |
msgid ""
|
4286 |
"The entered row number is not numerical\n"
|
4287 |
""
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: admin/manage-fields.php:1133
|
4291 |
msgid ""
|
4292 |
"You must enter a value for the row number\n"
|
4293 |
""
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: admin/manage-fields.php:1141
|
4297 |
msgid ""
|
4298 |
"You must enter the site key\n"
|
4299 |
""
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: admin/manage-fields.php:1143
|
4303 |
msgid ""
|
4304 |
"You must enter the secret key\n"
|
4305 |
""
|
4306 |
msgstr ""
|
4307 |
|
4308 |
+
#: admin/manage-fields.php:1155
|
4309 |
msgid ""
|
4310 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4311 |
""
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: admin/manage-fields.php:1158
|
4315 |
msgid ""
|
4316 |
"You must enter a value for the date-format\n"
|
4317 |
""
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: admin/manage-fields.php:1174
|
4321 |
msgid ""
|
4322 |
"The meta-name cannot be empty\n"
|
4323 |
""
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: admin/manage-fields.php:1180
|
4327 |
msgid ""
|
4328 |
"That meta-name can't be used, please choose another\n"
|
4329 |
""
|
4330 |
msgstr ""
|
4331 |
|
4332 |
+
#: admin/manage-fields.php:1188, admin/manage-fields.php:1199
|
4333 |
msgid ""
|
4334 |
"That meta-name is already in use\n"
|
4335 |
""
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: admin/manage-fields.php:1210
|
4339 |
msgid ""
|
4340 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4341 |
""
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: admin/manage-fields.php:1230
|
4345 |
msgid ""
|
4346 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4347 |
""
|
4348 |
msgstr ""
|
4349 |
|
4350 |
+
#: admin/manage-fields.php:1234
|
4351 |
msgid ""
|
4352 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4353 |
""
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: admin/manage-fields.php:1241
|
4357 |
msgid ""
|
4358 |
"Please select at least one user role\n"
|
4359 |
""
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: admin/manage-fields.php:1257
|
4363 |
msgid ""
|
4364 |
"That field is already added in this form\n"
|
4365 |
""
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: admin/manage-fields.php:1308
|
4369 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: admin/manage-fields.php:1323
|
4373 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: admin/manage-fields.php:1332
|
4377 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: admin/manage-fields.php:1334
|
4381 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: admin/manage-fields.php:1431
|
4385 |
msgid "Search Location"
|
4386 |
msgstr ""
|
4387 |
|
4497 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: admin/private-website.php:129, features/functions.php:851, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:275, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:161, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
4501 |
msgid "Save Changes"
|
4502 |
msgstr ""
|
4503 |
|
4613 |
msgid "Incorrect phone number"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: features/functions.php:879, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4617 |
msgid "Content"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
#: features/functions.php:1061
|
4621 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: features/functions.php:1074
|
4625 |
msgid "<br><br>You can visit your site at "
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: features/functions.php:1160
|
4629 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#: features/functions.php:1290
|
4633 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
+
#: features/functions.php:1325
|
4637 |
msgid "You are not currently logged in."
|
4638 |
msgstr ""
|
4639 |
|
4701 |
msgid "Send these credentials via email."
|
4702 |
msgstr ""
|
4703 |
|
4704 |
+
#: front-end/class-formbuilder.php:708
|
4705 |
msgid "User to edit:"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
+
#: front-end/class-formbuilder.php:710
|
4709 |
msgid "Select User"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
+
#: front-end/class-formbuilder.php:726
|
4713 |
msgid "There are no other users to edit"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: front-end/class-formbuilder.php:749
|
4717 |
msgid "Something went wrong. Please try again!"
|
4718 |
msgstr ""
|
4719 |
|
5401 |
msgid "Approve"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2350
|
5405 |
msgid "Firstname"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2351
|
5409 |
msgid "Lastname"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2355
|
5413 |
msgid "Role"
|
5414 |
msgstr ""
|
5415 |
|
5457 |
msgid "Conditional Rules"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
+
#: features/conditional-fields/conditional-fields.php:553
|
5461 |
msgid "This field has conditional logic enabled."
|
5462 |
msgstr ""
|
5463 |
|
6349 |
msgid "No Edit-profile Forms found in trash"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2241
|
6353 |
msgid "Shortcode"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2262
|
6357 |
msgid "(no title)"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2282
|
6361 |
msgid "The shortcode will be available after you publish this form."
|
6362 |
msgstr ""
|
6363 |
|
6364 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2284
|
6365 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2288
|
6369 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2321
|
6373 |
msgid "Form Shortcode"
|
6374 |
msgstr ""
|
6375 |
|
6525 |
msgid "Display name as"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2349
|
6529 |
msgid "Registration Date"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2354
|
6533 |
msgid "Number of Posts"
|
6534 |
msgstr ""
|
6535 |
|
6565 |
msgid "Search all Fields"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2433
|
6569 |
msgid "Faceted Menus"
|
6570 |
msgstr ""
|
6571 |
|
6621 |
msgid "First/Lastname"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2352
|
6625 |
msgid "Display Name"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2359
|
6629 |
msgid "Aim"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2360
|
6633 |
msgid "Yim"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2361
|
6637 |
msgid "Jabber"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: modules/user-listing/userlisting.php:1118, modules/user-listing/userlisting.php:1598, modules/user-listing/userlisting.php:2076, modules/user-listing/userlisting.php:2553
|
6641 |
msgid "Search Users by All Fields"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: modules/user-listing/userlisting.php:1391
|
6645 |
msgid "Click here to see more information about this user"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: modules/user-listing/userlisting.php:1391, modules/user-listing/userlisting.php:1391
|
6649 |
msgid "More..."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: modules/user-listing/userlisting.php:1394
|
6653 |
msgid "Click here to see more information about this user."
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: modules/user-listing/userlisting.php:1421
|
6657 |
msgid "View Map"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: modules/user-listing/userlisting.php:1552, modules/user-listing/userlisting.php:1555
|
6661 |
msgid "Click here to go back"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: modules/user-listing/userlisting.php:1552, modules/user-listing/userlisting.php:1552
|
6665 |
msgid "Back"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: modules/user-listing/userlisting.php:1585
|
6669 |
msgid "«« First"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: modules/user-listing/userlisting.php:1586
|
6673 |
msgid "« Prev"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: modules/user-listing/userlisting.php:1587
|
6677 |
msgid "Next » "
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: modules/user-listing/userlisting.php:1588
|
6681 |
msgid "Last »»"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: modules/user-listing/userlisting.php:1617
|
6685 |
msgid "You don't have any pagination settings on this userlisting!"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: modules/user-listing/userlisting.php:1666
|
6689 |
msgid "Show All"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: modules/user-listing/userlisting.php:1740
|
6693 |
msgid "Choose..."
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: modules/user-listing/userlisting.php:1829
|
6697 |
msgid "No options available"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: modules/user-listing/userlisting.php:1979
|
6701 |
msgid "Remove All Filters"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: modules/user-listing/userlisting.php:2093
|
6705 |
msgid "Search"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: modules/user-listing/userlisting.php:2094
|
6709 |
msgid "Clear Results"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: modules/user-listing/userlisting.php:2291, modules/user-listing/userlisting.php:2295
|
6713 |
msgid "Extra shortcode parameters"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: modules/user-listing/userlisting.php:2293
|
6717 |
msgid "View all extra shortcode parameters"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: modules/user-listing/userlisting.php:2298
|
6721 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: modules/user-listing/userlisting.php:2299
|
6725 |
msgid "Example:"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: modules/user-listing/userlisting.php:2301
|
6729 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: modules/user-listing/userlisting.php:2307
|
6733 |
msgid "displays only the users that you specified the user_id for"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: modules/user-listing/userlisting.php:2313
|
6737 |
msgid "displays all users except the ones you specified the user_id for"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: modules/user-listing/userlisting.php:2376
|
6741 |
msgid "Random (very slow on large databases > 10K user)"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: modules/user-listing/userlisting.php:2379
|
6745 |
msgid "Ascending"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: modules/user-listing/userlisting.php:2380
|
6749 |
msgid "Descending"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: modules/user-listing/userlisting.php:2385
|
6753 |
msgid "Roles to Display"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: modules/user-listing/userlisting.php:2385
|
6757 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: modules/user-listing/userlisting.php:2386
|
6761 |
msgid "Number of Users/Page"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: modules/user-listing/userlisting.php:2386
|
6765 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: modules/user-listing/userlisting.php:2387
|
6769 |
msgid "Default Sorting Criteria"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: modules/user-listing/userlisting.php:2387
|
6773 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: modules/user-listing/userlisting.php:2388
|
6777 |
msgid "Default Sorting Order"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: modules/user-listing/userlisting.php:2388
|
6781 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: modules/user-listing/userlisting.php:2389
|
6785 |
msgid "Avatar Size (All-userlisting)"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: modules/user-listing/userlisting.php:2389
|
6789 |
msgid "Set the avatar size on the all-userlisting only"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: modules/user-listing/userlisting.php:2390
|
6793 |
msgid "Avatar Size (Single-userlisting)"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: modules/user-listing/userlisting.php:2390
|
6797 |
msgid "Set the avatar size on the single-userlisting only"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: modules/user-listing/userlisting.php:2391
|
6801 |
msgid "Visible only to logged in users?"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: modules/user-listing/userlisting.php:2391
|
6805 |
msgid "The userlisting will only be visible only to the logged in users"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: modules/user-listing/userlisting.php:2392
|
6809 |
msgid "Visible to following Roles"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: modules/user-listing/userlisting.php:2392
|
6813 |
msgid "The userlisting will only be visible to the following roles"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: modules/user-listing/userlisting.php:2398
|
6817 |
msgid "Userlisting Settings"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: modules/user-listing/userlisting.php:2423
|
6821 |
msgid "Label"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: modules/user-listing/userlisting.php:2423
|
6825 |
msgid "Choose the facet name that appears on the frontend"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: modules/user-listing/userlisting.php:2424
|
6829 |
msgid "Facet Type"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: modules/user-listing/userlisting.php:2424
|
6833 |
msgid "Choose the facet menu type"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: modules/user-listing/userlisting.php:2425
|
6837 |
msgid "Facet Meta"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: modules/user-listing/userlisting.php:2425
|
6841 |
+
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
6842 |
msgstr ""
|
6843 |
|
6844 |
+
#: modules/user-listing/userlisting.php:2426
|
6845 |
msgid "Behaviour"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
+
#: modules/user-listing/userlisting.php:2426
|
6849 |
msgid "Narrow the results"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
+
#: modules/user-listing/userlisting.php:2426
|
6853 |
msgid "Expand the results"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: modules/user-listing/userlisting.php:2426
|
6857 |
msgid "Choose how multiple selections affect the results"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: modules/user-listing/userlisting.php:2427
|
6861 |
msgid "Visible choices"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
+
#: modules/user-listing/userlisting.php:2427
|
6865 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
+
#: modules/user-listing/userlisting.php:2452
|
6869 |
msgid "Search Fields"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
+
#: modules/user-listing/userlisting.php:2452
|
6873 |
msgid "Choose the fields in which the Search Field will look in"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: modules/user-listing/userlisting.php:2457
|
6877 |
msgid "Search Settings"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: modules/user-listing/userlisting.php:2529
|
6881 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
+
#: modules/user-listing/userlisting.php:2529
|
6885 |
msgid "You can find it in the Profile Builder menu."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
+
#: modules/user-listing/userlisting.php:2692
|
6889 |
msgid "No results found!"
|
6890 |
msgstr ""
|
6891 |
|
6965 |
msgid "Click the BACK button on your browser, and try again."
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: front-end/default-fields/user-role/user-role.php:97, front-end/default-fields/user-role/user-role.php:111
|
6969 |
msgid "Only administrators can see this field on edit profile forms."
|
6970 |
msgstr ""
|
6971 |
|
6972 |
+
#: front-end/default-fields/user-role/user-role.php:106
|
6973 |
msgid "As an administrator you cannot change your role."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
+
#: front-end/default-fields/user-role/user-role.php:148, front-end/default-fields/user-role/user-role.php:172, front-end/default-fields/user-role/user-role.php:177
|
6977 |
msgid "You cannot register this user role"
|
6978 |
msgstr ""
|
6979 |
|
7114 |
"Please enter a unique field title.\n"
|
7115 |
""
|
7116 |
msgstr ""
|
7117 |
+
|
7118 |
+
#: assets/lib/wck-api/fields/select-2.php:16
|
7119 |
+
msgid "Select or type in an option"
|
7120 |
+
msgstr ""
|